src/HOL/Auth/Kerberos_BAN.thy
author paulson
Wed, 04 Jul 2007 13:56:26 +0200
changeset 23563 42f2f90b51a6
parent 21404 eb85850d3eb7
child 23746 a455e69c31cc
permissions -rw-r--r--
simplified a proof
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
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20768
diff changeset
    42
  CT :: "event list=>nat" where
20768
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
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20768
diff changeset
    45
abbreviation
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20768
diff changeset
    46
  expiredK :: "[nat, event list] => bool" where
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    47
  "expiredK T evs == sesKlife + T < CT evs"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    48
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20768
diff changeset
    49
abbreviation
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20768
diff changeset
    50
  expiredA :: "[nat, event list] => bool" where
20768
1d478c2d621f replaced syntax/translations by abbreviation;
wenzelm
parents: 18886
diff changeset
    51
  "expiredA T evs == authlife + T < CT evs"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    52
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    53
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    54
constdefs
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
    55
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    56
 (* 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
    57
    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
    58
  Issues :: "[agent, agent, msg, event list] => bool"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    59
             ("_ Issues _ with _ on _")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    60
   "A Issues B with X on evs ==
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    61
      \<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
    62
      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
    63
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    64
 (* 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
    65
  before :: "[event, event list] => event list" ("before _ on _")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    66
   "before ev on evs ==  takeWhile (% z. z ~= ev) (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    67
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    68
 (* 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
    69
  Unique :: "[event, event list] => bool" ("Unique _ on _")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    70
   "Unique ev on evs == 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    71
      ev \<notin> set (tl (dropWhile (% z. z \<noteq> ev) evs))"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    72
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    73
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    74
consts  bankerberos   :: "event list set"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    75
inductive "bankerberos"
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
    76
 intros
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
   Nil:  "[] \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    79
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    80
   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
    81
	  \<Longrightarrow> Says Spy B X # evsf \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    82
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    83
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    84
   BK1:  "\<lbrakk> evs1 \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    85
	  \<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
    86
		\<in>  bankerberos"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    87
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    88
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    89
   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
    90
	     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
    91
	  \<Longrightarrow> Says Server A
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    92
		(Crypt (shrK A)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    93
		   \<lbrace>Number (CT evs2), Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    94
		    (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
    95
		# evs2 \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    96
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
    97
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    98
   BK3:  "\<lbrakk> evs3 \<in> bankerberos;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
    99
	     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
   100
	       \<in> set evs3;
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   101
	     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
   102
	     \<not> expiredK Tk evs3 \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   103
	  \<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
   104
	       # evs3 \<in> bankerberos"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   105
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   106
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   107
   BK4:  "\<lbrakk> evs4 \<in> bankerberos;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   108
	     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
   109
			 (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
   110
	     \<not> expiredK Tk evs4;  \<not> expiredA Ta evs4 \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   111
	  \<Longrightarrow> Says B A (Crypt K (Number Ta)) # evs4
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   112
		\<in> bankerberos"
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   113
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   114
	(*Old session keys may become compromised*)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   115
   Oops: "\<lbrakk> evso \<in> bankerberos;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   116
         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
   117
	       \<in> set evso;
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   118
	     expiredK Tk evso \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   119
	  \<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
   120
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   121
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   122
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
   123
declare parts.Body [dest]
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 14126
diff changeset
   124
declare analz_into_parts [dest]
d8598e24f8fa Removal of the Key_supply axiom (affects many possbility proofs) and minor
paulson
parents: 14126
diff changeset
   125
declare Fake_parts_insert_in_Un [dest]
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   126
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   127
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
   128
lemma "\<lbrakk>Key K \<notin> used []; K \<in> symKeys\<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   129
       \<Longrightarrow> \<exists>Timestamp. \<exists>evs \<in> bankerberos.
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   130
             Says B A (Crypt K (Number Timestamp))
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   131
                  \<in> set evs"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   132
apply (cut_tac sesKlife_LB)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   133
apply (intro exI bexI)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   134
apply (rule_tac [2]
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   135
           bankerberos.Nil [THEN bankerberos.BK1, THEN bankerberos.BK2,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   136
                             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
   137
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
   138
done
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
subsection{*Lemmas for reasoning about predicate "Issues"*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   141
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   142
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
   143
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   144
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   145
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   146
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   147
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
   148
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   149
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   150
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   151
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   152
lemma spies_Notes_rev: "spies (evs @ [Notes A X]) =
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   153
          (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
   154
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   155
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   156
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   157
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   158
lemma spies_evs_rev: "spies evs = spies (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   159
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   160
apply (induct_tac [2] "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   161
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
   162
done
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
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
   165
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   166
lemma spies_takeWhile: "spies (takeWhile P evs) <=  spies evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   167
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   168
apply (induct_tac [2] "a", auto)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   169
txt{* Resembles @{text"used_subset_append"} in theory Event.*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   170
done
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
lemmas parts_spies_takeWhile_mono = spies_takeWhile [THEN parts_mono]
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   173
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   174
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   175
text{*Lemmas for reasoning about predicate "before"*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   176
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
   177
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   178
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   179
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   180
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   181
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   182
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   183
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
   184
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   185
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   186
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   187
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   188
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   189
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   190
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
   191
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   192
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   193
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   194
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   195
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   196
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   197
lemma used_evs_rev: "used evs = used (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   198
apply (induct_tac "evs")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   199
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   200
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   201
apply (simp add: used_Says_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   202
apply (simp add: used_Gets_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   203
apply (simp add: used_Notes_rev)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   204
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   205
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   206
lemma used_takeWhile_used [rule_format]: 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   207
      "x : used (takeWhile P X) --> x : used X"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   208
apply (induct_tac "X")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   209
apply simp
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   210
apply (induct_tac "a")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   211
apply (simp_all add: used_Nil)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   212
apply (blast dest!: initState_into_used)+
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   213
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   214
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   215
lemma set_evs_rev: "set evs = set (rev evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   216
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   217
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   218
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   219
lemma takeWhile_void [rule_format]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   220
      "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
   221
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   222
done
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
(**** Inductive proofs about bankerberos ****)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   225
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   226
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
   227
lemma BK3_msg_in_parts_spies:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   228
     "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
   229
      \<Longrightarrow> X \<in> parts (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   230
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   231
done
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   232
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   233
lemma Oops_parts_spies:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   234
     "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
   235
      \<Longrightarrow> K \<in> parts (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   236
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   237
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   238
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   239
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
   240
lemma Spy_see_shrK [simp]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   241
     "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
   242
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   243
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   244
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
   245
done
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   246
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   247
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   248
lemma Spy_analz_shrK [simp]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   249
     "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
   250
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   251
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   252
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   253
lemma Spy_see_shrK_D [dest!]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   254
     "\<lbrakk> Key (shrK A) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   255
                evs \<in> bankerberos \<rbrakk> \<Longrightarrow> A:bad"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   256
apply (blast dest: Spy_see_shrK)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   257
done
13926
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
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
   260
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   261
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   262
text{*Nobody can have used non-existent keys!*}
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   263
lemma new_keys_not_used [simp]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   264
    "\<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
   265
     \<Longrightarrow> K \<notin> keysFor (parts (spies evs))"
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   266
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   267
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   268
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   269
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
   270
txt{*Fake*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   271
apply (force dest!: keysFor_parts_insert)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   272
txt{*BK2, BK3, BK4*}
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   273
apply (force dest!: analz_shrK_Decrypt)+
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   274
done
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
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
   277
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   278
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
   279
lemma Says_Server_message_form:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   280
     "\<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
   281
         \<in> set evs; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   282
      \<Longrightarrow> K' = shrK A & K \<notin> range shrK &
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   283
          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
   284
          Key K \<notin> used(before
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   285
                  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
   286
                  on evs) &
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   287
          Tk = CT(before 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   288
                  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
   289
                  on evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   290
apply (unfold before_def)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   291
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   292
apply (erule bankerberos.induct, simp_all)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   293
txt{*We need this simplification only for Message 2*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   294
apply (simp (no_asm) add: takeWhile_tail)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   295
apply auto
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   296
txt{*Two subcases of Message 2. Subcase: used before*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   297
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
   298
                   used_takeWhile_used)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   299
txt{*subcase: CT before*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   300
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
   301
done
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   302
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   303
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   304
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
   305
  PROVIDED that A is NOT compromised!
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   306
  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
   307
*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   308
lemma Kab_authentic:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   309
     "\<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
   310
           \<in> parts (spies evs);
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   311
         A \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   312
       \<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
   313
             \<in> set evs"
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   314
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   315
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   316
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   317
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
   318
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   319
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   320
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   321
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
   322
text{*FRESHNESS OF THE SESSION KEY to B*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   323
lemma ticket_authentic:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   324
     "\<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
   325
         B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   326
       \<Longrightarrow> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   327
            (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   328
                          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
   329
           \<in> set evs"
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   330
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   331
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   332
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   333
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
   334
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   335
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   336
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   337
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
   338
  OR     reduces it to the Fake case.
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   339
  Use @{text Says_Server_message_form} if applicable.*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   340
lemma Says_S_message_form:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   341
     "\<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
   342
            \<in> set evs;
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   343
         evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   344
 \<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
   345
          | X \<in> analz (spies evs)"
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   346
apply (case_tac "A \<in> bad")
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   347
apply (force dest!: Says_imp_spies [THEN analz.Inj])
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   348
apply (frule Says_imp_spies [THEN parts.Inj])
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   349
apply (blast dest!: Kab_authentic Says_Server_message_form)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   350
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   351
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   352
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   353
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   354
(****
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   355
 The following is to prove theorems of the form
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   356
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   357
  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
   358
  Key K \<in> analz (spies evs)
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
 A more general formula must be proved inductively.
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   361
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   362
****)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   363
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   364
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
   365
lemma analz_image_freshK [rule_format (no_asm)]:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   366
     "evs \<in> bankerberos \<Longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   367
   \<forall>K KK. KK \<subseteq> - (range shrK) \<longrightarrow>
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   368
          (Key K \<in> analz (Key`KK Un (spies evs))) =
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   369
          (K \<in> KK | Key K \<in> analz (spies evs))"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   370
apply (erule bankerberos.induct)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   371
apply (drule_tac [7] Says_Server_message_form)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   372
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
   373
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   374
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   375
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   376
lemma analz_insert_freshK:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   377
     "\<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
   378
      (Key K \<in> analz (insert (Key KAB) (spies evs))) =
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   379
      (K = KAB | Key K \<in> analz (spies evs))"
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   380
apply (simp only: analz_image_freshK analz_image_freshK_simps)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   381
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   382
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   383
text{* The session key K uniquely identifies the message *}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   384
lemma unique_session_keys:
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   385
     "\<lbrakk> Says Server A
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;
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   387
         Says Server A'
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   388
          (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
   389
         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
   390
apply (erule rev_mp)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   391
apply (erule rev_mp)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   392
apply (erule bankerberos.induct)
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   393
apply (frule_tac [7] Oops_parts_spies)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   394
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
   395
txt{*BK2: it can't be a new key*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   396
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   397
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   398
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   399
lemma Server_Unique:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   400
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   401
            (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
   402
        evs \<in> bankerberos \<rbrakk> \<Longrightarrow> 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   403
   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
   404
   on evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   405
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
   406
apply blast
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   407
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   408
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   409
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   410
subsection{*Non-temporal guarantees, explicitly relying on non-occurrence of
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   411
oops events - refined below by temporal guarantees*}
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{*Non temporal treatment of confidentiality*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   414
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   415
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
   416
    if the spy could see it! *}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   417
lemma lemma_conf [rule_format (no_asm)]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   418
     "\<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
   419
  \<Longrightarrow> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   420
          (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   421
                            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
   422
         \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   423
      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
   424
apply (erule bankerberos.induct)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   425
apply (frule_tac [7] Says_Server_message_form)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   426
apply (frule_tac [5] Says_S_message_form [THEN disjE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   427
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
   428
txt{*Fake*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   429
apply spy_analz
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   430
txt{*BK2*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   431
apply (blast intro: parts_insertI)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   432
txt{*BK3*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   433
apply (case_tac "Aa \<in> bad")
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   434
 prefer 2 apply (blast dest: Kab_authentic unique_session_keys)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   435
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
   436
txt{*Oops*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   437
apply (blast dest: unique_session_keys)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   438
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   439
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   440
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   441
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
   442
as long as they have not expired.*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   443
lemma Confidentiality_S:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   444
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   445
          (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
   446
        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
   447
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   448
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   449
apply (frule Says_Server_message_form, assumption)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   450
apply (blast intro: lemma_conf)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   451
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   452
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   453
text{*Confidentiality for Alice*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   454
lemma Confidentiality_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   455
     "\<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
   456
        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
   457
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   458
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   459
apply (blast dest!: Kab_authentic Confidentiality_S)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   460
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   461
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   462
text{*Confidentiality for Bob*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   463
lemma Confidentiality_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   464
     "\<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
   465
          \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   466
        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
   467
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   468
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   469
apply (blast dest!: ticket_authentic Confidentiality_S)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   470
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   471
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   472
text{*Non temporal treatment of authentication*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   473
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   474
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
   475
lemma lemma_A [rule_format]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   476
     "\<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
   477
      \<Longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   478
         Key K \<notin> analz (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   479
         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
   480
         \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   481
          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
   482
         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
   483
             \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   484
apply (erule bankerberos.induct)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   485
apply (frule_tac [7] Oops_parts_spies)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   486
apply (frule_tac [5] Says_S_message_form)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   487
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
   488
apply (simp_all (no_asm_simp) add: all_conj_distrib)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   489
txt{*Fake*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   490
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   491
txt{*BK2*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   492
apply (force dest: Crypt_imp_invKey_keysFor)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   493
txt{*BK3*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   494
apply (blast dest: Kab_authentic unique_session_keys)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   495
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   496
lemma lemma_B [rule_format]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   497
     "\<lbrakk> B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   498
      \<Longrightarrow> Key K \<notin> analz (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   499
          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
   500
          \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   501
          Crypt K (Number Ta) \<in> parts (spies evs) \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   502
          Says B A (Crypt K (Number Ta)) \<in> set evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   503
apply (erule bankerberos.induct)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   504
apply (frule_tac [7] Oops_parts_spies)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   505
apply (frule_tac [5] Says_S_message_form)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   506
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
   507
apply (simp_all (no_asm_simp) add: all_conj_distrib)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   508
txt{*Fake*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   509
apply blast
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   510
txt{*BK2*} 
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   511
apply (force dest: Crypt_imp_invKey_keysFor)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   512
txt{*BK4*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   513
apply (blast dest: ticket_authentic unique_session_keys
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   514
                   Says_imp_spies [THEN analz.Inj] Crypt_Spy_analz_bad)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   515
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   516
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
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
   519
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   520
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   521
text{*Authentication of A to B*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   522
lemma B_authenticates_A_r:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   523
     "\<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
   524
         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
   525
        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
   526
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   527
      \<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
   528
                     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
   529
apply (blast dest!: ticket_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   530
          intro!: lemma_A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   531
          elim!: Confidentiality_S [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   532
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   533
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   534
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   535
text{*Authentication of B to A*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   536
lemma A_authenticates_B_r:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   537
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   538
        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
   539
        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
   540
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   541
      \<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
   542
apply (blast dest!: Kab_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   543
          intro!: lemma_B elim!: Confidentiality_S [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   544
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   545
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   546
lemma B_authenticates_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   547
     "\<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
   548
         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
   549
        Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   550
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   551
      \<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
   552
                     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
   553
apply (blast dest!: ticket_authentic intro!: lemma_A)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   554
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   555
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   556
lemma A_authenticates_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   557
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   558
        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
   559
        Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   560
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   561
      \<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
   562
apply (blast dest!: Kab_authentic intro!: lemma_B)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   563
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   564
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   565
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
   566
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
   567
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{*Temporal treatment of confidentiality*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   570
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   571
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
   572
    if the spy could see it! *}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   573
lemma lemma_conf_temporal [rule_format (no_asm)]:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   574
     "\<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
   575
  \<Longrightarrow> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   576
          (Crypt (shrK A) \<lbrace>Number Tk, Agent B, Key K,
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   577
                            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
   578
         \<in> set evs \<longrightarrow>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   579
      Key K \<in> analz (spies evs) \<longrightarrow> expiredK Tk evs"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   580
apply (erule bankerberos.induct)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   581
apply (frule_tac [7] Says_Server_message_form)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   582
apply (frule_tac [5] Says_S_message_form [THEN disjE])
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   583
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
   584
txt{*Fake*}
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   585
apply spy_analz
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   586
txt{*BK2*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   587
apply (blast intro: parts_insertI less_SucI)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   588
txt{*BK3*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   589
apply (case_tac "Aa \<in> bad")
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   590
 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
   591
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
   592
txt{*Oops: PROOF FAILS if unsafe intro below*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   593
apply (blast dest: unique_session_keys intro!: less_SucI)
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   594
done
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   595
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   596
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   597
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
   598
as long as they have not expired.*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   599
lemma Confidentiality_S_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   600
     "\<lbrakk> Says Server A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   601
          (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
   602
         \<not> expiredK T evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   603
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   604
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   605
apply (frule Says_Server_message_form, assumption)
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   606
apply (blast intro: lemma_conf_temporal)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   607
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   608
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   609
text{*Confidentiality for Alice*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   610
lemma Confidentiality_A_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   611
     "\<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
   612
         \<not> expiredK T evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   613
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   614
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   615
apply (blast dest!: Kab_authentic Confidentiality_S_temporal)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   616
done
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   617
14207
f20fbb141673 Conversion of all main protocols from "Shared" to "Public".
paulson
parents: 14200
diff changeset
   618
text{*Confidentiality for Bob*}
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   619
lemma Confidentiality_B_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   620
     "\<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
   621
          \<in> parts (spies evs);
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   622
        \<not> expiredK Tk evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   623
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   624
      \<rbrakk> \<Longrightarrow> Key K \<notin> analz (spies evs)"
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   625
apply (blast dest!: ticket_authentic Confidentiality_S_temporal)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   626
done
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{*Temporal treatment of authentication*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   629
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   630
text{*Authentication of A to B*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   631
lemma B_authenticates_A_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   632
     "\<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
   633
         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
   634
         \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   635
         \<not> expiredK Tk evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   636
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   637
      \<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
   638
                     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
   639
apply (blast dest!: ticket_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   640
          intro!: lemma_A
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   641
          elim!: Confidentiality_S_temporal [THEN [2] rev_notE])
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   642
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   643
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   644
text{*Authentication of B to A*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   645
lemma A_authenticates_B_temporal:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   646
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   647
         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
   648
         \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   649
         \<not> expiredK Tk evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   650
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   651
      \<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
   652
apply (blast dest!: Kab_authentic
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   653
          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
   654
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   655
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   656
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
   657
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
   658
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
   659
authentication - non-injective agreement on the session key*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   660
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   661
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   662
lemma B_Issues_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   663
     "\<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
   664
         Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   665
         A \<notin> bad;  B \<notin> bad; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   666
      \<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
   667
apply (simp (no_asm) add: Issues_def)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   668
apply (rule exI)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   669
apply (rule conjI, assumption)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   670
apply (simp (no_asm))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   671
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   672
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   673
apply (erule bankerberos.induct, analz_mono_contra)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   674
apply (simp_all (no_asm_simp))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   675
txt{*fake*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   676
apply blast
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   677
txt{*K4 obviously is the non-trivial case*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   678
apply (simp add: takeWhile_tail)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   679
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
   680
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   681
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   682
lemma A_authenticates_and_keydist_to_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   683
     "\<lbrakk> Crypt K (Number Ta) \<in> parts (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   684
        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
   685
         Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   686
         A \<notin> bad;  B \<notin> bad; evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   687
      \<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
   688
apply (blast dest!: A_authenticates_B B_Issues_A)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   689
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   690
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   691
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   692
lemma A_Issues_B:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   693
     "\<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
   694
           \<in> set evs;
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   695
         Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   696
         A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   697
   \<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
   698
apply (simp (no_asm) add: Issues_def)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   699
apply (rule exI)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   700
apply (rule conjI, assumption)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   701
apply (simp (no_asm))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   702
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   703
apply (erule rev_mp)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   704
apply (erule bankerberos.induct, analz_mono_contra)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   705
apply (simp_all (no_asm_simp))
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   706
txt{*fake*}
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   707
apply blast
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   708
txt{*K3 is the non trivial case*}
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   709
apply (simp add: takeWhile_tail)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   710
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
   711
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
   712
             intro!: B_authenticates_A)
13926
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   713
done
6e62e5357a10 converting more HOL-Auth to new-style theories
paulson
parents: 13507
diff changeset
   714
18886
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   715
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   716
lemma B_authenticates_and_keydist_to_A:
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   717
     "\<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
   718
        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
   719
        Key K \<notin> analz (spies evs);
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   720
        A \<notin> bad;  B \<notin> bad;  evs \<in> bankerberos \<rbrakk>
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   721
   \<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
   722
apply (blast dest: B_authenticates_A A_Issues_B)
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   723
done
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   724
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   725
9f27383426db new and updated protocol proofs by Giamp Bella
paulson
parents: 16417
diff changeset
   726
5053
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   727
75d20f367e94 New example Kerberos_BAN by G Bella
paulson
parents:
diff changeset
   728
end