prio/Paper/Paper.thy
author urbanc
Tue, 24 Jan 2012 00:20:09 +0000
changeset 262 4190df6f4488
child 264 24199eb2c423
permissions -rwxr-xr-x
initial version of the PIP formalisation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     1
(*<*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     2
theory Paper
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     3
imports CpsG ExtGG
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     4
begin
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     5
(*>*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     6
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     7
section {* Introduction *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     8
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     9
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    10
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    11
  Priority inversion referrers to the phenomena where tasks with higher 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    12
  priority are blocked by ones with lower priority. If priority inversion 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    13
  is not controlled, there will be no guarantee the urgent tasks will be 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    14
  processed in time. As reported in \cite{Reeves-Glenn-1998}, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    15
  priority inversion used to cause software system resets and data lose in 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    16
  JPL's Mars pathfinder project. Therefore, the avoiding, detecting and controlling 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    17
  of priority inversion is a key issue to attain predictability in priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    18
  based real-time systems. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    19
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    20
  The priority inversion phenomenon was first published in \cite{Lampson:Redell:cacm:1980}. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    21
  The two protocols widely used to eliminate priority inversion, namely 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    22
  PI (Priority Inheritance) and PCE (Priority Ceiling Emulation), were proposed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    23
  in \cite{journals/tc/ShaRL90}. PCE is less convenient to use because it requires 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    24
  static analysis of programs. Therefore, PI is more commonly used in 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    25
  practice\cite{locke-july02}. However, as pointed out in the literature, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    26
  the analysis of priority inheritance protocol is quite subtle\cite{yodaiken-july02}. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    27
  A formal analysis will certainly be helpful for us to understand and correctly 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    28
  implement PI. All existing formal analysis of PI
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    29
  \cite{conf/fase/JahierHR09,WellingsBSB07,Faria08} are based on the model checking 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    30
  technology. Because of the state explosion problem, model check 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    31
  is much like an exhaustive testing of finite models with limited size. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    32
  The results obtained can not be safely generalized to models with arbitrarily 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    33
  large size. Worse still, since model checking is fully automatic, it give little 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    34
  insight on why the formal model is correct. It is therefore 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    35
  definitely desirable to analyze PI using theorem proving, which gives 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    36
  more general results as well as deeper insight. And this is the purpose 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    37
  of this paper which gives a formal analysis of PI in the interactive 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    38
  theorem prover Isabelle using Higher Order Logic (HOL). The formalization 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    39
  focuses on on two issues:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    40
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    41
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    42
  \item The correctness of the protocol model itself. A series of desirable properties is 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    43
    derived until we are fully convinced that the formal model of PI does 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    44
    eliminate priority inversion. And a better understanding of PI is so obtained 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    45
    in due course. For example, we find through formalization that the choice of 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    46
    next thread to take hold when a 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    47
    resource is released is irrelevant for the very basic property of PI to hold. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    48
    A point never mentioned in literature. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    49
  \item The correctness of the implementation. A series of properties is derived the meaning 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    50
    of which can be used as guidelines on how PI can be implemented efficiently and correctly. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    51
  \end{enumerate} 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    52
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    53
  The rest of the paper is organized as follows: Section \ref{overview} gives an overview 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    54
  of PI. Section \ref{model} introduces the formal model of PI. Section \ref{general} 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    55
  discusses a series of basic properties of PI. Section \ref{extension} shows formally 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    56
  how priority inversion is controlled by PI. Section \ref{implement} gives properties 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    57
  which can be used for guidelines of implementation. Section \ref{related} discusses 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    58
  related works. Section \ref{conclusion} concludes the whole paper.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    59
*}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    60
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    61
section {* An overview of priority inversion and priority inheritance \label{overview} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    62
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    63
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    64
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    65
  Priority inversion refers to the phenomenon when a thread with high priority is blocked 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    66
  by a thread with low priority. Priority happens when the high priority thread requests 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    67
  for some critical resource already taken by the low priority thread. Since the high 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    68
  priority thread has to wait for the low priority thread to complete, it is said to be 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    69
  blocked by the low priority thread. Priority inversion might prevent high priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    70
  thread from fulfill its task in time if the duration of priority inversion is indefinite 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    71
  and unpredictable. Indefinite priority inversion happens when indefinite number 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    72
  of threads with medium priorities is activated during the period when the high 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    73
  priority thread is blocked by the low priority thread. Although these medium 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    74
  priority threads can not preempt the high priority thread directly, they are able 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    75
  to preempt the low priority threads and cause it to stay in critical section for 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    76
  an indefinite long duration. In this way, the high priority thread may be blocked indefinitely. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    77
  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    78
  Priority inheritance is one protocol proposed to avoid indefinite priority inversion. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    79
  The basic idea is to let the high priority thread donate its priority to the low priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    80
  thread holding the critical resource, so that it will not be preempted by medium priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    81
  threads. The thread with highest priority will not be blocked unless it is requesting 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    82
  some critical resource already taken by other threads. Viewed from a different angle, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    83
  any thread which is able to block the highest priority threads must already hold some 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    84
  critical resource. Further more, it must have hold some critical resource at the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    85
  moment the highest priority is created, otherwise, it may never get change to run and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    86
  get hold. Since the number of such resource holding lower priority threads is finite, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    87
  if every one of them finishes with its own critical section in a definite duration, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    88
  the duration the highest priority thread is blocked is definite as well. The key to 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    89
  guarantee lower priority threads to finish in definite is to donate them the highest 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    90
  priority. In such cases, the lower priority threads is said to have inherited the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    91
  highest priority. And this explains the name of the protocol: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    92
  {\em Priority Inheritance} and how Priority Inheritance prevents indefinite delay.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    93
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    94
  The objectives of this paper are:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    95
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    96
  \item Build the above mentioned idea into formal model and prove a series of properties 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    97
    until we are convinced that the formal model does fulfill the original idea. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    98
  \item Show how formally derived properties can be used as guidelines for correct 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    99
    and efficient implementation.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   100
  \end{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   101
  The proof is totally formal in the sense that every detail is reduced to the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   102
  very first principles of Higher Order Logic. The nature of interactive theorem 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   103
  proving is for the human user to persuade computer program to accept its arguments. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   104
  A clear and simple understanding of the problem at hand is both a prerequisite and a 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   105
  byproduct of such an effort, because everything has finally be reduced to the very 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   106
  first principle to be checked mechanically. The former intuitive explanation of 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   107
  Priority Inheritance is just such a byproduct. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   108
  *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   109
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   110
section {* Formal model of Priority Inheritance \label{model} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   111
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   112
  \input{../../generated/PrioGDef}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   113
*}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   114
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   115
section {* General properties of Priority Inheritance \label{general} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   116
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   117
section {* Key properties \label{extension} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   118
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   119
section {* Properties to guide implementation \label{implement} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   120
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   121
section {* Related works \label{related} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   122
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   123
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   124
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   125
  \item {\em Integrating Priority Inheritance Algorithms in the Real-Time Specification for Java}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   126
    \cite{WellingsBSB07} models and verifies the combination of Priority Inheritance (PI) and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   127
    Priority Ceiling Emulation (PCE) protocols in the setting of Java virtual machine 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   128
    using extended Timed Automata(TA) formalism of the UPPAAL tool. Although a detailed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   129
    formal model of combined PI and PCE is given, the number of properties is quite 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   130
    small and the focus is put on the harmonious working of PI and PCE. Most key features of PI 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   131
    (as well as PCE) are not shown. Because of the limitation of the model checking technique
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   132
    used there, properties are shown only for a small number of scenarios. Therefore, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   133
    the verification does not show the correctness of the formal model itself in a 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   134
    convincing way.  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   135
  \item {\em Formal Development of Solutions for Real-Time Operating Systems with TLA+/TLC}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   136
    \cite{Faria08}. A formal model of PI is given in TLA+. Only 3 properties are shown 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   137
    for PI using model checking. The limitation of model checking is intrinsic to the work.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   138
  \item {\em Synchronous modeling and validation of priority inheritance schedulers}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   139
    \cite{conf/fase/JahierHR09}. Gives a formal model
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   140
    of PI and PCE in AADL (Architecture Analysis \& Design Language) and checked 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   141
    several properties using model checking. The number of properties shown there is 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   142
    less than here and the scale is also limited by the model checking technique. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   143
  \item {\em The Priority Ceiling Protocol: Formalization and Analysis Using PVS}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   144
    \cite{dutertre99b}. Formalized another protocol for Priority Inversion in the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   145
    interactive theorem proving system PVS.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   146
\end{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   147
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   148
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   149
  There are several works on inversion avoidance:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   150
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   151
  \item {\em Solving the group priority inversion problem in a timed asynchronous system}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   152
    \cite{Wang:2002:SGP}. The notion of Group Priority Inversion is introduced. The main 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   153
    strategy is still inversion avoidance. The method is by reordering requests 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   154
    in the setting of Client-Server.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   155
  \item {\em A Formalization of Priority Inversion} \cite{journals/rts/BabaogluMS93}. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   156
    Formalized the notion of Priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   157
    Inversion and proposes methods to avoid it. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   158
  \end{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   159
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   160
  {\em Examples of inaccurate specification of the protocol ???}.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   161
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   162
*}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   163
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   164
section {* Conclusions \label{conclusion} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   165
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   166
(*<*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   167
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   168
(*>*)