1
+ − 1
theory Dynamic2static
32
+ − 2
imports Main Flask Static Init_prop Valid_prop Tainted_prop Delete_prop Co2sobj_prop
1
+ − 3
begin
+ − 4
+ − 5
context tainting_s begin
+ − 6
+ − 7
lemma d2s_main:
+ − 8
"valid s \<Longrightarrow> s2ss s \<in> static"
+ − 9
apply (induct s, simp add:s2ss_nil_prop s_init)
+ − 10
apply (frule vd_cons, simp)
+ − 11
apply (case_tac a, simp_all)
+ − 12
(*
+ − 13
apply
+ − 14
induct s, case tac e, every event analysis
+ − 15
*)
31
+ − 16
thm s2ss_def
+ − 17
+ − 18
1
+ − 19
sorry
+ − 20
+ − 21
lemma d2s_main':
+ − 22
"\<lbrakk>alive s obj; co2sobj s obj= Some sobj\<rbrakk> \<Longrightarrow> sobj \<in> (s2ss s)"
19
+ − 23
by (simp add:s2ss_def, rule_tac x = obj in exI, simp)
1
+ − 24
43
+ − 25
lemma tainted_has_sobj:
+ − 26
"\<lbrakk>obj \<in> tainted s; valid s\<rbrakk> \<Longrightarrow> \<exists> sobj. co2sobj s obj = Some sobj"
1
+ − 27
sorry
+ − 28
+ − 29
lemma t2ts:
+ − 30
"obj \<in> tainted s \<Longrightarrow> co2sobj s obj = Some sobj \<Longrightarrow> tainted_s (s2ss s) sobj"
19
+ − 31
apply (frule tainted_in_current, frule tainted_is_valid)
1
+ − 32
apply (simp add:s2ss_def)
+ − 33
apply (case_tac sobj, simp_all)
19
+ − 34
apply (case_tac [!] obj, simp_all split:option.splits if_splits)
1
+ − 35
apply (rule_tac x = "O_proc nat" in exI, simp)
+ − 36
apply (rule_tac x = "O_file list" in exI, simp)
19
+ − 37
apply (drule dir_not_tainted, simp)
+ − 38
apply (drule msgq_not_tainted, simp)
+ − 39
apply (drule shm_not_tainted, simp)
43
+ − 40
done
1
+ − 41
+ − 42
lemma delq_imp_delqm:
+ − 43
"deleted (O_msgq q) s \<Longrightarrow> deleted (O_msg q m) s"
+ − 44
apply (induct s, simp)
+ − 45
by (case_tac a, auto)
+ − 46
+ − 47
theorem static_complete:
+ − 48
assumes undel: "undeletable obj" and tbl: "taintable obj"
+ − 49
shows "taintable_s obj"
+ − 50
proof-
+ − 51
from tbl obtain s where tainted: "obj \<in> tainted s"
+ − 52
by (auto simp:taintable_def)
19
+ − 53
hence vs: "valid s" by (simp add:tainted_is_valid)
1
+ − 54
hence static: "s2ss s \<in> static" using d2s_main by auto
43
+ − 55
from tainted obtain sobj where sobj: "co2sobj s obj = Some sobj"
+ − 56
using vs tainted_has_sobj by blast
1
+ − 57
from undel vs have "\<not> deleted obj s" and init_alive: "init_alive obj"
+ − 58
by (auto simp:undeletable_def)
+ − 59
with vs sobj have "init_obj_related sobj obj"
+ − 60
apply (case_tac obj, case_tac [!] sobj)
19
+ − 61
apply (auto split:option.splits if_splits simp:cp2sproc_def ch2sshm_def cq2smsgq_def cm2smsg_def delq_imp_delqm)
43
+ − 62
apply (frule not_deleted_init_file, simp+)
+ − 63
apply (drule is_file_has_sfile', simp, erule exE)
1
+ − 64
apply (rule_tac x = sf in bexI)
+ − 65
apply (case_tac list, auto split:option.splits simp:is_init_file_props)[1]
43
+ − 66
apply (drule root_is_init_dir', simp)
+ − 67
apply (frule not_deleted_init_file, simp, simp)
+ − 68
apply (simp add:cf2sfile_def split:option.splits if_splits)
+ − 69
apply (simp add:cf2sfiles_def)
+ − 70
apply (rule_tac x = list in bexI, simp, simp add:same_inode_files_def not_deleted_init_file)
+ − 71
+ − 72
apply (frule not_deleted_init_dir, simp+)
+ − 73
apply (simp add:cf2sfile_def split:option.splits if_splits)
+ − 74
apply (case_tac list, simp add:sroot_def, simp)
+ − 75
apply (drule file_dir_conflict, simp+)
+ − 76
done
1
+ − 77
with tainted t2ts init_alive sobj static
+ − 78
show ?thesis unfolding taintable_s_def
+ − 79
apply (rule_tac x = "s2ss s" in bexI, simp)
+ − 80
apply (rule_tac x = "sobj" in exI, auto)
+ − 81
done
+ − 82
qed
+ − 83
19
+ − 84
lemma cp2sproc_pi:
+ − 85
"\<lbrakk>cp2sproc s p = Some (Init p', sec, fds, shms); valid s\<rbrakk> \<Longrightarrow> p = p' \<and> \<not> deleted (O_proc p) s \<and> p \<in> init_procs"
+ − 86
by (simp add:cp2sproc_def split:option.splits if_splits)
+ − 87
+ − 88
lemma cq2smsgq_qi:
+ − 89
"\<lbrakk>cq2smsgq s q = Some (Init q', sec, sms); valid s\<rbrakk> \<Longrightarrow> q = q' \<and> \<not> deleted (O_msgq q) s \<and> q \<in> init_msgqs"
+ − 90
by (simp add:cq2smsgq_def split:option.splits if_splits)
+ − 91
+ − 92
lemma cm2smsg_mi:
+ − 93
"\<lbrakk>cm2smsg s q m = Some (Init m', sec, ttag); q \<in> init_msgqs; valid s\<rbrakk>
+ − 94
\<Longrightarrow> m = m' \<and> \<not> deleted (O_msg q m) s \<and> m \<in> set (init_msgs_of_queue q) \<and> q \<in> init_msgqs"
+ − 95
by (clarsimp simp add:cm2smsg_def split:if_splits option.splits)
+ − 96
+ − 97
lemma ch2sshm_hi:
+ − 98
"\<lbrakk>ch2sshm s h = Some (Init h', sec); valid s\<rbrakk> \<Longrightarrow> h = h' \<and> \<not> deleted (O_shm h) s \<and> h \<in> init_shms"
+ − 99
by (clarsimp simp:ch2sshm_def split:if_splits option.splits)
+ − 100
+ − 101
lemma root_not_deleted:
+ − 102
"\<lbrakk>deleted (O_dir []) s; valid s\<rbrakk> \<Longrightarrow> False"
+ − 103
apply (induct s, simp)
+ − 104
apply (frule vd_cons, frule vt_grant_os, case_tac a, auto)
+ − 105
done
+ − 106
+ − 107
lemma cf2sfile_fi:
+ − 108
"\<lbrakk>cf2sfile s f = Some (Init f', sec, psecopt, asecs); valid s\<rbrakk> \<Longrightarrow> f = f' \<and>
+ − 109
(if (is_file s f) then \<not> deleted (O_file f) s \<and> is_init_file f
+ − 110
else \<not> deleted (O_dir f) s \<and> is_init_dir f)"
+ − 111
apply (case_tac f)
+ − 112
by (auto simp:sroot_def cf2sfile_def root_is_init_dir dest!:root_is_dir' root_not_deleted
+ − 113
split:if_splits option.splits)
+ − 114
1
+ − 115
lemma init_deled_imp_deled_s:
+ − 116
"\<lbrakk>deleted obj s; init_alive obj; sobj \<in> (s2ss s); valid s\<rbrakk> \<Longrightarrow> \<not> init_obj_related sobj obj"
19
+ − 117
apply (rule notI)
+ − 118
apply (clarsimp simp:s2ss_def)
+ − 119
apply (case_tac obj, case_tac [!] obja, case_tac sobj)
20
+ − 120
apply (auto split:option.splits if_splits dest!:cp2sproc_pi cq2smsgq_qi ch2sshm_hi cm2smsg_mi cf2sfile_fi)
+ − 121
apply (auto simp:cf2sfiles_def same_inode_files_def has_same_inode_prop1' is_file_def is_dir_def
+ − 122
split:option.splits t_inode_tag.splits dest!:cf2sfile_fi)
19
+ − 123
done
1
+ − 124
+ − 125
lemma deleted_imp_deletable_s:
+ − 126
"\<lbrakk>deleted obj s; init_alive obj; valid s\<rbrakk> \<Longrightarrow> deletable_s obj"
+ − 127
apply (simp add:deletable_s_def)
+ − 128
apply (rule_tac x = "s2ss s" in bexI)
+ − 129
apply (clarify, simp add:init_deled_imp_deled_s)
+ − 130
apply (erule d2s_main)
+ − 131
done
+ − 132
+ − 133
theorem undeletable_s_complete:
+ − 134
assumes undel_s: "undeletable_s obj"
+ − 135
shows "undeletable obj"
+ − 136
proof-
+ − 137
from undel_s have init_alive: "init_alive obj"
+ − 138
and alive_s: "\<forall> ss \<in> static. \<exists> sobj \<in> ss. init_obj_related sobj obj"
+ − 139
using undeletable_s_def by auto
+ − 140
have "\<not> (\<exists> s. valid s \<and> deleted obj s)"
+ − 141
proof
+ − 142
assume "\<exists> s. valid s \<and> deleted obj s"
+ − 143
then obtain s where vs: "valid s" and del: "deleted obj s" by auto
+ − 144
from vs have vss: "s2ss s \<in> static" by (rule d2s_main)
+ − 145
with alive_s obtain sobj where in_ss: "sobj \<in> (s2ss s)"
+ − 146
and related: "init_obj_related sobj obj" by auto
+ − 147
from init_alive del vs have "deletable_s obj"
+ − 148
by (auto elim:deleted_imp_deletable_s)
+ − 149
with alive_s
+ − 150
show False by (auto simp:deletable_s_def)
+ − 151
qed
+ − 152
with init_alive show ?thesis
+ − 153
by (simp add:undeletable_def)
+ − 154
qed
+ − 155
+ − 156
theorem final_offer:
+ − 157
"\<lbrakk>undeletable_s obj; \<not> taintable_s obj; init_alive obj\<rbrakk> \<Longrightarrow> \<not> taintable obj"
+ − 158
apply (erule swap)
+ − 159
by (simp add:static_complete undeletable_s_complete)
+ − 160
+ − 161
+ − 162
+ − 163
(************** static \<rightarrow> dynamic ***************)
+ − 164
+ − 165
lemma created_can_have_many:
+ − 166
"\<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'"
+ − 167
sorry
+ − 168
+ − 169
lemma s2d_main:
+ − 170
"ss \<in> static \<Longrightarrow> \<exists> s. valid s \<and> s2ss s = ss"
+ − 171
apply (erule static.induct)
+ − 172
apply (rule_tac x = "[]" in exI, simp add:s2ss_nil_prop valid.intros)
+ − 173
+ − 174
apply (erule exE|erule conjE)+
+ − 175
20
+ − 176
sorry
+ − 177
+ − 178
lemma tainted_s_in_ss:
+ − 179
"tainted_s ss sobj \<Longrightarrow> sobj \<in> ss"
+ − 180
apply (case_tac sobj, simp_all)
+ − 181
apply (case_tac bool, simp+)
+ − 182
apply (case_tac bool, simp+)
+ − 183
apply (case_tac prod1, case_tac prod2, simp)
+ − 184
thm tainted_s.simps
+ − 185
oops
+ − 186
+ − 187
lemma set_eq_D:
+ − 188
"\<lbrakk>x \<in> S; {x. P x} = S\<rbrakk> \<Longrightarrow> P x"
+ − 189
by auto
+ − 190
+ − 191
lemma cqm2sms_prop1:
+ − 192
"\<lbrakk>cqm2sms s q queue = Some sms; sm \<in> set sms\<rbrakk> \<Longrightarrow> \<exists> m. cm2smsg s q m = Some sm"
+ − 193
apply (induct queue arbitrary:sms)
43
+ − 194
apply (auto simp:cqm2sms.simps split:option.splits)
20
+ − 195
done
1
+ − 196
20
+ − 197
lemma sq_sm_prop:
+ − 198
"\<lbrakk>sm \<in> set sms; cq2smsgq s q = Some (qi, qsec, sms); valid s\<rbrakk>
+ − 199
\<Longrightarrow> \<exists> m. cm2smsg s q m = Some sm"
+ − 200
by (auto simp:cq2smsgq_def split: option.splits intro:cqm2sms_prop1)
+ − 201
+ − 202
lemma tainted_s_imp_tainted:
+ − 203
"\<lbrakk>tainted_s ss sobj; ss \<in> static\<rbrakk> \<Longrightarrow> \<exists> s obj. valid s \<and> co2sobj s obj = Some sobj \<and> obj \<in> tainted s"
+ − 204
apply (drule s2d_main)
+ − 205
apply (erule exE, erule conjE, simp add:s2ss_def)
+ − 206
apply (rule_tac x = s in exI, simp)
+ − 207
apply (case_tac sobj, simp_all)
+ − 208
apply (erule conjE, drule_tac S = ss in set_eq_D, simp, (erule exE|erule conjE)+)
+ − 209
apply (rule_tac x = obj in exI, simp)
+ − 210
apply (case_tac obj, (simp split:option.splits if_splits)+)
+ − 211
+ − 212
apply (erule conjE, drule_tac S = ss in set_eq_D, simp, (erule exE|erule conjE)+)
+ − 213
apply (rule_tac x = obj in exI, simp)
+ − 214
apply (case_tac obj, (simp split:option.splits if_splits)+)
+ − 215
+ − 216
apply (case_tac prod1, case_tac prod2, simp)
+ − 217
apply ((erule conjE)+, drule_tac S = ss in set_eq_D, simp, (erule exE|erule conjE)+)
+ − 218
apply (case_tac obj, simp_all split:option.splits if_splits)
+ − 219
apply (drule_tac sm = "(aa, ba, True)" in sq_sm_prop, simp+, erule exE)
+ − 220
apply (rule_tac x = "O_msg nat m" in exI)
43
+ − 221
apply (rule conjI)
+ − 222
apply simp
+ − 223
apply (simp add
+ − 224
apply (simp add:co2sobj.simps)
+ − 225
apply (simp add:cm2smsg_def split:option.splits if_splits)
21
+ − 226
done
1
+ − 227
20
+ − 228
lemma has_inode_tainted_aux:
+ − 229
"O_file f \<in> tainted s \<Longrightarrow> \<forall> f'. has_same_inode s f f' \<longrightarrow> O_file f' \<in> tainted s"
+ − 230
apply (erule tainted.induct)
+ − 231
apply (auto intro:tainted.intros simp:has_same_inode_def)
+ − 232
(*?? need simpset for tainted *)
1
+ − 233
sorry
+ − 234
20
+ − 235
lemma has_same_inode_tainted:
+ − 236
"\<lbrakk>has_same_inode s f f'; O_file f' \<in> tainted s\<rbrakk> \<Longrightarrow> O_file f \<in> tainted s"
+ − 237
by (drule has_inode_tainted_aux, auto simp:has_same_inode_def)
1
+ − 238
+ − 239
theorem static_sound:
+ − 240
assumes tbl_s: "taintable_s obj"
+ − 241
shows "taintable obj"
+ − 242
proof-
+ − 243
from tbl_s obtain ss sobj where static: "ss \<in> static"
+ − 244
and sobj: "tainted_s ss sobj" and related: "init_obj_related sobj obj"
+ − 245
and init_alive: "init_alive obj" by (auto simp:taintable_s_def)
+ − 246
from static sobj tainted_s_imp_tainted
20
+ − 247
obtain s obj' where co2sobj: "co2sobj s obj' = Some sobj"
+ − 248
and tainted': "obj' \<in> tainted s" and vs: "valid s" by blast
1
+ − 249
20
+ − 250
from co2sobj related vs
+ − 251
have eq:"obj = obj' \<or> (\<exists> f f'. obj = O_file f \<and> obj' = O_file f' \<and> has_same_inode s f f')"
+ − 252
apply (case_tac obj', case_tac [!] obj)
+ − 253
apply (auto split:option.splits if_splits dest!:cp2sproc_pi cq2smsgq_qi ch2sshm_hi cm2smsg_mi cf2sfile_fi)
+ − 254
apply (auto simp:cf2sfiles_def same_inode_files_def has_same_inode_def is_file_def is_dir_def
+ − 255
split:option.splits t_inode_tag.splits dest!:cf2sfile_fi)
+ − 256
done
+ − 257
with tainted' have tainted: "obj \<in> tainted s"
+ − 258
by (auto intro:has_same_inode_tainted)
+ − 259
with vs init_alive
1
+ − 260
show ?thesis by (auto simp:taintable_def)
+ − 261
qed
+ − 262
+ − 263
+ − 264
+ − 265
lemma ts2t:
+ − 266
"obj \<in> tainted_s ss \<Longrightarrow> \<exists> s. obj \<in> tainted s"
+ − 267
"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. "
+ − 268
+ − 269
+ − 270
+ − 271
+ − 272
end