1
|
1 |
(*<*)
|
|
2 |
theory Init_prop
|
|
3 |
imports Main OS_type_def Flask Flask_type Static_type Static
|
|
4 |
begin
|
|
5 |
(*>*)
|
|
6 |
|
|
7 |
context init begin
|
|
8 |
|
|
9 |
lemma init_files_prop1: "init_inum_of_file f = Some im \<Longrightarrow> f \<in> init_files"
|
|
10 |
by (simp add:inof_has_file_tag)
|
|
11 |
|
|
12 |
lemma init_files_prop2: "finite init_files"
|
|
13 |
by (simp add:init_finite_sets)
|
|
14 |
|
|
15 |
lemma init_files_prop3: "f \<in> init_files \<Longrightarrow> init_inum_of_file f \<noteq> None"
|
|
16 |
by (auto dest:init_file_has_inum)
|
|
17 |
|
|
18 |
lemma init_files_prop4: "(f \<in> init_files) = (f \<in> current_files [])"
|
|
19 |
apply (simp add:current_files_def, rule iffI)
|
|
20 |
using init_files_prop1 init_files_prop3 by auto
|
|
21 |
|
|
22 |
lemmas init_files_props = init_file_has_inum init_files_prop1 init_files_prop2 init_files_prop3 init_files_prop4
|
|
23 |
|
|
24 |
lemma init_inumof_prop1: "init_inum_of_file f = Some im \<Longrightarrow> \<exists> tag. init_itag_of_inum im = Some tag"
|
|
25 |
by (auto dest:inof_has_file_tag)
|
|
26 |
|
|
27 |
lemma init_inumof_prop2: "init_inum_of_file f = Some im \<Longrightarrow> init_itag_of_inum im \<noteq> None"
|
|
28 |
by (auto dest:inof_has_file_tag)
|
|
29 |
|
|
30 |
lemma init_inumof_prop3: "\<lbrakk>init_inum_of_file f = Some im; init_itag_of_inum im = Some tag\<rbrakk> \<Longrightarrow> is_file_dir_itag tag"
|
|
31 |
by (auto dest:inof_has_file_tag)
|
|
32 |
|
|
33 |
lemmas init_inum_of_file_props = init_files_prop1 init_inumof_prop1 init_inumof_prop2 init_inumof_prop3
|
|
34 |
|
|
35 |
lemma init_inumos_prop1: "init_inum_of_socket s = Some im \<Longrightarrow> s \<in> init_sockets"
|
|
36 |
by (auto dest:inos_has_sock_tag)
|
|
37 |
|
|
38 |
lemma init_inumos_prop2: "init_inum_of_socket s = Some im \<Longrightarrow> init_itag_of_inum im = Some Tag_TCP_SOCK \<or> init_itag_of_inum im = Some Tag_UDP_SOCK"
|
|
39 |
apply (auto dest!:inos_has_sock_tag)
|
|
40 |
apply (case_tac tag, simp+)
|
|
41 |
done
|
|
42 |
|
|
43 |
lemma init_inumos_prop3: "init_inum_of_socket s = Some im \<Longrightarrow> init_itag_of_inum im \<noteq> None"
|
|
44 |
by (auto dest:inos_has_sock_tag)
|
|
45 |
|
|
46 |
lemma init_inumos_prop4: "init_inum_of_socket s = Some im \<Longrightarrow> \<exists> tag. init_itag_of_inum im = Some tag \<and> is_sock_itag tag"
|
|
47 |
by (auto dest!:inos_has_sock_tag)
|
|
48 |
|
|
49 |
lemmas init_inum_of_socket_props = init_inumos_prop1 init_inumos_prop2 init_inumos_prop3 init_inumos_prop4
|
|
50 |
|
|
51 |
lemma init_sockets_prop1: "(p, fd) \<in> init_sockets \<Longrightarrow> p \<in> init_procs"
|
|
52 |
by (auto dest: init_socket_has_inode)
|
|
53 |
|
|
54 |
lemma init_sockets_prop2: "(p, fd) \<in> init_sockets \<Longrightarrow> fd \<in> init_fds_of_proc p"
|
|
55 |
by (auto dest:init_socket_has_inode)
|
|
56 |
|
|
57 |
lemma init_sockets_prop3: "s \<in> init_sockets \<Longrightarrow> \<exists> im. init_inum_of_socket s = Some im"
|
|
58 |
by (case_tac s, auto dest:init_socket_has_inode)
|
|
59 |
|
|
60 |
lemma init_sockets_prop4: "s \<in> init_sockets \<Longrightarrow> init_inum_of_socket s \<noteq> None"
|
|
61 |
by (simp add:init_sockets_prop3)
|
|
62 |
|
|
63 |
lemma init_sockets_prop5: "s \<in> init_sockets = (s \<in> current_sockets [])"
|
|
64 |
apply (simp add:current_sockets_def, rule iffI)
|
|
65 |
using init_sockets_prop4 inos_has_sock_tag apply auto
|
|
66 |
apply (case_tac s, auto)
|
|
67 |
done
|
|
68 |
|
|
69 |
lemmas init_sockets_props = init_sockets_prop1 init_sockets_prop2 init_sockets_prop3 init_sockets_prop4 init_sockets_prop5
|
|
70 |
|
|
71 |
lemma is_init_file_prop1: "is_init_file f = (f \<in> init_files \<and> is_file [] f)"
|
|
72 |
by (auto simp add:is_init_file_def is_file_def init_inum_of_file_props split:option.splits)
|
|
73 |
|
|
74 |
lemma is_init_file_prop2: "is_init_file f = (init_alive (O_file f))"
|
|
75 |
by (auto simp add:is_init_file_def is_file_def init_inum_of_file_props split:option.splits)
|
|
76 |
|
|
77 |
lemmas is_init_file_props = is_init_file_prop1 is_init_file_prop2
|
|
78 |
|
|
79 |
lemma is_init_dir_prop1: "is_init_dir f = (f \<in> init_files \<and> is_dir [] f)"
|
|
80 |
by (auto simp add:is_init_dir_def is_dir_def init_inum_of_file_props split:option.splits)
|
|
81 |
|
|
82 |
lemma is_init_dir_prop2: "is_init_dir f = (init_alive (O_dir f))"
|
|
83 |
by (auto simp add:is_init_dir_def is_dir_def init_inum_of_file_props split:option.splits)
|
|
84 |
|
|
85 |
lemmas is_init_dir_props = is_init_dir_prop1 is_init_dir_prop2
|
|
86 |
|
2
|
87 |
lemma is_file_nil: "is_file [] = is_init_file"
|
|
88 |
by (auto simp:is_init_file_def is_file_def init_inum_of_file_props intro!:ext split:option.splits)
|
|
89 |
|
|
90 |
lemma is_dir_nil: "is_dir [] = is_init_dir"
|
|
91 |
by (auto simp:is_init_dir_def is_dir_def init_inum_of_file_props intro!:ext split:option.splits)
|
|
92 |
|
4
|
93 |
lemma is_udp_sock_nil:
|
|
94 |
"is_udp_sock [] k = is_init_udp_sock k"
|
|
95 |
by (auto simp:is_udp_sock_def is_init_udp_sock_def split:option.splits)
|
|
96 |
|
1
|
97 |
lemma is_init_udp_sock_prop1: "is_init_udp_sock s = (s \<in> init_sockets \<and> is_udp_sock [] s)"
|
|
98 |
apply (auto simp add:is_init_udp_sock_def is_udp_sock_def init_inum_of_socket_props
|
|
99 |
dest:init_socket_has_inode split:option.splits)
|
|
100 |
done
|
|
101 |
|
|
102 |
lemma is_init_udp_sock_prop2: "is_init_udp_sock s = (init_alive (O_udp_sock s))"
|
|
103 |
apply (auto simp add:is_init_udp_sock_def is_udp_sock_def init_inum_of_socket_props
|
|
104 |
dest:init_socket_has_inode split:option.splits)
|
|
105 |
done
|
|
106 |
|
4
|
107 |
lemma is_init_udp_sock_prop3:
|
|
108 |
"is_init_udp_sock (p, fd) \<Longrightarrow> p \<in> init_procs"
|
|
109 |
by (auto simp:is_init_udp_sock_def split:option.splits t_inode_tag.splits
|
|
110 |
dest:init_socket_has_inode inos_has_sock_tag)
|
|
111 |
|
|
112 |
lemma is_init_udp_sock_prop4:
|
|
113 |
"is_init_udp_sock (p, fd) \<Longrightarrow> fd \<in> init_fds_of_proc p"
|
|
114 |
by (auto simp:is_init_udp_sock_def split:option.splits t_inode_tag.splits
|
|
115 |
dest:init_socket_has_inode inos_has_sock_tag)
|
|
116 |
|
|
117 |
lemmas is_init_udp_sock_props = is_init_udp_sock_prop1 is_init_udp_sock_prop2 is_init_udp_sock_prop3
|
|
118 |
is_init_udp_sock_prop4
|
|
119 |
|
|
120 |
lemma is_tcp_sock_nil:
|
|
121 |
"is_tcp_sock [] k = is_init_tcp_sock k"
|
|
122 |
by (auto simp:is_tcp_sock_def is_init_tcp_sock_def split:option.splits)
|
1
|
123 |
|
|
124 |
lemma is_init_tcp_sock_prop1: "is_init_tcp_sock s = (s \<in> init_sockets \<and> is_tcp_sock [] s)"
|
|
125 |
apply (auto simp add:is_init_tcp_sock_def is_tcp_sock_def init_inum_of_socket_props
|
|
126 |
dest:init_socket_has_inode split:option.splits)
|
|
127 |
done
|
|
128 |
|
|
129 |
lemma is_init_tcp_sock_prop2: "is_init_tcp_sock s = (init_alive (O_tcp_sock s))"
|
|
130 |
apply (auto simp add:is_init_tcp_sock_def is_tcp_sock_def init_inum_of_socket_props
|
|
131 |
dest:init_socket_has_inode split:option.splits)
|
|
132 |
done
|
|
133 |
|
4
|
134 |
lemma is_init_tcp_sock_prop3:
|
|
135 |
"is_init_tcp_sock (p, fd) \<Longrightarrow> p \<in> init_procs"
|
|
136 |
by (auto simp:is_init_tcp_sock_def split:option.splits t_inode_tag.splits
|
|
137 |
dest:init_socket_has_inode inos_has_sock_tag)
|
1
|
138 |
|
4
|
139 |
lemma is_init_tcp_sock_prop4:
|
|
140 |
"is_init_tcp_sock (p, fd) \<Longrightarrow> fd \<in> init_fds_of_proc p"
|
|
141 |
by (auto simp:is_init_tcp_sock_def split:option.splits t_inode_tag.splits
|
|
142 |
dest:init_socket_has_inode inos_has_sock_tag)
|
|
143 |
|
|
144 |
lemmas is_init_tcp_sock_props = is_init_tcp_sock_prop1 is_init_tcp_sock_prop2 is_init_tcp_sock_prop3
|
|
145 |
is_init_tcp_sock_prop4
|
1
|
146 |
|
|
147 |
lemma init_parent_file_prop1:
|
|
148 |
"\<lbrakk>parent f = Some pf; f \<in> init_files\<rbrakk> \<Longrightarrow> is_init_dir pf"
|
|
149 |
apply (frule parent_file_in_init, simp, frule_tac f = pf in init_files_prop3)
|
|
150 |
apply (clarsimp, drule_tac im = y in init_parentf_is_dir, simp+)
|
|
151 |
by (simp add:is_init_dir_def)
|
|
152 |
|
|
153 |
lemma init_parent_file_prop1':
|
|
154 |
"a # f \<in> init_files \<Longrightarrow> is_init_dir f"
|
|
155 |
by (rule_tac pf = f in init_parent_file_prop1, auto)
|
|
156 |
|
|
157 |
lemma init_parent_file_prop2:
|
|
158 |
"\<lbrakk>parent f = Some pf; is_init_file f\<rbrakk> \<Longrightarrow> is_init_dir pf"
|
|
159 |
by (rule init_parent_file_prop1, simp, simp add: is_init_file_props)
|
|
160 |
|
|
161 |
lemma init_parent_file_prop2':
|
|
162 |
"is_init_file (f#pf) \<Longrightarrow> is_init_dir pf"
|
|
163 |
apply (rule init_parent_file_prop2)
|
|
164 |
by auto
|
|
165 |
|
|
166 |
lemma init_parent_file_prop3:
|
|
167 |
"\<lbrakk>parent f = Some pf; is_init_dir f\<rbrakk> \<Longrightarrow> is_init_dir pf"
|
|
168 |
by (rule init_parent_file_prop1, simp, simp add: is_init_dir_props)
|
|
169 |
|
|
170 |
lemma init_parent_file_prop3':
|
|
171 |
"is_init_dir (f#pf) \<Longrightarrow> is_init_dir pf"
|
|
172 |
apply (rule init_parent_file_prop3)
|
|
173 |
by auto
|
|
174 |
|
|
175 |
lemma parent_file_in_init': "a # f \<in> init_files \<Longrightarrow> f \<in> init_files"
|
|
176 |
by (subgoal_tac "parent (a # f) = Some f", drule parent_file_in_init, auto)
|
|
177 |
|
|
178 |
lemmas init_parent_file_props = parent_file_in_init init_parent_file_prop1 parent_file_in_init' init_parent_file_prop1' init_parent_file_prop2 init_parent_file_prop2' init_parent_file_prop3 init_parent_file_prop3'
|
|
179 |
|
|
180 |
lemma root_in_filesystem: "[] \<in> init_files"
|
|
181 |
using init_files_prop1 root_is_dir by auto
|
|
182 |
|
|
183 |
lemma root_is_init_dir: "is_init_dir []"
|
|
184 |
using root_is_dir
|
|
185 |
by (auto simp add:is_init_dir_def split:option.splits)
|
|
186 |
|
|
187 |
lemma root_is_init_dir': "is_init_file [] \<Longrightarrow> False"
|
|
188 |
using root_is_dir
|
|
189 |
by (auto simp:is_init_file_def split:option.splits)
|
|
190 |
|
|
191 |
|
|
192 |
lemma init_files_hung_prop1: "f \<in> init_files_hung_by_del \<Longrightarrow> f \<in> init_files"
|
|
193 |
by (auto dest:init_files_hung_valid)
|
|
194 |
|
|
195 |
lemma init_files_hung_prop2: "f \<in> init_files_hung_by_del \<Longrightarrow> \<exists> p fd. init_file_of_proc_fd p fd = Some f"
|
|
196 |
by (auto dest:init_files_hung_valid)
|
|
197 |
|
|
198 |
lemmas init_files_hung_by_del_props = init_files_hung_prop1 init_files_hung_prop2 init_files_hung_valid'
|
|
199 |
|
|
200 |
|
|
201 |
lemma init_fds_of_proc_prop1: "fd \<in> init_fds_of_proc p \<Longrightarrow> p \<in> init_procs"
|
|
202 |
by (auto dest!:init_procfds_valid)
|
|
203 |
|
|
204 |
lemma init_fds_of_proc_prop2: "fd \<in> init_fds_of_proc p \<Longrightarrow> (\<exists> f \<in> init_files. init_file_of_proc_fd p fd = Some f) \<or> (p, fd) \<in> init_sockets"
|
|
205 |
by (auto dest:init_procfds_valid)
|
|
206 |
|
|
207 |
lemmas init_fds_of_proc_props = init_fds_of_proc_prop1 init_fds_of_proc_prop2
|
|
208 |
|
|
209 |
lemma init_filefd_prop1: "init_file_of_proc_fd p fd = Some f \<Longrightarrow> f \<in> init_files"
|
|
210 |
by (auto dest!:init_filefd_valid intro:init_files_prop1)
|
|
211 |
|
|
212 |
lemma init_filefd_prop2: "init_file_of_proc_fd p fd = Some f \<Longrightarrow> p \<in> init_procs"
|
|
213 |
by (auto dest:init_filefd_valid)
|
|
214 |
|
|
215 |
lemma init_filefd_prop3: "init_file_of_proc_fd p fd = Some f \<Longrightarrow> fd \<in> init_fds_of_proc p"
|
|
216 |
by (auto dest:init_filefd_valid)
|
|
217 |
|
|
218 |
lemma init_filefd_prop4: "init_file_of_proc_fd p fd = Some f \<Longrightarrow> \<exists> flags. init_oflags_of_proc_fd p fd = Some flags"
|
|
219 |
by (auto dest:init_filefd_valid)
|
|
220 |
|
|
221 |
lemma init_filefd_prop5: "init_file_of_proc_fd p fd = Some f \<Longrightarrow> is_init_file f"
|
|
222 |
by (auto dest:init_filefd_valid simp:is_init_file_def)
|
|
223 |
|
|
224 |
lemmas init_file_of_proc_fd_props = init_filefd_prop1 init_filefd_prop2 init_filefd_prop3 init_filefd_prop4 init_filefd_prop5
|
|
225 |
|
|
226 |
lemma init_oflags_prop1: "init_oflags_of_proc_fd p fd = Some flags \<Longrightarrow> p \<in> init_procs"
|
|
227 |
by (auto dest:init_fileflag_valid init_file_of_proc_fd_props)
|
|
228 |
|
|
229 |
lemma init_oflags_prop2: "init_oflags_of_proc_fd p fd = Some flags \<Longrightarrow> fd \<in> init_fds_of_proc p"
|
|
230 |
by (auto dest:init_fileflag_valid init_file_of_proc_fd_props)
|
|
231 |
|
|
232 |
lemmas init_oflags_of_proc_fd_props = init_oflags_prop1 init_oflags_prop2 init_fileflag_valid
|
|
233 |
|
|
234 |
(*
|
|
235 |
lemma init_socketstate_prop1: "s \<in> init_sockets \<Longrightarrow> init_socket_state s \<noteq> None"
|
|
236 |
using init_socket_has_state
|
|
237 |
by (case_tac s, simp add:bidirect_in_init_def)
|
|
238 |
|
|
239 |
lemma init_socketstate_prop2: "s \<in> init_sockets \<Longrightarrow> \<exists> t. init_socket_state s = Some t"
|
|
240 |
using init_socket_has_state
|
|
241 |
by (case_tac s, simp add:bidirect_in_init_def)
|
|
242 |
|
|
243 |
lemma init_socketstate_prop3: "init_socket_state s = Some t \<Longrightarrow> s \<in> init_sockets"
|
|
244 |
using init_socket_has_state
|
|
245 |
by (case_tac s, simp add:bidirect_in_init_def)
|
|
246 |
|
|
247 |
lemmas init_socket_state_props = init_socketstate_prop1 init_socketstate_prop2 init_socketstate_prop3
|
|
248 |
*)
|
|
249 |
|
|
250 |
lemma init_inum_sock_file_noninter: "\<lbrakk>init_inum_of_socket s = Some im; init_inum_of_file f = Some im\<rbrakk> \<Longrightarrow> False"
|
|
251 |
apply (frule init_inumof_prop1, erule exE, drule init_inumof_prop3, simp)
|
|
252 |
apply (frule init_inumos_prop2)
|
|
253 |
apply (case_tac tag, simp+)
|
|
254 |
done
|
|
255 |
|
|
256 |
lemma init_parent_file_has_inum: "\<lbrakk>parent f = Some pf; init_inum_of_file f = Some im\<rbrakk> \<Longrightarrow> \<exists> im. init_inum_of_file pf = Some im"
|
|
257 |
by (drule init_files_prop1, drule parent_file_in_init, simp, simp add:init_files_props)
|
|
258 |
|
|
259 |
lemma init_file_has_no_son': "\<lbrakk>init_itag_of_inum im = Some Tag_FILE; init_inum_of_file f = Some im; parent f' = Some f\<rbrakk> \<Longrightarrow> init_inum_of_file f' = None"
|
|
260 |
apply (drule init_file_no_son, simp)
|
|
261 |
by (case_tac "init_inum_of_file f'", auto dest:init_files_prop1)
|
|
262 |
|
|
263 |
lemma init_parent_file_is_dir': "\<lbrakk>parent f = Some pf; init_inum_of_file f = Some im; init_inum_of_file pf = Some ipm\<rbrakk> \<Longrightarrow> init_itag_of_inum ipm = Some Tag_DIR"
|
|
264 |
by (drule init_parentf_is_dir, auto dest:init_files_prop1)
|
|
265 |
|
|
266 |
lemma init_file_hung_has_no_son: "\<lbrakk>f \<in> init_files_hung_by_del; parent f' = Some f; init_inum_of_file f' = Some im\<rbrakk> \<Longrightarrow> False"
|
|
267 |
apply (frule init_files_hung_prop1, drule init_file_has_inum, erule exE)
|
|
268 |
apply (drule init_files_hung_valid', simp)
|
|
269 |
apply (frule init_parent_file_is_dir', simp+)
|
|
270 |
apply (drule init_files_prop1)
|
|
271 |
apply (erule_tac x = f' in allE, simp)
|
|
272 |
by (case_tac f', simp_all add:no_junior_def)
|
|
273 |
|
2
|
274 |
lemma same_inode_nil_prop:
|
|
275 |
"same_inode_files [] f = init_same_inode_files f"
|
|
276 |
by (simp add:same_inode_files_def init_same_inode_files_def)
|
|
277 |
|
|
278 |
lemma init_same_inode_prop1:
|
|
279 |
"f \<in> init_files \<Longrightarrow> \<forall> f' \<in> init_same_inode_files f. f' \<in> init_files"
|
|
280 |
apply (simp add:init_same_inode_files_def)
|
|
281 |
apply (drule init_files_prop3)
|
|
282 |
apply (auto simp:init_files_prop1)
|
|
283 |
done
|
1
|
284 |
|
|
285 |
end
|
|
286 |
|
|
287 |
context flask begin
|
|
288 |
|
|
289 |
lemma init_alive_prop: "init_alive obj = alive [] obj"
|
|
290 |
apply (case_tac obj, simp_all add:is_init_file_props is_init_dir_props is_init_tcp_sock_props
|
|
291 |
is_init_udp_sock_props init_files_props init_sockets_props)
|
|
292 |
done
|
|
293 |
|
|
294 |
lemma init_alive_proc: "p \<in> init_procs \<Longrightarrow> init_alive (O_proc p)" by simp
|
|
295 |
lemma init_alive_file: "is_init_file f \<Longrightarrow> init_alive (O_file f)" by simp
|
|
296 |
lemma init_alive_dir: "is_init_dir f \<Longrightarrow> init_alive (O_dir f)" by simp
|
|
297 |
lemma init_alive_fd: "fd \<in> init_fds_of_proc p \<Longrightarrow> init_alive (O_fd p fd)" by simp
|
|
298 |
lemma init_alive_tcp: "is_init_tcp_sock s \<Longrightarrow> init_alive (O_tcp_sock s)" by simp
|
|
299 |
lemma init_alive_udp: "is_init_udp_sock s \<Longrightarrow> init_alive (O_udp_sock s)" by simp
|
|
300 |
lemma init_alive_node: "n \<in> init_nodes \<Longrightarrow> init_alive (O_node n)" by simp
|
|
301 |
lemma init_alive_shm: "h \<in> init_shms \<Longrightarrow> init_alive (O_shm h)" by simp
|
|
302 |
lemma init_alive_msgq: "q \<in> init_msgqs \<Longrightarrow> init_alive (O_msgq q)" by simp
|
|
303 |
lemma init_alive_msg: "\<lbrakk>m \<in> set (init_msgs_of_queue q); q \<in> init_msgqs\<rbrakk>
|
|
304 |
\<Longrightarrow> init_alive (O_msg q m)" by simp
|
|
305 |
|
|
306 |
lemmas init_alive_intros = init_alive_proc init_alive_file init_alive_dir init_alive_fd
|
|
307 |
init_alive_tcp init_alive_udp init_alive_node init_alive_shm init_alive_msgq init_alive_msg
|
|
308 |
|
|
309 |
|
|
310 |
lemma init_file_type_prop1: "is_init_file f \<Longrightarrow> \<exists> t. init_type_of_obj (O_file f) = Some t"
|
|
311 |
using init_obj_has_type
|
|
312 |
by (auto simp:is_init_file_def split:option.splits)
|
|
313 |
|
|
314 |
lemma init_file_type_prop2: "is_init_file f \<Longrightarrow> init_type_of_obj (O_file f) \<noteq> None"
|
|
315 |
by (simp add:init_file_type_prop1)
|
|
316 |
|
|
317 |
lemma init_file_type_prop3: "init_type_of_obj (O_file f) = Some t \<Longrightarrow> f \<in> init_files"
|
|
318 |
apply (drule init_type_has_obj)
|
|
319 |
by (simp add:is_init_file_def init_inum_of_file_props split:option.splits)
|
|
320 |
|
|
321 |
lemma init_file_type_prop4: "init_type_of_obj (O_file f) = Some t \<Longrightarrow> is_init_file f"
|
|
322 |
apply (drule init_type_has_obj)
|
|
323 |
by (simp add:is_init_file_def init_inum_of_file_props split:option.splits)
|
|
324 |
|
|
325 |
lemmas init_file_types_props = init_file_type_prop1 init_file_type_prop2 init_file_type_prop3 init_file_type_prop4
|
|
326 |
|
|
327 |
lemma init_dir_type_prop1: "is_init_dir f \<Longrightarrow> \<exists> t. init_type_of_obj (O_dir f) = Some t"
|
|
328 |
using init_obj_has_type
|
|
329 |
by (auto simp:is_init_dir_def split:option.splits)
|
|
330 |
|
|
331 |
lemma init_dir_type_prop2: "is_init_dir f \<Longrightarrow> init_type_of_obj (O_dir f) \<noteq> None"
|
|
332 |
by (simp add:init_dir_type_prop1)
|
|
333 |
|
|
334 |
lemma init_dir_type_prop3: "init_type_of_obj (O_dir f) = Some t \<Longrightarrow> f \<in> init_files"
|
|
335 |
apply (drule init_type_has_obj)
|
|
336 |
by (simp add:is_init_dir_def init_inum_of_file_props split:option.splits)
|
|
337 |
|
|
338 |
lemma init_dir_type_prop4: "init_type_of_obj (O_dir f) = Some t \<Longrightarrow> is_init_dir f"
|
|
339 |
apply (drule init_type_has_obj)
|
|
340 |
by (simp add:is_init_dir_def init_inum_of_file_props split:option.splits)
|
|
341 |
|
|
342 |
lemmas init_dir_types_props = init_dir_type_prop1 init_dir_type_prop2 init_dir_type_prop3 init_dir_type_prop4
|
|
343 |
|
|
344 |
lemma init_procrole_prop1: "init_role_of_proc p = Some r \<Longrightarrow> p \<in> init_procs"
|
|
345 |
using init_proc_has_role
|
|
346 |
by (auto simp:bidirect_in_init_def)
|
|
347 |
|
|
348 |
lemma init_procrole_prop2: "p \<in> init_procs \<Longrightarrow> \<exists> r. init_role_of_proc p = Some r"
|
|
349 |
using init_proc_has_role
|
|
350 |
by (auto simp:bidirect_in_init_def)
|
|
351 |
|
|
352 |
lemma init_procrole_prop3: "p \<in> init_procs \<Longrightarrow> init_role_of_proc p \<noteq> None"
|
|
353 |
using init_proc_has_role
|
|
354 |
by (auto simp:bidirect_in_init_def)
|
|
355 |
|
|
356 |
lemmas init_role_of_proc_props = init_procrole_prop1 init_procrole_prop2 init_procrole_prop3
|
|
357 |
|
|
358 |
lemma init_file_user_prop1: "is_init_file f \<Longrightarrow> \<exists> t. init_user_of_obj (O_file f) = Some t"
|
|
359 |
apply (simp only: is_init_file_prop2)
|
|
360 |
by (drule init_obj_has_user, auto)
|
|
361 |
|
|
362 |
lemma init_file_user_prop2: "is_init_file f \<Longrightarrow> init_user_of_obj (O_file f) \<noteq> None"
|
|
363 |
by (simp add:init_file_user_prop1)
|
|
364 |
|
|
365 |
lemma init_file_user_prop3: "init_user_of_obj (O_file f) = Some t \<Longrightarrow> f \<in> init_files"
|
|
366 |
apply (drule init_user_has_obj)
|
|
367 |
by (simp add:is_init_file_def init_inum_of_file_props split:option.splits)
|
|
368 |
|
|
369 |
lemma init_file_user_prop4: "init_user_of_obj (O_file f) = Some t \<Longrightarrow> is_init_file f"
|
|
370 |
apply (drule init_user_has_obj)
|
|
371 |
by (simp add:is_init_file_def init_inum_of_file_props split:option.splits)
|
|
372 |
|
|
373 |
lemma init_file_user_prop5: "init_user_of_obj (O_file f) = Some u \<Longrightarrow> u \<in> init_users"
|
|
374 |
by (simp add:init_user_has_obj)
|
|
375 |
|
|
376 |
lemmas init_file_users_props = init_file_user_prop1 init_file_user_prop2 init_file_user_prop3 init_file_user_prop4 init_file_user_prop5
|
|
377 |
|
|
378 |
lemma init_dir_user_prop1: "is_init_dir f \<Longrightarrow> \<exists> t. init_user_of_obj (O_dir f) = Some t"
|
|
379 |
apply (simp only: is_init_dir_prop2)
|
|
380 |
by (drule init_obj_has_user, auto)
|
|
381 |
|
|
382 |
lemma init_dir_user_prop2: "is_init_dir f \<Longrightarrow> init_user_of_obj (O_dir f) \<noteq> None"
|
|
383 |
by (simp add:init_dir_user_prop1)
|
|
384 |
|
|
385 |
lemma init_dir_user_prop3: "init_user_of_obj (O_dir f) = Some t \<Longrightarrow> f \<in> init_files"
|
|
386 |
apply (drule init_user_has_obj)
|
|
387 |
by (simp add:is_init_dir_def init_inum_of_file_props split:option.splits)
|
|
388 |
|
|
389 |
lemma init_dir_user_prop4: "init_user_of_obj (O_dir f) = Some t \<Longrightarrow> is_init_dir f"
|
|
390 |
apply (drule init_user_has_obj)
|
|
391 |
by (simp add:is_init_dir_def init_inum_of_file_props split:option.splits)
|
|
392 |
|
|
393 |
lemma init_dir_user_prop5: "init_user_of_obj (O_dir f) = Some u \<Longrightarrow> u \<in> init_users"
|
|
394 |
by (simp add:init_user_has_obj)
|
|
395 |
|
|
396 |
lemmas init_dir_users_props = init_dir_user_prop1 init_dir_user_prop2 init_dir_user_prop3 init_dir_user_prop4 init_dir_user_prop5
|
|
397 |
|
2
|
398 |
lemma init_file_dir_conflict: "\<lbrakk>is_init_file f; is_init_dir f\<rbrakk> \<Longrightarrow> False"
|
|
399 |
by (auto simp:is_init_file_def is_init_dir_def split:option.splits t_inode_tag.splits)
|
|
400 |
|
|
401 |
lemma init_file_dir_conflict1: "is_init_file f \<Longrightarrow> \<not> is_init_dir f"
|
|
402 |
by (auto simp:is_init_file_def is_init_dir_def split:option.splits t_inode_tag.splits)
|
|
403 |
|
|
404 |
lemma init_file_dir_conflict2: "is_init_dir f \<Longrightarrow> \<not> is_init_file f"
|
|
405 |
by (auto simp:is_init_file_def is_init_dir_def split:option.splits t_inode_tag.splits)
|
|
406 |
|
1
|
407 |
end
|
|
408 |
|
2
|
409 |
context tainting begin
|
|
410 |
|
|
411 |
lemma tainted_nil_prop:
|
|
412 |
"(x \<in> tainted []) = (x \<in> seeds)"
|
|
413 |
apply (rule iffI)
|
|
414 |
apply (erule tainted.cases, simp+)
|
|
415 |
apply (erule t_init)
|
|
416 |
done
|
|
417 |
|
|
418 |
end
|
1
|
419 |
|
|
420 |
context tainting_s begin
|
|
421 |
|
|
422 |
lemma init_file_has_ctxt:
|
|
423 |
"is_init_file f \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_file f) = Some sec"
|
|
424 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
425 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_file_props)
|
|
426 |
by (simp add:init_file_types_props)
|
|
427 |
|
|
428 |
lemma init_file_has_ctxt':
|
|
429 |
"init_sectxt_of_obj (O_file f) = None \<Longrightarrow> \<not> is_init_file f"
|
|
430 |
by (rule notI, drule init_file_has_ctxt, simp)
|
|
431 |
|
|
432 |
lemma init_dir_has_ctxt:
|
|
433 |
"is_init_dir f \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_dir f) = Some sec"
|
|
434 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
435 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
436 |
by (simp add:init_dir_types_props)
|
|
437 |
|
|
438 |
lemma init_dir_has_ctxt':
|
|
439 |
"init_sectxt_of_obj (O_dir f) = None \<Longrightarrow> \<not> is_init_dir f"
|
|
440 |
by (rule notI, drule init_dir_has_ctxt, simp)
|
|
441 |
|
|
442 |
lemma init_proc_has_ctxt:
|
|
443 |
"p \<in> init_procs \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_proc p) = Some sec"
|
|
444 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
445 |
apply (rule conjI, rule init_obj_has_user, simp)
|
|
446 |
apply (frule init_alive_proc, drule init_obj_has_type)
|
|
447 |
by (drule init_procrole_prop2, auto)
|
|
448 |
|
|
449 |
lemma init_proc_has_ctxt':
|
|
450 |
"init_sectxt_of_obj (O_proc p) = None \<Longrightarrow> p \<notin> init_procs"
|
|
451 |
by (rule notI, drule init_proc_has_ctxt, simp)
|
|
452 |
|
|
453 |
lemma init_fd_has_ctxt:
|
|
454 |
"fd \<in> init_fds_of_proc p \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_fd p fd) = Some sec"
|
|
455 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
456 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
457 |
apply (drule init_alive_intros)
|
|
458 |
apply (drule init_obj_has_type, clarsimp)
|
|
459 |
done
|
|
460 |
|
|
461 |
lemma init_fd_has_ctxt':
|
|
462 |
"init_sectxt_of_obj (O_fd p fd) = None \<Longrightarrow> fd \<notin> init_fds_of_proc p"
|
|
463 |
by (rule notI, drule init_fd_has_ctxt, simp)
|
|
464 |
|
|
465 |
lemma init_node_has_ctxt:
|
|
466 |
"n \<in> init_nodes \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_node n) = Some sec"
|
|
467 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
468 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
469 |
apply (drule init_alive_intros)
|
|
470 |
apply (drule init_obj_has_type, clarsimp)
|
|
471 |
done
|
|
472 |
|
|
473 |
lemma init_node_has_ctxt':
|
|
474 |
"init_sectxt_of_obj (O_node n) = None \<Longrightarrow> n \<notin> init_nodes"
|
|
475 |
by (rule notI, drule init_node_has_ctxt, simp)
|
|
476 |
|
|
477 |
lemma init_tcp_has_ctxt:
|
|
478 |
"is_init_tcp_sock s \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_tcp_sock s) = Some sec"
|
|
479 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
480 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
481 |
apply (drule init_alive_intros)
|
|
482 |
apply (drule init_obj_has_type, clarsimp)
|
|
483 |
done
|
|
484 |
|
|
485 |
lemma init_tcp_has_ctxt':
|
|
486 |
"init_sectxt_of_obj (O_tcp_sock s) = None \<Longrightarrow> \<not> is_init_tcp_sock s"
|
|
487 |
by (rule notI, drule init_tcp_has_ctxt, simp)
|
|
488 |
|
|
489 |
lemma init_udp_has_ctxt:
|
|
490 |
"is_init_udp_sock s \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_udp_sock s) = Some sec"
|
|
491 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
492 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
493 |
by (drule init_alive_intros, drule init_obj_has_type, clarsimp)
|
|
494 |
|
|
495 |
lemma init_udp_has_ctxt':
|
|
496 |
"init_sectxt_of_obj (O_udp_sock s) = None \<Longrightarrow> \<not> is_init_udp_sock s"
|
|
497 |
by (rule notI, drule init_udp_has_ctxt, simp)
|
|
498 |
|
|
499 |
lemma init_shm_has_ctxt:
|
|
500 |
"h \<in> init_shms \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_shm h) = Some sec"
|
|
501 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
502 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
503 |
by (drule init_alive_intros, drule init_obj_has_type, clarsimp)
|
|
504 |
|
|
505 |
lemma init_shm_has_ctxt':
|
|
506 |
"init_sectxt_of_obj (O_shm h) = None \<Longrightarrow> h \<notin> init_shms"
|
|
507 |
by (rule notI, drule init_shm_has_ctxt, simp)
|
|
508 |
|
|
509 |
lemma init_msgq_has_ctxt:
|
|
510 |
"q \<in> init_msgqs \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_msgq q) = Some sec"
|
|
511 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
512 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
513 |
by (drule init_alive_intros, drule init_obj_has_type, clarsimp)
|
|
514 |
|
|
515 |
lemma init_msgq_has_ctxt':
|
|
516 |
"init_sectxt_of_obj (O_msgq q) = None \<Longrightarrow> q \<notin> init_msgqs"
|
|
517 |
by (rule notI, drule init_msgq_has_ctxt, simp)
|
|
518 |
|
|
519 |
lemma init_msg_has_ctxt:
|
|
520 |
"\<lbrakk>m \<in> set (init_msgs_of_queue q); q \<in> init_msgqs\<rbrakk> \<Longrightarrow> \<exists> sec. init_sectxt_of_obj (O_msg q m) = Some sec"
|
|
521 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
522 |
apply (rule conjI, rule init_obj_has_user, simp add:is_init_dir_props)
|
|
523 |
by (drule init_alive_intros, simp, drule init_obj_has_type, clarsimp)
|
|
524 |
|
|
525 |
lemma init_msg_has_ctxt':
|
|
526 |
"init_sectxt_of_obj (O_msg q m) = None \<Longrightarrow> m \<notin> set (init_msgs_of_queue q) \<or> q \<notin> init_msgqs"
|
|
527 |
by (auto dest:init_msg_has_ctxt)
|
|
528 |
|
|
529 |
lemma init_rootf_has_ctxt:
|
|
530 |
"\<exists> sec. init_sectxt_of_obj (O_dir []) = Some sec"
|
|
531 |
apply (rule init_dir_has_ctxt, simp add:is_init_dir_def split:option.splits)
|
|
532 |
using root_is_dir by auto
|
|
533 |
|
|
534 |
lemma init_rootf_has_ctxt':
|
|
535 |
"init_sectxt_of_obj (O_dir []) = None \<Longrightarrow> False"
|
|
536 |
using init_rootf_has_ctxt by auto
|
|
537 |
|
|
538 |
lemmas init_has_ctxt = init_file_has_ctxt init_dir_has_ctxt init_proc_has_ctxt init_fd_has_ctxt
|
|
539 |
init_node_has_ctxt init_tcp_has_ctxt init_udp_has_ctxt init_shm_has_ctxt init_msgq_has_ctxt
|
|
540 |
init_msg_has_ctxt init_rootf_has_ctxt
|
|
541 |
|
|
542 |
lemmas init_has_ctxt' = init_file_has_ctxt' init_dir_has_ctxt' init_proc_has_ctxt' init_fd_has_ctxt'
|
|
543 |
init_node_has_ctxt' init_tcp_has_ctxt' init_udp_has_ctxt' init_shm_has_ctxt' init_msgq_has_ctxt'
|
|
544 |
init_msg_has_ctxt' init_rootf_has_ctxt'
|
|
545 |
|
|
546 |
lemma sec_of_root_valid:
|
|
547 |
"init_sectxt_of_obj (O_dir []) = Some sec_of_root"
|
|
548 |
using init_rootf_has_ctxt
|
|
549 |
by (auto simp:init_sectxt_of_obj_def sec_of_root_def split:option.splits)
|
|
550 |
|
|
551 |
lemma sec_of_root_is_tuple:
|
|
552 |
"\<exists> u t. sec_of_root = (u, R_object, t)"
|
|
553 |
using sec_of_root_valid
|
|
554 |
by (auto simp:sec_of_root_def init_sectxt_of_obj_def split:option.splits)
|
|
555 |
|
|
556 |
lemma sroot_valid:
|
|
557 |
"init_cf2sfile [] = Some sroot"
|
|
558 |
by (simp add:init_cf2sfile_def)
|
|
559 |
|
|
560 |
lemma sroot_valid':
|
|
561 |
"cf2sfile s [] False = Some sroot"
|
|
562 |
by (simp add:cf2sfile_def)
|
|
563 |
|
|
564 |
lemma init_sectxt_prop:
|
|
565 |
"sectxt_of_obj [] obj = init_sectxt_of_obj obj"
|
|
566 |
apply (auto simp:init_sectxt_of_obj_def sectxt_of_obj_def split:option.splits)
|
|
567 |
apply (case_tac [!] obj, simp+)
|
|
568 |
done
|
|
569 |
|
|
570 |
lemma init_sectxt_prop2:
|
|
571 |
"init_sectxt_of_obj obj = Some sec \<Longrightarrow> init_alive obj"
|
|
572 |
by (case_tac obj, auto simp:init_sectxt_of_obj_def split:option.splits dest:init_type_has_obj)
|
|
573 |
|
|
574 |
lemma init_dir_has_seclist:
|
|
575 |
"is_init_dir f \<Longrightarrow> \<exists> seclist. get_parentfs_ctxts [] f = Some seclist"
|
|
576 |
apply (induct f)
|
|
577 |
apply (simp only:get_parentfs_ctxts.simps init_sectxt_prop)
|
|
578 |
using init_rootf_has_ctxt apply (auto)[1]
|
|
579 |
apply (frule init_parent_file_prop3', simp del:get_parentfs_ctxts.simps)
|
|
580 |
apply (erule exE, drule init_dir_has_ctxt)
|
|
581 |
by (auto simp add:init_sectxt_prop)
|
|
582 |
|
|
583 |
lemma is_init_file_dir_prop1:
|
|
584 |
"is_init_dir f \<Longrightarrow> \<not> is_init_file f"
|
|
585 |
by (auto simp:is_init_dir_def is_init_file_def split:option.splits t_inode_tag.splits)
|
|
586 |
|
|
587 |
lemma is_init_file_dir_prop2:
|
|
588 |
"is_init_file f \<Longrightarrow> \<not> is_init_dir f"
|
|
589 |
by (auto simp:is_init_dir_def is_init_file_def split:option.splits t_inode_tag.splits)
|
|
590 |
|
|
591 |
lemma is_init_file_dir_prop3:
|
|
592 |
"\<lbrakk>is_init_dir f; is_init_file f\<rbrakk> \<Longrightarrow> False"
|
|
593 |
by (auto simp:is_init_dir_def is_init_file_def split:option.splits t_inode_tag.splits)
|
|
594 |
|
|
595 |
lemma is_init_file_dir_prop4:
|
|
596 |
"\<lbrakk>is_init_file f; is_init_dir f\<rbrakk> \<Longrightarrow> False"
|
|
597 |
by (auto simp:is_init_dir_def is_init_file_def split:option.splits t_inode_tag.splits)
|
|
598 |
|
|
599 |
lemmas is_init_file_dir_props = is_init_file_dir_prop1 is_init_file_dir_prop2 is_init_file_dir_prop3 is_init_file_dir_prop4
|
|
600 |
|
|
601 |
lemma init_dir_has_sfile:
|
|
602 |
"is_init_dir f \<Longrightarrow> \<exists> sf. init_cf2sfile f = Some sf"
|
|
603 |
apply (case_tac f)
|
|
604 |
using init_rootf_has_ctxt apply (auto)[1]
|
|
605 |
apply (simp add:sec_of_root_valid sroot_valid sroot_def)
|
|
606 |
apply (simp, frule init_parent_file_prop3')
|
|
607 |
apply (frule_tac f = list in init_dir_has_seclist)
|
|
608 |
apply (frule_tac f = list in init_dir_has_ctxt)
|
|
609 |
apply (frule_tac f = "a # list" in init_dir_has_ctxt)
|
|
610 |
apply ((erule exE)+, case_tac sec, auto simp:init_cf2sfile_def split:option.splits)
|
|
611 |
by (auto simp:is_init_file_def is_init_dir_def split:option.splits t_inode_tag.splits)
|
|
612 |
|
|
613 |
lemma init_file_has_sfile:
|
|
614 |
"is_init_file f \<Longrightarrow> \<exists> sf. init_cf2sfile f = Some sf"
|
|
615 |
apply (case_tac f)
|
|
616 |
apply (simp, drule root_is_init_dir', simp)
|
|
617 |
apply (simp, frule init_parent_file_prop2')
|
|
618 |
apply (frule_tac f = list in init_dir_has_seclist)
|
|
619 |
apply (frule_tac f = list in init_dir_has_ctxt)
|
|
620 |
apply (frule_tac f = "a # list" in init_file_has_ctxt)
|
|
621 |
by ((erule exE)+, case_tac sec, auto simp:init_cf2sfile_def)
|
|
622 |
|
|
623 |
lemma init_shm_has_sshm:
|
|
624 |
"h \<in> init_shms \<Longrightarrow> \<exists> sh. init_ch2sshm h = Some sh"
|
|
625 |
apply (drule init_shm_has_ctxt)
|
|
626 |
by (auto simp add:init_ch2sshm_def)
|
|
627 |
|
|
628 |
lemma init_proc_has_sproc:
|
|
629 |
"p \<in> init_procs \<Longrightarrow> \<exists> sp. init_cp2sproc p = Some sp"
|
|
630 |
apply (frule init_proc_has_ctxt, erule exE)
|
|
631 |
apply (simp add:init_cp2sproc_def)
|
|
632 |
by (case_tac sec, simp+)
|
|
633 |
|
|
634 |
lemma init_cqm2sms_has_sms_aux:
|
|
635 |
"\<forall> m \<in> set ms. init_sectxt_of_obj (O_msg q m) \<noteq> None \<Longrightarrow> (\<exists> sms. init_cqm2sms q ms = Some sms)"
|
|
636 |
by (induct ms, auto split:option.splits simp:init_cm2smsg_def)
|
|
637 |
|
|
638 |
lemma init_cqm2sms_has_sms:
|
|
639 |
"q \<in> init_msgqs \<Longrightarrow> \<exists> sms. init_cqm2sms q (init_msgs_of_queue q) = Some sms"
|
|
640 |
apply (rule init_cqm2sms_has_sms_aux)
|
|
641 |
using init_msg_has_ctxt by auto
|
|
642 |
|
|
643 |
lemma init_msgq_has_smsgq:
|
|
644 |
"q \<in> init_msgqs \<Longrightarrow> \<exists> sq. init_cq2smsgq q = Some sq"
|
|
645 |
apply (frule init_msgq_has_ctxt, erule exE, drule init_cqm2sms_has_sms, erule exE)
|
|
646 |
apply (simp add:init_cq2smsgq_def)
|
|
647 |
by (case_tac sec, simp+)
|
|
648 |
|
|
649 |
lemma cf2sfile_nil_prop1:
|
|
650 |
"f \<in> init_files \<Longrightarrow> cf2sfile [] f (is_init_file f) = init_cf2sfile f"
|
|
651 |
apply (case_tac f)
|
|
652 |
apply (simp add:init_sectxt_prop cf2sfile_def init_cf2sfile_def)
|
|
653 |
apply (rule notI, drule root_is_init_dir', simp)
|
|
654 |
apply (auto simp:init_sectxt_prop cf2sfile_def init_cf2sfile_def split:option.splits dest!:init_has_ctxt')
|
|
655 |
apply (auto simp:is_init_file_def is_init_dir_def split:option.splits t_inode_tag.splits
|
|
656 |
dest:init_file_has_inum inof_has_file_tag)
|
|
657 |
done
|
|
658 |
|
|
659 |
|
|
660 |
lemma init_sec_file_dir:
|
|
661 |
"\<lbrakk>init_sectxt_of_obj (O_file f) = Some x; init_sectxt_of_obj (O_dir f) = Some y\<rbrakk> \<Longrightarrow> False"
|
|
662 |
apply (drule init_sectxt_prop2)+
|
|
663 |
apply (auto intro:init_file_dir_conflict)
|
|
664 |
done
|
|
665 |
|
|
666 |
lemma cf2sfile_nil_prop2:
|
|
667 |
"f \<in> init_files \<Longrightarrow> cf2sfile [] f (\<not> is_init_file f) = None"
|
|
668 |
apply (case_tac f)
|
|
669 |
apply (simp add:init_sectxt_prop cf2sfile_def init_cf2sfile_def)
|
|
670 |
apply (rule notI, drule root_is_init_dir', simp)
|
|
671 |
apply (auto simp:init_sectxt_prop cf2sfile_def init_cf2sfile_def split:option.splits dest!:init_has_ctxt')
|
|
672 |
apply (auto simp:is_init_file_def is_init_dir_def split:option.splits t_inode_tag.splits
|
|
673 |
dest:init_file_has_inum inof_has_file_tag init_sec_file_dir)
|
|
674 |
done
|
|
675 |
|
|
676 |
lemma cf2sfile_nil_prop:
|
|
677 |
"f \<in> init_files \<Longrightarrow> cf2sfile [] f = (\<lambda> b. if (b = is_init_file f) then init_cf2sfile f else None)"
|
|
678 |
apply (frule cf2sfile_nil_prop1, frule cf2sfile_nil_prop2)
|
|
679 |
by (rule ext, auto split:if_splits)
|
|
680 |
|
|
681 |
lemma cf2sfile_nil_prop3:
|
|
682 |
"is_init_file f \<Longrightarrow> cf2sfile [] f True = init_cf2sfile f"
|
|
683 |
by (simp add:is_init_file_prop1 cf2sfile_nil_prop)
|
|
684 |
|
|
685 |
lemma cf2sfile_nil_prop4:
|
|
686 |
"is_init_dir f \<Longrightarrow> cf2sfile [] f False = init_cf2sfile f"
|
|
687 |
apply (frule init_file_dir_conflict2)
|
|
688 |
by (simp add:is_init_file_prop1 is_init_dir_prop1 cf2sfile_nil_prop)
|
|
689 |
|
|
690 |
lemma cfs2sfiles_nil_prop:
|
|
691 |
"\<forall> f \<in> fs. f \<in> init_files \<Longrightarrow> cfs2sfiles [] fs = init_cfs2sfiles fs"
|
|
692 |
apply (simp add:cfs2sfiles_def init_cfs2sfiles_def)
|
2
|
693 |
apply (rule set_eqI, rule iffI, auto simp:cf2sfile_nil_prop split:if_splits)
|
|
694 |
done
|
1
|
695 |
|
|
696 |
lemma cfd2sfd_nil_prop:
|
|
697 |
"init_file_of_proc_fd p fd = Some f \<Longrightarrow> cfd2sfd [] p fd = init_cfd2sfd p fd"
|
|
698 |
apply (simp add:cfd2sfd_def init_sectxt_prop init_cfd2sfd_def)
|
2
|
699 |
apply (frule init_filefd_prop5, drule init_filefd_prop1, drule cf2sfile_nil_prop)
|
1
|
700 |
by (auto split:option.splits)
|
|
701 |
|
|
702 |
lemma cpfd2sfds_nil_prop:
|
|
703 |
"cpfd2sfds [] p = init_cfds2sfds p"
|
|
704 |
apply (simp only:cpfd2sfds_def init_cfds2sfds_def)
|
|
705 |
apply (rule set_eqI, rule iffI)
|
|
706 |
apply (drule CollectD, rule CollectI, (erule exE)+)
|
|
707 |
apply (rule_tac x = fd in exI, rule_tac x = sfd in exI, rule_tac x = f in exI) defer
|
|
708 |
apply (drule CollectD, rule CollectI, (erule exE)+)
|
|
709 |
apply (rule_tac x = fd in exI, rule_tac x = sfd in exI, rule_tac x = f in exI)
|
|
710 |
using cfd2sfd_nil_prop by auto
|
|
711 |
|
|
712 |
lemma ch2sshm_nil_prop:
|
|
713 |
"h \<in> init_shms \<Longrightarrow> ch2sshm [] h = init_ch2sshm h"
|
|
714 |
by (simp add:ch2sshm_def init_sectxt_prop init_ch2sshm_def)
|
|
715 |
|
|
716 |
lemma cph2spshs_nil_prop:
|
|
717 |
"cph2spshs [] p = init_cph2spshs p"
|
|
718 |
apply (auto simp add:init_cph2spshs_def cph2spshs_def init_sectxt_prop)
|
|
719 |
apply (rule_tac x = h in exI, simp) defer
|
|
720 |
apply (rule_tac x = h in exI, simp)
|
|
721 |
by (auto simp:ch2sshm_nil_prop dest:init_procs_has_shm)
|
|
722 |
|
|
723 |
lemma cp2sproc_nil_prop:
|
|
724 |
"p \<in> init_procs \<Longrightarrow> cp2sproc [] p = init_cp2sproc p"
|
|
725 |
by (auto simp add:init_cp2sproc_def cp2sproc_def init_sectxt_prop cph2spshs_nil_prop cpfd2sfds_nil_prop
|
|
726 |
split:option.splits)
|
|
727 |
|
|
728 |
lemma msg_has_sec_imp_init:
|
|
729 |
"init_sectxt_of_obj (O_msg q m) = Some sec \<Longrightarrow> q \<in> init_msgqs \<and> m \<in> set (init_msgs_of_queue q)"
|
|
730 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
731 |
by (drule init_type_has_obj, simp)
|
|
732 |
|
|
733 |
lemma msgq_has_sec_imp_init:
|
|
734 |
"init_sectxt_of_obj (O_msgq q) = Some sec \<Longrightarrow> q \<in> init_msgqs"
|
|
735 |
apply (simp add:init_sectxt_of_obj_def split:option.splits)
|
|
736 |
by (drule init_type_has_obj, simp)
|
|
737 |
|
|
738 |
lemma cm2smsg_nil_prop:
|
|
739 |
"cm2smsg [] q m = init_cm2smsg q m"
|
|
740 |
by (auto simp add:init_sectxt_prop cm2smsg_def init_cm2smsg_def split:option.splits
|
|
741 |
dest: msg_has_sec_imp_init intro:t_init elim:tainted.cases)
|
|
742 |
|
|
743 |
lemma cqm2sms_nil_prop:
|
|
744 |
"cqm2sms [] q ms = init_cqm2sms q ms"
|
|
745 |
apply (induct ms, simp)
|
|
746 |
by (auto simp add:cm2smsg_def init_sectxt_prop tainted_nil_prop msg_has_sec_imp_init init_cm2smsg_def
|
|
747 |
split:option.splits)
|
|
748 |
|
|
749 |
lemma cq2smsga_nil_prop:
|
|
750 |
"cq2smsgq [] q = init_cq2smsgq q"
|
|
751 |
by (auto simp add:cq2smsgq_def init_cq2smsgq_def init_sectxt_prop cqm2sms_nil_prop
|
|
752 |
intro:msgq_has_sec_imp_init split:option.splits)
|
|
753 |
|
|
754 |
lemma co2sobj_nil_prop:
|
|
755 |
"init_alive obj \<Longrightarrow> co2sobj [] obj = init_obj2sobj obj"
|
|
756 |
apply (case_tac obj)
|
|
757 |
apply (auto simp add:cf2sfile_nil_prop cq2smsga_nil_prop cqm2sms_nil_prop tainted_nil_prop
|
|
758 |
cp2sproc_nil_prop cfs2sfiles_nil_prop is_init_dir_prop1 is_init_file_prop1
|
|
759 |
is_init_udp_sock_prop1 is_init_tcp_sock_prop1 ch2sshm_nil_prop
|
2
|
760 |
same_inode_nil_prop cm2smsg_nil_prop
|
|
761 |
dest:init_same_inode_prop1
|
1
|
762 |
split:option.splits)
|
|
763 |
apply (rule_tac x = list in exI, simp add:init_same_inode_files_def)
|
2
|
764 |
apply (simp add:init_files_props)
|
|
765 |
apply (auto simp:is_dir_nil is_file_nil dest:init_file_dir_conflict)
|
|
766 |
done
|
1
|
767 |
|
|
768 |
lemma s2ss_nil_prop:
|
|
769 |
"s2ss [] = init_static_state"
|
|
770 |
using co2sobj_nil_prop init_alive_prop
|
|
771 |
by (auto simp add:s2ss_def init_static_state_def)
|
|
772 |
|
|
773 |
end
|
|
774 |
|
|
775 |
(*<*)
|
|
776 |
end
|
|
777 |
(*>*) |