src/HOL/UNITY/NSP_Bad.ML
author paulson
Wed, 18 Nov 1998 15:10:46 +0100
changeset 5931 325300576da7
parent 5758 27a2b36efd95
child 6570 a7d7985050a9
permissions -rw-r--r--
Finally removing "Compl" from HOL
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5430
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     1
(*  Title:      HOL/Auth/NSP_Bad
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     2
    ID:         $Id$
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     4
    Copyright   1996  University of Cambridge
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     5
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     6
Inductive relation "ns_public" for the Needham-Schroeder Public-Key protocol.
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     7
Flawed version, vulnerable to Lowe's attack.
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     8
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
     9
From page 260 of
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    10
  Burrows, Abadi and Needham.  A Logic of Authentication.
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    11
  Proc. Royal Soc. 426 (1989)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    12
*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    13
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    14
AddEs spies_partsEs;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    15
AddDs [impOfSubs analz_subset_parts];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    16
AddDs [impOfSubs Fake_parts_insert];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    17
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    18
AddIffs [Spy_in_bad];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    19
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    20
(*For other theories, e.g. Mutex and Lift, using AddIffs slows proofs down.
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    21
  Here, it facilitates re-use of the Auth proofs.*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    22
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    23
AddIffs (map simp_of_act [Fake_def, NS1_def, NS2_def, NS3_def]);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    24
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    25
Addsimps [Nprg_def RS def_prg_simps];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    26
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5536
diff changeset
    27
5430
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    28
(*A "possibility property": there are traces that reach the end*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    29
Goal "A ~= B ==> EX NB. EX s: reachable Nprg.                \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    30
\                  Says A B (Crypt (pubK B) (Nonce NB)) : set s";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    31
by (REPEAT (resolve_tac [exI,bexI] 1));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    32
by (res_inst_tac [("act", "NS3")] reachable.Acts 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    33
by (res_inst_tac [("act", "NS2")] reachable.Acts 3);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    34
by (res_inst_tac [("act", "NS1")] reachable.Acts 4);
5536
130f3d891fb2 tidying and deleting needless parentheses
paulson
parents: 5487
diff changeset
    35
by (rtac reachable.Init 5);
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5536
diff changeset
    36
by (ALLGOALS (asm_simp_tac (simpset() addsimps [Nprg_def])));
5536
130f3d891fb2 tidying and deleting needless parentheses
paulson
parents: 5487
diff changeset
    37
by (REPEAT_FIRST (rtac exI ));
5430
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    38
by possibility_tac;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    39
result();
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    40
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    41
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    42
(**** Inductive proofs about ns_public ****)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    43
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    44
(*can be used to simulate analz_mono_contra_tac
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    45
val analz_impI = read_instantiate_sg (sign_of thy)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    46
                [("P", "?Y ~: analz (spies ?evs)")] impI;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    47
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    48
val spies_Says_analz_contraD = 
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    49
    spies_subset_spies_Says RS analz_mono RS contra_subsetD;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    50
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    51
by (rtac analz_impI 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    52
by (auto_tac (claset() addSDs [spies_Says_analz_contraD], simpset()));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    53
*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    54
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    55
val parts_induct_tac = 
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    56
  (SELECT_GOAL o EVERY)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    57
     [etac reachable.induct 1,
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    58
      Force_tac 1,
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    59
      Full_simp_tac 1,
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    60
      safe_tac (claset() delrules [impI,impCE]),
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    61
      REPEAT (FIRSTGOAL analz_mono_contra_tac),
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    62
      ALLGOALS Asm_simp_tac];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    63
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    64
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    65
(** Theorems of the form X ~: parts (spies evs) imply that NOBODY
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    66
    sends messages containing X! **)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    67
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    68
(*Spy never sees another agent's private key! (unless it's bad at start)*)
5487
ff11f8b364ef commented out duplicate proof
paulson
parents: 5460
diff changeset
    69
(*
5648
fe887910e32e specifications as sets of programs
paulson
parents: 5536
diff changeset
    70
    Goal "Nprg : Invariant {s. (Key (priK A) : parts (spies s)) = (A : bad)}";
5487
ff11f8b364ef commented out duplicate proof
paulson
parents: 5460
diff changeset
    71
    by (rtac InvariantI 1);
ff11f8b364ef commented out duplicate proof
paulson
parents: 5460
diff changeset
    72
    by (Force_tac 1);
ff11f8b364ef commented out duplicate proof
paulson
parents: 5460
diff changeset
    73
    by (constrains_tac 1);
ff11f8b364ef commented out duplicate proof
paulson
parents: 5460
diff changeset
    74
    by Auto_tac;
ff11f8b364ef commented out duplicate proof
paulson
parents: 5460
diff changeset
    75
    qed "Spy_see_priK";
5430
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    76
*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    77
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    78
Goal "s : reachable Nprg ==> (Key (priK A) : parts (spies s)) = (A : bad)";
5536
130f3d891fb2 tidying and deleting needless parentheses
paulson
parents: 5487
diff changeset
    79
by (etac reachable.induct 1);
5758
27a2b36efd95 corrected auto_tac (applications of unsafe wrappers)
oheimb
parents: 5648
diff changeset
    80
by (ALLGOALS Force_tac);
5430
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    81
qed "Spy_see_priK";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    82
Addsimps [Spy_see_priK];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    83
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    84
Goal "s : reachable Nprg ==> (Key (priK A) : analz (spies s)) = (A : bad)";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    85
by Auto_tac;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    86
qed "Spy_analz_priK";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    87
Addsimps [Spy_analz_priK];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    88
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    89
AddSDs [Spy_see_priK RSN (2, rev_iffD1), 
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    90
	Spy_analz_priK RSN (2, rev_iffD1)];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    91
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    92
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    93
(**** Authenticity properties obtained from NS2 ****)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    94
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    95
(*It is impossible to re-use a nonce in both NS1 and NS2, provided the nonce
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    96
  is secret.  (Honest users generate fresh nonces.)*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    97
Goal "[| Crypt (pubK B) {|Nonce NA, Agent A|} : parts (spies s); \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    98
\        Nonce NA ~: analz (spies s);   s : reachable Nprg |]       \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
    99
\     ==> Crypt (pubK C) {|NA', Nonce NA|} ~: parts (spies s)";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   100
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   101
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   102
by (parts_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   103
by (ALLGOALS Blast_tac);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   104
qed "no_nonce_NS1_NS2";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   105
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   106
(*Adding it to the claset slows down proofs...*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   107
val nonce_NS1_NS2_E = no_nonce_NS1_NS2 RSN (2, rev_notE);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   108
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   109
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   110
(*Unicity for NS1: nonce NA identifies agents A and B*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   111
Goal "[| Nonce NA ~: analz (spies s);  s : reachable Nprg |]      \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   112
\     ==> EX A' B'. ALL A B.                                            \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   113
\            Crypt (pubK B) {|Nonce NA, Agent A|} : parts (spies s) --> \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   114
\               A=A' & B=B'";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   115
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   116
by (parts_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   117
by (ALLGOALS (simp_tac (simpset() addsimps [all_conj_distrib])));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   118
(*NS1*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   119
by (expand_case_tac "NA = ?y" 2 THEN Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   120
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   121
by (Blast_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   122
val lemma = result();
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   123
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   124
Goal "[| Crypt(pubK B)  {|Nonce NA, Agent A|}  : parts(spies s); \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   125
\        Crypt(pubK B') {|Nonce NA, Agent A'|} : parts(spies s); \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   126
\        Nonce NA ~: analz (spies s);                            \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   127
\        s : reachable Nprg |]                                   \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   128
\     ==> A=A' & B=B'";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   129
by (prove_unique_tac lemma 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   130
qed "unique_NA";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   131
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   132
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   133
(*Tactic for proving secrecy theorems*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   134
val analz_induct_tac = 
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   135
  (SELECT_GOAL o EVERY)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   136
     [etac reachable.induct 1,
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   137
      Force_tac 1,
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   138
      Full_simp_tac 1,
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   139
      safe_tac (claset() delrules [impI,impCE]),
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   140
      ALLGOALS Asm_simp_tac];
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   141
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   142
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   143
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   144
(*Secrecy: Spy does not see the nonce sent in msg NS1 if A and B are secure*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   145
Goal "[| Says A B (Crypt(pubK B) {|Nonce NA, Agent A|}) : set s;   \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   146
\        A ~: bad;  B ~: bad;  s : reachable Nprg |]                    \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   147
\     ==>  Nonce NA ~: analz (spies s)";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   148
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   149
by (analz_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   150
(*NS3*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   151
by (blast_tac (claset() addEs [nonce_NS1_NS2_E]) 4);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   152
(*NS2*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   153
by (blast_tac (claset() addDs [unique_NA]) 3);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   154
(*NS1*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   155
by (Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   156
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   157
by (spy_analz_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   158
qed "Spy_not_see_NA";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   159
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   160
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   161
(*Authentication for A: if she receives message 2 and has used NA
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   162
  to start a run, then B has sent message 2.*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   163
Goal "[| Says A  B (Crypt(pubK B) {|Nonce NA, Agent A|}) : set s;  \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   164
\        Says B' A (Crypt(pubK A) {|Nonce NA, Nonce NB|}): set s;  \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   165
\        A ~: bad;  B ~: bad;  s : reachable Nprg |]                    \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   166
\     ==> Says B A (Crypt(pubK A) {|Nonce NA, Nonce NB|}): set s";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   167
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   168
(*prepare induction over Crypt (pubK A) {|NA,NB|} : parts H*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   169
by (etac (Says_imp_spies RS parts.Inj RS rev_mp) 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   170
by (parts_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   171
by (ALLGOALS Clarify_tac);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   172
(*NS2*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   173
by (blast_tac (claset() addDs [Spy_not_see_NA, unique_NA]) 3);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   174
(*NS1*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   175
by (Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   176
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   177
by (blast_tac (claset() addDs [Spy_not_see_NA]) 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   178
qed "A_trusts_NS2";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   179
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   180
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   181
(*If the encrypted message appears then it originated with Alice in NS1*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   182
Goal "[| Crypt (pubK B) {|Nonce NA, Agent A|} : parts (spies s); \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   183
\        Nonce NA ~: analz (spies s);                            \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   184
\        s : reachable Nprg |]                                        \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   185
\     ==> Says A B (Crypt (pubK B) {|Nonce NA, Agent A|}) : set s";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   186
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   187
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   188
by (parts_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   189
by (Blast_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   190
qed "B_trusts_NS1";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   191
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   192
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   193
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   194
(**** Authenticity properties obtained from NS2 ****)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   195
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   196
(*Unicity for NS2: nonce NB identifies nonce NA and agent A
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   197
  [proof closely follows that for unique_NA] *)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   198
Goal "[| Nonce NB ~: analz (spies s);  s : reachable Nprg |]         \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   199
\     ==> EX A' NA'. ALL A NA.                                       \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   200
\           Crypt (pubK A) {|Nonce NA, Nonce NB|} : parts (spies s)  \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   201
\                -->  A=A' & NA=NA'";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   202
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   203
by (parts_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   204
by (ALLGOALS (asm_simp_tac (simpset() addsimps [all_conj_distrib])));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   205
(*NS2*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   206
by (expand_case_tac "NB = ?y" 2 THEN Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   207
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   208
by (Blast_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   209
val lemma = result();
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   210
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   211
Goal "[| Crypt(pubK A) {|Nonce NA, Nonce NB|}  : parts(spies s); \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   212
\        Crypt(pubK A'){|Nonce NA', Nonce NB|} : parts(spies s); \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   213
\        Nonce NB ~: analz (spies s);                            \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   214
\        s : reachable Nprg |]                                        \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   215
\     ==> A=A' & NA=NA'";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   216
by (prove_unique_tac lemma 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   217
qed "unique_NB";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   218
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   219
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   220
(*NB remains secret PROVIDED Alice never responds with round 3*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   221
Goal "[| Says B A (Crypt (pubK A) {|Nonce NA, Nonce NB|}) : set s;  \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   222
\       ALL C. Says A C (Crypt (pubK C) (Nonce NB)) ~: set s;      \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   223
\       A ~: bad;  B ~: bad;  s : reachable Nprg |]                     \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   224
\    ==> Nonce NB ~: analz (spies s)";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   225
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   226
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   227
by (analz_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   228
by (ALLGOALS (asm_simp_tac (simpset() addsimps [all_conj_distrib])));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   229
by (ALLGOALS Clarify_tac);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   230
(*NS3: because NB determines A*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   231
by (blast_tac (claset() addDs [unique_NB]) 4);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   232
(*NS2: by freshness and unicity of NB*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   233
by (blast_tac (claset() addEs [nonce_NS1_NS2_E]) 3);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   234
(*NS1: by freshness*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   235
by (Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   236
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   237
by (spy_analz_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   238
qed "Spy_not_see_NB";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   239
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   240
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   241
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   242
(*Authentication for B: if he receives message 3 and has used NB
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   243
  in message 2, then A has sent message 3--to somebody....*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   244
Goal "[| Says B A  (Crypt (pubK A) {|Nonce NA, Nonce NB|}) : set s; \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   245
\        Says A' B (Crypt (pubK B) (Nonce NB)): set s;              \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   246
\        A ~: bad;  B ~: bad;  s : reachable Nprg |]                \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   247
\     ==> EX C. Says A C (Crypt (pubK C) (Nonce NB)) : set s";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   248
by (etac rev_mp 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   249
(*prepare induction over Crypt (pubK B) NB : parts H*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   250
by (etac (Says_imp_spies RS parts.Inj RS rev_mp) 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   251
by (parts_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   252
by (ALLGOALS (asm_simp_tac (simpset() addsimps [ex_disj_distrib])));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   253
by (ALLGOALS Clarify_tac);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   254
(*NS3: because NB determines A (this use of unique_NB is more robust) *)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   255
by (blast_tac (claset() addDs [Spy_not_see_NB]
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   256
			addIs [unique_NB RS conjunct1]) 3);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   257
(*NS1: by freshness*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   258
by (Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   259
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   260
by (blast_tac (claset() addDs [Spy_not_see_NB]) 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   261
qed "B_trusts_NS3";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   262
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   263
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   264
(*Can we strengthen the secrecy theorem?  NO*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   265
Goal "[| A ~: bad;  B ~: bad;  s : reachable Nprg |]           \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   266
\     ==> Says B A (Crypt (pubK A) {|Nonce NA, Nonce NB|}) : set s \
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   267
\           --> Nonce NB ~: analz (spies s)";
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   268
by (analz_induct_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   269
by (ALLGOALS Clarify_tac);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   270
(*NS2: by freshness and unicity of NB*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   271
by (blast_tac (claset() addEs [nonce_NS1_NS2_E]) 3);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   272
(*NS1: by freshness*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   273
by (Blast_tac 2);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   274
(*Fake*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   275
by (spy_analz_tac 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   276
(*NS3: unicity of NB identifies A and NA, but not B*)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   277
by (forw_inst_tac [("A'","A")] (Says_imp_spies RS parts.Inj RS unique_NB) 1
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   278
    THEN REPEAT (eresolve_tac [asm_rl, Says_imp_spies RS parts.Inj] 1));
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   279
by Auto_tac;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   280
by (rename_tac "s B' C" 1);
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   281
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   282
(*
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   283
THIS IS THE ATTACK!
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   284
Level 8
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   285
!!s. [| A ~: bad; B ~: bad; s : reachable Nprg |]
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   286
       ==> Says B A (Crypt (pubK A) {|Nonce NA, Nonce NB|}) : set s -->
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   287
           Nonce NB ~: analz (spies s)
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   288
 1. !!s B' C.
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   289
       [| A ~: bad; B ~: bad; s : reachable Nprg;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   290
          Says A C (Crypt (pubK C) {|Nonce NA, Agent A|}) : set s;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   291
          Says B' A (Crypt (pubK A) {|Nonce NA, Nonce NB|}) : set s; C : bad;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   292
          Says B A (Crypt (pubK A) {|Nonce NA, Nonce NB|}) : set s;
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   293
          Nonce NB ~: analz (spies s) |]
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   294
       ==> False
4a179dba527a New UNITY theory, the N-S protocol
paulson
parents:
diff changeset
   295
*)