Dynamic2static.thy
author chunhan
Fri, 03 May 2013 08:20:21 +0100
changeset 1 7d9c0ed02b56
child 19 ced0fcfbcf8e
permissions -rw-r--r--
thy files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     1
theory Dynamic2static
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     2
imports Main Flask Static Init_prop Valid_prop
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     3
begin
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     4
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     5
context tainting_s begin
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     6
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     7
lemma d2s_main:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     8
  "valid s \<Longrightarrow> s2ss s \<in> static"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     9
apply (induct s, simp add:s2ss_nil_prop s_init)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    10
apply (frule vd_cons, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    11
apply (case_tac a, simp_all) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    12
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    13
apply 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    14
induct s, case tac e, every event analysis
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    15
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    16
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    17
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    18
lemma is_file_has_sfile: "is_file s f \<Longrightarrow> \<exists> sf. cf2sfile s f True = Some sf"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    19
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    20
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    21
lemma is_dir_has_sfile: "is_dir s f \<Longrightarrow> \<exists> sf. cf2sfile s f False = Some sf"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    22
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    23
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    24
lemma is_file_imp_alive: "is_file s f \<Longrightarrow> alive s (O_file f)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    25
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    26
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    27
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    28
lemma d2s_main':
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    29
  "\<lbrakk>alive s obj; co2sobj s obj= Some sobj\<rbrakk> \<Longrightarrow> sobj \<in> (s2ss s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    30
apply (induct s)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    31
apply (simp add:s2ss_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    32
apply (rule_tac x = obj in exI, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    33
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    34
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    35
lemma tainted_prop1:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    36
  "obj \<in> tainted s \<Longrightarrow> alive s obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    37
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    38
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    39
lemma tainted_prop2:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    40
  "obj \<in> tainted s \<Longrightarrow> valid s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    41
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    42
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    43
lemma alive_has_sobj:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    44
  "\<lbrakk>alive s obj; valid s\<rbrakk> \<Longrightarrow> \<exists> sobj. co2sobj s obj = Some sobj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    45
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    46
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    47
lemma t2ts:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    48
  "obj \<in> tainted s \<Longrightarrow> co2sobj s obj = Some sobj \<Longrightarrow> tainted_s (s2ss s) sobj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    49
apply (frule tainted_prop1, frule tainted_prop2)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    50
apply (simp add:s2ss_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    51
apply (case_tac sobj, simp_all)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    52
apply (case_tac [!] obj, simp_all split:option.splits)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    53
apply (rule_tac x = "O_proc nat" in exI, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    54
apply (rule_tac x = "O_file list" in exI, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    55
defer defer defer
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    56
apply (case_tac prod1, simp, case_tac prod2, clarsimp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    57
apply (rule conjI)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    58
apply (rule_tac x = "O_msgq nat1" in exI, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    59
sorry (* doable, need properties about cm2smsg and cq2smsgq *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    60
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    61
lemma delq_imp_delqm:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    62
  "deleted (O_msgq q) s \<Longrightarrow> deleted (O_msg q m) s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    63
apply (induct s, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    64
by (case_tac a, auto)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    65
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    66
lemma undel_init_file_remains:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    67
  "\<lbrakk>is_init_file f; \<not> deleted (O_file f) s\<rbrakk> \<Longrightarrow> is_file s f"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    68
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    69
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    70
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    71
theorem static_complete: 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    72
  assumes undel: "undeletable obj" and tbl: "taintable obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    73
  shows "taintable_s obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    74
proof-
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    75
  from tbl obtain s where tainted: "obj \<in> tainted s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    76
    by (auto simp:taintable_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    77
  hence vs: "valid s" by (simp add:tainted_prop2)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    78
  hence static: "s2ss s \<in> static" using d2s_main by auto
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    79
  from tainted have alive: "alive s obj" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    80
    using tainted_prop1 by auto
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    81
  then obtain sobj where sobj: "co2sobj s obj = Some sobj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    82
    using vs alive_has_sobj by blast
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    83
  from undel vs have "\<not> deleted obj s" and init_alive: "init_alive obj" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    84
    by (auto simp:undeletable_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    85
  with vs sobj have "init_obj_related sobj obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    86
    apply (case_tac obj, case_tac [!] sobj)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    87
    apply (auto split:option.splits if_splits simp:cp2sproc_def ch2sshm_def cq2smsgq_def cm2smsg_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    88
    apply (frule undel_init_file_remains, simp, drule is_file_has_sfile, erule exE)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    89
    apply (rule_tac x = sf in bexI)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    90
    apply (case_tac list, auto split:option.splits simp:is_init_file_props)[1]
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    91
    apply (simp add:same_inode_files_def cfs2sfiles_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    92
    apply (rule_tac x = list in exI, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    93
    apply (case_tac list, auto split:option.splits simp:is_init_dir_props delq_imp_delqm)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    94
    done
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    95
  with tainted t2ts init_alive sobj static
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    96
  show ?thesis unfolding taintable_s_def
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    97
    apply (rule_tac x = "s2ss s" in bexI, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    98
    apply (rule_tac x = "sobj" in exI, auto)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    99
    done
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   100
qed
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   101
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   102
lemma init_deled_imp_deled_s: 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   103
  "\<lbrakk>deleted obj s; init_alive obj; sobj \<in> (s2ss s); valid s\<rbrakk> \<Longrightarrow> \<not> init_obj_related sobj obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   104
apply (induct s, simp)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   105
apply (frule vd_cons)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   106
apply (case_tac a, auto)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   107
(* need simpset for s2ss *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   108
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   109
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   110
lemma deleted_imp_deletable_s:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   111
  "\<lbrakk>deleted obj s; init_alive obj; valid s\<rbrakk> \<Longrightarrow> deletable_s obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   112
apply (simp add:deletable_s_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   113
apply (rule_tac x = "s2ss s" in bexI)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   114
apply (clarify, simp add:init_deled_imp_deled_s)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   115
apply (erule d2s_main)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   116
done
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   117
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   118
theorem undeletable_s_complete:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   119
  assumes undel_s: "undeletable_s obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   120
  shows "undeletable obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   121
proof-
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   122
  from undel_s have init_alive: "init_alive obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   123
    and alive_s: "\<forall> ss \<in> static. \<exists> sobj \<in> ss. init_obj_related sobj obj" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   124
    using undeletable_s_def by auto
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   125
  have "\<not> (\<exists> s. valid s \<and> deleted obj s)" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   126
  proof
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   127
    assume "\<exists> s. valid s \<and> deleted obj s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   128
    then obtain s where vs: "valid s" and del: "deleted obj s" by auto
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   129
    from vs have vss: "s2ss s \<in> static" by (rule d2s_main) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   130
    with alive_s obtain sobj where in_ss: "sobj \<in> (s2ss s)" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   131
      and related: "init_obj_related sobj obj" by auto
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   132
    from init_alive del vs have "deletable_s obj" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   133
      by (auto elim:deleted_imp_deletable_s)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   134
    with alive_s
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   135
    show False by (auto simp:deletable_s_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   136
  qed
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   137
  with init_alive show ?thesis 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   138
    by (simp add:undeletable_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   139
qed
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   140
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   141
theorem final_offer:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   142
  "\<lbrakk>undeletable_s obj; \<not> taintable_s obj; init_alive obj\<rbrakk> \<Longrightarrow> \<not> taintable obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   143
apply (erule swap)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   144
by (simp add:static_complete undeletable_s_complete)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   145
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   146
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   147
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   148
(************** static \<rightarrow> dynamic ***************)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   149
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   150
lemma created_can_have_many:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   151
  "\<lbrakk>valid s; alive s obj; \<not> init_alive obj\<rbrakk> \<Longrightarrow> \<exists> s'. valid s' \<and> alive s' obj \<and> alive s' obj' \<and> s2ss s = s2ss s'"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   152
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   153
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   154
lemma s2d_main:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   155
  "ss \<in> static \<Longrightarrow> \<exists> s. valid s \<and> s2ss s = ss"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   156
apply (erule static.induct)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   157
apply (rule_tac x = "[]" in exI, simp add:s2ss_nil_prop valid.intros)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   158
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   159
apply (erule exE|erule conjE)+
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   160
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   161
apply (erule exE, erule conjE)+
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   162
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   163
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   164
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   165
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   166
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   167
lemma tainted_s_imp_tainted:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   168
  "\<lbrakk>tainted_s ss sobj; ss \<in> static\<rbrakk> \<Longrightarrow> \<exists> obj s. s2ss s = ss \<and> valid s \<and> co2sobj s obj = Some sobj \<and> obj \<in> tainted s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   169
sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   170
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   171
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   172
theorem static_sound:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   173
  assumes tbl_s: "taintable_s obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   174
  shows "taintable obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   175
proof-
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   176
  from tbl_s obtain ss sobj where static: "ss \<in> static"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   177
    and sobj: "tainted_s ss sobj" and related: "init_obj_related sobj obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   178
    and init_alive: "init_alive obj" by (auto simp:taintable_s_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   179
  from static sobj tainted_s_imp_tainted 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   180
  obtain s obj' where s2ss: "s2ss s = ss" and co2sobj: "co2sobj s obj' = Some sobj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   181
    and tainted: "obj' \<in> tainted s" and vs: "valid s" by blast
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   182
  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   183
  from co2sobj related
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   184
  have eq:"obj = obj'"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   185
    apply (case_tac obj', case_tac [!] obj, case_tac [!] sobj)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   186
    apply auto
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   187
    apply (auto split:option.splits if_splits)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   188
    apply (case_tac a, simp+)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   189
    apply (simp add:cp2sproc_def split:option.splits if_splits)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   190
    apply simp
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   191
    sorry
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   192
  with tainted vs init_alive
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   193
  show ?thesis by (auto simp:taintable_def)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   194
qed
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   195
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   196
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   197
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   198
lemma ts2t:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   199
  "obj \<in> tainted_s ss \<Longrightarrow> \<exists> s. obj \<in> tainted s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   200
  "obj \<in> tainted_s ss \<Longrightarrow> \<exists> so. so True \<in> ss \<Longrightarrow> so True \<in> ss \<Longrightarrow> \<exists> s. valid s \<and> s2ss s = ss \<Longrightarrow> so True \<in> s2ss s \<Longrightarrow> tainted s obj. "
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   201
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   202
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   203
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   204
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   205
end