src/HOL/Auth/Kerberos_BAN.thy
author wenzelm
Mon, 09 Oct 2006 02:19:49 +0200
changeset 20897 3f8d2834b2c4
parent 20768 1d478c2d621f
child 21404 eb85850d3eb7
permissions -rw-r--r--
attribute: Context.mapping;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/Kerberos_BAN
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
     2
    ID:         $Id$
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
     3
    Author:     Giampaolo Bella, Cambridge University Computer Laboratory
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
     4
    Copyright   1998  University of Cambridge
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
     5
*)
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
     6
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
     7
header{*The Kerberos Protocol, BAN Version*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
     8
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 14207
diff changeset
     9
theory Kerberos_BAN imports Public begin
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    10
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    11
text{*From page 251 of
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    12
  Burrows, Abadi and Needham (1989).  A Logic of Authentication.
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    13
  Proc. Royal Soc. 426
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    14
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    15
  Confidentiality (secrecy) and authentication properties are also
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    16
  given in a termporal version: strong guarantees in a little abstracted 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    17
  - but very realistic - model.
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    18
*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    19
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    20
(* Temporal model of accidents: session keys can be leaked
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    21
                                ONLY when they have expired *)
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    22
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    23
consts
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    24
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    25
    (*Duration of the session key*)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    26
    sesKlife   :: nat
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    27
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    28
    (*Duration of the authenticator*)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    29
    authlife :: nat
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    30
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13926
diff changeset
    31
text{*The ticket should remain fresh for two journeys on the network at least*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    32
specification (sesKlife)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    33
  sesKlife_LB [iff]: "2 \<le> sesKlife"
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13926
diff changeset
    34
    by blast
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    35
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13926
diff changeset
    36
text{*The authenticator only for one journey*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    37
specification (authlife)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    38
  authlife_LB [iff]:    "0 < authlife"
14126
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13926
diff changeset
    39
    by blast
28824746d046 Tidying and replacement of some axioms by specifications
paulson
parents: 13926
diff changeset
    40
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    41
abbreviation
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    42
  CT :: "event list=>nat"
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    43
  "CT == length "
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    44
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    45
  expiredK :: "[nat, event list] => bool"
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    46
  "expiredK T evs == sesKlife + T < CT evs"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    47
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    48
  expiredA :: "[nat, event list] => bool"
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    49
  "expiredA T evs == authlife + T < CT evs"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    50
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    51
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    52
constdefs
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    53
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    54
 (* A is the true creator of X if she has sent X and X never appeared on
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    55
    the trace before this event. Recall that traces grow from head. *)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    56
  Issues :: "[agent, agent, msg, event list] => bool"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    57
             ("_ Issues _ with _ on _")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    58
   "A Issues B with X on evs ==
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    59
      \<exists>Y. Says A B Y \<in> set evs & X \<in> parts {Y} &
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    60
      X \<notin> parts (spies (takeWhile (% z. z  \<noteq> Says A B Y) (rev evs)))"
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    61
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    62
 (* Yields the subtrace of a given trace from its beginning to a given event *)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    63
  before :: "[event, event list] => event list" ("before _ on _")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    64
   "before ev on evs ==  takeWhile (% z. z ~= ev) (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    65
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    66
 (* States than an event really appears only once on a trace *)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    67
  Unique :: "[event, event list] => bool" ("Unique _ on _")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    68
   "Unique ev on evs == 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    69
      ev \<notin> set (tl (dropWhile (% z. z \<noteq> ev) evs))"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    70
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    71
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    72
consts  bankerberos   :: "event list set"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    73
inductive "bankerberos"
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    74
 intros
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    75
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    76
   Nil:  "[] \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    77
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    78
   Fake: "\<lbrakk> evsf \<in> bankerberos;  X \<in> synth (analz (spies evsf)) \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    79
	  \<Longrightarrow> Says Spy B X # evsf \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    80
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    81
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    82
   BK1:  "\<lbrakk> evs1 \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    83
	  \<Longrightarrow> Says A Server \<lbrace>Agent A, Agent B\<rbrace> # evs1
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    84
		\<in>  bankerberos"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    85
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    86
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    87
   BK2:  "\<lbrakk> evs2 \<in> bankerberos;  Key K \<notin> used evs2; K \<in> symKeys;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    88
	     Says A' Server \<lbrace>Agent A, Agent B\<rbrace> \<in> set evs2 \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    89
	  \<Longrightarrow> Says Server A
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    90
		(Crypt (shrK A)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    91
		   \<lbrace>Number (CT evs2), Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    92
		    (Crypt (shrK B) \<lbrace>Number (CT evs2), Agent A, Key K\<rbrace>)\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    93
		# evs2 \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    94
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    95
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    96
   BK3:  "\<lbrakk> evs3 \<in> bankerberos;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    97
	     Says S A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    98
	       \<in> set evs3;
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    99
	     Says A Server \<lbrace>Agent A, Agent B\<rbrace> \<in> set evs3;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   100
	     \<not> expiredK Tk evs3 \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   101
	  \<Longrightarrow> Says A B \<lbrace>Ticket, Crypt K \<lbrace>Agent A, Number (CT evs3)\<rbrace> \<rbrace>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   102
	       # evs3 \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   103
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   104
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   105
   BK4:  "\<lbrakk> evs4 \<in> bankerberos;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   106
	     Says A' B \<lbrace>(Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>),
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   107
			 (Crypt K \<lbrace>Agent A, Number Ta\<rbrace>) \<rbrace>: set evs4;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   108
	     \<not> expiredK Tk evs4;  \<not> expiredA Ta evs4 \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   109
	  \<Longrightarrow> Says B A (Crypt K (Number Ta)) # evs4
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   110
		\<in> bankerberos"
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   111
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   112
	(*Old session keys may become compromised*)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   113
   Oops: "\<lbrakk> evso \<in> bankerberos;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   114
         Says Server A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   115
	       \<in> set evso;
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   116
	     expiredK Tk evso \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   117
	  \<Longrightarrow> Notes Spy \<lbrace>Number Tk, Key K\<rbrace> # evso \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   118
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   119
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   120
declare Says_imp_knows_Spy [THEN parts.Inj, dest]
14200
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 14126
diff changeset
   121
declare parts.Body [dest]
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 14126
diff changeset
   122
declare analz_into_parts [dest]
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 14126
diff changeset
   123
declare Fake_parts_insert_in_Un [dest]
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   124
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   125
text{*A "possibility property": there are traces that reach the end.*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   126
lemma "\<lbrakk>Key K \<notin> used []; K \<in> symKeys\<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   127
       \<Longrightarrow> \<exists>Timestamp. \<exists>evs \<in> bankerberos.
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   128
             Says B A (Crypt K (Number Timestamp))
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   129
                  \<in> set evs"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   130
apply (cut_tac sesKlife_LB)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   131
apply (intro exI bexI)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   132
apply (rule_tac [2]
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   133
           bankerberos.Nil [THEN bankerberos.BK1, THEN bankerberos.BK2,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   134
                             THEN bankerberos.BK3, THEN bankerberos.BK4])
14200
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 14126
diff changeset
   135
apply (possibility, simp_all (no_asm_simp) add: used_Cons)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   136
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   137
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   138
subsection{*Lemmas for reasoning about predicate "Issues"*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   139
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   140
lemma spies_Says_rev: "spies (evs @ [Says A B X]) = insert X (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   141
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   142
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   143
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   144
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   145
lemma spies_Gets_rev: "spies (evs @ [Gets A X]) = spies evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   146
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   147
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   148
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   149
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   150
lemma spies_Notes_rev: "spies (evs @ [Notes A X]) =
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   151
          (if A:bad then insert X (spies evs) else spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   152
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   153
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   154
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   155
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   156
lemma spies_evs_rev: "spies evs = spies (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   157
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   158
apply (induct_tac [2] "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   159
apply (simp_all (no_asm_simp) add: spies_Says_rev spies_Gets_rev spies_Notes_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   160
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   161
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   162
lemmas parts_spies_evs_revD2 = spies_evs_rev [THEN equalityD2, THEN parts_mono]
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   163
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   164
lemma spies_takeWhile: "spies (takeWhile P evs) <=  spies evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   165
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   166
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   167
txt{* Resembles @{text"used_subset_append"} in theory Event.*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   168
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   169
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   170
lemmas parts_spies_takeWhile_mono = spies_takeWhile [THEN parts_mono]
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   171
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   172
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   173
text{*Lemmas for reasoning about predicate "before"*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   174
lemma used_Says_rev: "used (evs @ [Says A B X]) = parts {X} \<union> (used evs)";
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   175
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   176
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   177
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   178
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   179
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   180
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   181
lemma used_Notes_rev: "used (evs @ [Notes A X]) = parts {X} \<union> (used evs)";
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   182
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   183
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   184
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   185
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   186
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   187
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   188
lemma used_Gets_rev: "used (evs @ [Gets B X]) = used evs";
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   189
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   190
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   191
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   192
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   193
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   194
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   195
lemma used_evs_rev: "used evs = used (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   196
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   197
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   198
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   199
apply (simp add: used_Says_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   200
apply (simp add: used_Gets_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   201
apply (simp add: used_Notes_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   202
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   203
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   204
lemma used_takeWhile_used [rule_format]: 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   205
      "x : used (takeWhile P X) --> x : used X"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   206
apply (induct_tac "X")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   207
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   208
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   209
apply (simp_all add: used_Nil)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   210
apply (blast dest!: initState_into_used)+
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   211
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   212
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   213
lemma set_evs_rev: "set evs = set (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   214
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   215
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   216
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   217
lemma takeWhile_void [rule_format]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   218
      "x \<notin> set evs \<longrightarrow> takeWhile (\<lambda>z. z \<noteq> x) evs = evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   219
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   220
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   221
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   222
(**** Inductive proofs about bankerberos ****)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   223
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   224
text{*Forwarding Lemma for reasoning about the encrypted portion of message BK3*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   225
lemma BK3_msg_in_parts_spies:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   226
     "Says S A (Crypt KA \<lbrace>Timestamp, B, K, X\<rbrace>) \<in> set evs
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   227
      \<Longrightarrow> X \<in> parts (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   228
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   229
done
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   230
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   231
lemma Oops_parts_spies:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   232
     "Says Server A (Crypt (shrK A) \<lbrace>Timestamp, B, K, X\<rbrace>) \<in> set evs
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   233
      \<Longrightarrow> K \<in> parts (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   234
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   235
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   236
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   237
text{*Spy never sees another agent's shared key! (unless it's bad at start)*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   238
lemma Spy_see_shrK [simp]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   239
     "evs \<in> bankerberos \<Longrightarrow> (Key (shrK A) \<in> parts (spies evs)) = (A \<in> bad)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   240
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   241
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   242
apply (frule_tac [5] BK3_msg_in_parts_spies, simp_all, blast+)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   243
done
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   244
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   245
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   246
lemma Spy_analz_shrK [simp]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   247
     "evs \<in> bankerberos \<Longrightarrow> (Key (shrK A) \<in> analz (spies evs)) = (A \<in> bad)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   248
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   249
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   250
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   251
lemma Spy_see_shrK_D [dest!]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   252
     "\<lbrakk> Key (shrK A) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   253
                evs \<in> bankerberos \<rbrakk> \<Longrightarrow> A:bad"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   254
apply (blast dest: Spy_see_shrK)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   255
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   256
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   257
lemmas Spy_analz_shrK_D = analz_subset_parts [THEN subsetD, THEN Spy_see_shrK_D,  dest!]
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   258
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   259
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   260
text{*Nobody can have used non-existent keys!*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   261
lemma new_keys_not_used [simp]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   262
    "\<lbrakk>Key K \<notin> used evs; K \<in> symKeys; evs \<in> bankerberos\<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   263
     \<Longrightarrow> K \<notin> keysFor (parts (spies evs))"
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   264
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   265
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   266
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   267
apply (frule_tac [5] BK3_msg_in_parts_spies, simp_all)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   268
txt{*Fake*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   269
apply (force dest!: keysFor_parts_insert)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   270
txt{*BK2, BK3, BK4*}
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   271
apply (force dest!: analz_shrK_Decrypt)+
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   272
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   273
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   274
subsection{* Lemmas concerning the form of items passed in messages *}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   275
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   276
text{*Describes the form of K, X and K' when the Server sends this message.*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   277
lemma Says_Server_message_form:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   278
     "\<lbrakk> Says Server A (Crypt K' \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   279
         \<in> set evs; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   280
      \<Longrightarrow> K' = shrK A & K \<notin> range shrK &
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   281
          Ticket = (Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>) &
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   282
          Key K \<notin> used(before
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   283
                  Says Server A (Crypt K' \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   284
                  on evs) &
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   285
          Tk = CT(before 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   286
                  Says Server A (Crypt K' \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   287
                  on evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   288
apply (unfold before_def)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   289
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   290
apply (erule bankerberos.induct, simp_all)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   291
txt{*We need this simplification only for Message 2*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   292
apply (simp (no_asm) add: takeWhile_tail)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   293
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   294
txt{*Two subcases of Message 2. Subcase: used before*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   295
apply (blast dest: used_evs_rev [THEN equalityD2, THEN contra_subsetD] 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   296
                   used_takeWhile_used)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   297
txt{*subcase: CT before*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   298
apply (fastsimp dest!: set_evs_rev [THEN equalityD2, THEN contra_subsetD, THEN takeWhile_void])
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   299
done
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   300
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   301
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   302
text{*If the encrypted message appears then it originated with the Server
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   303
  PROVIDED that A is NOT compromised!
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   304
  This allows A to verify freshness of the session key.
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   305
*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   306
lemma Kab_authentic:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   307
     "\<lbrakk> Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   308
           \<in> parts (spies evs);
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   309
         A \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   310
       \<Longrightarrow> Says Server A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   311
             \<in> set evs"
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   312
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   313
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   314
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   315
apply (frule_tac [5] BK3_msg_in_parts_spies, simp_all, blast)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   316
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   317
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   318
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   319
text{*If the TICKET appears then it originated with the Server*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   320
text{*FRESHNESS OF THE SESSION KEY to B*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   321
lemma ticket_authentic:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   322
     "\<lbrakk> Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   323
         B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   324
       \<Longrightarrow> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   325
            (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   326
                          Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>\<rbrace>)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   327
           \<in> set evs"
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   328
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   329
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   330
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   331
apply (frule_tac [5] BK3_msg_in_parts_spies, simp_all, blast)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   332
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   333
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   334
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   335
text{*EITHER describes the form of X when the following message is sent,
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   336
  OR     reduces it to the Fake case.
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   337
  Use @{text Says_Server_message_form} if applicable.*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   338
lemma Says_S_message_form:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   339
     "\<lbrakk> Says S A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   340
            \<in> set evs;
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   341
         evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   342
 \<Longrightarrow> (K \<notin> range shrK & X = (Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>))
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   343
          | X \<in> analz (spies evs)"
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   344
apply (case_tac "A \<in> bad")
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   345
apply (force dest!: Says_imp_spies [THEN analz.Inj])
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   346
apply (frule Says_imp_spies [THEN parts.Inj])
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   347
apply (blast dest!: Kab_authentic Says_Server_message_form)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   348
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   349
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   350
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   351
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   352
(****
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   353
 The following is to prove theorems of the form
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   354
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   355
  Key K \<in> analz (insert (Key KAB) (spies evs)) \<Longrightarrow>
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   356
  Key K \<in> analz (spies evs)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   357
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   358
 A more general formula must be proved inductively.
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   359
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   360
****)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   361
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   362
text{* Session keys are not used to encrypt other session keys *}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   363
lemma analz_image_freshK [rule_format (no_asm)]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   364
     "evs \<in> bankerberos \<Longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   365
   \<forall>K KK. KK \<subseteq> - (range shrK) \<longrightarrow>
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   366
          (Key K \<in> analz (Key`KK Un (spies evs))) =
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   367
          (K \<in> KK | Key K \<in> analz (spies evs))"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   368
apply (erule bankerberos.induct)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   369
apply (drule_tac [7] Says_Server_message_form)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   370
apply (erule_tac [5] Says_S_message_form [THEN disjE], analz_freshK, spy_analz, auto) 
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   371
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   372
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   373
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   374
lemma analz_insert_freshK:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   375
     "\<lbrakk> evs \<in> bankerberos;  KAB \<notin> range shrK \<rbrakk> \<Longrightarrow>
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   376
      (Key K \<in> analz (insert (Key KAB) (spies evs))) =
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   377
      (K = KAB | Key K \<in> analz (spies evs))"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   378
apply (simp only: analz_image_freshK analz_image_freshK_simps)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   379
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   380
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   381
text{* The session key K uniquely identifies the message *}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   382
lemma unique_session_keys:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   383
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   384
           (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>) \<in> set evs;
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   385
         Says Server A'
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   386
          (Crypt (shrK A') \<lbrace>Number Tk', Agent B', Key K, X'\<rbrace>) \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   387
         evs \<in> bankerberos \<rbrakk> \<Longrightarrow> A=A' & Tk=Tk' & B=B' & X = X'"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   388
apply (erule rev_mp)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   389
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   390
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   391
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   392
apply (frule_tac [5] BK3_msg_in_parts_spies, simp_all)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   393
txt{*BK2: it can't be a new key*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   394
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   395
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   396
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   397
lemma Server_Unique:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   398
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   399
            (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>) \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   400
        evs \<in> bankerberos \<rbrakk> \<Longrightarrow> 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   401
   Unique Says Server A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   402
   on evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   403
apply (erule rev_mp, erule bankerberos.induct, simp_all add: Unique_def)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   404
apply blast
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   405
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   406
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   407
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   408
subsection{*Non-temporal guarantees, explicitly relying on non-occurrence of
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   409
oops events - refined below by temporal guarantees*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   410
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   411
text{*Non temporal treatment of confidentiality*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   412
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   413
text{* Lemma: the session key sent in msg BK2 would be lost by oops
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   414
    if the spy could see it! *}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   415
lemma lemma_conf [rule_format (no_asm)]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   416
     "\<lbrakk> A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   417
  \<Longrightarrow> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   418
          (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   419
                            Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   420
         \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   421
      Key K \<in> analz (spies evs) \<longrightarrow> Notes Spy \<lbrace>Number Tk, Key K\<rbrace> \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   422
apply (erule bankerberos.induct)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   423
apply (frule_tac [7] Says_Server_message_form)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   424
apply (frule_tac [5] Says_S_message_form [THEN disjE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   425
apply (simp_all (no_asm_simp) add: analz_insert_eq analz_insert_freshK pushes)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   426
txt{*Fake*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   427
apply spy_analz
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   428
txt{*BK2*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   429
apply (blast intro: parts_insertI)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   430
txt{*BK3*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   431
apply (case_tac "Aa \<in> bad")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   432
 prefer 2 apply (blast dest: Kab_authentic unique_session_keys)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   433
apply (blast dest: Says_imp_spies [THEN analz.Inj] Crypt_Spy_analz_bad elim!: MPair_analz)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   434
txt{*Oops*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   435
apply (blast dest: unique_session_keys)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   436
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   437
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   438
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   439
text{*Confidentiality for the Server: Spy does not see the keys sent in msg BK2
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   440
as long as they have not expired.*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   441
lemma Confidentiality_S:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   442
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   443
          (Crypt K' \<lbrace>Number Tk, Agent B, Key K, Ticket\<rbrace>) \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   444
        Notes Spy \<lbrace>Number Tk, Key K\<rbrace> \<notin> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   445
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   446
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   447
apply (frule Says_Server_message_form, assumption)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   448
apply (blast intro: lemma_conf)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   449
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   450
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   451
text{*Confidentiality for Alice*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   452
lemma Confidentiality_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   453
     "\<lbrakk> Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   454
        Notes Spy \<lbrace>Number Tk, Key K\<rbrace> \<notin> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   455
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   456
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   457
apply (blast dest!: Kab_authentic Confidentiality_S)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   458
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   459
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   460
text{*Confidentiality for Bob*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   461
lemma Confidentiality_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   462
     "\<lbrakk> Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   463
          \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   464
        Notes Spy \<lbrace>Number Tk, Key K\<rbrace> \<notin> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   465
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   466
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   467
apply (blast dest!: ticket_authentic Confidentiality_S)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   468
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   469
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   470
text{*Non temporal treatment of authentication*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   471
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   472
text{*Lemmas @{text lemma_A} and @{text lemma_B} in fact are common to both temporal and non-temporal treatments*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   473
lemma lemma_A [rule_format]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   474
     "\<lbrakk> A \<notin> bad; B \<notin> bad; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   475
      \<Longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   476
         Key K \<notin> analz (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   477
         Says Server A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   478
         \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   479
          Crypt K \<lbrace>Agent A, Number Ta\<rbrace> \<in> parts (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   480
         Says A B \<lbrace>X, Crypt K \<lbrace>Agent A, Number Ta\<rbrace>\<rbrace>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   481
             \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   482
apply (erule bankerberos.induct)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   483
apply (frule_tac [7] Oops_parts_spies)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   484
apply (frule_tac [5] Says_S_message_form)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   485
apply (frule_tac [6] BK3_msg_in_parts_spies, analz_mono_contra)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   486
apply (simp_all (no_asm_simp) add: all_conj_distrib)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   487
txt{*Fake*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   488
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   489
txt{*BK2*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   490
apply (force dest: Crypt_imp_invKey_keysFor)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   491
txt{*BK3*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   492
apply (blast dest: Kab_authentic unique_session_keys)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   493
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   494
lemma lemma_B [rule_format]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   495
     "\<lbrakk> B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   496
      \<Longrightarrow> Key K \<notin> analz (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   497
          Says Server A (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   498
          \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   499
          Crypt K (Number Ta) \<in> parts (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   500
          Says B A (Crypt K (Number Ta)) \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   501
apply (erule bankerberos.induct)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   502
apply (frule_tac [7] Oops_parts_spies)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   503
apply (frule_tac [5] Says_S_message_form)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   504
apply (drule_tac [6] BK3_msg_in_parts_spies, analz_mono_contra)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   505
apply (simp_all (no_asm_simp) add: all_conj_distrib)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   506
txt{*Fake*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   507
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   508
txt{*BK2*} 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   509
apply (force dest: Crypt_imp_invKey_keysFor)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   510
txt{*BK4*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   511
apply (blast dest: ticket_authentic unique_session_keys
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   512
                   Says_imp_spies [THEN analz.Inj] Crypt_Spy_analz_bad)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   513
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   514
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   515
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   516
text{*The "r" suffix indicates theorems where the confidentiality assumptions are relaxed by the corresponding arguments.*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   517
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   518
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   519
text{*Authentication of A to B*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   520
lemma B_authenticates_A_r:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   521
     "\<lbrakk> Crypt K \<lbrace>Agent A, Number Ta\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   522
         Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>  \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   523
        Notes Spy \<lbrace>Number Tk, Key K\<rbrace> \<notin> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   524
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   525
      \<Longrightarrow> Says A B \<lbrace>Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   526
                     Crypt K \<lbrace>Agent A, Number Ta\<rbrace>\<rbrace> \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   527
apply (blast dest!: ticket_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   528
          intro!: lemma_A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   529
          elim!: Confidentiality_S [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   530
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   531
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   532
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   533
text{*Authentication of B to A*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   534
lemma A_authenticates_B_r:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   535
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   536
        Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   537
        Notes Spy \<lbrace>Number Tk, Key K\<rbrace> \<notin> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   538
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   539
      \<Longrightarrow> Says B A (Crypt K (Number Ta)) \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   540
apply (blast dest!: Kab_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   541
          intro!: lemma_B elim!: Confidentiality_S [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   542
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   543
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   544
lemma B_authenticates_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   545
     "\<lbrakk> Crypt K \<lbrace>Agent A, Number Ta\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   546
         Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>  \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   547
        Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   548
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   549
      \<Longrightarrow> Says A B \<lbrace>Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   550
                     Crypt K \<lbrace>Agent A, Number Ta\<rbrace>\<rbrace> \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   551
apply (blast dest!: ticket_authentic intro!: lemma_A)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   552
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   553
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   554
lemma A_authenticates_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   555
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   556
        Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   557
        Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   558
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   559
      \<Longrightarrow> Says B A (Crypt K (Number Ta)) \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   560
apply (blast dest!: Kab_authentic intro!: lemma_B)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   561
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   562
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   563
subsection{*Temporal guarantees, relying on a temporal check that insures that
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   564
no oops event occurred. These are available in the sense of goal availability*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   565
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   566
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   567
text{*Temporal treatment of confidentiality*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   568
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   569
text{* Lemma: the session key sent in msg BK2 would be EXPIRED
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   570
    if the spy could see it! *}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   571
lemma lemma_conf_temporal [rule_format (no_asm)]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   572
     "\<lbrakk> A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   573
  \<Longrightarrow> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   574
          (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   575
                            Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>\<rbrace>)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   576
         \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   577
      Key K \<in> analz (spies evs) \<longrightarrow> expiredK Tk evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   578
apply (erule bankerberos.induct)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   579
apply (frule_tac [7] Says_Server_message_form)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   580
apply (frule_tac [5] Says_S_message_form [THEN disjE])
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   581
apply (simp_all (no_asm_simp) add: less_SucI analz_insert_eq analz_insert_freshK pushes)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   582
txt{*Fake*}
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   583
apply spy_analz
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   584
txt{*BK2*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   585
apply (blast intro: parts_insertI less_SucI)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   586
txt{*BK3*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   587
apply (case_tac "Aa \<in> bad")
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   588
 prefer 2 apply (blast dest: Kab_authentic unique_session_keys)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   589
apply (blast dest: Says_imp_spies [THEN analz.Inj] Crypt_Spy_analz_bad elim!: MPair_analz intro: less_SucI)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   590
txt{*Oops: PROOF FAILS if unsafe intro below*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   591
apply (blast dest: unique_session_keys intro!: less_SucI)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   592
done
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   593
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   594
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   595
text{*Confidentiality for the Server: Spy does not see the keys sent in msg BK2
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   596
as long as they have not expired.*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   597
lemma Confidentiality_S_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   598
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   599
          (Crypt K' \<lbrace>Number T, Agent B, Key K, X\<rbrace>) \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   600
         \<not> expiredK T evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   601
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   602
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   603
apply (frule Says_Server_message_form, assumption)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   604
apply (blast intro: lemma_conf_temporal)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   605
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   606
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   607
text{*Confidentiality for Alice*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   608
lemma Confidentiality_A_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   609
     "\<lbrakk> Crypt (shrK A) \<lbrace>Number T, Agent B, Key K, X\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   610
         \<not> expiredK T evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   611
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   612
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   613
apply (blast dest!: Kab_authentic Confidentiality_S_temporal)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   614
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   615
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   616
text{*Confidentiality for Bob*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   617
lemma Confidentiality_B_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   618
     "\<lbrakk> Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   619
          \<in> parts (spies evs);
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   620
        \<not> expiredK Tk evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   621
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   622
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   623
apply (blast dest!: ticket_authentic Confidentiality_S_temporal)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   624
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   625
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   626
text{*Temporal treatment of authentication*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   627
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   628
text{*Authentication of A to B*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   629
lemma B_authenticates_A_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   630
     "\<lbrakk> Crypt K \<lbrace>Agent A, Number Ta\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   631
         Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   632
         \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   633
         \<not> expiredK Tk evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   634
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   635
      \<Longrightarrow> Says A B \<lbrace>Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   636
                     Crypt K \<lbrace>Agent A, Number Ta\<rbrace>\<rbrace> \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   637
apply (blast dest!: ticket_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   638
          intro!: lemma_A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   639
          elim!: Confidentiality_S_temporal [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   640
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   641
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   642
text{*Authentication of B to A*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   643
lemma A_authenticates_B_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   644
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   645
         Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   646
         \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   647
         \<not> expiredK Tk evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   648
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   649
      \<Longrightarrow> Says B A (Crypt K (Number Ta)) \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   650
apply (blast dest!: Kab_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   651
          intro!: lemma_B elim!: Confidentiality_S_temporal [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   652
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   653
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   654
subsection{*Treatment of the key distribution goal using trace inspection. All
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   655
guarantees are in non-temporal form, hence non available, though their temporal
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   656
form is trivial to derive. These guarantees also convey a stronger form of 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   657
authentication - non-injective agreement on the session key*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   658
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   659
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   660
lemma B_Issues_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   661
     "\<lbrakk> Says B A (Crypt K (Number Ta)) \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   662
         Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   663
         A \<notin> bad;  B \<notin> bad; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   664
      \<Longrightarrow> B Issues A with (Crypt K (Number Ta)) on evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   665
apply (simp (no_asm) add: Issues_def)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   666
apply (rule exI)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   667
apply (rule conjI, assumption)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   668
apply (simp (no_asm))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   669
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   670
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   671
apply (erule bankerberos.induct, analz_mono_contra)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   672
apply (simp_all (no_asm_simp))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   673
txt{*fake*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   674
apply blast
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   675
txt{*K4 obviously is the non-trivial case*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   676
apply (simp add: takeWhile_tail)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   677
apply (blast dest: ticket_authentic parts_spies_takeWhile_mono [THEN subsetD] parts_spies_evs_revD2 [THEN subsetD] intro: A_authenticates_B_temporal)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   678
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   679
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   680
lemma A_authenticates_and_keydist_to_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   681
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   682
        Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K, X\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   683
         Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   684
         A \<notin> bad;  B \<notin> bad; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   685
      \<Longrightarrow> B Issues A with (Crypt K (Number Ta)) on evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   686
apply (blast dest!: A_authenticates_B B_Issues_A)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   687
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   688
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   689
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   690
lemma A_Issues_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   691
     "\<lbrakk> Says A B \<lbrace>Ticket, Crypt K \<lbrace>Agent A, Number Ta\<rbrace>\<rbrace>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   692
           \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   693
         Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   694
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   695
   \<Longrightarrow> A Issues B with (Crypt K \<lbrace>Agent A, Number Ta\<rbrace>) on evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   696
apply (simp (no_asm) add: Issues_def)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   697
apply (rule exI)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   698
apply (rule conjI, assumption)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   699
apply (simp (no_asm))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   700
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   701
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   702
apply (erule bankerberos.induct, analz_mono_contra)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   703
apply (simp_all (no_asm_simp))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   704
txt{*fake*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   705
apply blast
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   706
txt{*K3 is the non trivial case*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   707
apply (simp add: takeWhile_tail)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   708
apply auto (*Technically unnecessary, merely clarifies the subgoal as it is presemted in the book*)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   709
apply (blast dest: Kab_authentic Says_Server_message_form parts_spies_takeWhile_mono [THEN subsetD] parts_spies_evs_revD2 [THEN subsetD] 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   710
             intro!: B_authenticates_A)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   711
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   712
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   713
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   714
lemma B_authenticates_and_keydist_to_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   715
     "\<lbrakk> Crypt K \<lbrace>Agent A, Number Ta\<rbrace> \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   716
        Crypt (shrK B) \<lbrace>Number Tk, Agent A, Key K\<rbrace>  \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   717
        Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   718
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   719
   \<Longrightarrow> A Issues B with (Crypt K \<lbrace>Agent A, Number Ta\<rbrace>) on evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   720
apply (blast dest: B_authenticates_A A_Issues_B)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   721
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   722
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   723
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   724
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   725
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   726
end