| author | wenzelm | 
| Sat, 22 Oct 2016 12:34:58 +0200 | |
| changeset 64342 | 53fb4a19fb98 | 
| parent 61956 | 38b73f7940af | 
| child 64364 | 464420ba7f74 | 
| permissions | -rw-r--r-- | 
| 37936 | 1 | (* Title: HOL/Auth/Yahalom.thy | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 2 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 3 | Copyright 1996 University of Cambridge | 
| 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 4 | *) | 
| 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 5 | |
| 61830 | 6 | section\<open>The Yahalom Protocol\<close> | 
| 13956 | 7 | |
| 16417 | 8 | theory Yahalom imports Public begin | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 9 | |
| 61830 | 10 | text\<open>From page 257 of | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 11 | Burrows, Abadi and Needham (1989). A Logic of Authentication. | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 12 | Proc. Royal Soc. 426 | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 13 | |
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 14 | This theory has the prototypical example of a secrecy relation, KeyCryptNonce. | 
| 61830 | 15 | \<close> | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 16 | |
| 23746 | 17 | inductive_set yahalom :: "event list set" | 
| 18 | where | |
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 19 | (*Initial trace is empty*) | 
| 11251 | 20 | Nil: "[] \<in> yahalom" | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 21 | |
| 2032 | 22 | (*The spy MAY say anything he CAN say. We do not expect him to | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 23 | invent new nonces here, but he can also use NS1. Common to | 
| 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 24 | all similar protocols.*) | 
| 23746 | 25 | | Fake: "[| evsf \<in> yahalom; X \<in> synth (analz (knows Spy evsf)) |] | 
| 11251 | 26 | ==> Says Spy B X # evsf \<in> yahalom" | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 27 | |
| 6335 | 28 | (*A message that has been sent can be received by the | 
| 29 | intended recipient.*) | |
| 23746 | 30 | | Reception: "[| evsr \<in> yahalom; Says A B X \<in> set evsr |] | 
| 11251 | 31 | ==> Gets B X # evsr \<in> yahalom" | 
| 6335 | 32 | |
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 33 | (*Alice initiates a protocol run*) | 
| 23746 | 34 | | YM1: "[| evs1 \<in> yahalom; Nonce NA \<notin> used evs1 |] | 
| 61956 | 35 | ==> Says A B \<lbrace>Agent A, Nonce NA\<rbrace> # evs1 \<in> yahalom" | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 36 | |
| 6335 | 37 | (*Bob's response to Alice's message.*) | 
| 23746 | 38 | | YM2: "[| evs2 \<in> yahalom; Nonce NB \<notin> used evs2; | 
| 61956 | 39 | Gets B \<lbrace>Agent A, Nonce NA\<rbrace> \<in> set evs2 |] | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 40 | ==> Says B Server | 
| 61956 | 41 | \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, Nonce NB\<rbrace>\<rbrace> | 
| 11251 | 42 | # evs2 \<in> yahalom" | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 43 | |
| 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 44 | (*The Server receives Bob's message. He responds by sending a | 
| 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 45 | new session key to Alice, with a packet for forwarding to Bob.*) | 
| 23746 | 46 | | YM3: "[| evs3 \<in> yahalom; Key KAB \<notin> used evs3; KAB \<in> symKeys; | 
| 6335 | 47 | Gets Server | 
| 61956 | 48 | \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, Nonce NB\<rbrace>\<rbrace> | 
| 11251 | 49 | \<in> set evs3 |] | 
| 1995 | 50 | ==> Says Server A | 
| 61956 | 51 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key KAB, Nonce NA, Nonce NB\<rbrace>, | 
| 52 | Crypt (shrK B) \<lbrace>Agent A, Key KAB\<rbrace>\<rbrace> | |
| 11251 | 53 | # evs3 \<in> yahalom" | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 54 | |
| 23746 | 55 | | YM4: | 
| 61830 | 56 | \<comment>\<open>Alice receives the Server's (?) message, checks her Nonce, and | 
| 3961 | 57 | uses the new session key to send Bob his Nonce. The premise | 
| 61830 | 58 |            @{term "A \<noteq> Server"} is needed for \<open>Says_Server_not_range\<close>.
 | 
| 59 | Alice can check that K is symmetric by its length.\<close> | |
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32377diff
changeset | 60 | "[| evs4 \<in> yahalom; A \<noteq> Server; K \<in> symKeys; | 
| 61956 | 61 | Gets A \<lbrace>Crypt(shrK A) \<lbrace>Agent B, Key K, Nonce NA, Nonce NB\<rbrace>, X\<rbrace> | 
| 11251 | 62 | \<in> set evs4; | 
| 61956 | 63 | Says A B \<lbrace>Agent A, Nonce NA\<rbrace> \<in> set evs4 |] | 
| 64 | ==> Says A B \<lbrace>X, Crypt K (Nonce NB)\<rbrace> # evs4 \<in> yahalom" | |
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 65 | |
| 2110 | 66 | (*This message models possible leaks of session keys. The Nonces | 
| 2156 | 67 | identify the protocol run. Quoting Server here ensures they are | 
| 68 | correct.*) | |
| 23746 | 69 | | Oops: "[| evso \<in> yahalom; | 
| 61956 | 70 | Says Server A \<lbrace>Crypt (shrK A) | 
| 71 | \<lbrace>Agent B, Key K, Nonce NA, Nonce NB\<rbrace>, | |
| 72 | X\<rbrace> \<in> set evso |] | |
| 73 | ==> Notes Spy \<lbrace>Nonce NA, Nonce NB, Key K\<rbrace> # evso \<in> yahalom" | |
| 2110 | 74 | |
| 3447 
c7c8c0db05b9
Defines KeyWithNonce, which is used to prove the secrecy of NB
 paulson parents: 
2516diff
changeset | 75 | |
| 35416 
d8d7d1b785af
replaced a couple of constsdefs by definitions (also some old primrecs by modern ones)
 haftmann parents: 
32960diff
changeset | 76 | definition KeyWithNonce :: "[key, nat, event list] => bool" where | 
| 3447 
c7c8c0db05b9
Defines KeyWithNonce, which is used to prove the secrecy of NB
 paulson parents: 
2516diff
changeset | 77 | "KeyWithNonce K NB evs == | 
| 11251 | 78 | \<exists>A B na X. | 
| 61956 | 79 | Says Server A \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, Nonce NB\<rbrace>, X\<rbrace> | 
| 11251 | 80 | \<in> set evs" | 
| 81 | ||
| 82 | ||
| 18570 | 83 | declare Says_imp_analz_Spy [dest] | 
| 11251 | 84 | declare parts.Body [dest] | 
| 85 | declare Fake_parts_insert_in_Un [dest] | |
| 86 | declare analz_into_parts [dest] | |
| 87 | ||
| 61830 | 88 | text\<open>A "possibility property": there are traces that reach the end\<close> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 89 | lemma "[| A \<noteq> Server; K \<in> symKeys; Key K \<notin> used [] |] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 90 | ==> \<exists>X NB. \<exists>evs \<in> yahalom. | 
| 61956 | 91 | Says A B \<lbrace>X, Crypt K (Nonce NB)\<rbrace> \<in> set evs" | 
| 11251 | 92 | apply (intro exI bexI) | 
| 93 | apply (rule_tac [2] yahalom.Nil | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 94 | [THEN yahalom.YM1, THEN yahalom.Reception, | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 95 | THEN yahalom.YM2, THEN yahalom.Reception, | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 96 | THEN yahalom.YM3, THEN yahalom.Reception, | 
| 14200 
d8598e24f8fa
Removal of the Key_supply axiom (affects many possbility proofs) and minor
 paulson parents: 
13956diff
changeset | 97 | THEN yahalom.YM4]) | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 98 | apply (possibility, simp add: used_Cons) | 
| 11251 | 99 | done | 
| 100 | ||
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 101 | |
| 61830 | 102 | subsection\<open>Regularity Lemmas for Yahalom\<close> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 103 | |
| 11251 | 104 | lemma Gets_imp_Says: | 
| 105 | "[| Gets B X \<in> set evs; evs \<in> yahalom |] ==> \<exists>A. Says A B X \<in> set evs" | |
| 106 | by (erule rev_mp, erule yahalom.induct, auto) | |
| 107 | ||
| 61830 | 108 | text\<open>Must be proved separately for each protocol\<close> | 
| 11251 | 109 | lemma Gets_imp_knows_Spy: | 
| 110 | "[| Gets B X \<in> set evs; evs \<in> yahalom |] ==> X \<in> knows Spy evs" | |
| 111 | by (blast dest!: Gets_imp_Says Says_imp_knows_Spy) | |
| 112 | ||
| 18570 | 113 | lemmas Gets_imp_analz_Spy = Gets_imp_knows_Spy [THEN analz.Inj] | 
| 114 | declare Gets_imp_analz_Spy [dest] | |
| 11251 | 115 | |
| 116 | ||
| 61830 | 117 | text\<open>Lets us treat YM4 using a similar argument as for the Fake case.\<close> | 
| 11251 | 118 | lemma YM4_analz_knows_Spy: | 
| 61956 | 119 | "[| Gets A \<lbrace>Crypt (shrK A) Y, X\<rbrace> \<in> set evs; evs \<in> yahalom |] | 
| 11251 | 120 | ==> X \<in> analz (knows Spy evs)" | 
| 121 | by blast | |
| 122 | ||
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 123 | lemmas YM4_parts_knows_Spy = | 
| 45605 | 124 | YM4_analz_knows_Spy [THEN analz_into_parts] | 
| 11251 | 125 | |
| 61830 | 126 | text\<open>For Oops\<close> | 
| 11251 | 127 | lemma YM4_Key_parts_knows_Spy: | 
| 61956 | 128 | "Says Server A \<lbrace>Crypt (shrK A) \<lbrace>B,K,NA,NB\<rbrace>, X\<rbrace> \<in> set evs | 
| 11251 | 129 | ==> K \<in> parts (knows Spy evs)" | 
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 130 | by (metis parts.Body parts.Fst parts.Snd Says_imp_knows_Spy parts.Inj) | 
| 11251 | 131 | |
| 61830 | 132 | text\<open>Theorems of the form @{term "X \<notin> parts (knows Spy evs)"} imply 
 | 
| 133 | that NOBODY sends messages containing X!\<close> | |
| 11251 | 134 | |
| 61830 | 135 | text\<open>Spy never sees a good agent's shared key!\<close> | 
| 11251 | 136 | lemma Spy_see_shrK [simp]: | 
| 137 | "evs \<in> yahalom ==> (Key (shrK A) \<in> parts (knows Spy evs)) = (A \<in> bad)" | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 138 | by (erule yahalom.induct, force, | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 139 | drule_tac [6] YM4_parts_knows_Spy, simp_all, blast+) | 
| 11251 | 140 | |
| 141 | lemma Spy_analz_shrK [simp]: | |
| 142 | "evs \<in> yahalom ==> (Key (shrK A) \<in> analz (knows Spy evs)) = (A \<in> bad)" | |
| 143 | by auto | |
| 144 | ||
| 145 | lemma Spy_see_shrK_D [dest!]: | |
| 146 | "[|Key (shrK A) \<in> parts (knows Spy evs); evs \<in> yahalom|] ==> A \<in> bad" | |
| 147 | by (blast dest: Spy_see_shrK) | |
| 148 | ||
| 61830 | 149 | text\<open>Nobody can have used non-existent keys! | 
| 150 | Needed to apply \<open>analz_insert_Key\<close>\<close> | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 151 | lemma new_keys_not_used [simp]: | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 152 | "[|Key K \<notin> used evs; K \<in> symKeys; evs \<in> yahalom|] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 153 | ==> K \<notin> keysFor (parts (spies evs))" | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 154 | apply (erule rev_mp) | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 155 | apply (erule yahalom.induct, force, | 
| 11251 | 156 | frule_tac [6] YM4_parts_knows_Spy, simp_all) | 
| 61830 | 157 | txt\<open>Fake\<close> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 158 | apply (force dest!: keysFor_parts_insert, auto) | 
| 11251 | 159 | done | 
| 160 | ||
| 161 | ||
| 61830 | 162 | text\<open>Earlier, all protocol proofs declared this theorem. | 
| 163 | But only a few proofs need it, e.g. Yahalom and Kerberos IV.\<close> | |
| 11251 | 164 | lemma new_keys_not_analzd: | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 165 | "[|K \<in> symKeys; evs \<in> yahalom; Key K \<notin> used evs|] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 166 | ==> K \<notin> keysFor (analz (knows Spy evs))" | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 167 | by (blast dest: new_keys_not_used intro: keysFor_mono [THEN subsetD]) | 
| 11251 | 168 | |
| 169 | ||
| 61830 | 170 | text\<open>Describes the form of K when the Server sends this message. Useful for | 
| 171 | Oops as well as main secrecy property.\<close> | |
| 11251 | 172 | lemma Says_Server_not_range [simp]: | 
| 61956 | 173 | "[| Says Server A \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace>, X\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 174 | \<in> set evs; evs \<in> yahalom |] | 
| 11251 | 175 | ==> K \<notin> range shrK" | 
| 17778 | 176 | by (erule rev_mp, erule yahalom.induct, simp_all) | 
| 11251 | 177 | |
| 178 | ||
| 61830 | 179 | subsection\<open>Secrecy Theorems\<close> | 
| 11251 | 180 | |
| 181 | (**** | |
| 182 | The following is to prove theorems of the form | |
| 183 | ||
| 184 | Key K \<in> analz (insert (Key KAB) (knows Spy evs)) ==> | |
| 185 | Key K \<in> analz (knows Spy evs) | |
| 186 | ||
| 187 | A more general formula must be proved inductively. | |
| 188 | ****) | |
| 189 | ||
| 61830 | 190 | text\<open>Session keys are not used to encrypt other session keys\<close> | 
| 11251 | 191 | |
| 192 | lemma analz_image_freshK [rule_format]: | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 193 | "evs \<in> yahalom ==> | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 194 | \<forall>K KK. KK <= - (range shrK) --> | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 195 | (Key K \<in> analz (Key`KK Un (knows Spy evs))) = | 
| 11251 | 196 | (K \<in> KK | Key K \<in> analz (knows Spy evs))" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 197 | apply (erule yahalom.induct, | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 198 | drule_tac [7] YM4_analz_knows_Spy, analz_freshK, spy_analz, blast) | 
| 11251 | 199 | apply (simp only: Says_Server_not_range analz_image_freshK_simps) | 
| 38795 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 haftmann parents: 
37936diff
changeset | 200 | apply safe | 
| 11251 | 201 | done | 
| 202 | ||
| 203 | lemma analz_insert_freshK: | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 204 | "[| evs \<in> yahalom; KAB \<notin> range shrK |] ==> | 
| 11655 | 205 | (Key K \<in> analz (insert (Key KAB) (knows Spy evs))) = | 
| 11251 | 206 | (K = KAB | Key K \<in> analz (knows Spy evs))" | 
| 207 | by (simp only: analz_image_freshK analz_image_freshK_simps) | |
| 208 | ||
| 209 | ||
| 61830 | 210 | text\<open>The Key K uniquely identifies the Server's message.\<close> | 
| 11251 | 211 | lemma unique_session_keys: | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 212 | "[| Says Server A | 
| 61956 | 213 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace>, X\<rbrace> \<in> set evs; | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 214 | Says Server A' | 
| 61956 | 215 | \<lbrace>Crypt (shrK A') \<lbrace>Agent B', Key K, na', nb'\<rbrace>, X'\<rbrace> \<in> set evs; | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 216 | evs \<in> yahalom |] | 
| 11251 | 217 | ==> A=A' & B=B' & na=na' & nb=nb'" | 
| 218 | apply (erule rev_mp, erule rev_mp) | |
| 219 | apply (erule yahalom.induct, simp_all) | |
| 61830 | 220 | txt\<open>YM3, by freshness, and YM4\<close> | 
| 11251 | 221 | apply blast+ | 
| 222 | done | |
| 223 | ||
| 224 | ||
| 61830 | 225 | text\<open>Crucial secrecy property: Spy does not see the keys sent in msg YM3\<close> | 
| 11251 | 226 | lemma secrecy_lemma: | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 227 | "[| A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 228 | ==> Says Server A | 
| 61956 | 229 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace>, | 
| 230 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>\<rbrace> | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 231 | \<in> set evs --> | 
| 61956 | 232 | Notes Spy \<lbrace>na, nb, Key K\<rbrace> \<notin> set evs --> | 
| 11251 | 233 | Key K \<notin> analz (knows Spy evs)" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 234 | apply (erule yahalom.induct, force, | 
| 11251 | 235 | drule_tac [6] YM4_analz_knows_Spy) | 
| 61830 | 236 | apply (simp_all add: pushes analz_insert_eq analz_insert_freshK, spy_analz) \<comment>\<open>Fake\<close> | 
| 237 | apply (blast dest: unique_session_keys)+ \<comment>\<open>YM3, Oops\<close> | |
| 11251 | 238 | done | 
| 239 | ||
| 61830 | 240 | text\<open>Final version\<close> | 
| 11251 | 241 | lemma Spy_not_see_encrypted_key: | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 242 | "[| Says Server A | 
| 61956 | 243 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace>, | 
| 244 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>\<rbrace> | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 245 | \<in> set evs; | 
| 61956 | 246 | Notes Spy \<lbrace>na, nb, Key K\<rbrace> \<notin> set evs; | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 247 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 11251 | 248 | ==> Key K \<notin> analz (knows Spy evs)" | 
| 249 | by (blast dest: secrecy_lemma) | |
| 250 | ||
| 251 | ||
| 61830 | 252 | subsubsection\<open>Security Guarantee for A upon receiving YM3\<close> | 
| 11251 | 253 | |
| 61830 | 254 | text\<open>If the encrypted message appears then it originated with the Server\<close> | 
| 11251 | 255 | lemma A_trusts_YM3: | 
| 61956 | 256 | "[| Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace> \<in> parts (knows Spy evs); | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 257 | A \<notin> bad; evs \<in> yahalom |] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 258 | ==> Says Server A | 
| 61956 | 259 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace>, | 
| 260 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>\<rbrace> | |
| 11251 | 261 | \<in> set evs" | 
| 262 | apply (erule rev_mp) | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 263 | apply (erule yahalom.induct, force, | 
| 11251 | 264 | frule_tac [6] YM4_parts_knows_Spy, simp_all) | 
| 61830 | 265 | txt\<open>Fake, YM3\<close> | 
| 11251 | 266 | apply blast+ | 
| 267 | done | |
| 268 | ||
| 61830 | 269 | text\<open>The obvious combination of \<open>A_trusts_YM3\<close> with | 
| 270 | \<open>Spy_not_see_encrypted_key\<close>\<close> | |
| 11251 | 271 | lemma A_gets_good_key: | 
| 61956 | 272 | "[| Crypt (shrK A) \<lbrace>Agent B, Key K, na, nb\<rbrace> \<in> parts (knows Spy evs); | 
| 273 | Notes Spy \<lbrace>na, nb, Key K\<rbrace> \<notin> set evs; | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 274 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 11251 | 275 | ==> Key K \<notin> analz (knows Spy evs)" | 
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 276 | by (metis A_trusts_YM3 secrecy_lemma) | 
| 11251 | 277 | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 278 | |
| 61830 | 279 | subsubsection\<open>Security Guarantees for B upon receiving YM4\<close> | 
| 11251 | 280 | |
| 61830 | 281 | text\<open>B knows, by the first part of A's message, that the Server distributed | 
| 282 | the key for A and B. But this part says nothing about nonces.\<close> | |
| 11251 | 283 | lemma B_trusts_YM4_shrK: | 
| 61956 | 284 | "[| Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace> \<in> parts (knows Spy evs); | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 285 | B \<notin> bad; evs \<in> yahalom |] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 286 | ==> \<exists>NA NB. Says Server A | 
| 61956 | 287 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, | 
| 288 | Nonce NA, Nonce NB\<rbrace>, | |
| 289 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>\<rbrace> | |
| 11251 | 290 | \<in> set evs" | 
| 291 | apply (erule rev_mp) | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 292 | apply (erule yahalom.induct, force, | 
| 11251 | 293 | frule_tac [6] YM4_parts_knows_Spy, simp_all) | 
| 61830 | 294 | txt\<open>Fake, YM3\<close> | 
| 11251 | 295 | apply blast+ | 
| 296 | done | |
| 297 | ||
| 61830 | 298 | text\<open>B knows, by the second part of A's message, that the Server | 
| 17411 | 299 | distributed the key quoting nonce NB. This part says nothing about | 
| 300 |   agent names.  Secrecy of NB is crucial.  Note that @{term "Nonce NB
 | |
| 301 | \<notin> analz(knows Spy evs)"} must be the FIRST antecedent of the | |
| 61830 | 302 | induction formula.\<close> | 
| 17411 | 303 | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 304 | lemma B_trusts_YM4_newK [rule_format]: | 
| 11251 | 305 | "[|Crypt K (Nonce NB) \<in> parts (knows Spy evs); | 
| 306 | Nonce NB \<notin> analz (knows Spy evs); evs \<in> yahalom|] | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 307 | ==> \<exists>A B NA. Says Server A | 
| 61956 | 308 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, Nonce NA, Nonce NB\<rbrace>, | 
| 309 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>\<rbrace> | |
| 11251 | 310 | \<in> set evs" | 
| 311 | apply (erule rev_mp, erule rev_mp) | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 312 | apply (erule yahalom.induct, force, | 
| 11251 | 313 | frule_tac [6] YM4_parts_knows_Spy) | 
| 314 | apply (analz_mono_contra, simp_all) | |
| 61830 | 315 | txt\<open>Fake, YM3\<close> | 
| 11251 | 316 | apply blast | 
| 317 | apply blast | |
| 61830 | 318 | txt\<open>YM4. A is uncompromised because NB is secure | 
| 319 | A's certificate guarantees the existence of the Server message\<close> | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 320 | apply (blast dest!: Gets_imp_Says Crypt_Spy_analz_bad | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 321 | dest: Says_imp_spies | 
| 11251 | 322 | parts.Inj [THEN parts.Fst, THEN A_trusts_YM3]) | 
| 323 | done | |
| 324 | ||
| 325 | ||
| 61830 | 326 | subsubsection\<open>Towards proving secrecy of Nonce NB\<close> | 
| 11251 | 327 | |
| 61830 | 328 | text\<open>Lemmas about the predicate KeyWithNonce\<close> | 
| 11251 | 329 | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 330 | lemma KeyWithNonceI: | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 331 | "Says Server A | 
| 61956 | 332 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, Nonce NB\<rbrace>, X\<rbrace> | 
| 11251 | 333 | \<in> set evs ==> KeyWithNonce K NB evs" | 
| 334 | by (unfold KeyWithNonce_def, blast) | |
| 335 | ||
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 336 | lemma KeyWithNonce_Says [simp]: | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 337 | "KeyWithNonce K NB (Says S A X # evs) = | 
| 11251 | 338 | (Server = S & | 
| 61956 | 339 | (\<exists>B n X'. X = \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, n, Nonce NB\<rbrace>, X'\<rbrace>) | 
| 11251 | 340 | | KeyWithNonce K NB evs)" | 
| 341 | by (simp add: KeyWithNonce_def, blast) | |
| 342 | ||
| 343 | ||
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 344 | lemma KeyWithNonce_Notes [simp]: | 
| 11251 | 345 | "KeyWithNonce K NB (Notes A X # evs) = KeyWithNonce K NB evs" | 
| 346 | by (simp add: KeyWithNonce_def) | |
| 347 | ||
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 348 | lemma KeyWithNonce_Gets [simp]: | 
| 11251 | 349 | "KeyWithNonce K NB (Gets A X # evs) = KeyWithNonce K NB evs" | 
| 350 | by (simp add: KeyWithNonce_def) | |
| 351 | ||
| 61830 | 352 | text\<open>A fresh key cannot be associated with any nonce | 
| 353 | (with respect to a given trace).\<close> | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 354 | lemma fresh_not_KeyWithNonce: | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 355 | "Key K \<notin> used evs ==> ~ KeyWithNonce K NB evs" | 
| 11251 | 356 | by (unfold KeyWithNonce_def, blast) | 
| 357 | ||
| 61830 | 358 | text\<open>The Server message associates K with NB' and therefore not with any | 
| 359 | other nonce NB.\<close> | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 360 | lemma Says_Server_KeyWithNonce: | 
| 61956 | 361 | "[| Says Server A \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, na, Nonce NB'\<rbrace>, X\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 362 | \<in> set evs; | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 363 | NB \<noteq> NB'; evs \<in> yahalom |] | 
| 11251 | 364 | ==> ~ KeyWithNonce K NB evs" | 
| 365 | by (unfold KeyWithNonce_def, blast dest: unique_session_keys) | |
| 366 | ||
| 367 | ||
| 61830 | 368 | text\<open>The only nonces that can be found with the help of session keys are | 
| 11251 | 369 | those distributed as nonce NB by the Server. The form of the theorem | 
| 61830 | 370 | recalls \<open>analz_image_freshK\<close>, but it is much more complicated.\<close> | 
| 11251 | 371 | |
| 372 | ||
| 61830 | 373 | text\<open>As with \<open>analz_image_freshK\<close>, we take some pains to express the | 
| 374 | property as a logical equivalence so that the simplifier can apply it.\<close> | |
| 11251 | 375 | lemma Nonce_secrecy_lemma: | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 376 | "P --> (X \<in> analz (G Un H)) --> (X \<in> analz H) ==> | 
| 11251 | 377 | P --> (X \<in> analz (G Un H)) = (X \<in> analz H)" | 
| 378 | by (blast intro: analz_mono [THEN subsetD]) | |
| 379 | ||
| 380 | lemma Nonce_secrecy: | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 381 | "evs \<in> yahalom ==> | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 382 | (\<forall>KK. KK <= - (range shrK) --> | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 383 | (\<forall>K \<in> KK. K \<in> symKeys --> ~ KeyWithNonce K NB evs) --> | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 384 | (Nonce NB \<in> analz (Key`KK Un (knows Spy evs))) = | 
| 11251 | 385 | (Nonce NB \<in> analz (knows Spy evs)))" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 386 | apply (erule yahalom.induct, | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 387 | frule_tac [7] YM4_analz_knows_Spy) | 
| 11251 | 388 | apply (safe del: allI impI intro!: Nonce_secrecy_lemma [THEN impI, THEN allI]) | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 389 | apply (simp_all del: image_insert image_Un | 
| 11251 | 390 | add: analz_image_freshK_simps split_ifs | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 391 | all_conj_distrib ball_conj_distrib | 
| 11251 | 392 | analz_image_freshK fresh_not_KeyWithNonce | 
| 393 | imp_disj_not1 (*Moves NBa\<noteq>NB to the front*) | |
| 394 | Says_Server_KeyWithNonce) | |
| 61830 | 395 | txt\<open>For Oops, simplification proves @{prop "NBa\<noteq>NB"}.  By
 | 
| 17411 | 396 |   @{term Says_Server_KeyWithNonce}, we get @{prop "~ KeyWithNonce K NB
 | 
| 397 | evs"}; then simplification can apply the induction hypothesis with | |
| 61830 | 398 |   @{term "KK = {K}"}.\<close>
 | 
| 399 | txt\<open>Fake\<close> | |
| 11251 | 400 | apply spy_analz | 
| 61830 | 401 | txt\<open>YM2\<close> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 402 | apply blast | 
| 61830 | 403 | txt\<open>YM3\<close> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 404 | apply blast | 
| 61830 | 405 | txt\<open>YM4\<close> | 
| 59807 | 406 | apply (erule_tac V = "\<forall>KK. P KK" for P in thin_rl, clarify) | 
| 61830 | 407 | txt\<open>If @{prop "A \<in> bad"} then @{term NBa} is known, therefore
 | 
| 17411 | 408 |   @{prop "NBa \<noteq> NB"}.  Previous two steps make the next step
 | 
| 61830 | 409 | faster.\<close> | 
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 410 | apply (metis A_trusts_YM3 Gets_imp_analz_Spy Gets_imp_knows_Spy KeyWithNonce_def | 
| 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 411 | Spy_analz_shrK analz.Fst analz.Snd analz_shrK_Decrypt parts.Fst parts.Inj) | 
| 11251 | 412 | done | 
| 413 | ||
| 414 | ||
| 61830 | 415 | text\<open>Version required below: if NB can be decrypted using a session key then | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 416 | it was distributed with that key. The more general form above is required | 
| 61830 | 417 | for the induction to carry through.\<close> | 
| 11251 | 418 | lemma single_Nonce_secrecy: | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 419 | "[| Says Server A | 
| 61956 | 420 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key KAB, na, Nonce NB'\<rbrace>, X\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 421 | \<in> set evs; | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 422 | NB \<noteq> NB'; KAB \<notin> range shrK; evs \<in> yahalom |] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 423 | ==> (Nonce NB \<in> analz (insert (Key KAB) (knows Spy evs))) = | 
| 11251 | 424 | (Nonce NB \<in> analz (knows Spy evs))" | 
| 425 | by (simp_all del: image_insert image_Un imp_disjL | |
| 426 | add: analz_image_freshK_simps split_ifs | |
| 13507 | 427 | Nonce_secrecy Says_Server_KeyWithNonce) | 
| 11251 | 428 | |
| 429 | ||
| 61830 | 430 | subsubsection\<open>The Nonce NB uniquely identifies B's message.\<close> | 
| 11251 | 431 | |
| 432 | lemma unique_NB: | |
| 61956 | 433 | "[| Crypt (shrK B) \<lbrace>Agent A, Nonce NA, nb\<rbrace> \<in> parts (knows Spy evs); | 
| 434 | Crypt (shrK B') \<lbrace>Agent A', Nonce NA', nb\<rbrace> \<in> parts (knows Spy evs); | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 435 | evs \<in> yahalom; B \<notin> bad; B' \<notin> bad |] | 
| 11251 | 436 | ==> NA' = NA & A' = A & B' = B" | 
| 437 | apply (erule rev_mp, erule rev_mp) | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 438 | apply (erule yahalom.induct, force, | 
| 11251 | 439 | frule_tac [6] YM4_parts_knows_Spy, simp_all) | 
| 61830 | 440 | txt\<open>Fake, and YM2 by freshness\<close> | 
| 11251 | 441 | apply blast+ | 
| 442 | done | |
| 443 | ||
| 444 | ||
| 61830 | 445 | text\<open>Variant useful for proving secrecy of NB. Because nb is assumed to be | 
| 446 | secret, we no longer must assume B, B' not bad.\<close> | |
| 11251 | 447 | lemma Says_unique_NB: | 
| 61956 | 448 | "[| Says C S \<lbrace>X, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, nb\<rbrace>\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 449 | \<in> set evs; | 
| 61956 | 450 | Gets S' \<lbrace>X', Crypt (shrK B') \<lbrace>Agent A', Nonce NA', nb\<rbrace>\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 451 | \<in> set evs; | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 452 | nb \<notin> analz (knows Spy evs); evs \<in> yahalom |] | 
| 11251 | 453 | ==> NA' = NA & A' = A & B' = B" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 454 | by (blast dest!: Gets_imp_Says Crypt_Spy_analz_bad | 
| 11251 | 455 | dest: Says_imp_spies unique_NB parts.Inj analz.Inj) | 
| 456 | ||
| 457 | ||
| 61830 | 458 | subsubsection\<open>A nonce value is never used both as NA and as NB\<close> | 
| 11251 | 459 | |
| 460 | lemma no_nonce_YM1_YM2: | |
| 61956 | 461 | "[|Crypt (shrK B') \<lbrace>Agent A', Nonce NB, nb'\<rbrace> \<in> parts(knows Spy evs); | 
| 11251 | 462 | Nonce NB \<notin> analz (knows Spy evs); evs \<in> yahalom|] | 
| 61956 | 463 | ==> Crypt (shrK B) \<lbrace>Agent A, na, Nonce NB\<rbrace> \<notin> parts(knows Spy evs)" | 
| 11251 | 464 | apply (erule rev_mp, erule rev_mp) | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 465 | apply (erule yahalom.induct, force, | 
| 11251 | 466 | frule_tac [6] YM4_parts_knows_Spy) | 
| 467 | apply (analz_mono_contra, simp_all) | |
| 61830 | 468 | txt\<open>Fake, YM2\<close> | 
| 11251 | 469 | apply blast+ | 
| 470 | done | |
| 471 | ||
| 61830 | 472 | text\<open>The Server sends YM3 only in response to YM2.\<close> | 
| 11251 | 473 | lemma Says_Server_imp_YM2: | 
| 61956 | 474 | "[| Says Server A \<lbrace>Crypt (shrK A) \<lbrace>Agent B, k, na, nb\<rbrace>, X\<rbrace> \<in> set evs; | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 475 | evs \<in> yahalom |] | 
| 61956 | 476 | ==> Gets Server \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, na, nb\<rbrace>\<rbrace> | 
| 11251 | 477 | \<in> set evs" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 478 | by (erule rev_mp, erule yahalom.induct, auto) | 
| 11251 | 479 | |
| 61830 | 480 | text\<open>A vital theorem for B, that nonce NB remains secure from the Spy.\<close> | 
| 11251 | 481 | lemma Spy_not_see_NB : | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 482 | "[| Says B Server | 
| 61956 | 483 | \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, Nonce NB\<rbrace>\<rbrace> | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32377diff
changeset | 484 | \<in> set evs; | 
| 61956 | 485 | (\<forall>k. Notes Spy \<lbrace>Nonce NA, Nonce NB, k\<rbrace> \<notin> set evs); | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 486 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 11251 | 487 | ==> Nonce NB \<notin> analz (knows Spy evs)" | 
| 488 | apply (erule rev_mp, erule rev_mp) | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 489 | apply (erule yahalom.induct, force, | 
| 11251 | 490 | frule_tac [6] YM4_analz_knows_Spy) | 
| 491 | apply (simp_all add: split_ifs pushes new_keys_not_analzd analz_insert_eq | |
| 492 | analz_insert_freshK) | |
| 61830 | 493 | txt\<open>Fake\<close> | 
| 11251 | 494 | apply spy_analz | 
| 61830 | 495 | txt\<open>YM1: NB=NA is impossible anyway, but NA is secret because it is fresh!\<close> | 
| 11251 | 496 | apply blast | 
| 61830 | 497 | txt\<open>YM2\<close> | 
| 11251 | 498 | apply blast | 
| 61830 | 499 | txt\<open>Prove YM3 by showing that no NB can also be an NA\<close> | 
| 11251 | 500 | apply (blast dest!: no_nonce_YM1_YM2 dest: Gets_imp_Says Says_unique_NB) | 
| 61830 | 501 | txt\<open>LEVEL 7: YM4 and Oops remain\<close> | 
| 11251 | 502 | apply (clarify, simp add: all_conj_distrib) | 
| 61830 | 503 | txt\<open>YM4: key K is visible to Spy, contradicting session key secrecy theorem\<close> | 
| 504 | txt\<open>Case analysis on Aa:bad; PROOF FAILED problems | |
| 505 |   use \<open>Says_unique_NB\<close> to identify message components: @{term "Aa=A"}, @{term "Ba=B"}\<close>
 | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 506 | apply (blast dest!: Says_unique_NB analz_shrK_Decrypt | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 507 | parts.Inj [THEN parts.Fst, THEN A_trusts_YM3] | 
| 11251 | 508 | dest: Gets_imp_Says Says_imp_spies Says_Server_imp_YM2 | 
| 509 | Spy_not_see_encrypted_key) | |
| 61830 | 510 | txt\<open>Oops case: if the nonce is betrayed now, show that the Oops event is | 
| 511 | covered by the quantified Oops assumption.\<close> | |
| 11251 | 512 | apply (clarify, simp add: all_conj_distrib) | 
| 513 | apply (frule Says_Server_imp_YM2, assumption) | |
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 514 | apply (metis Gets_imp_Says Says_Server_not_range Says_unique_NB no_nonce_YM1_YM2 parts.Snd single_Nonce_secrecy spies_partsEs(1)) | 
| 11251 | 515 | done | 
| 516 | ||
| 517 | ||
| 61830 | 518 | text\<open>B's session key guarantee from YM4. The two certificates contribute to a | 
| 11251 | 519 | single conclusion about the Server's message. Note that the "Notes Spy" | 
| 61830 | 520 | assumption must quantify over \<open>\<forall>\<close> POSSIBLE keys instead of our particular K. | 
| 11251 | 521 | If this run is broken and the spy substitutes a certificate containing an | 
| 61830 | 522 | old key, B has no means of telling.\<close> | 
| 11251 | 523 | lemma B_trusts_YM4: | 
| 61956 | 524 | "[| Gets B \<lbrace>Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>, | 
| 525 | Crypt K (Nonce NB)\<rbrace> \<in> set evs; | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 526 | Says B Server | 
| 61956 | 527 | \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, Nonce NB\<rbrace>\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 528 | \<in> set evs; | 
| 61956 | 529 | \<forall>k. Notes Spy \<lbrace>Nonce NA, Nonce NB, k\<rbrace> \<notin> set evs; | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 530 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 531 | ==> Says Server A | 
| 61956 | 532 | \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, | 
| 533 | Nonce NA, Nonce NB\<rbrace>, | |
| 534 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>\<rbrace> | |
| 11251 | 535 | \<in> set evs" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 536 | by (blast dest: Spy_not_see_NB Says_unique_NB | 
| 11251 | 537 | Says_Server_imp_YM2 B_trusts_YM4_newK) | 
| 538 | ||
| 539 | ||
| 540 | ||
| 61830 | 541 | text\<open>The obvious combination of \<open>B_trusts_YM4\<close> with | 
| 542 | \<open>Spy_not_see_encrypted_key\<close>\<close> | |
| 11251 | 543 | lemma B_gets_good_key: | 
| 61956 | 544 | "[| Gets B \<lbrace>Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>, | 
| 545 | Crypt K (Nonce NB)\<rbrace> \<in> set evs; | |
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 546 | Says B Server | 
| 61956 | 547 | \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, Nonce NB\<rbrace>\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 548 | \<in> set evs; | 
| 61956 | 549 | \<forall>k. Notes Spy \<lbrace>Nonce NA, Nonce NB, k\<rbrace> \<notin> set evs; | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 550 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 11251 | 551 | ==> Key K \<notin> analz (knows Spy evs)" | 
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 552 | by (metis B_trusts_YM4 Spy_not_see_encrypted_key) | 
| 11251 | 553 | |
| 554 | ||
| 61830 | 555 | subsection\<open>Authenticating B to A\<close> | 
| 11251 | 556 | |
| 61830 | 557 | text\<open>The encryption in message YM2 tells us it cannot be faked.\<close> | 
| 11251 | 558 | lemma B_Said_YM2 [rule_format]: | 
| 61956 | 559 | "[|Crypt (shrK B) \<lbrace>Agent A, Nonce NA, nb\<rbrace> \<in> parts (knows Spy evs); | 
| 11251 | 560 | evs \<in> yahalom|] | 
| 561 | ==> B \<notin> bad --> | |
| 61956 | 562 | Says B Server \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, nb\<rbrace>\<rbrace> | 
| 11251 | 563 | \<in> set evs" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 564 | apply (erule rev_mp, erule yahalom.induct, force, | 
| 11251 | 565 | frule_tac [6] YM4_parts_knows_Spy, simp_all) | 
| 61830 | 566 | txt\<open>Fake\<close> | 
| 11251 | 567 | apply blast | 
| 568 | done | |
| 569 | ||
| 61830 | 570 | text\<open>If the server sends YM3 then B sent YM2\<close> | 
| 11251 | 571 | lemma YM3_auth_B_to_A_lemma: | 
| 61956 | 572 | "[|Says Server A \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, Nonce NA, nb\<rbrace>, X\<rbrace> | 
| 11251 | 573 | \<in> set evs; evs \<in> yahalom|] | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 574 | ==> B \<notin> bad --> | 
| 61956 | 575 | Says B Server \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, nb\<rbrace>\<rbrace> | 
| 11251 | 576 | \<in> set evs" | 
| 577 | apply (erule rev_mp, erule yahalom.induct, simp_all) | |
| 61830 | 578 | txt\<open>YM3, YM4\<close> | 
| 11251 | 579 | apply (blast dest!: B_Said_YM2)+ | 
| 580 | done | |
| 581 | ||
| 61830 | 582 | text\<open>If A receives YM3 then B has used nonce NA (and therefore is alive)\<close> | 
| 11251 | 583 | lemma YM3_auth_B_to_A: | 
| 61956 | 584 | "[| Gets A \<lbrace>Crypt (shrK A) \<lbrace>Agent B, Key K, Nonce NA, nb\<rbrace>, X\<rbrace> | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 585 | \<in> set evs; | 
| 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 586 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 61956 | 587 | ==> Says B Server \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, nb\<rbrace>\<rbrace> | 
| 11251 | 588 | \<in> set evs" | 
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 589 | by (metis A_trusts_YM3 Gets_imp_analz_Spy YM3_auth_B_to_A_lemma analz.Fst | 
| 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 590 | not_parts_not_analz) | 
| 11251 | 591 | |
| 592 | ||
| 61830 | 593 | subsection\<open>Authenticating A to B using the certificate | 
| 594 |   @{term "Crypt K (Nonce NB)"}\<close>
 | |
| 11251 | 595 | |
| 61830 | 596 | text\<open>Assuming the session key is secure, if both certificates are present then | 
| 11251 | 597 | A has said NB. We can't be sure about the rest of A's message, but only | 
| 61830 | 598 | NB matters for freshness.\<close> | 
| 11251 | 599 | lemma A_Said_YM3_lemma [rule_format]: | 
| 600 | "evs \<in> yahalom | |
| 601 | ==> Key K \<notin> analz (knows Spy evs) --> | |
| 602 | Crypt K (Nonce NB) \<in> parts (knows Spy evs) --> | |
| 61956 | 603 | Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace> \<in> parts (knows Spy evs) --> | 
| 11251 | 604 | B \<notin> bad --> | 
| 61956 | 605 | (\<exists>X. Says A B \<lbrace>X, Crypt K (Nonce NB)\<rbrace> \<in> set evs)" | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 606 | apply (erule yahalom.induct, force, | 
| 11251 | 607 | frule_tac [6] YM4_parts_knows_Spy) | 
| 608 | apply (analz_mono_contra, simp_all) | |
| 61830 | 609 | txt\<open>Fake\<close> | 
| 11251 | 610 | apply blast | 
| 61830 | 611 | txt\<open>YM3: by \<open>new_keys_not_used\<close>, the message | 
| 612 |    @{term "Crypt K (Nonce NB)"} could not exist\<close>
 | |
| 11251 | 613 | apply (force dest!: Crypt_imp_keysFor) | 
| 61830 | 614 | txt\<open>YM4: was @{term "Crypt K (Nonce NB)"} the very last message?
 | 
| 615 | If not, use the induction hypothesis\<close> | |
| 11251 | 616 | apply (simp add: ex_disj_distrib) | 
| 61830 | 617 | txt\<open>yes: apply unicity of session keys\<close> | 
| 11251 | 618 | apply (blast dest!: Gets_imp_Says A_trusts_YM3 B_trusts_YM4_shrK | 
| 14207 
f20fbb141673
Conversion of all main protocols from "Shared" to "Public".
 paulson parents: 
14200diff
changeset | 619 | Crypt_Spy_analz_bad | 
| 11251 | 620 | dest: Says_imp_knows_Spy [THEN parts.Inj] unique_session_keys) | 
| 621 | done | |
| 622 | ||
| 61830 | 623 | text\<open>If B receives YM4 then A has used nonce NB (and therefore is alive). | 
| 11251 | 624 | Moreover, A associates K with NB (thus is talking about the same run). | 
| 61830 | 625 | Other premises guarantee secrecy of K.\<close> | 
| 11251 | 626 | lemma YM4_imp_A_Said_YM3 [rule_format]: | 
| 61956 | 627 | "[| Gets B \<lbrace>Crypt (shrK B) \<lbrace>Agent A, Key K\<rbrace>, | 
| 628 | Crypt K (Nonce NB)\<rbrace> \<in> set evs; | |
| 11251 | 629 | Says B Server | 
| 61956 | 630 | \<lbrace>Agent B, Crypt (shrK B) \<lbrace>Agent A, Nonce NA, Nonce NB\<rbrace>\<rbrace> | 
| 11251 | 631 | \<in> set evs; | 
| 61956 | 632 | (\<forall>NA k. Notes Spy \<lbrace>Nonce NA, Nonce NB, k\<rbrace> \<notin> set evs); | 
| 11251 | 633 | A \<notin> bad; B \<notin> bad; evs \<in> yahalom |] | 
| 61956 | 634 | ==> \<exists>X. Says A B \<lbrace>X, Crypt K (Nonce NB)\<rbrace> \<in> set evs" | 
| 32367 
a508148f7c25
 Removal of redundant settings of unification trace and search bounds.
 paulson parents: 
23746diff
changeset | 635 | by (metis A_Said_YM3_lemma B_gets_good_key Gets_imp_analz_Spy YM4_parts_knows_Spy analz.Fst not_parts_not_analz) | 
| 1985 
84cf16192e03
Tidied many proofs, using AddIffs to let equivalences take
 paulson parents: diff
changeset | 636 | end |