author | urbanc |
Sat, 11 Feb 2012 19:39:50 +0000 | |
changeset 297 | 0a4be67ea7f8 |
parent 296 | 2c8dcf010567 |
child 298 | f2e0d031a395 |
permissions | -rwxr-xr-x |
262 | 1 |
(*<*) |
2 |
theory Paper |
|
292 | 3 |
imports CpsG ExtGG "~~/src/HOL/Library/LaTeXsugar" |
262 | 4 |
begin |
266 | 5 |
ML {* |
273 | 6 |
open Printer; |
272 | 7 |
show_question_marks_default := false; |
266 | 8 |
*} |
284 | 9 |
|
10 |
notation (latex output) |
|
11 |
Cons ("_::_" [78,77] 73) and |
|
12 |
vt ("valid'_state") and |
|
13 |
runing ("running") and |
|
286 | 14 |
birthtime ("last'_set") and |
284 | 15 |
If ("(\<^raw:\textrm{>if\<^raw:}> (_)/ \<^raw:\textrm{>then\<^raw:}> (_)/ \<^raw:\textrm{>else\<^raw:}> (_))" 10) and |
286 | 16 |
Prc ("'(_, _')") and |
287 | 17 |
holding ("holds") and |
18 |
waiting ("waits") and |
|
290 | 19 |
Th ("T") and |
20 |
Cs ("C") and |
|
287 | 21 |
readys ("ready") and |
290 | 22 |
depend ("RAG") and |
23 |
preced ("prec") and |
|
24 |
cpreced ("cprec") and |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
25 |
dependents ("dependants") and |
284 | 26 |
DUMMY ("\<^raw:\mbox{$\_\!\_$}>") |
262 | 27 |
(*>*) |
28 |
||
29 |
section {* Introduction *} |
|
30 |
||
31 |
text {* |
|
284 | 32 |
Many real-time systems need to support threads involving priorities and |
267 | 33 |
locking of resources. Locking of resources ensures mutual exclusion |
275 | 34 |
when accessing shared data or devices that cannot be |
284 | 35 |
preempted. Priorities allow scheduling of threads that need to |
275 | 36 |
finish their work within deadlines. Unfortunately, both features |
37 |
can interact in subtle ways leading to a problem, called |
|
284 | 38 |
\emph{Priority Inversion}. Suppose three threads having priorities |
39 |
$H$(igh), $M$(edium) and $L$(ow). We would expect that the thread |
|
40 |
$H$ blocks any other thread with lower priority and itself cannot |
|
41 |
be blocked by any thread with lower priority. Alas, in a naive |
|
275 | 42 |
implementation of resource looking and priorities this property can |
43 |
be violated. Even worse, $H$ can be delayed indefinitely by |
|
284 | 44 |
threads with lower priorities. For this let $L$ be in the |
275 | 45 |
possession of a lock for a resource that also $H$ needs. $H$ must |
46 |
therefore wait for $L$ to exit the critical section and release this |
|
47 |
lock. The problem is that $L$ might in turn be blocked by any |
|
284 | 48 |
thread with priority $M$, and so $H$ sits there potentially waiting |
49 |
indefinitely. Since $H$ is blocked by threads with lower |
|
275 | 50 |
priorities, the problem is called Priority Inversion. It was first |
277 | 51 |
described in \cite{Lampson80} in the context of the |
275 | 52 |
Mesa programming language designed for concurrent programming. |
265 | 53 |
|
273 | 54 |
If the problem of Priority Inversion is ignored, real-time systems |
267 | 55 |
can become unpredictable and resulting bugs can be hard to diagnose. |
56 |
The classic example where this happened is the software that |
|
284 | 57 |
controlled the Mars Pathfinder mission in 1997 \cite{Reeves98}. |
58 |
Once the spacecraft landed, the software shut down at irregular |
|
59 |
intervals leading to loss of project time as normal operation of the |
|
60 |
craft could only resume the next day (the mission and data already |
|
61 |
collected were fortunately not lost, because of a clever system |
|
62 |
design). The reason for the shutdowns was that the scheduling |
|
63 |
software fell victim of Priority Inversion: a low priority thread |
|
64 |
locking a resource prevented a high priority thread from running in |
|
65 |
time leading to a system reset. Once the problem was found, it was |
|
66 |
rectified by enabling the \emph{Priority Inheritance Protocol} (PIP) |
|
67 |
\cite{Sha90}\footnote{Sha et al.~call it the \emph{Basic Priority |
|
286 | 68 |
Inheritance Protocol} \cite{Sha90} and others sometimes also call it |
69 |
\emph{Priority Boosting}.} in the scheduling software. |
|
262 | 70 |
|
284 | 71 |
The idea behind PIP is to let the thread $L$ temporarily inherit |
286 | 72 |
the high priority from $H$ until $L$ leaves the critical section |
284 | 73 |
unlocking the resource. This solves the problem of $H$ having to |
74 |
wait indefinitely, because $L$ cannot be blocked by threads having |
|
75 |
priority $M$. While a few other solutions exist for the Priority |
|
76 |
Inversion problem, PIP is one that is widely deployed and |
|
77 |
implemented. This includes VxWorks (a proprietary real-time OS used |
|
78 |
in the Mars Pathfinder mission, in Boeing's 787 Dreamliner, Honda's |
|
79 |
ASIMO robot, etc.), but also the POSIX 1003.1c Standard realised for |
|
80 |
example in libraries for FreeBSD, Solaris and Linux. |
|
274 | 81 |
|
284 | 82 |
One advantage of PIP is that increasing the priority of a thread |
275 | 83 |
can be dynamically calculated by the scheduler. This is in contrast |
277 | 84 |
to, for example, \emph{Priority Ceiling} \cite{Sha90}, another |
85 |
solution to the Priority Inversion problem, which requires static |
|
284 | 86 |
analysis of the program in order to prevent Priority |
87 |
Inversion. However, there has also been strong criticism against |
|
88 |
PIP. For instance, PIP cannot prevent deadlocks when lock |
|
89 |
dependencies are circular, and also blocking times can be |
|
90 |
substantial (more than just the duration of a critical section). |
|
91 |
Though, most criticism against PIP centres around unreliable |
|
92 |
implementations and PIP being too complicated and too inefficient. |
|
93 |
For example, Yodaiken writes in \cite{Yodaiken02}: |
|
274 | 94 |
|
95 |
\begin{quote} |
|
96 |
\it{}``Priority inheritance is neither efficient nor reliable. Implementations |
|
97 |
are either incomplete (and unreliable) or surprisingly complex and intrusive.'' |
|
98 |
\end{quote} |
|
273 | 99 |
|
274 | 100 |
\noindent |
275 | 101 |
He suggests to avoid PIP altogether by not allowing critical |
286 | 102 |
sections to be preempted. Unfortunately, this solution does not |
103 |
help in real-time systems with low latency \emph{requirements}. |
|
278 | 104 |
|
286 | 105 |
In our opinion, there is clearly a need for investigating correct |
278 | 106 |
algorithms for PIP. A few specifications for PIP exist (in English) |
107 |
and also a few high-level descriptions of implementations (e.g.~in |
|
108 |
the textbook \cite[Section 5.6.5]{Vahalia96}), but they help little |
|
109 |
with actual implementations. That this is a problem in practise is |
|
283 | 110 |
proved by an email from Baker, who wrote on 13 July 2009 on the Linux |
278 | 111 |
Kernel mailing list: |
274 | 112 |
|
113 |
\begin{quote} |
|
275 | 114 |
\it{}``I observed in the kernel code (to my disgust), the Linux PIP |
115 |
implementation is a nightmare: extremely heavy weight, involving |
|
116 |
maintenance of a full wait-for graph, and requiring updates for a |
|
117 |
range of events, including priority changes and interruptions of |
|
118 |
wait operations.'' |
|
274 | 119 |
\end{quote} |
120 |
||
121 |
\noindent |
|
277 | 122 |
The criticism by Yodaiken, Baker and others suggests to us to look |
123 |
again at PIP from a more abstract level (but still concrete enough |
|
286 | 124 |
to inform an implementation), and makes PIP an ideal candidate for a |
277 | 125 |
formal verification. One reason, of course, is that the original |
284 | 126 |
presentation of PIP~\cite{Sha90}, despite being informally |
283 | 127 |
``proved'' correct, is actually \emph{flawed}. |
128 |
||
129 |
Yodaiken \cite{Yodaiken02} points to a subtlety that had been |
|
130 |
overlooked in the informal proof by Sha et al. They specify in |
|
284 | 131 |
\cite{Sha90} that after the thread (whose priority has been raised) |
283 | 132 |
completes its critical section and releases the lock, it ``returns |
133 |
to its original priority level.'' This leads them to believe that an |
|
284 | 134 |
implementation of PIP is ``rather straightforward''~\cite{Sha90}. |
135 |
Unfortunately, as Yodaiken points out, this behaviour is too |
|
136 |
simplistic. Consider the case where the low priority thread $L$ |
|
137 |
locks \emph{two} resources, and two high-priority threads $H$ and |
|
283 | 138 |
$H'$ each wait for one of them. If $L$ then releases one resource |
139 |
so that $H$, say, can proceed, then we still have Priority Inversion |
|
140 |
with $H'$ (which waits for the other resource). The correct |
|
141 |
behaviour for $L$ is to revert to the highest remaining priority of |
|
284 | 142 |
the threads that it blocks. The advantage of formalising the |
143 |
correctness of a high-level specification of PIP in a theorem prover |
|
144 |
is that such issues clearly show up and cannot be overlooked as in |
|
145 |
informal reasoning (since we have to analyse all possible behaviours |
|
146 |
of threads, i.e.~\emph{traces}, that could possibly happen). |
|
274 | 147 |
|
279 | 148 |
There have been earlier formal investigations into PIP, but ...\cite{Faria08} |
284 | 149 |
|
150 |
vt (valid trace) was introduced earlier, cite |
|
151 |
||
152 |
distributed PIP |
|
286 | 153 |
|
154 |
Paulson's method has not been used outside security field, except |
|
155 |
work by Zhang et al. |
|
156 |
||
157 |
no clue about multi-processor case according to \cite{Steinberg10} |
|
280 | 158 |
*} |
278 | 159 |
|
283 | 160 |
section {* Formal Model of the Priority Inheritance Protocol *} |
267 | 161 |
|
280 | 162 |
text {* |
286 | 163 |
The Priority Inheritance Protocol, short PIP, is a scheduling |
164 |
algorithm for a single-processor system.\footnote{We shall come back |
|
165 |
later to the case of PIP on multi-processor systems.} Our model of |
|
166 |
PIP is based on Paulson's inductive approach to protocol |
|
167 |
verification \cite{Paulson98}, where the \emph{state} of a system is |
|
287 | 168 |
given by a list of events that happened so far. \emph{Events} in PIP fall |
290 | 169 |
into five categories defined as the datatype: |
283 | 170 |
|
171 |
\begin{isabelle}\ \ \ \ \ %%% |
|
284 | 172 |
\mbox{\begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l@ {\hspace{7mm}}l} |
173 |
\isacommand{datatype} event |
|
174 |
& @{text "="} & @{term "Create thread priority"}\\ |
|
175 |
& @{text "|"} & @{term "Exit thread"} \\ |
|
286 | 176 |
& @{text "|"} & @{term "Set thread priority"} & {\rm reset of the priority for} @{text thread}\\ |
284 | 177 |
& @{text "|"} & @{term "P thread cs"} & {\rm request of resource} @{text "cs"} {\rm by} @{text "thread"}\\ |
178 |
& @{text "|"} & @{term "V thread cs"} & {\rm release of resource} @{text "cs"} {\rm by} @{text "thread"} |
|
179 |
\end{tabular}} |
|
180 |
\end{isabelle} |
|
181 |
||
182 |
\noindent |
|
286 | 183 |
whereby threads, priorities and (critical) resources are represented |
184 |
as natural numbers. The event @{term Set} models the situation that |
|
185 |
a thread obtains a new priority given by the programmer or |
|
186 |
user (for example via the {\tt nice} utility under UNIX). As in Paulson's work, we |
|
187 |
need to define functions that allow one to make some observations |
|
297 | 188 |
about states. One, called @{term threads}, calculates the set of |
293 | 189 |
``live'' threads that we have seen so far: |
284 | 190 |
|
191 |
\begin{isabelle}\ \ \ \ \ %%% |
|
192 |
\mbox{\begin{tabular}{lcl} |
|
193 |
@{thm (lhs) threads.simps(1)} & @{text "\<equiv>"} & |
|
194 |
@{thm (rhs) threads.simps(1)}\\ |
|
195 |
@{thm (lhs) threads.simps(2)[where thread="th"]} & @{text "\<equiv>"} & |
|
196 |
@{thm (rhs) threads.simps(2)[where thread="th"]}\\ |
|
197 |
@{thm (lhs) threads.simps(3)[where thread="th"]} & @{text "\<equiv>"} & |
|
198 |
@{thm (rhs) threads.simps(3)[where thread="th"]}\\ |
|
199 |
@{term "threads (DUMMY#s)"} & @{text "\<equiv>"} & @{term "threads s"}\\ |
|
200 |
\end{tabular}} |
|
283 | 201 |
\end{isabelle} |
202 |
||
203 |
\noindent |
|
290 | 204 |
Another function calculates the priority for a thread @{text "th"}, which is |
205 |
defined as |
|
284 | 206 |
|
207 |
\begin{isabelle}\ \ \ \ \ %%% |
|
208 |
\mbox{\begin{tabular}{lcl} |
|
209 |
@{thm (lhs) original_priority.simps(1)[where thread="th"]} & @{text "\<equiv>"} & |
|
210 |
@{thm (rhs) original_priority.simps(1)[where thread="th"]}\\ |
|
211 |
@{thm (lhs) original_priority.simps(2)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} & |
|
212 |
@{thm (rhs) original_priority.simps(2)[where thread="th" and thread'="th'"]}\\ |
|
213 |
@{thm (lhs) original_priority.simps(3)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} & |
|
214 |
@{thm (rhs) original_priority.simps(3)[where thread="th" and thread'="th'"]}\\ |
|
215 |
@{term "original_priority th (DUMMY#s)"} & @{text "\<equiv>"} & @{term "original_priority th s"}\\ |
|
216 |
\end{tabular}} |
|
217 |
\end{isabelle} |
|
218 |
||
219 |
\noindent |
|
220 |
In this definition we set @{text 0} as the default priority for |
|
221 |
threads that have not (yet) been created. The last function we need |
|
285 | 222 |
calculates the ``time'', or index, at which time a process had its |
290 | 223 |
priority last set. |
284 | 224 |
|
225 |
\begin{isabelle}\ \ \ \ \ %%% |
|
226 |
\mbox{\begin{tabular}{lcl} |
|
227 |
@{thm (lhs) birthtime.simps(1)[where thread="th"]} & @{text "\<equiv>"} & |
|
228 |
@{thm (rhs) birthtime.simps(1)[where thread="th"]}\\ |
|
229 |
@{thm (lhs) birthtime.simps(2)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} & |
|
230 |
@{thm (rhs) birthtime.simps(2)[where thread="th" and thread'="th'"]}\\ |
|
231 |
@{thm (lhs) birthtime.simps(3)[where thread="th" and thread'="th'"]} & @{text "\<equiv>"} & |
|
232 |
@{thm (rhs) birthtime.simps(3)[where thread="th" and thread'="th'"]}\\ |
|
233 |
@{term "birthtime th (DUMMY#s)"} & @{text "\<equiv>"} & @{term "birthtime th s"}\\ |
|
234 |
\end{tabular}} |
|
235 |
\end{isabelle} |
|
286 | 236 |
|
237 |
\noindent |
|
287 | 238 |
In this definition @{term "length s"} stands for the length of the list |
239 |
of events @{text s}. Again the default value in this function is @{text 0} |
|
240 |
for threads that have not been created yet. A \emph{precedence} of a thread @{text th} in a |
|
290 | 241 |
state @{text s} is the pair of natural numbers defined as |
284 | 242 |
|
286 | 243 |
\begin{isabelle}\ \ \ \ \ %%% |
290 | 244 |
@{thm preced_def[where thread="th"]} |
286 | 245 |
\end{isabelle} |
246 |
||
247 |
\noindent |
|
287 | 248 |
The point of precedences is to schedule threads not according to priorities (because what should |
286 | 249 |
we do in case two threads have the same priority), but according to precedences. |
290 | 250 |
Precedences allow us to always discriminate between two threads with equal priority by |
296 | 251 |
taking into account the time when the priority was last set. We order precedences so |
286 | 252 |
that threads with the same priority get a higher precedence if their priority has been |
293 | 253 |
set earlier, since for such threads it is more urgent to finish their work. In an implementation |
254 |
this choice would translate to a quite natural FIFO-scheduling of processes with |
|
286 | 255 |
the same priority. |
256 |
||
257 |
Next, we introduce the concept of \emph{waiting queues}. They are |
|
258 |
lists of threads associated with every resource. The first thread in |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
259 |
this list (the head, or short @{term hd}) is chosen to be the one |
290 | 260 |
that is in possession of the |
286 | 261 |
``lock'' of the corresponding resource. We model waiting queues as |
293 | 262 |
functions, below abbreviated as @{text wq}. They take a resource as |
263 |
argument and return a list of threads. This allows us to define |
|
290 | 264 |
when a thread \emph{holds}, respectively \emph{waits} for, a |
293 | 265 |
resource @{text cs} given a waiting queue function @{text wq}. |
287 | 266 |
|
267 |
\begin{isabelle}\ \ \ \ \ %%% |
|
268 |
\begin{tabular}{@ {}l} |
|
290 | 269 |
@{thm cs_holding_def[where thread="th"]}\\ |
270 |
@{thm cs_waiting_def[where thread="th"]} |
|
287 | 271 |
\end{tabular} |
272 |
\end{isabelle} |
|
273 |
||
274 |
\noindent |
|
275 |
In this definition we assume @{text "set"} converts a list into a set. |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
276 |
At the beginning, that is in the state where no process is created yet, |
296 | 277 |
the waiting queue function will be the function that just returns the |
293 | 278 |
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
|
279 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
280 |
\begin{isabelle}\ \ \ \ \ %%% |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
281 |
@{abbrev all_unlocked} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
282 |
\end{isabelle} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
283 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
284 |
\noindent |
290 | 285 |
Using @{term "holding"} and @{term waiting}, we can introduce \emph{Resource Allocation Graphs} |
286 |
(RAG), which represent the dependencies between threads and resources. |
|
287 |
We represent RAGs as relations using pairs of the form |
|
288 |
||
289 |
\begin{isabelle}\ \ \ \ \ %%% |
|
290 |
@{term "(Th th, Cs cs)"} \hspace{5mm}{\rm and}\hspace{5mm} |
|
291 |
@{term "(Cs cs, Th th)"} |
|
292 |
\end{isabelle} |
|
293 |
||
294 |
\noindent |
|
295 |
where the first stands for a \emph{waiting edge} and the second for a |
|
296 |
\emph{holding edge} (@{term Cs} and @{term Th} are constructors of a |
|
297 |
datatype for vertices). Given a waiting queue function, a RAG is defined |
|
298 |
as |
|
299 |
||
300 |
\begin{isabelle}\ \ \ \ \ %%% |
|
301 |
@{thm cs_depend_def} |
|
302 |
\end{isabelle} |
|
303 |
||
304 |
\noindent |
|
305 |
An instance of a RAG is as follows: |
|
306 |
||
307 |
\begin{center} |
|
297 | 308 |
\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
|
309 |
\begin{tikzpicture}[scale=1] |
297 | 310 |
%%\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
|
311 |
|
297 | 312 |
\node (A) at (0,0) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>0"}}; |
313 |
\node (B) at (2,0) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^isub>1"}}; |
|
314 |
\node (C) at (4,0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>1"}}; |
|
315 |
\node (D) at (4,-0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^isub>2"}}; |
|
316 |
\node (E) at (6,-0.7) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^isub>2"}}; |
|
317 |
\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
|
318 |
|
297 | 319 |
\draw [->,line width=0.6mm] (A) to node [pos=0.45,sloped,above=-0.5mm] {\fnt{}holding} (B); |
320 |
\draw [->,line width=0.6mm] (C) to node [pos=0.4,sloped,above=-0.5mm] {\fnt{}waiting} (B); |
|
321 |
\draw [->,line width=0.6mm] (D) to node [pos=0.4,sloped,above=-0.5mm] {\fnt{}waiting} (B); |
|
322 |
\draw [->,line width=0.6mm] (D) to node [pos=0.45,sloped,above=-0.5mm] {\fnt{}holding} (E); |
|
323 |
\draw [->,line width=0.6mm] (F) to node [pos=0.45,sloped,above=-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
|
324 |
\end{tikzpicture} |
290 | 325 |
\end{center} |
326 |
||
327 |
\noindent |
|
296 | 328 |
The use of relations for representing RAGs allows us to conveniently define |
290 | 329 |
the notion of the \emph{dependants} of a thread. This is defined as |
330 |
||
331 |
\begin{isabelle}\ \ \ \ \ %%% |
|
332 |
@{thm cs_dependents_def} |
|
333 |
\end{isabelle} |
|
334 |
||
335 |
\noindent |
|
296 | 336 |
This definition needs to account for all threads that wait for a thread to |
290 | 337 |
release a resource. This means we need to include threads that transitively |
296 | 338 |
wait for a resource being released (in the picture above this means also @{text "th\<^isub>3"}, |
290 | 339 |
which cannot make any progress unless @{text "th\<^isub>2"} makes progress which |
296 | 340 |
in turn needs to wait for @{text "th\<^isub>1"}). If there is a circle 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
|
341 |
we have a deadlock. Therefore when a thread requests a resource, |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
342 |
we must ensure that the resulting RAG is not not circular. |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
343 |
|
293 | 344 |
Next we introduce the notion of the \emph{current precedence} for a thread @{text th} in a |
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
345 |
state @{text s}, which is defined as |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
346 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
347 |
\begin{isabelle}\ \ \ \ \ %%% |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
348 |
@{thm cpreced_def2} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
349 |
\end{isabelle} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
350 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
351 |
\noindent |
293 | 352 |
While the precedence @{term prec} of a thread is determined by the programmer |
353 |
(for example when the thread is |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
354 |
created), the point of the current precedence is to let scheduler increase this |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
355 |
priority, if needed according to PIP. Therefore the current precedence of @{text th} is |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
356 |
given as the maximum of the precedence @{text th} has in state @{text s} \emph{and} all |
296 | 357 |
processes 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
|
358 |
defined as the transitive closure of all dependent threads, we deal correctly with the |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
359 |
problem in the algorithm by Sha et al.~\cite{Sha90} where a priority of a thread is |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
360 |
lowered prematurely. |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
361 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
362 |
The next function, called @{term schs}, defines the behaviour of the scheduler. It is defined |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
363 |
by recursion on the state (a list of events); @{term "schs"} takes a state as argument |
293 | 364 |
and returns a \emph{schedule state}, which we define as a record consisting of two |
296 | 365 |
functions: |
293 | 366 |
|
367 |
\begin{isabelle}\ \ \ \ \ %%% |
|
368 |
@{text "\<lparr>wq_fun, cprec_fun\<rparr>"} |
|
369 |
\end{isabelle} |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
370 |
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
371 |
\noindent |
296 | 372 |
The first is a waiting queue function (that is takes a @{text "cs"} and returns the |
373 |
corresponding list of threads that wait for it), the second is a function that takes |
|
374 |
a thread and returns its current precedence (see ???). We have the usual getter and |
|
375 |
setter methods for such records. |
|
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
376 |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
377 |
In the initial state, the scheduler starts with all resources unlocked and the |
296 | 378 |
precedence of every thread is initialised with @{term "Prc 0 0"}. Therefore |
379 |
we have |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
380 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
381 |
\begin{isabelle}\ \ \ \ \ %%% |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
382 |
\begin{tabular}{@ {}l} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
383 |
@{thm (lhs) schs.simps(1)} @{text "\<equiv>"}\\ |
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
384 |
\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
|
385 |
\end{tabular} |
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 |
296 | 389 |
The cases for @{term Create}, @{term Exit} and @{term Set} are also straightforward: |
390 |
we calculate the waiting queue function of the (previous) state @{text s}; |
|
391 |
this waiting queue function @{text wq} is unchanged in the next schedule state; |
|
392 |
for calculating the next @{term "cprec_fun"}, we use @{text wq} and the function |
|
393 |
@{term cpreced}. This gives the following three clauses: |
|
290 | 394 |
|
395 |
\begin{isabelle}\ \ \ \ \ %%% |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
396 |
\begin{tabular}{@ {}l} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
397 |
@{thm (lhs) schs.simps(2)} @{text "\<equiv>"}\\ |
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
398 |
\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
|
399 |
\hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Create th prio # s)|)"}\\ |
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
400 |
@{thm (lhs) schs.simps(3)} @{text "\<equiv>"}\\ |
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
401 |
\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
|
402 |
\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
|
403 |
@{thm (lhs) schs.simps(4)} @{text "\<equiv>"}\\ |
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
404 |
\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
|
405 |
\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
|
406 |
\end{tabular} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
407 |
\end{isabelle} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
408 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
409 |
\noindent |
296 | 410 |
More interesting are the cases when a resource, say @{text cs}, is locked or released. In this case |
411 |
we need to calculate a new waiting queue function. In case of @{term P}, we update |
|
412 |
the function so that the new thread list for @{text cs} is old thread list plus the thread @{text th} |
|
413 |
appended to the end (remember the head of this list is in the possession of the |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
414 |
resource). |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
415 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
416 |
\begin{isabelle}\ \ \ \ \ %%% |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
417 |
\begin{tabular}{@ {}l} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
418 |
@{thm (lhs) schs.simps(5)} @{text "\<equiv>"}\\ |
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
419 |
\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
|
420 |
\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
|
421 |
\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
|
422 |
\end{tabular} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
423 |
\end{isabelle} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
424 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
425 |
\noindent |
296 | 426 |
The case for @{term V} is similar, except that we need to update the waiting queue function |
427 |
so that the thread that possessed the lock is eliminated. For this we use |
|
428 |
the auxiliary function @{term release}. A simple version of @{term release} would |
|
429 |
just delete this thread and return the rest like so |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
430 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
431 |
\begin{isabelle}\ \ \ \ \ %%% |
296 | 432 |
\begin{tabular}{@ {}lcl} |
433 |
@{term "release []"} & @{text "\<equiv>"} & @{term "[]"}\\ |
|
434 |
@{term "release (DUMMY # qs)"} & @{text "\<equiv>"} & @{term "qs"}\\ |
|
435 |
\end{tabular} |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
436 |
\end{isabelle} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
437 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
438 |
\noindent |
296 | 439 |
However in practice often the thread with the highest precedence will get the |
440 |
lock next. We have implemented this choice, but later found out that the choice |
|
441 |
about which thread is chosen next is actually irrelevant for the correctness of PIP. |
|
442 |
Therefore we prove the stronger result where @{term release} is defined as |
|
443 |
||
444 |
\begin{isabelle}\ \ \ \ \ %%% |
|
445 |
\begin{tabular}{@ {}lcl} |
|
446 |
@{term "release []"} & @{text "\<equiv>"} & @{term "[]"}\\ |
|
447 |
@{term "release (DUMMY # qs)"} & @{text "\<equiv>"} & @{term "SOME qs'. distinct qs' \<and> set qs' = set qs"}\\ |
|
448 |
\end{tabular} |
|
449 |
\end{isabelle} |
|
450 |
||
451 |
\noindent |
|
452 |
@{text "SOME"} stands for Hilbert's epsilon and implements an arbitrary |
|
453 |
choice for the next waiting list, it just has to be a distinct list and |
|
454 |
contain the same elements as @{text "qs"}. This gives for @{term V} and @{term schs} the clause: |
|
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
455 |
|
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
456 |
\begin{isabelle}\ \ \ \ \ %%% |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
457 |
\begin{tabular}{@ {}l} |
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
458 |
@{thm (lhs) schs.simps(6)} @{text "\<equiv>"}\\ |
294
bc5bf9e9ada2
renamed waiting_queue -> wq_fun; cur_preced -> cprec_fun
urbanc
parents:
293
diff
changeset
|
459 |
\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
|
460 |
\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
|
461 |
\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
|
462 |
\end{tabular} |
290 | 463 |
\end{isabelle} |
464 |
||
465 |
||
291
5ef9f6ebe827
more on paper; modified schs functions; it is still compatible with the old definition
urbanc
parents:
290
diff
changeset
|
466 |
TODO |
286 | 467 |
|
468 |
\begin{isabelle}\ \ \ \ \ %%% |
|
469 |
\begin{tabular}{@ {}l} |
|
287 | 470 |
@{thm s_depend_def}\\ |
471 |
\end{tabular} |
|
472 |
\end{isabelle} |
|
473 |
||
474 |
\begin{isabelle}\ \ \ \ \ %%% |
|
475 |
\begin{tabular}{@ {}l} |
|
476 |
@{thm readys_def}\\ |
|
477 |
\end{tabular} |
|
478 |
\end{isabelle} |
|
479 |
||
480 |
\begin{isabelle}\ \ \ \ \ %%% |
|
481 |
\begin{tabular}{@ {}l} |
|
482 |
@{thm runing_def}\\ |
|
286 | 483 |
\end{tabular} |
484 |
\end{isabelle} |
|
284 | 485 |
|
486 |
||
287 | 487 |
resources |
284 | 488 |
|
287 | 489 |
done: threads not done: running |
284 | 490 |
|
491 |
step relation: |
|
492 |
||
493 |
\begin{center} |
|
494 |
\begin{tabular}{c} |
|
495 |
@{thm[mode=Rule] thread_create[where thread=th]}\hspace{1cm} |
|
496 |
@{thm[mode=Rule] thread_exit[where thread=th]}\medskip\\ |
|
497 |
||
287 | 498 |
@{thm[mode=Rule] thread_set[where thread=th]}\medskip\\ |
284 | 499 |
@{thm[mode=Rule] thread_P[where thread=th]}\medskip\\ |
500 |
@{thm[mode=Rule] thread_V[where thread=th]}\\ |
|
501 |
\end{tabular} |
|
502 |
\end{center} |
|
503 |
||
504 |
valid state: |
|
505 |
||
506 |
\begin{center} |
|
507 |
\begin{tabular}{c} |
|
508 |
@{thm[mode=Axiom] vt_nil[where cs=step]}\hspace{1cm} |
|
509 |
@{thm[mode=Rule] vt_cons[where cs=step]} |
|
510 |
\end{tabular} |
|
511 |
\end{center} |
|
512 |
||
274 | 513 |
|
280 | 514 |
To define events, the identifiers of {\em threads}, |
515 |
{\em priority} and {\em critical resources } (abbreviated as @{text "cs"}) |
|
516 |
need to be represented. All three are represetned using standard |
|
517 |
Isabelle/HOL type @{typ "nat"}: |
|
518 |
*} |
|
273 | 519 |
|
280 | 520 |
text {* |
521 |
\bigskip |
|
284 | 522 |
The priority inversion phenomenon was first published in |
523 |
\cite{Lampson80}. The two protocols widely used to eliminate |
|
524 |
priority inversion, namely PI (Priority Inheritance) and PCE |
|
525 |
(Priority Ceiling Emulation), were proposed in \cite{Sha90}. PCE is |
|
526 |
less convenient to use because it requires static analysis of |
|
527 |
programs. Therefore, PI is more commonly used in |
|
528 |
practice\cite{locke-july02}. However, as pointed out in the |
|
529 |
literature, the analysis of priority inheritance protocol is quite |
|
530 |
subtle\cite{yodaiken-july02}. A formal analysis will certainly be |
|
531 |
helpful for us to understand and correctly implement PI. All |
|
532 |
existing formal analysis of PI |
|
533 |
\cite{conf/fase/JahierHR09,WellingsBSB07,Faria08} are based on the |
|
534 |
model checking technology. Because of the state explosion problem, |
|
535 |
model check is much like an exhaustive testing of finite models with |
|
536 |
limited size. The results obtained can not be safely generalized to |
|
537 |
models with arbitrarily large size. Worse still, since model |
|
538 |
checking is fully automatic, it give little insight on why the |
|
539 |
formal model is correct. It is therefore definitely desirable to |
|
540 |
analyze PI using theorem proving, which gives more general results |
|
541 |
as well as deeper insight. And this is the purpose of this paper |
|
542 |
which gives a formal analysis of PI in the interactive theorem |
|
543 |
prover Isabelle using Higher Order Logic (HOL). The formalization |
|
262 | 544 |
focuses on on two issues: |
545 |
||
546 |
\begin{enumerate} |
|
547 |
\item The correctness of the protocol model itself. A series of desirable properties is |
|
548 |
derived until we are fully convinced that the formal model of PI does |
|
549 |
eliminate priority inversion. And a better understanding of PI is so obtained |
|
550 |
in due course. For example, we find through formalization that the choice of |
|
551 |
next thread to take hold when a |
|
552 |
resource is released is irrelevant for the very basic property of PI to hold. |
|
553 |
A point never mentioned in literature. |
|
554 |
\item The correctness of the implementation. A series of properties is derived the meaning |
|
555 |
of which can be used as guidelines on how PI can be implemented efficiently and correctly. |
|
556 |
\end{enumerate} |
|
557 |
||
558 |
The rest of the paper is organized as follows: Section \ref{overview} gives an overview |
|
559 |
of PI. Section \ref{model} introduces the formal model of PI. Section \ref{general} |
|
560 |
discusses a series of basic properties of PI. Section \ref{extension} shows formally |
|
561 |
how priority inversion is controlled by PI. Section \ref{implement} gives properties |
|
562 |
which can be used for guidelines of implementation. Section \ref{related} discusses |
|
563 |
related works. Section \ref{conclusion} concludes the whole paper. |
|
265 | 564 |
|
273 | 565 |
The basic priority inheritance protocol has two problems: |
566 |
||
567 |
It does not prevent a deadlock from happening in a program with circular lock dependencies. |
|
568 |
||
569 |
A chain of blocking may be formed; blocking duration can be substantial, though bounded. |
|
570 |
||
265 | 571 |
|
572 |
Contributions |
|
573 |
||
574 |
Despite the wide use of Priority Inheritance Protocol in real time operating |
|
575 |
system, it's correctness has never been formally proved and mechanically checked. |
|
576 |
All existing verification are based on model checking technology. Full automatic |
|
577 |
verification gives little help to understand why the protocol is correct. |
|
578 |
And results such obtained only apply to models of limited size. |
|
579 |
This paper presents a formal verification based on theorem proving. |
|
580 |
Machine checked formal proof does help to get deeper understanding. We found |
|
581 |
the fact which is not mentioned in the literature, that the choice of next |
|
582 |
thread to take over when an critical resource is release does not affect the correctness |
|
583 |
of the protocol. The paper also shows how formal proof can help to construct |
|
584 |
correct and efficient implementation.\bigskip |
|
585 |
||
262 | 586 |
*} |
587 |
||
588 |
section {* An overview of priority inversion and priority inheritance \label{overview} *} |
|
589 |
||
590 |
text {* |
|
591 |
||
592 |
Priority inversion refers to the phenomenon when a thread with high priority is blocked |
|
593 |
by a thread with low priority. Priority happens when the high priority thread requests |
|
594 |
for some critical resource already taken by the low priority thread. Since the high |
|
595 |
priority thread has to wait for the low priority thread to complete, it is said to be |
|
596 |
blocked by the low priority thread. Priority inversion might prevent high priority |
|
597 |
thread from fulfill its task in time if the duration of priority inversion is indefinite |
|
598 |
and unpredictable. Indefinite priority inversion happens when indefinite number |
|
599 |
of threads with medium priorities is activated during the period when the high |
|
600 |
priority thread is blocked by the low priority thread. Although these medium |
|
601 |
priority threads can not preempt the high priority thread directly, they are able |
|
602 |
to preempt the low priority threads and cause it to stay in critical section for |
|
603 |
an indefinite long duration. In this way, the high priority thread may be blocked indefinitely. |
|
604 |
||
605 |
Priority inheritance is one protocol proposed to avoid indefinite priority inversion. |
|
606 |
The basic idea is to let the high priority thread donate its priority to the low priority |
|
607 |
thread holding the critical resource, so that it will not be preempted by medium priority |
|
608 |
threads. The thread with highest priority will not be blocked unless it is requesting |
|
609 |
some critical resource already taken by other threads. Viewed from a different angle, |
|
610 |
any thread which is able to block the highest priority threads must already hold some |
|
611 |
critical resource. Further more, it must have hold some critical resource at the |
|
612 |
moment the highest priority is created, otherwise, it may never get change to run and |
|
613 |
get hold. Since the number of such resource holding lower priority threads is finite, |
|
614 |
if every one of them finishes with its own critical section in a definite duration, |
|
615 |
the duration the highest priority thread is blocked is definite as well. The key to |
|
616 |
guarantee lower priority threads to finish in definite is to donate them the highest |
|
617 |
priority. In such cases, the lower priority threads is said to have inherited the |
|
618 |
highest priority. And this explains the name of the protocol: |
|
619 |
{\em Priority Inheritance} and how Priority Inheritance prevents indefinite delay. |
|
620 |
||
621 |
The objectives of this paper are: |
|
622 |
\begin{enumerate} |
|
623 |
\item Build the above mentioned idea into formal model and prove a series of properties |
|
624 |
until we are convinced that the formal model does fulfill the original idea. |
|
625 |
\item Show how formally derived properties can be used as guidelines for correct |
|
626 |
and efficient implementation. |
|
627 |
\end{enumerate} |
|
628 |
The proof is totally formal in the sense that every detail is reduced to the |
|
629 |
very first principles of Higher Order Logic. The nature of interactive theorem |
|
630 |
proving is for the human user to persuade computer program to accept its arguments. |
|
631 |
A clear and simple understanding of the problem at hand is both a prerequisite and a |
|
632 |
byproduct of such an effort, because everything has finally be reduced to the very |
|
633 |
first principle to be checked mechanically. The former intuitive explanation of |
|
634 |
Priority Inheritance is just such a byproduct. |
|
635 |
*} |
|
636 |
||
637 |
section {* Formal model of Priority Inheritance \label{model} *} |
|
638 |
text {* |
|
639 |
\input{../../generated/PrioGDef} |
|
640 |
*} |
|
641 |
||
642 |
section {* General properties of Priority Inheritance \label{general} *} |
|
264 | 643 |
|
644 |
text {* |
|
645 |
The following are several very basic prioprites: |
|
646 |
\begin{enumerate} |
|
647 |
\item All runing threads must be ready (@{text "runing_ready"}): |
|
648 |
@{thm[display] "runing_ready"} |
|
649 |
\item All ready threads must be living (@{text "readys_threads"}): |
|
650 |
@{thm[display] "readys_threads"} |
|
651 |
\item There are finite many living threads at any moment (@{text "finite_threads"}): |
|
652 |
@{thm[display] "finite_threads"} |
|
653 |
\item Every waiting queue does not contain duplcated elements (@{text "wq_distinct"}): |
|
654 |
@{thm[display] "wq_distinct"} |
|
655 |
\item All threads in waiting queues are living threads (@{text "wq_threads"}): |
|
656 |
@{thm[display] "wq_threads"} |
|
657 |
\item The event which can get a thread into waiting queue must be @{term "P"}-events |
|
658 |
(@{text "block_pre"}): |
|
659 |
@{thm[display] "block_pre"} |
|
660 |
\item A thread may never wait for two different critical resources |
|
661 |
(@{text "waiting_unique"}): |
|
662 |
@{thm[display] waiting_unique[of _ _ "cs\<^isub>1" "cs\<^isub>2"]} |
|
663 |
\item Every resource can only be held by one thread |
|
664 |
(@{text "held_unique"}): |
|
665 |
@{thm[display] held_unique[of _ "th\<^isub>1" _ "th\<^isub>2"]} |
|
666 |
\item Every living thread has an unique precedence |
|
667 |
(@{text "preced_unique"}): |
|
668 |
@{thm[display] preced_unique[of "th\<^isub>1" _ "th\<^isub>2"]} |
|
669 |
\end{enumerate} |
|
670 |
*} |
|
671 |
||
672 |
text {* \noindent |
|
673 |
The following lemmas show how RAG is changed with the execution of events: |
|
674 |
\begin{enumerate} |
|
675 |
\item Execution of @{term "Set"} does not change RAG (@{text "depend_set_unchanged"}): |
|
676 |
@{thm[display] depend_set_unchanged} |
|
677 |
\item Execution of @{term "Create"} does not change RAG (@{text "depend_create_unchanged"}): |
|
678 |
@{thm[display] depend_create_unchanged} |
|
679 |
\item Execution of @{term "Exit"} does not change RAG (@{text "depend_exit_unchanged"}): |
|
680 |
@{thm[display] depend_exit_unchanged} |
|
681 |
\item Execution of @{term "P"} (@{text "step_depend_p"}): |
|
682 |
@{thm[display] step_depend_p} |
|
683 |
\item Execution of @{term "V"} (@{text "step_depend_v"}): |
|
684 |
@{thm[display] step_depend_v} |
|
685 |
\end{enumerate} |
|
686 |
*} |
|
687 |
||
688 |
text {* \noindent |
|
689 |
These properties are used to derive the following important results about RAG: |
|
690 |
\begin{enumerate} |
|
691 |
\item RAG is loop free (@{text "acyclic_depend"}): |
|
692 |
@{thm [display] acyclic_depend} |
|
693 |
\item RAGs are finite (@{text "finite_depend"}): |
|
694 |
@{thm [display] finite_depend} |
|
695 |
\item Reverse paths in RAG are well founded (@{text "wf_dep_converse"}): |
|
696 |
@{thm [display] wf_dep_converse} |
|
697 |
\item The dependence relation represented by RAG has a tree structure (@{text "unique_depend"}): |
|
698 |
@{thm [display] unique_depend[of _ _ "n\<^isub>1" "n\<^isub>2"]} |
|
699 |
\item All threads in RAG are living threads |
|
700 |
(@{text "dm_depend_threads"} and @{text "range_in"}): |
|
701 |
@{thm [display] dm_depend_threads range_in} |
|
702 |
\end{enumerate} |
|
703 |
*} |
|
704 |
||
705 |
text {* \noindent |
|
706 |
The following lemmas show how every node in RAG can be chased to ready threads: |
|
707 |
\begin{enumerate} |
|
708 |
\item Every node in RAG can be chased to a ready thread (@{text "chain_building"}): |
|
709 |
@{thm [display] chain_building[rule_format]} |
|
710 |
\item The ready thread chased to is unique (@{text "dchain_unique"}): |
|
711 |
@{thm [display] dchain_unique[of _ _ "th\<^isub>1" "th\<^isub>2"]} |
|
712 |
\end{enumerate} |
|
713 |
*} |
|
714 |
||
715 |
text {* \noindent |
|
716 |
Properties about @{term "next_th"}: |
|
717 |
\begin{enumerate} |
|
718 |
\item The thread taking over is different from the thread which is releasing |
|
719 |
(@{text "next_th_neq"}): |
|
720 |
@{thm [display] next_th_neq} |
|
721 |
\item The thread taking over is unique |
|
722 |
(@{text "next_th_unique"}): |
|
723 |
@{thm [display] next_th_unique[of _ _ _ "th\<^isub>1" "th\<^isub>2"]} |
|
724 |
\end{enumerate} |
|
725 |
*} |
|
726 |
||
727 |
text {* \noindent |
|
728 |
Some deeper results about the system: |
|
729 |
\begin{enumerate} |
|
730 |
\item There can only be one running thread (@{text "runing_unique"}): |
|
731 |
@{thm [display] runing_unique[of _ "th\<^isub>1" "th\<^isub>2"]} |
|
732 |
\item The maximum of @{term "cp"} and @{term "preced"} are equal (@{text "max_cp_eq"}): |
|
733 |
@{thm [display] max_cp_eq} |
|
734 |
\item There must be one ready thread having the max @{term "cp"}-value |
|
735 |
(@{text "max_cp_readys_threads"}): |
|
736 |
@{thm [display] max_cp_readys_threads} |
|
737 |
\end{enumerate} |
|
738 |
*} |
|
739 |
||
740 |
text {* \noindent |
|
741 |
The relationship between the count of @{text "P"} and @{text "V"} and the number of |
|
742 |
critical resources held by a thread is given as follows: |
|
743 |
\begin{enumerate} |
|
744 |
\item The @{term "V"}-operation decreases the number of critical resources |
|
745 |
one thread holds (@{text "cntCS_v_dec"}) |
|
746 |
@{thm [display] cntCS_v_dec} |
|
747 |
\item The number of @{text "V"} never exceeds the number of @{text "P"} |
|
748 |
(@{text "cnp_cnv_cncs"}): |
|
749 |
@{thm [display] cnp_cnv_cncs} |
|
750 |
\item The number of @{text "V"} equals the number of @{text "P"} when |
|
751 |
the relevant thread is not living: |
|
752 |
(@{text "cnp_cnv_eq"}): |
|
753 |
@{thm [display] cnp_cnv_eq} |
|
754 |
\item When a thread is not living, it does not hold any critical resource |
|
755 |
(@{text "not_thread_holdents"}): |
|
756 |
@{thm [display] not_thread_holdents} |
|
757 |
\item When the number of @{text "P"} equals the number of @{text "V"}, the relevant |
|
758 |
thread does not hold any critical resource, therefore no thread can depend on it |
|
759 |
(@{text "count_eq_dependents"}): |
|
760 |
@{thm [display] count_eq_dependents} |
|
761 |
\end{enumerate} |
|
762 |
*} |
|
262 | 763 |
|
764 |
section {* Key properties \label{extension} *} |
|
765 |
||
264 | 766 |
(*<*) |
767 |
context extend_highest_gen |
|
768 |
begin |
|
769 |
(*>*) |
|
770 |
||
771 |
text {* |
|
772 |
The essential of {\em Priority Inheritance} is to avoid indefinite priority inversion. For this |
|
773 |
purpose, we need to investigate what happens after one thread takes the highest precedence. |
|
774 |
A locale is used to describe such a situation, which assumes: |
|
775 |
\begin{enumerate} |
|
776 |
\item @{term "s"} is a valid state (@{text "vt_s"}): |
|
777 |
@{thm vt_s}. |
|
778 |
\item @{term "th"} is a living thread in @{term "s"} (@{text "threads_s"}): |
|
779 |
@{thm threads_s}. |
|
780 |
\item @{term "th"} has the highest precedence in @{term "s"} (@{text "highest"}): |
|
781 |
@{thm highest}. |
|
782 |
\item The precedence of @{term "th"} is @{term "Prc prio tm"} (@{text "preced_th"}): |
|
783 |
@{thm preced_th}. |
|
784 |
\end{enumerate} |
|
785 |
*} |
|
786 |
||
787 |
text {* \noindent |
|
788 |
Under these assumptions, some basic priority can be derived for @{term "th"}: |
|
789 |
\begin{enumerate} |
|
790 |
\item The current precedence of @{term "th"} equals its own precedence (@{text "eq_cp_s_th"}): |
|
791 |
@{thm [display] eq_cp_s_th} |
|
792 |
\item The current precedence of @{term "th"} is the highest precedence in |
|
793 |
the system (@{text "highest_cp_preced"}): |
|
794 |
@{thm [display] highest_cp_preced} |
|
795 |
\item The precedence of @{term "th"} is the highest precedence |
|
796 |
in the system (@{text "highest_preced_thread"}): |
|
797 |
@{thm [display] highest_preced_thread} |
|
798 |
\item The current precedence of @{term "th"} is the highest current precedence |
|
799 |
in the system (@{text "highest'"}): |
|
800 |
@{thm [display] highest'} |
|
801 |
\end{enumerate} |
|
802 |
*} |
|
803 |
||
804 |
text {* \noindent |
|
805 |
To analysis what happens after state @{term "s"} a sub-locale is defined, which |
|
806 |
assumes: |
|
807 |
\begin{enumerate} |
|
808 |
\item @{term "t"} is a valid extension of @{term "s"} (@{text "vt_t"}): @{thm vt_t}. |
|
809 |
\item Any thread created in @{term "t"} has priority no higher than @{term "prio"}, therefore |
|
810 |
its precedence can not be higher than @{term "th"}, therefore |
|
811 |
@{term "th"} remain to be the one with the highest precedence |
|
812 |
(@{text "create_low"}): |
|
813 |
@{thm [display] create_low} |
|
814 |
\item Any adjustment of priority in |
|
815 |
@{term "t"} does not happen to @{term "th"} and |
|
816 |
the priority set is no higher than @{term "prio"}, therefore |
|
817 |
@{term "th"} remain to be the one with the highest precedence (@{text "set_diff_low"}): |
|
818 |
@{thm [display] set_diff_low} |
|
819 |
\item Since we are investigating what happens to @{term "th"}, it is assumed |
|
820 |
@{term "th"} does not exit during @{term "t"} (@{text "exit_diff"}): |
|
821 |
@{thm [display] exit_diff} |
|
822 |
\end{enumerate} |
|
823 |
*} |
|
824 |
||
825 |
text {* \noindent |
|
826 |
All these assumptions are put into a predicate @{term "extend_highest_gen"}. |
|
827 |
It can be proved that @{term "extend_highest_gen"} holds |
|
828 |
for any moment @{text "i"} in it @{term "t"} (@{text "red_moment"}): |
|
829 |
@{thm [display] red_moment} |
|
830 |
||
831 |
From this, an induction principle can be derived for @{text "t"}, so that |
|
832 |
properties already derived for @{term "t"} can be applied to any prefix |
|
833 |
of @{text "t"} in the proof of new properties |
|
834 |
about @{term "t"} (@{text "ind"}): |
|
835 |
\begin{center} |
|
836 |
@{thm[display] ind} |
|
837 |
\end{center} |
|
838 |
||
839 |
The following properties can be proved about @{term "th"} in @{term "t"}: |
|
840 |
\begin{enumerate} |
|
841 |
\item In @{term "t"}, thread @{term "th"} is kept live and its |
|
842 |
precedence is preserved as well |
|
843 |
(@{text "th_kept"}): |
|
844 |
@{thm [display] th_kept} |
|
845 |
\item In @{term "t"}, thread @{term "th"}'s precedence is always the maximum among |
|
846 |
all living threads |
|
847 |
(@{text "max_preced"}): |
|
848 |
@{thm [display] max_preced} |
|
849 |
\item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum precedence |
|
850 |
among all living threads |
|
851 |
(@{text "th_cp_max_preced"}): |
|
852 |
@{thm [display] th_cp_max_preced} |
|
853 |
\item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum current |
|
854 |
precedence among all living threads |
|
855 |
(@{text "th_cp_max"}): |
|
856 |
@{thm [display] th_cp_max} |
|
857 |
\item In @{term "t"}, thread @{term "th"}'s current precedence equals its precedence at moment |
|
858 |
@{term "s"} |
|
859 |
(@{text "th_cp_preced"}): |
|
860 |
@{thm [display] th_cp_preced} |
|
861 |
\end{enumerate} |
|
862 |
*} |
|
863 |
||
864 |
text {* \noindent |
|
266 | 865 |
The main theorem of this part is to characterizing the running thread during @{term "t"} |
264 | 866 |
(@{text "runing_inversion_2"}): |
867 |
@{thm [display] runing_inversion_2} |
|
868 |
According to this, if a thread is running, it is either @{term "th"} or was |
|
869 |
already live and held some resource |
|
870 |
at moment @{text "s"} (expressed by: @{text "cntV s th' < cntP s th'"}). |
|
871 |
||
872 |
Since there are only finite many threads live and holding some resource at any moment, |
|
873 |
if every such thread can release all its resources in finite duration, then after finite |
|
874 |
duration, none of them may block @{term "th"} anymore. So, no priority inversion may happen |
|
875 |
then. |
|
876 |
*} |
|
877 |
||
878 |
(*<*) |
|
879 |
end |
|
880 |
(*>*) |
|
881 |
||
262 | 882 |
section {* Properties to guide implementation \label{implement} *} |
883 |
||
264 | 884 |
text {* |
266 | 885 |
The properties (especially @{text "runing_inversion_2"}) convinced us that the model defined |
886 |
in Section \ref{model} does prevent indefinite priority inversion and therefore fulfills |
|
264 | 887 |
the fundamental requirement of Priority Inheritance protocol. Another purpose of this paper |
266 | 888 |
is to show how this model can be used to guide a concrete implementation. As discussed in |
276 | 889 |
Section 5.6.5 of \cite{Vahalia96}, the implementation of Priority Inheritance in Solaris |
266 | 890 |
uses sophisticated linking data structure. Except discussing two scenarios to show how |
891 |
the data structure should be manipulated, a lot of details of the implementation are missing. |
|
892 |
In \cite{Faria08,conf/fase/JahierHR09,WellingsBSB07} the protocol is described formally |
|
893 |
using different notations, but little information is given on how this protocol can be |
|
894 |
implemented efficiently, especially there is no information on how these data structure |
|
895 |
should be manipulated. |
|
896 |
||
897 |
Because the scheduling of threads is based on current precedence, |
|
898 |
the central issue in implementation of Priority Inheritance is how to compute the precedence |
|
899 |
correctly and efficiently. As long as the precedence is correct, it is very easy to |
|
900 |
modify the scheduling algorithm to select the correct thread to execute. |
|
901 |
||
902 |
First, it can be proved that the computation of current precedence @{term "cp"} of a threads |
|
903 |
only involves its children (@{text "cp_rec"}): |
|
904 |
@{thm [display] cp_rec} |
|
905 |
where @{term "children s th"} represents the set of children of @{term "th"} in the current |
|
906 |
RAG: |
|
907 |
\[ |
|
908 |
@{thm (lhs) children_def} @{text "\<equiv>"} @{thm (rhs) children_def} |
|
909 |
\] |
|
910 |
where the definition of @{term "child"} is: |
|
911 |
\[ @{thm (lhs) child_def} @{text "\<equiv>"} @{thm (rhs) child_def} |
|
912 |
\] |
|
913 |
||
914 |
The aim of this section is to fill the missing details of how current precedence should |
|
915 |
be changed with the happening of events, with each event type treated by one subsection, |
|
916 |
where the computation of @{term "cp"} uses lemma @{text "cp_rec"}. |
|
917 |
*} |
|
918 |
||
919 |
subsection {* Event @{text "Set th prio"} *} |
|
920 |
||
921 |
(*<*) |
|
922 |
context step_set_cps |
|
923 |
begin |
|
924 |
(*>*) |
|
925 |
||
926 |
text {* |
|
927 |
The context under which event @{text "Set th prio"} happens is formalized as follows: |
|
928 |
\begin{enumerate} |
|
929 |
\item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}. |
|
930 |
\item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies |
|
931 |
event @{text "Set th prio"} is eligible to happen under state @{term "s'"} and |
|
932 |
state @{term "s'"} is a valid state. |
|
933 |
\end{enumerate} |
|
264 | 934 |
*} |
935 |
||
266 | 936 |
text {* \noindent |
937 |
Under such a context, we investigated how the current precedence @{term "cp"} of |
|
938 |
threads change from state @{term "s'"} to @{term "s"} and obtained the following |
|
939 |
conclusions: |
|
940 |
\begin{enumerate} |
|
941 |
%% \item The RAG does not change (@{text "eq_dep"}): @{thm "eq_dep"}. |
|
942 |
\item All threads with no dependence relation with thread @{term "th"} have their |
|
943 |
@{term "cp"}-value unchanged (@{text "eq_cp"}): |
|
944 |
@{thm [display] eq_cp} |
|
945 |
This lemma implies the @{term "cp"}-value of @{term "th"} |
|
946 |
and those threads which have a dependence relation with @{term "th"} might need |
|
947 |
to be recomputed. The way to do this is to start from @{term "th"} |
|
948 |
and follow the @{term "depend"}-chain to recompute the @{term "cp"}-value of every |
|
949 |
encountered thread using lemma @{text "cp_rec"}. |
|
950 |
Since the @{term "depend"}-relation is loop free, this procedure |
|
951 |
can always stop. The the following lemma shows this procedure actually could stop earlier. |
|
952 |
\item The following two lemma shows, if a thread the re-computation of which |
|
953 |
gives an unchanged @{term "cp"}-value, the procedure described above can stop. |
|
954 |
\begin{enumerate} |
|
955 |
\item Lemma @{text "eq_up_self"} shows if the re-computation of |
|
956 |
@{term "th"}'s @{term "cp"} gives the same result, the procedure can stop: |
|
957 |
@{thm [display] eq_up_self} |
|
958 |
\item Lemma @{text "eq_up"}) shows if the re-computation at intermediate threads |
|
959 |
gives unchanged result, the procedure can stop: |
|
960 |
@{thm [display] eq_up} |
|
961 |
\end{enumerate} |
|
962 |
\end{enumerate} |
|
963 |
*} |
|
964 |
||
965 |
(*<*) |
|
966 |
end |
|
967 |
(*>*) |
|
264 | 968 |
|
272 | 969 |
subsection {* Event @{text "V th cs"} *} |
970 |
||
971 |
(*<*) |
|
972 |
context step_v_cps_nt |
|
973 |
begin |
|
974 |
(*>*) |
|
975 |
||
976 |
text {* |
|
977 |
The context under which event @{text "V th cs"} happens is formalized as follows: |
|
978 |
\begin{enumerate} |
|
979 |
\item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}. |
|
980 |
\item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies |
|
981 |
event @{text "V th cs"} is eligible to happen under state @{term "s'"} and |
|
982 |
state @{term "s'"} is a valid state. |
|
983 |
\end{enumerate} |
|
984 |
*} |
|
985 |
||
986 |
text {* \noindent |
|
987 |
Under such a context, we investigated how the current precedence @{term "cp"} of |
|
988 |
threads change from state @{term "s'"} to @{term "s"}. |
|
989 |
||
990 |
||
991 |
Two subcases are considerted, |
|
992 |
where the first is that there exits @{term "th'"} |
|
993 |
such that |
|
994 |
@{thm [display] nt} |
|
995 |
holds, which means there exists a thread @{term "th'"} to take over |
|
996 |
the resource release by thread @{term "th"}. |
|
997 |
In this sub-case, the following results are obtained: |
|
998 |
\begin{enumerate} |
|
999 |
\item The change of RAG is given by lemma @{text "depend_s"}: |
|
1000 |
@{thm [display] "depend_s"} |
|
1001 |
which shows two edges are removed while one is added. These changes imply how |
|
1002 |
the current precedences should be re-computed. |
|
1003 |
\item First all threads different from @{term "th"} and @{term "th'"} have their |
|
1004 |
@{term "cp"}-value kept, therefore do not need a re-computation |
|
1005 |
(@{text "cp_kept"}): @{thm [display] cp_kept} |
|
1006 |
This lemma also implies, only the @{term "cp"}-values of @{term "th"} and @{term "th'"} |
|
1007 |
need to be recomputed. |
|
1008 |
\end{enumerate} |
|
1009 |
*} |
|
1010 |
||
1011 |
(*<*) |
|
1012 |
end |
|
1013 |
||
1014 |
context step_v_cps_nnt |
|
1015 |
begin |
|
1016 |
(*>*) |
|
1017 |
||
1018 |
text {* |
|
1019 |
The other sub-case is when for all @{text "th'"} |
|
1020 |
@{thm [display] nnt} |
|
1021 |
holds, no such thread exists. The following results can be obtained for this |
|
1022 |
sub-case: |
|
1023 |
\begin{enumerate} |
|
1024 |
\item The change of RAG is given by lemma @{text "depend_s"}: |
|
1025 |
@{thm [display] depend_s} |
|
1026 |
which means only one edge is removed. |
|
1027 |
\item In this case, no re-computation is needed (@{text "eq_cp"}): |
|
1028 |
@{thm [display] eq_cp} |
|
1029 |
\end{enumerate} |
|
1030 |
*} |
|
1031 |
||
1032 |
(*<*) |
|
1033 |
end |
|
1034 |
(*>*) |
|
1035 |
||
1036 |
||
1037 |
subsection {* Event @{text "P th cs"} *} |
|
1038 |
||
1039 |
(*<*) |
|
1040 |
context step_P_cps_e |
|
1041 |
begin |
|
1042 |
(*>*) |
|
1043 |
||
1044 |
text {* |
|
1045 |
The context under which event @{text "P th cs"} happens is formalized as follows: |
|
1046 |
\begin{enumerate} |
|
1047 |
\item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}. |
|
1048 |
\item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies |
|
1049 |
event @{text "P th cs"} is eligible to happen under state @{term "s'"} and |
|
1050 |
state @{term "s'"} is a valid state. |
|
1051 |
\end{enumerate} |
|
1052 |
||
1053 |
This case is further divided into two sub-cases. The first is when @{thm ee} holds. |
|
1054 |
The following results can be obtained: |
|
1055 |
\begin{enumerate} |
|
1056 |
\item One edge is added to the RAG (@{text "depend_s"}): |
|
1057 |
@{thm [display] depend_s} |
|
1058 |
\item No re-computation is needed (@{text "eq_cp"}): |
|
1059 |
@{thm [display] eq_cp} |
|
1060 |
\end{enumerate} |
|
1061 |
*} |
|
1062 |
||
1063 |
(*<*) |
|
1064 |
end |
|
1065 |
||
1066 |
context step_P_cps_ne |
|
1067 |
begin |
|
1068 |
(*>*) |
|
1069 |
||
1070 |
text {* |
|
1071 |
The second is when @{thm ne} holds. |
|
1072 |
The following results can be obtained: |
|
1073 |
\begin{enumerate} |
|
1074 |
\item One edge is added to the RAG (@{text "depend_s"}): |
|
1075 |
@{thm [display] depend_s} |
|
1076 |
\item Threads with no dependence relation with @{term "th"} do not need a re-computation |
|
1077 |
of their @{term "cp"}-values (@{text "eq_cp"}): |
|
1078 |
@{thm [display] eq_cp} |
|
1079 |
This lemma implies all threads with a dependence relation with @{term "th"} may need |
|
1080 |
re-computation. |
|
1081 |
\item Similar to the case of @{term "Set"}, the computation procedure could stop earlier |
|
1082 |
(@{text "eq_up"}): |
|
1083 |
@{thm [display] eq_up} |
|
1084 |
\end{enumerate} |
|
1085 |
||
1086 |
*} |
|
1087 |
||
1088 |
(*<*) |
|
1089 |
end |
|
1090 |
(*>*) |
|
1091 |
||
1092 |
subsection {* Event @{text "Create th prio"} *} |
|
1093 |
||
1094 |
(*<*) |
|
1095 |
context step_create_cps |
|
1096 |
begin |
|
1097 |
(*>*) |
|
1098 |
||
1099 |
text {* |
|
1100 |
The context under which event @{text "Create th prio"} happens is formalized as follows: |
|
1101 |
\begin{enumerate} |
|
1102 |
\item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}. |
|
1103 |
\item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies |
|
1104 |
event @{text "Create th prio"} is eligible to happen under state @{term "s'"} and |
|
1105 |
state @{term "s'"} is a valid state. |
|
1106 |
\end{enumerate} |
|
1107 |
The following results can be obtained under this context: |
|
1108 |
\begin{enumerate} |
|
1109 |
\item The RAG does not change (@{text "eq_dep"}): |
|
1110 |
@{thm [display] eq_dep} |
|
1111 |
\item All threads other than @{term "th"} do not need re-computation (@{text "eq_cp"}): |
|
1112 |
@{thm [display] eq_cp} |
|
1113 |
\item The @{term "cp"}-value of @{term "th"} equals its precedence |
|
1114 |
(@{text "eq_cp_th"}): |
|
1115 |
@{thm [display] eq_cp_th} |
|
1116 |
\end{enumerate} |
|
1117 |
||
1118 |
*} |
|
1119 |
||
1120 |
||
1121 |
(*<*) |
|
1122 |
end |
|
1123 |
(*>*) |
|
1124 |
||
1125 |
subsection {* Event @{text "Exit th"} *} |
|
1126 |
||
1127 |
(*<*) |
|
1128 |
context step_exit_cps |
|
1129 |
begin |
|
1130 |
(*>*) |
|
1131 |
||
1132 |
text {* |
|
1133 |
The context under which event @{text "Exit th"} happens is formalized as follows: |
|
1134 |
\begin{enumerate} |
|
1135 |
\item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}. |
|
1136 |
\item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies |
|
1137 |
event @{text "Exit th"} is eligible to happen under state @{term "s'"} and |
|
1138 |
state @{term "s'"} is a valid state. |
|
1139 |
\end{enumerate} |
|
1140 |
The following results can be obtained under this context: |
|
1141 |
\begin{enumerate} |
|
1142 |
\item The RAG does not change (@{text "eq_dep"}): |
|
1143 |
@{thm [display] eq_dep} |
|
1144 |
\item All threads other than @{term "th"} do not need re-computation (@{text "eq_cp"}): |
|
1145 |
@{thm [display] eq_cp} |
|
1146 |
\end{enumerate} |
|
1147 |
Since @{term th} does not live in state @{term "s"}, there is no need to compute |
|
1148 |
its @{term cp}-value. |
|
1149 |
*} |
|
1150 |
||
1151 |
(*<*) |
|
1152 |
end |
|
1153 |
(*>*) |
|
1154 |
||
1155 |
||
262 | 1156 |
section {* Related works \label{related} *} |
1157 |
||
1158 |
text {* |
|
1159 |
\begin{enumerate} |
|
1160 |
\item {\em Integrating Priority Inheritance Algorithms in the Real-Time Specification for Java} |
|
1161 |
\cite{WellingsBSB07} models and verifies the combination of Priority Inheritance (PI) and |
|
1162 |
Priority Ceiling Emulation (PCE) protocols in the setting of Java virtual machine |
|
1163 |
using extended Timed Automata(TA) formalism of the UPPAAL tool. Although a detailed |
|
1164 |
formal model of combined PI and PCE is given, the number of properties is quite |
|
1165 |
small and the focus is put on the harmonious working of PI and PCE. Most key features of PI |
|
1166 |
(as well as PCE) are not shown. Because of the limitation of the model checking technique |
|
1167 |
used there, properties are shown only for a small number of scenarios. Therefore, |
|
1168 |
the verification does not show the correctness of the formal model itself in a |
|
1169 |
convincing way. |
|
1170 |
\item {\em Formal Development of Solutions for Real-Time Operating Systems with TLA+/TLC} |
|
1171 |
\cite{Faria08}. A formal model of PI is given in TLA+. Only 3 properties are shown |
|
1172 |
for PI using model checking. The limitation of model checking is intrinsic to the work. |
|
1173 |
\item {\em Synchronous modeling and validation of priority inheritance schedulers} |
|
1174 |
\cite{conf/fase/JahierHR09}. Gives a formal model |
|
1175 |
of PI and PCE in AADL (Architecture Analysis \& Design Language) and checked |
|
1176 |
several properties using model checking. The number of properties shown there is |
|
1177 |
less than here and the scale is also limited by the model checking technique. |
|
1178 |
\item {\em The Priority Ceiling Protocol: Formalization and Analysis Using PVS} |
|
1179 |
\cite{dutertre99b}. Formalized another protocol for Priority Inversion in the |
|
1180 |
interactive theorem proving system PVS. |
|
1181 |
\end{enumerate} |
|
1182 |
||
1183 |
||
1184 |
There are several works on inversion avoidance: |
|
1185 |
\begin{enumerate} |
|
1186 |
\item {\em Solving the group priority inversion problem in a timed asynchronous system} |
|
1187 |
\cite{Wang:2002:SGP}. The notion of Group Priority Inversion is introduced. The main |
|
1188 |
strategy is still inversion avoidance. The method is by reordering requests |
|
1189 |
in the setting of Client-Server. |
|
1190 |
\item {\em A Formalization of Priority Inversion} \cite{journals/rts/BabaogluMS93}. |
|
1191 |
Formalized the notion of Priority |
|
1192 |
Inversion and proposes methods to avoid it. |
|
1193 |
\end{enumerate} |
|
1194 |
||
1195 |
{\em Examples of inaccurate specification of the protocol ???}. |
|
1196 |
||
1197 |
*} |
|
1198 |
||
1199 |
section {* Conclusions \label{conclusion} *} |
|
1200 |
||
286 | 1201 |
text {* |
1202 |
The work in this paper only deals with single CPU configurations. The |
|
1203 |
"one CPU" assumption is essential for our formalisation, because the |
|
1204 |
main lemma fails in multi-CPU configuration. The lemma says that any |
|
1205 |
runing thead must be the one with the highest prioirty or already held |
|
1206 |
some resource when the highest priority thread was initiated. When |
|
1207 |
there are multiple CPUs, it may well be the case that a threads did |
|
1208 |
not hold any resource when the highest priority thread was initiated, |
|
1209 |
but that thread still runs after that moment on a separate CPU. In |
|
1210 |
this way, the main lemma does not hold anymore. |
|
1211 |
||
1212 |
||
1213 |
There are some works deals with priority inversion in multi-CPU |
|
1214 |
configurations[???], but none of them have given a formal correctness |
|
1215 |
proof. The extension of our formal proof to deal with multi-CPU |
|
1216 |
configurations is not obvious. One possibility, as suggested in paper |
|
1217 |
[???], is change our formal model (the defiintion of "schs") to give |
|
1218 |
the released resource to the thread with the highest prioirty. In this |
|
1219 |
way, indefinite prioirty inversion can be avoided, but for a quite |
|
1220 |
different reason from the one formalized in this paper (because the |
|
1221 |
"mail lemma" will be different). This means a formal correctness proof |
|
1222 |
for milt-CPU configuration would be quite different from the one given |
|
1223 |
in this paper. The solution of prioirty inversion problem in mult-CPU |
|
1224 |
configurations is a different problem which needs different solutions |
|
1225 |
which is outside the scope of this paper. |
|
1226 |
||
1227 |
*} |
|
1228 |
||
262 | 1229 |
(*<*) |
1230 |
end |
|
1231 |
(*>*) |