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