src/HOL/Auth/Shared.ML
author paulson
Mon, 07 Oct 1996 10:55:51 +0200
changeset 2064 5a5e508e2a2b
parent 2049 d3b93e1765bc
child 2072 6ac12b9478d5
permissions -rw-r--r--
Simple tidying
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/Message
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     2
    ID:         $Id$
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     5
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     6
Theory of Shared Keys (common to all symmetric-key protocols)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     7
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
     8
Server keys; initial states of agents; new nonces and keys; function "sees" 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
     9
*)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    10
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    11
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    12
val prems = goal HOL.thy "[| P ==> Q(True); ~P ==> Q(False) |] ==> Q(P)";
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    13
by (excluded_middle_tac "P" 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    14
by (asm_simp_tac (!simpset addsimps prems) 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    15
by (asm_simp_tac (!simpset addsimps prems) 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    16
val expand_case = result();
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    17
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    18
fun expand_case_tac P i =
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    19
    res_inst_tac [("P",P)] expand_case i THEN
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    20
    Simp_tac (i+1) THEN 
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    21
    Simp_tac i;
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    22
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
    23
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    24
2000
adb88d42f1bd Abstraction of enemy_analz_tac over its argument
paulson
parents: 1993
diff changeset
    25
(*GOALS.ML??*)
adb88d42f1bd Abstraction of enemy_analz_tac over its argument
paulson
parents: 1993
diff changeset
    26
fun prlim n = (goals_limit:=n; pr());
adb88d42f1bd Abstraction of enemy_analz_tac over its argument
paulson
parents: 1993
diff changeset
    27
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    28
(*FUN.ML??  WE NEED A NOTION OF INVERSE IMAGE, OR GRAPH!!*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    29
goal Set.thy "!!f. B <= range f = (B = f`` {x. f x: B})";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    30
by (fast_tac (!claset addEs [equalityE]) 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    31
val subset_range_iff = result();
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    32
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    33
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    34
open Shared;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    35
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    36
(*Holds because Friend is injective: thus cannot prove for all f*)
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    37
goal thy "(Friend x : Friend``A) = (x:A)";
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    38
by (Auto_tac());
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    39
qed "Friend_image_eq";
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    40
Addsimps [Friend_image_eq];
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
    41
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    42
Addsimps [Un_insert_left, Un_insert_right];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    43
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    44
(*By default only o_apply is built-in.  But in the presence of eta-expansion
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    45
  this means that some terms displayed as (f o g) will be rewritten, and others
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    46
  will not!*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    47
Addsimps [o_def];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    48
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    49
(*** Basic properties of shrK and newK ***)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    50
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    51
(* invKey (shrK A) = shrK A *)
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    52
bind_thm ("invKey_shrK", rewrite_rule [isSymKey_def] isSym_shrK);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    53
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    54
(* invKey (newK evs) = newK evs *)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    55
bind_thm ("invKey_newK", rewrite_rule [isSymKey_def] isSym_newK);
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    56
Addsimps [invKey_shrK, invKey_newK];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    57
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    58
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
    59
(*Injectiveness and freshness of new keys and nonces*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    60
AddIffs [inj_shrK RS inj_eq, inj_newN RS inj_eq, inj_newK RS inj_eq];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    61
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    62
(** Rewrites should not refer to  initState(Friend i) 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    63
    -- not in normal form! **)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    64
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    65
Addsimps [newK_neq_shrK, newK_neq_shrK RS not_sym];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    66
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    67
goal thy "Key (newK evs) ~: parts (initState lost B)";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    68
by (agent.induct_tac "B" 1);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    69
by (Auto_tac ());
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    70
qed "newK_notin_initState";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    71
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    72
goal thy "Nonce (newN evs) ~: parts (initState lost B)";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    73
by (agent.induct_tac "B" 1);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    74
by (Auto_tac ());
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    75
qed "newN_notin_initState";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    76
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    77
AddIffs [newK_notin_initState, newN_notin_initState];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    78
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    79
goalw thy [keysFor_def] "keysFor (parts (initState lost C)) = {}";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    80
by (agent.induct_tac "C" 1);
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
    81
by (auto_tac (!claset addIs [range_eqI], !simpset));
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    82
qed "keysFor_parts_initState";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    83
Addsimps [keysFor_parts_initState];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    84
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    85
goalw thy [keysFor_def] "keysFor (Key``E) = {}";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    86
by (Auto_tac ());
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    87
qed "keysFor_image_Key";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    88
Addsimps [keysFor_image_Key];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    89
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    90
goal thy "shrK A ~: newK``E";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    91
by (agent.induct_tac "A" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    92
by (Auto_tac ());
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    93
qed "shrK_notin_image_newK";
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
    94
Addsimps [shrK_notin_image_newK];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
    95
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    96
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    97
(*** Function "sees" ***)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    98
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
    99
goal thy
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   100
    "!!evs. lost' <= lost ==> sees lost' A evs <= sees lost A evs";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   101
by (list.induct_tac "evs" 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   102
by (agent.induct_tac "A" 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   103
by (event.induct_tac "a" 2);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   104
by (Auto_tac ());
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   105
qed "sees_mono";
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   106
1964
d551e68b7a36 Stronger proofs; work for Otway-Rees
paulson
parents: 1943
diff changeset
   107
(*Agents see their own shared keys!*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   108
goal thy "A ~= Spy --> Key (shrK A) : sees lost A evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   109
by (list.induct_tac "evs" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   110
by (agent.induct_tac "A" 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   111
by (Auto_tac ());
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   112
qed_spec_mp "sees_own_shrK";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   113
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   114
(*Spy sees shared keys of lost agents!*)
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   115
goal thy "!!A. A: lost ==> Key (shrK A) : sees lost Spy evs";
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   116
by (list.induct_tac "evs" 1);
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   117
by (Auto_tac());
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   118
qed "Spy_sees_lost";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   119
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   120
AddSIs [sees_own_shrK, Spy_sees_lost];
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   121
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   122
(** Specialized rewrite rules for (sees lost A (Says...#evs)) **)
2026
0df5a96bf77e Last working version prior to introduction of "lost"
paulson
parents: 2012
diff changeset
   123
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   124
goal thy "sees lost A (Says A B X # evs) = insert X (sees lost A evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   125
by (Simp_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   126
qed "sees_own";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   127
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   128
goal thy "!!A. Server ~= A ==> \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   129
\              sees lost Server (Says A B X # evs) = sees lost Server evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   130
by (Asm_simp_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   131
qed "sees_Server";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   132
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   133
goal thy "!!A. Friend i ~= A ==> \
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   134
\              sees lost (Friend i) (Says A B X # evs) = sees lost (Friend i) evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   135
by (Asm_simp_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   136
qed "sees_Friend";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   137
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   138
goal thy "sees lost Spy (Says A B X # evs) = insert X (sees lost Spy evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   139
by (Simp_tac 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   140
qed "sees_Spy";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   141
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   142
goal thy "sees lost A (Says A' B X # evs) <= insert X (sees lost A evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   143
by (simp_tac (!simpset setloop split_tac [expand_if]) 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   144
by (Fast_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   145
qed "sees_Says_subset_insert";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   146
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   147
goal thy "sees lost A evs <= sees lost A (Says A' B X # evs)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   148
by (simp_tac (!simpset setloop split_tac [expand_if]) 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   149
by (Fast_tac 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   150
qed "sees_subset_sees_Says";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   151
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   152
(*Pushing Unions into parts; one of the A's equals B, and thus sees lost Y*)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   153
goal thy "(UN A. parts (sees lost A (Says B C Y # evs))) = \
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   154
\         parts {Y} Un (UN A. parts (sees lost A evs))";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   155
by (Step_tac 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   156
by (etac rev_mp 1);     (*for some reason, split_tac does not work on assumptions*)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   157
val ss = (!simpset addsimps [parts_Un, sees_Cons] 
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   158
                   setloop split_tac [expand_if]);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   159
by (ALLGOALS (fast_tac (!claset addss ss)));
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   160
qed "UN_parts_sees_Says";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   161
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   162
goal thy "Says A B X : set_of_list evs --> X : sees lost Spy evs";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   163
by (list.induct_tac "evs" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   164
by (Auto_tac ());
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   165
qed_spec_mp "Says_imp_sees_Spy";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   166
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   167
Addsimps [Says_imp_sees_Spy];
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   168
AddIs    [Says_imp_sees_Spy];
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   169
2064
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   170
goal thy  
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   171
 "!!evs. [| Says A B (Crypt X (shrK C)) : set_of_list evs;        \
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   172
\           C   : lost |]                                         \
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   173
\        ==> X : analz (sees lost Spy evs)";
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   174
by (fast_tac (!claset addSDs [Says_imp_sees_Spy RS analz.Inj]
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   175
                      addss (!simpset)) 1);
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   176
qed "Says_Crypt_lost";
5a5e508e2a2b Simple tidying
paulson
parents: 2049
diff changeset
   177
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   178
goal thy "initState lost C <= Key `` range shrK";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   179
by (agent.induct_tac "C" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   180
by (Auto_tac ());
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   181
qed "initState_subset";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   182
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   183
goal thy "X : sees lost C evs --> \
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   184
\          (EX A B. Says A B X : set_of_list evs) | \
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
   185
\          (EX A. X = Key (shrK A))";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   186
by (list.induct_tac "evs" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   187
by (ALLGOALS Asm_simp_tac);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   188
by (fast_tac (!claset addDs [impOfSubs initState_subset]) 1);
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   189
by (rtac conjI 1);
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   190
by (Fast_tac 2);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   191
by (event.induct_tac "a" 1);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   192
by (ALLGOALS (asm_simp_tac (!simpset addsimps [mem_if])));
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   193
by (ALLGOALS Fast_tac);
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   194
qed_spec_mp "seesD";
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   195
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   196
Addsimps [UN_parts_sees_Says, sees_own, sees_Server, sees_Friend, sees_Spy];
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   197
Delsimps [sees_Cons];   (**** NOTE REMOVAL -- laws above are cleaner ****)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   198
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   199
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   200
(** Power of the Spy **)
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   201
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   202
(*The Spy can see more than anybody else, except for their initial state*)
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   203
goal thy "sees lost A evs <= initState lost A Un sees lost Spy evs";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   204
by (list.induct_tac "evs" 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   205
by (event.induct_tac "a" 2);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   206
by (ALLGOALS (fast_tac (!claset addDs [sees_Says_subset_insert RS subsetD] 
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   207
                                addss (!simpset))));
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   208
qed "sees_agent_subset_sees_Spy";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   209
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   210
(*The Spy can see more than anybody else who's lost their key!*)
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   211
goal thy "A: lost --> A ~= Server --> sees lost A evs <= sees lost Spy evs";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   212
by (list.induct_tac "evs" 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   213
by (event.induct_tac "a" 2);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   214
by (agent.induct_tac "A" 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   215
by (auto_tac (!claset addDs [sees_Says_subset_insert RS subsetD], (!simpset)));
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   216
qed_spec_mp "sees_lost_agent_subset_sees_Spy";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   217
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   218
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   219
(** Rewrites to push in Key and Crypt messages, so that other messages can
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   220
    be pulled out using the analz_insert rules **)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   221
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   222
fun insComm x y = read_instantiate_sg (sign_of thy) [("x",x), ("y",y)] 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   223
                      insert_commute;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   224
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   225
val pushKeys = map (insComm "Key ?K") 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   226
                  ["Agent ?C", "Nonce ?N", "MPair ?X ?Y", "Crypt ?X ?K'"];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   227
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   228
val pushCrypts = map (insComm "Crypt ?X ?K") 
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   229
                    ["Agent ?C", "Nonce ?N", "MPair ?X' ?Y"];
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   230
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   231
(*Cannot be added with Addsimps -- we don't always want to re-order messages*)
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   232
val pushes = pushKeys@pushCrypts;
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   233
1943
20574dca5a3e Renaming and simplification
paulson
parents: 1934
diff changeset
   234
val pushKey_newK = insComm "Key (newK ?evs)"  "Key (shrK ?C)";
1934
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   235
58573e7041b4 Separation of theory Event into two parts:
paulson
parents:
diff changeset
   236
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   237
(*No premature instantiation of variables.  For proving weak liveness.*)
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   238
fun safe_solver prems =
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   239
    match_tac (TrueI::refl::prems) ORELSE' eq_assume_tac
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   240
    ORELSE' etac FalseE;
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   241
2000
adb88d42f1bd Abstraction of enemy_analz_tac over its argument
paulson
parents: 1993
diff changeset
   242
(*Analysis of Fake cases and of messages that forward unknown parts
adb88d42f1bd Abstraction of enemy_analz_tac over its argument
paulson
parents: 1993
diff changeset
   243
  Abstraction over i is ESSENTIAL: it delays the dereferencing of claset*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   244
fun spy_analz_tac i =
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   245
  SELECT_GOAL 
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   246
   (EVERY [  (*push in occurrences of X...*)
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   247
           (REPEAT o CHANGED)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   248
             (res_inst_tac [("x1","X")] (insert_commute RS ssubst) 1),
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   249
             (*...allowing further simplifications*)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   250
           simp_tac (!simpset setloop split_tac [expand_if]) 1,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   251
           REPEAT (resolve_tac [impI,notI] 1),
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   252
           dtac (impOfSubs Fake_analz_insert) 1,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   253
           eresolve_tac [asm_rl, synth.Inj] 1,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   254
           Fast_tac 1,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   255
           Asm_full_simp_tac 1,
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   256
           IF_UNSOLVED (deepen_tac (!claset addIs [impOfSubs analz_mono]) 0 1)
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   257
           ]) i;
1993
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   258
77e7ef8e5c3b Addition of enemy_analz_tac and safe_solver
paulson
parents: 1967
diff changeset
   259
2032
1bbf1bdcaf56 Introduction of "lost" argument
paulson
parents: 2026
diff changeset
   260
(** Simplifying   parts (insert X (sees lost A evs))
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   261
      = parts {X} Un parts (sees lost A evs) -- since general case loops*)
2012
1b234f1fd9c7 Removal of the Notes constructor
paulson
parents: 2000
diff changeset
   262
1b234f1fd9c7 Removal of the Notes constructor
paulson
parents: 2000
diff changeset
   263
val parts_insert_sees = 
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   264
    parts_insert |> read_instantiate_sg (sign_of thy)
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   265
                                        [("H", "sees lost A evs")]
2012
1b234f1fd9c7 Removal of the Notes constructor
paulson
parents: 2000
diff changeset
   266
                 |> standard;
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   267
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   268
2049
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   269
(*** Specialized rewriting for analz_insert_Key_newK ***)
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   270
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   271
goal thy "!!K. newK evs = invKey K ==> newK evs = K";
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   272
by (rtac (invKey_eq RS iffD1) 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   273
by (Simp_tac 1);
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   274
val newK_invKey = result();
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   275
d3b93e1765bc Moved sees_lost_agent_subset_sees_Spy to common file
paulson
parents: 2045
diff changeset
   276
AddSDs [newK_invKey];
2045
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   277
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   278
Delsimps [image_insert];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   279
Addsimps [image_insert RS sym];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   280
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   281
Delsimps [image_Un];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   282
Addsimps [image_Un RS sym];
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   283
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   284
goal thy "insert (Key (newK x)) H = Key `` (newK``{x}) Un H";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   285
by (Fast_tac 1);
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   286
qed "insert_Key_singleton";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   287
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   288
goal thy "insert (Key (f x)) (Key``(f``E) Un C) = \
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   289
\         Key `` (f `` (insert x E)) Un C";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   290
by (Fast_tac 1);
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   291
qed "insert_Key_image";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   292
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   293
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   294
(*Lemma for the trivial direction of the if-and-only-if*)
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   295
goal thy  
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   296
 "!!evs. (Key K : analz (Key``nE Un H)) --> (K : nE | Key K : analz H)  ==> \
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   297
\        (Key K : analz (Key``nE Un H)) = (K : nE | Key K : analz H)";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   298
by (fast_tac (!claset addSEs [impOfSubs analz_mono]) 1);
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   299
qed "analz_image_newK_lemma";
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   300
ae1030e66745 Removed some dead wood. Transferred lemmas used to prove analz_image_newK
paulson
parents: 2032
diff changeset
   301