Flask.thy
author chunhan
Mon, 30 Dec 2013 23:41:58 +0800
changeset 86 690636b7b6f1
parent 78 030643fab8a1
permissions -rwxr-xr-x
find bug: a created proc can be tainted by a message, which cannot remain and maynot be duplicated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     1
theory Flask
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     2
imports Main Flask_type OS_type_def File_renaming 
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
(****** Policy-language-level rule match/auxiliary functions ******)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     6
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     7
fun patt_match :: "'a patt \<Rightarrow> 'a \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     8
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
     9
  "patt_match (Single x) y = (x = y)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    10
| "patt_match (Set s)    x = (x \<in> s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    11
| "patt_match (Tilde s)  x = (x \<notin> s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    12
| "patt_match Asterisk   x = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    13
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    14
(* match a target with a patt, but including the SELF special 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    15
 * patt_match_self patt target source 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    16
 *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    17
fun patt_match_self :: "(type_t patt) target_with_self_t \<Rightarrow> type_t \<Rightarrow> type_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    18
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    19
  "patt_match_self Self                  tt st = (tt = st)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    20
| "patt_match_self (Not_self (Single p)) tt st = (tt = p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    21
| "patt_match_self (Not_self (Set p))    tt st = (tt \<in> p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    22
| "patt_match_self (Not_self (Tilde p))  tt st = (tt \<notin> p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    23
| "patt_match_self (Not_self Asterisk)   tt st = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    24
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    25
(* list lookup: find the first one *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    26
fun lookup :: "'a list \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> 'a option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    27
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    28
  "lookup [] P = None"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    29
| "lookup (x # xs) P = (if (P x) then Some x else lookup xs P)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    30
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    31
(* list member: if exists an element satisfy predicate P *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    32
fun member :: "'a list \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    33
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    34
  "member [] P = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    35
| "member (x # xs) P = (if (P x) then True else member xs P)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    36
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    37
(******* socket related aux functions ********)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    38
fun is_remote_request :: "t_event \<Rightarrow> bool"    
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    39
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    40
  "is_remote_request (Accept p fd addr port fd' i)  = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    41
| "is_remote_request (Connect p fd addr)   = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    42
| "is_remote_request (SendSock p fd) = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    43
| "is_remote_request (RecvSock p fd) = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    44
| "is_remote_request e         = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    45
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    46
fun ip_of_addr:: "t_sock_addr \<Rightarrow> t_inet_addr"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    47
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    48
  "ip_of_addr (INET_ADDR saddr sport) = saddr"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    49
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    50
fun port_of_addr:: "t_sock_addr \<Rightarrow> t_socket_port"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    51
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    52
  "port_of_addr (INET_ADDR saddr sport) = sport"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    53
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    54
fun after_bind:: "t_sock_state option \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    55
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    56
  "after_bind None = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    57
| "after_bind (Some SS_create) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    58
| "after_bind _= True" (* after bind , it should have local addr *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    59
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    60
fun after_conacc:: "t_sock_state option \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    61
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    62
  "after_conacc None = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    63
| "after_conacc (Some SS_create) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    64
| "after_conacc (Some SS_bind) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    65
| "after_conacc (Some SS_listen) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    66
| "after_conacc _ = True"  (* after connect or accept, it should have remote addr *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    67
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    68
(* inet_addr_compare addr1 addr2 \<equiv> addr1 \<le> addr2; but in \<le>'s def,there is a \<exists>, is not a function*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    69
fun subnet_addr :: "t_inet_addr \<Rightarrow> t_inet_addr \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    70
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    71
  "subnet_addr []     addr   = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    72
| "subnet_addr (x#xs) []     = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    73
| "subnet_addr (x#xs) (y#ys) = ((x = y) \<and> subnet_addr xs ys)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    74
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    75
definition port_in_range :: "t_socket_port \<Rightarrow> t_socket_port \<Rightarrow> t_socket_port \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    76
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    77
  "port_in_range minp maxp p \<equiv> ((p < maxp \<or> p = maxp) \<and> (p > minp \<or> p = minp))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    78
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    79
(* initial value of initiate state constrains aux function *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    80
definition bidirect_in_init :: "'a set \<Rightarrow> ('a \<Rightarrow> 'b option) \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    81
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    82
  "bidirect_in_init S f \<equiv>  (\<forall> a. a \<in> S \<longrightarrow> (\<exists> b. f a = Some b)) \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    83
                           (\<forall> a b. f a = Some b \<longrightarrow> a \<in> S)" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    84
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    85
fun is_file_itag :: "t_inode_tag \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    86
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    87
  "is_file_itag Tag_FILE = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    88
| "is_file_itag tag      = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    89
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    90
fun is_dir_itag :: "t_inode_tag \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    91
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    92
  "is_dir_itag Tag_DIR = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    93
| "is_dir_itag tag     = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    94
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    95
fun is_file_dir_itag :: "t_inode_tag \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    96
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    97
  "is_file_dir_itag Tag_FILE = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    98
| "is_file_dir_itag Tag_DIR  = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
    99
| "is_file_dir_itag tag      = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   100
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   101
fun is_tcp_itag :: "t_inode_tag \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   102
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   103
  "is_tcp_itag Tag_TCP_SOCK = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   104
| "is_tcp_itag tag      = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   105
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   106
fun is_udp_itag :: "t_inode_tag \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   107
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   108
  "is_udp_itag Tag_UDP_SOCK = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   109
| "is_udp_itag tag     = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   110
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   111
fun is_sock_itag :: "t_inode_tag \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   112
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   113
  "is_sock_itag Tag_TCP_SOCK = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   114
| "is_sock_itag Tag_UDP_SOCK = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   115
| "is_sock_itag tag          = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   116
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   117
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   118
locale init = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   119
  fixes 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   120
      init_files :: "t_file set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   121
  and init_procs :: "t_process set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   122
  and init_nodes :: "t_node set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   123
  and init_sockets :: "t_socket set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   124
  and init_users :: "user_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   125
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   126
  and init_file_of_proc_fd ::   "t_process \<Rightarrow> t_fd \<rightharpoonup> t_file"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   127
  and init_fds_of_proc ::       "t_process \<Rightarrow> t_fd set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   128
  and init_oflags_of_proc_fd::  "t_process \<Rightarrow> t_fd \<rightharpoonup> t_open_flags"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   129
  and init_inum_of_file ::      "t_file \<rightharpoonup> t_inode_num"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   130
  and init_inum_of_socket::     "t_socket  \<rightharpoonup> t_inode_num" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   131
  and init_itag_of_inum::       "t_inode_num \<rightharpoonup> t_inode_tag"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   132
  and init_files_hung_by_del :: "t_file set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   133
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   134
  and init_file_at_writing_by:: "t_file \<Rightarrow> (t_process \<times> t_fd) set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   135
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   136
  and init_socket_state ::      "t_socket \<rightharpoonup> t_sock_state"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   137
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   138
  and init_msgqs :: "t_msgq set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   139
  and init_msgs_of_queue:: "t_msgq \<Rightarrow> t_msg list"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   140
  and init_shms :: "t_shm set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   141
  and init_procs_of_shm :: "t_shm \<Rightarrow> (t_process \<times> t_shm_attach_flag) set" 
15
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   142
  and init_flag_of_proc_shm :: "t_process \<Rightarrow> t_shm \<rightharpoonup> t_shm_attach_flag"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   143
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   144
  assumes
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   145
      parent_file_in_init: "\<And> f pf. \<lbrakk>parent f = Some pf; f \<in> init_files\<rbrakk> \<Longrightarrow> pf \<in> init_files"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   146
  and root_is_dir: "\<exists> i. init_inum_of_file [] = Some i \<and> init_itag_of_inum i = Some Tag_DIR"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   147
  and init_file_has_inum:  "\<And> f. f \<in> init_files \<Longrightarrow> \<exists> im. init_inum_of_file f = Some im"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   148
  and inof_has_file_tag:   "\<And> f im. init_inum_of_file f = Some im \<Longrightarrow> f \<in> init_files \<and> (\<exists> tag. init_itag_of_inum im = Some tag \<and> is_file_dir_itag tag)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   149
  and init_file_no_son:    "\<And> f im. \<lbrakk>init_inum_of_file f = Some im; init_itag_of_inum im = Some Tag_FILE\<rbrakk> \<Longrightarrow> \<not> (\<exists> f' \<in> init_files. parent f' = Some f)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   150
  and init_parentf_is_dir: "\<And> f pf im. \<lbrakk>parent f = Some pf; f \<in> init_files; init_inum_of_file pf = Some im\<rbrakk> \<Longrightarrow> init_itag_of_inum im = Some Tag_DIR"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   151
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   152
  and init_files_hung_valid:   "\<And> f. f \<in> init_files_hung_by_del \<Longrightarrow> f \<in> init_files \<and> (\<exists> p fd. init_file_of_proc_fd p fd = Some f)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   153
  and init_files_hung_valid':  "\<And> f im. \<lbrakk>f \<in> init_files_hung_by_del; init_inum_of_file f = Some im\<rbrakk> \<Longrightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   154
                                         init_itag_of_inum im = Some Tag_FILE \<or> (init_itag_of_inum im = Some Tag_DIR \<and> \<not> (\<exists> f'. f' \<in> init_files \<and> f \<prec> f'))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   155
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   156
  and init_procfds_valid:      "\<And> p fd. fd \<in> init_fds_of_proc p \<Longrightarrow> p \<in> init_procs \<and> ((\<exists> f \<in> init_files. init_file_of_proc_fd p fd = Some f) \<or> (p, fd) \<in> init_sockets)"
70
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   157
  and init_filefd_valid:       "\<And> p fd f. init_file_of_proc_fd p fd = Some f \<Longrightarrow> fd \<in> init_fds_of_proc p \<and> (\<exists> im. init_inum_of_file f = Some im \<and> init_itag_of_inum im = Some Tag_FILE) \<and> p \<in> init_procs \<and> (\<exists> flags. init_oflags_of_proc_fd p fd = Some flags) \<and> (p, fd) \<notin> init_sockets"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   158
  and init_fileflag_valid:     "\<And> p fd flags. init_oflags_of_proc_fd p fd = Some flags \<Longrightarrow> \<exists> f. init_file_of_proc_fd p fd = Some f"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   159
15
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   160
  and init_procs_has_shm:      "\<And> p h flag. (p,flag) \<in> init_procs_of_shm h \<Longrightarrow> p \<in> init_procs \<and> h \<in> init_shms \<and> init_flag_of_proc_shm p h = Some flag"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   161
  and init_shmflag_has_proc:   "\<And> p h flag. init_flag_of_proc_shm p h = Some flag \<Longrightarrow> (p, flag) \<in> init_procs_of_shm h"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   162
  and init_msgs_distinct:      "\<And> q. distinct (init_msgs_of_queue q)"
4
e9c5594d5963 fixed bugs in deleted definition
chunhan
parents: 2
diff changeset
   163
  and init_msgs_valid:         "\<And> m q. m \<in> set (init_msgs_of_queue q) \<Longrightarrow> q \<in> init_msgqs"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   164
70
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   165
  and init_socket_has_inode:   "\<And> p fd. (p, fd) \<in> init_sockets \<Longrightarrow> \<exists> im. init_inum_of_socket (p, fd) = Some im \<and> p \<in> init_procs \<and> fd \<in> init_fds_of_proc p \<and> init_file_of_proc_fd p fd = None"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   166
  and inos_has_sock_tag:  "\<And> s im. init_inum_of_socket s = Some im \<Longrightarrow> s \<in> init_sockets \<and> (\<exists> tag. init_itag_of_inum im = Some tag \<and> is_sock_itag tag)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   167
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   168
  and init_netobj_has_state:   "bidirect_in_init init_netobjs init_netobj_state"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   169
  and init_netobj_has_socktype:"bidirect_in_init init_netobjs init_netobj_socktype"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   170
  and init_netobj_has_laddr:   "\<And> s. after_bind (init_netobj_state s) \<Longrightarrow> init_netobj_localaddr s \<noteq> None"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   171
  and init_netobj_has_raddr:   "\<And> s. after_conacc (init_netobj_state s) \<Longrightarrow> init_netobj_remoteaddr s \<noteq> None"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   172
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   173
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   174
  and init_finite_sets:   "finite init_files \<and> finite init_procs \<and> (\<forall> p. finite (init_fds_of_proc p)) \<and> finite init_shms \<and> finite init_msgqs \<and> finite init_users" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   175
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   176
begin 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   177
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   178
definition is_init_file:: "t_file \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   179
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   180
  "is_init_file f \<equiv> (case (init_inum_of_file f) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   181
                       Some i \<Rightarrow> (case (init_itag_of_inum i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   182
                                    Some Tag_FILE \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   183
                                  | _             \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   184
                     | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   185
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   186
definition is_init_dir:: "t_file \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   187
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   188
  "is_init_dir f \<equiv> (case (init_inum_of_file f) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   189
                      Some i \<Rightarrow> (case (init_itag_of_inum i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   190
                                   Some Tag_DIR \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   191
                                 | _            \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   192
                    | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   193
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   194
definition is_init_tcp_sock:: "t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   195
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   196
  "is_init_tcp_sock s \<equiv> (case (init_inum_of_socket s) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   197
                           Some i \<Rightarrow> (case (init_itag_of_inum i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   198
                                        Some Tag_TCP_SOCK \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   199
                                      | _                 \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   200
                         | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   201
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   202
definition is_init_udp_sock:: "t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   203
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   204
  "is_init_udp_sock s \<equiv> (case (init_inum_of_socket s) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   205
                           Some i \<Rightarrow> (case (init_itag_of_inum i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   206
                                        Some Tag_UDP_SOCK \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   207
                                      | _                 \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   208
                         | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   209
2
5a01ee1c9b4d fixed bugs in def of cf2sfile
chunhan
parents: 1
diff changeset
   210
definition init_same_inode_files :: "t_file \<Rightarrow> t_file set"
5a01ee1c9b4d fixed bugs in def of cf2sfile
chunhan
parents: 1
diff changeset
   211
where
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   212
  "init_same_inode_files f \<equiv> if is_init_file f then {f'. init_inum_of_file f = init_inum_of_file f'} else {}"
2
5a01ee1c9b4d fixed bugs in def of cf2sfile
chunhan
parents: 1
diff changeset
   213
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   214
fun init_alive :: "t_object \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   215
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   216
  "init_alive (O_proc p)     = (p \<in> init_procs)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   217
| "init_alive (O_file f)     = (is_init_file f)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   218
| "init_alive (O_dir  f)     = (is_init_dir  f)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   219
| "init_alive (O_fd p fd)    = (fd \<in> init_fds_of_proc p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   220
| "init_alive (O_node n)     = (n \<in> init_nodes)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   221
| "init_alive (O_tcp_sock k) = (is_init_tcp_sock k)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   222
| "init_alive (O_udp_sock k) = (is_init_udp_sock k)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   223
| "init_alive (O_shm  h)     = (h \<in> init_shms)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   224
| "init_alive (O_msgq q)     = (q \<in> init_msgqs)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   225
| "init_alive (O_msg q m)    = (m \<in> set (init_msgs_of_queue q) \<and> q \<in> init_msgqs)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   226
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   227
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   228
(************ system listeners, event-related ***********)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   229
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   230
fun file_of_proc_fd ::  "t_state \<Rightarrow> t_process \<Rightarrow> t_fd \<Rightarrow> t_file option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   231
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   232
  "file_of_proc_fd [] p' fd' = (init_file_of_proc_fd p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   233
| "file_of_proc_fd (Open p f flags fd iopt # \<tau>) p' fd' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   234
     (if (p' = p \<and> fd = fd') then Some f else file_of_proc_fd \<tau> p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   235
| "file_of_proc_fd (CloseFd p fd # \<tau>) p' fd' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   236
     (if (p = p' \<and> fd = fd') then None else file_of_proc_fd \<tau> p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   237
(*deleted: if (f\<^isub>3 \<preceq> f\<^isub>1) then None else *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   238
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   239
| "file_of_proc_fd (Rename p f\<^isub>2 f\<^isub>3 # \<tau>) p' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   240
     (case (file_of_proc_fd \<tau> p' fd) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   241
        Some f\<^isub>1 \<Rightarrow> (if (f\<^isub>2 \<preceq> f\<^isub>1) then Some (file_after_rename f\<^isub>2 f\<^isub>3 f\<^isub>1) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   242
                    else Some f\<^isub>1)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   243
      | None    \<Rightarrow> None )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   244
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   245
| "file_of_proc_fd (Execve p f fds # \<tau>) p' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   246
     (if (p' = p \<and> fd \<in> fds) then file_of_proc_fd \<tau> p fd 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   247
      else if (p' = p) then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   248
      else file_of_proc_fd \<tau> p' fd) "
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   249
| "file_of_proc_fd (Clone p p' fds shms # \<tau>) p'' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   250
     (if (p'' = p' \<and> fd \<in> fds) then file_of_proc_fd \<tau> p fd
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   251
      else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   252
      else file_of_proc_fd \<tau> p'' fd)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   253
| "file_of_proc_fd (Kill p\<^isub> p\<^isub>' # \<tau>) p'' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   254
     (if (p'' = p\<^isub>') then None else file_of_proc_fd \<tau> p'' fd)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   255
| "file_of_proc_fd (Exit p # \<tau>) p' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   256
     (if (p = p') then None else file_of_proc_fd \<tau> p' fd)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   257
| "file_of_proc_fd (_ # \<tau>) p fd = file_of_proc_fd \<tau> p fd"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   258
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   259
definition proc_fd_of_file :: "t_state \<Rightarrow> t_file \<Rightarrow> (t_process \<times> t_fd) set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   260
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   261
  "proc_fd_of_file \<tau> f = {(p, fd) | p fd. file_of_proc_fd \<tau> p fd = Some f}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   262
70
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   263
definition proc_file_fds :: "t_state \<Rightarrow> t_process \<Rightarrow> t_fd set"
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   264
where
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   265
  "proc_file_fds s p \<equiv> {fd. \<exists> f. file_of_proc_fd s p fd = Some f}"
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   266
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   267
definition init_proc_file_fds:: "t_process \<Rightarrow> t_fd set"
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   268
where
002c34a6ff4f add conflict of p fd as file_fd & socket
chunhan
parents: 69
diff changeset
   269
  "init_proc_file_fds p \<equiv> {fd. \<exists> f. init_file_of_proc_fd p fd = Some f}"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   270
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   271
(****** files and directories ******)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   272
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   273
fun files_hung_by_del :: "t_state \<Rightarrow> t_file set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   274
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   275
  "files_hung_by_del [] = init_files_hung_by_del"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   276
| "files_hung_by_del (UnLink p f # \<tau>) = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   277
     if (proc_fd_of_file \<tau> f = {}) then files_hung_by_del \<tau> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   278
     else insert f (files_hung_by_del \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   279
(* | files_hung_by_del (Rmdir p f) is not need, for open can only apply to file not dir *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   280
| "files_hung_by_del (CloseFd p fd # \<tau>) = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   281
     case (file_of_proc_fd \<tau> p fd) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   282
       Some f \<Rightarrow> (if (proc_fd_of_file \<tau> f = {(p, fd)}) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   283
                  then files_hung_by_del \<tau> - {f}
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   284
                  else files_hung_by_del \<tau>)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   285
     | None   \<Rightarrow> files_hung_by_del \<tau>            )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   286
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   287
| "files_hung_by_del (Rename p f\<^isub>2 f\<^isub>3 # \<tau>) = {file_after_rename f\<^isub>2 f\<^isub>3 f\<^isub>1| f\<^isub>1. f\<^isub>1 \<in> files_hung_by_del \<tau>}" (* for rename(2) does not infect on fd of the file, see man -S 2 rename *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   288
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   289
| "files_hung_by_del (e # \<tau>) = files_hung_by_del \<tau>"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   290
declare files_hung_by_del.simps [simp del]
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   291
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   292
fun inum_of_file :: "t_state \<Rightarrow> (t_file \<rightharpoonup> t_inode_num)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   293
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   294
  "inum_of_file [] = init_inum_of_file"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   295
| "inum_of_file (Open p f flags fd (Some inum) # \<tau>) = (inum_of_file \<tau>) (f := Some inum)" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   296
| "inum_of_file (CloseFd p fd # \<tau>) = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   297
     case (file_of_proc_fd \<tau> p fd) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   298
       Some f \<Rightarrow> ( if ((proc_fd_of_file \<tau> f = {(p, fd)}) \<and> (f \<in> files_hung_by_del \<tau>)) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   299
                   then (inum_of_file \<tau>) (f := None)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   300
                   else inum_of_file \<tau> )
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   301
     | _      \<Rightarrow> (inum_of_file \<tau>)    )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   302
| "inum_of_file (UnLink p f # \<tau>) = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   303
     if (proc_fd_of_file \<tau> f = {}) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   304
     then (inum_of_file \<tau>) (f := None)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   305
     else inum_of_file \<tau>            )" 
8
289a30c4cfb7 find bugs in deleted & inum_of_file
chunhan
parents: 7
diff changeset
   306
| "inum_of_file (Rmdir p f # \<tau>) = (inum_of_file \<tau>) (f := None)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   307
| "inum_of_file (Mkdir p f ino # \<tau>) = (inum_of_file \<tau>) (f:=  Some ino)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   308
| "inum_of_file (LinkHard p f\<^isub>1 f\<^isub>2 # \<tau>) = (inum_of_file \<tau>) (f\<^isub>2 := inum_of_file \<tau> f\<^isub>1)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   309
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   310
| "inum_of_file (Rename p f\<^isub>2 f\<^isub>3 # \<tau>) = (\<lambda> f. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   311
     if (f\<^isub>2 \<preceq> f) then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   312
     else if (f\<^isub>3 \<preceq> f) then inum_of_file \<tau> (file_before_rename f\<^isub>2 f\<^isub>3 f)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   313
     else inum_of_file \<tau> f         )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   314
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   315
| "inum_of_file (e # \<tau>) = inum_of_file \<tau>" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   316
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   317
definition current_files :: "t_state \<Rightarrow> t_file set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   318
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   319
  "current_files \<tau> = {f. \<exists> i. inum_of_file \<tau> f = Some i}" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   320
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   321
(* experimentary: for the delete obj's (file or socket) inode num, it is unnecessary for itag_of_inum to be NONE, cause this is the situation blocked by inum_of_file / inum_of_socket !!! *)  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   322
(* delete a file, just recycle its inode num, but not destroy its inode \<dots>, so it is irrelative to these events, like closeFd, Rmdir, UnLink \<dots>*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   323
fun itag_of_inum :: "t_state \<Rightarrow> (t_inode_num \<rightharpoonup> t_inode_tag)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   324
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   325
  "itag_of_inum [] = init_itag_of_inum"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   326
| "itag_of_inum (Open p f flags fd (Some ino) # \<tau>) = (itag_of_inum \<tau>) (ino := Some Tag_FILE)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   327
| "itag_of_inum (Mkdir p f ino # \<tau>) = (itag_of_inum \<tau>) (ino := Some Tag_DIR)" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   328
| "itag_of_inum (CreateSock p af st fd ino # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   329
     (case st of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   330
        STREAM \<Rightarrow> (itag_of_inum \<tau>) (ino := Some Tag_TCP_SOCK)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   331
      | DGRAM  \<Rightarrow> (itag_of_inum \<tau>) (ino := Some Tag_UDP_SOCK) )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   332
| "itag_of_inum (Accept p fd addr lport' fd' ino # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   333
     (itag_of_inum \<tau>) (ino := Some Tag_TCP_SOCK)"
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   334
| "itag_of_inum (_ # \<tau>) = itag_of_inum \<tau>"  
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   335
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   336
definition is_file:: "t_state \<Rightarrow> t_file \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   337
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   338
  "is_file \<tau> f \<equiv> (case (inum_of_file \<tau> f) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   339
                    Some i \<Rightarrow> (case (itag_of_inum \<tau> i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   340
                                 Some Tag_FILE \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   341
                               | _             \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   342
                  | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   343
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   344
definition is_dir:: "t_state \<Rightarrow> t_file \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   345
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   346
  "is_dir \<tau> f \<equiv> (case (inum_of_file \<tau> f) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   347
                    Some i \<Rightarrow> (case (itag_of_inum \<tau> i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   348
                                 Some Tag_DIR \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   349
                               | _            \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   350
                  | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   351
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   352
definition dir_is_empty :: "t_state \<Rightarrow> t_file \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   353
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   354
  "dir_is_empty \<tau> f \<equiv> is_dir \<tau> f \<and> \<not> (\<exists> f'. f' \<in> current_files \<tau> \<and> f \<prec> f')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   355
65
chunhan
parents: 61
diff changeset
   356
definition same_inode_files :: "t_state \<Rightarrow> t_file \<Rightarrow> t_file set"
chunhan
parents: 61
diff changeset
   357
where
chunhan
parents: 61
diff changeset
   358
  "same_inode_files s f \<equiv> if is_file s f then {f'. inum_of_file s f = inum_of_file s f'} else {}"
chunhan
parents: 61
diff changeset
   359
chunhan
parents: 61
diff changeset
   360
definition has_same_inode :: "t_state \<Rightarrow> t_file \<Rightarrow> t_file \<Rightarrow> bool"
chunhan
parents: 61
diff changeset
   361
where 
chunhan
parents: 61
diff changeset
   362
  "has_same_inode s fa fb \<equiv> fb \<in> same_inode_files s fa"
chunhan
parents: 61
diff changeset
   363
chunhan
parents: 61
diff changeset
   364
fun inum_of_socket :: "t_state \<Rightarrow> (t_socket \<rightharpoonup> t_inode_num)"
chunhan
parents: 61
diff changeset
   365
where
chunhan
parents: 61
diff changeset
   366
  "inum_of_socket [] = init_inum_of_socket"
chunhan
parents: 61
diff changeset
   367
| "inum_of_socket (CloseFd p fd # \<tau>) = 
chunhan
parents: 61
diff changeset
   368
     (inum_of_socket \<tau>) ((p, fd):= None)"
chunhan
parents: 61
diff changeset
   369
| "inum_of_socket (CreateSock p af st fd ino # \<tau>) = 
chunhan
parents: 61
diff changeset
   370
     (inum_of_socket \<tau>) ((p, fd) := Some ino)"
chunhan
parents: 61
diff changeset
   371
| "inum_of_socket (Accept p fd addr lport' fd' ino # \<tau>) = 
chunhan
parents: 61
diff changeset
   372
     (inum_of_socket \<tau>) ((p, fd') := Some ino)"
chunhan
parents: 61
diff changeset
   373
| "inum_of_socket (Clone p p' fds shms # \<tau>) = 
chunhan
parents: 61
diff changeset
   374
     (\<lambda> (p'', fd). if (p'' = p' \<and> fd \<in> fds) then inum_of_socket \<tau> (p, fd) 
chunhan
parents: 61
diff changeset
   375
                   else if (p'' = p') then None
chunhan
parents: 61
diff changeset
   376
                   else inum_of_socket \<tau> (p'',fd))" 
chunhan
parents: 61
diff changeset
   377
| "inum_of_socket (Execve p f fds # \<tau>) = 
chunhan
parents: 61
diff changeset
   378
     (\<lambda> (p', fd). if (p' = p \<and> fd \<in> fds) then inum_of_socket \<tau> (p, fd)
chunhan
parents: 61
diff changeset
   379
                  else if (p' = p) then None
chunhan
parents: 61
diff changeset
   380
                  else inum_of_socket \<tau> (p', fd))"
chunhan
parents: 61
diff changeset
   381
| "inum_of_socket (Kill p\<^isub>1 p\<^isub>2 # \<tau>) = 
chunhan
parents: 61
diff changeset
   382
     (\<lambda> (p, fd). if (p = p\<^isub>2) then None else inum_of_socket \<tau> (p, fd) )"
chunhan
parents: 61
diff changeset
   383
| "inum_of_socket (Exit p # \<tau>) = 
chunhan
parents: 61
diff changeset
   384
     (\<lambda> (p', fd). if (p' = p) then None else inum_of_socket \<tau> (p', fd))"
chunhan
parents: 61
diff changeset
   385
| "inum_of_socket (_ # \<tau>) = inum_of_socket \<tau>" 
chunhan
parents: 61
diff changeset
   386
chunhan
parents: 61
diff changeset
   387
definition current_sockets :: "t_state \<Rightarrow> t_socket set"
chunhan
parents: 61
diff changeset
   388
where
chunhan
parents: 61
diff changeset
   389
  "current_sockets \<tau> = {s. \<exists> i. inum_of_socket \<tau> s = Some i}"
chunhan
parents: 61
diff changeset
   390
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   391
definition is_tcp_sock :: "t_state \<Rightarrow> t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   392
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   393
  "is_tcp_sock \<tau> s \<equiv> (case (inum_of_socket \<tau> s) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   394
                        Some i \<Rightarrow> (case (itag_of_inum \<tau> i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   395
                                     Some Tag_TCP_SOCK \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   396
                                   | _                 \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   397
                      | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   398
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   399
definition is_udp_sock :: "t_state \<Rightarrow> t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   400
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   401
  "is_udp_sock \<tau> s \<equiv> (case (inum_of_socket \<tau> s) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   402
                        Some i \<Rightarrow> (case (itag_of_inum \<tau> i) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   403
                                     Some Tag_UDP_SOCK \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   404
                                   | _                 \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   405
                      | _      \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   406
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   407
fun current_procs :: "t_state \<Rightarrow> t_process set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   408
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   409
  "current_procs [] = init_procs"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   410
| "current_procs (Clone p p' fds shms # \<tau>) = (insert p' (current_procs \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   411
| "current_procs (Exit p # \<tau>) = (current_procs \<tau> - {p})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   412
| "current_procs (Kill p p' # \<tau>) = (current_procs \<tau> - {p'})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   413
| "current_procs (_ # \<tau>) = current_procs \<tau>" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   414
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   415
fun current_proc_fds :: "t_state \<Rightarrow> t_process \<Rightarrow> t_fd set" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   416
where  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   417
  "current_proc_fds [] = init_fds_of_proc"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   418
| "current_proc_fds (Open p f flags fd iopt # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   419
     (current_proc_fds \<tau>) (p:= insert fd (current_proc_fds \<tau> p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   420
| "current_proc_fds (CreateSock p sf st newfd newi # \<tau>) =
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   421
     (current_proc_fds \<tau>) (p:= insert newfd (current_proc_fds \<tau> p))" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   422
| "current_proc_fds (Accept p fd raddr port fd' ino # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   423
     (current_proc_fds \<tau>) (p:= insert fd' (current_proc_fds \<tau> p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   424
| "current_proc_fds (CloseFd p fd # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   425
     (current_proc_fds \<tau>) (p:= (current_proc_fds \<tau> p) - {fd})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   426
| "current_proc_fds (Clone p p' fds shms # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   427
     (current_proc_fds \<tau>) (p':= fds)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   428
| "current_proc_fds (Execve p f fds # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   429
     (current_proc_fds \<tau>) (p:= fds)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   430
| "current_proc_fds (Exit p # \<tau>) = (current_proc_fds \<tau>) (p := {})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   431
| "current_proc_fds (Kill p p' # \<tau>) = (current_proc_fds \<tau>) (p' := {})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   432
| "current_proc_fds (_ # \<tau>) = current_proc_fds \<tau>"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   433
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   434
fun current_shms :: "t_state \<Rightarrow> t_shm set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   435
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   436
  "current_shms [] = init_shms"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   437
| "current_shms (CreateShM p newshm # \<tau>) = insert newshm (current_shms \<tau>)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   438
| "current_shms (DeleteShM p s # \<tau>) = (current_shms \<tau>) - {s}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   439
| "current_shms (e # \<tau>) = current_shms \<tau> "
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   440
15
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   441
fun flag_of_proc_shm :: "t_state \<Rightarrow> t_process \<Rightarrow> t_shm \<Rightarrow> t_shm_attach_flag option"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   442
where
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   443
  "flag_of_proc_shm [] = init_flag_of_proc_shm"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   444
| "flag_of_proc_shm (Attach p h flag # s) = (\<lambda> p' h'. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   445
     if (p' = p \<and> h' = h) then Some flag else flag_of_proc_shm s p' h')"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   446
| "flag_of_proc_shm (Detach p h # s) = (\<lambda> p' h'. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   447
     if (p' = p \<and> h' = h) then None else flag_of_proc_shm s p' h')"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   448
| "flag_of_proc_shm (CreateShM p h # s) = (\<lambda> p' h'. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   449
     if (h' = h) then None else flag_of_proc_shm s p' h')"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   450
| "flag_of_proc_shm (DeleteShM p h # s) = (\<lambda> p' h'. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   451
     if (h' = h) then None else flag_of_proc_shm s p' h')"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   452
| "flag_of_proc_shm (Clone p p' fds shms # s) = (\<lambda> p'' h.
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   453
     if (p'' = p' \<and> h \<in> shms) then flag_of_proc_shm s p h
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   454
     else if (p'' = p') then None
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   455
     else flag_of_proc_shm s p'' h)"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   456
| "flag_of_proc_shm (Execve p f fds # s) = (\<lambda> p' h. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   457
     if (p' = p) then None else flag_of_proc_shm s p' h)"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   458
| "flag_of_proc_shm (Kill p p' # s) = (\<lambda> p'' h. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   459
     if (p'' = p') then None else flag_of_proc_shm s p'' h)"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   460
| "flag_of_proc_shm (Exit p # s) = (\<lambda> p' h. 
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   461
     if (p' = p) then None else flag_of_proc_shm s p' h)"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   462
| "flag_of_proc_shm (e # s) = flag_of_proc_shm s"
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   463
4ca824cd0c59 finally get cph2spshs_attach done
chunhan
parents: 14
diff changeset
   464
fun procs_of_shm :: "t_state \<Rightarrow> t_shm \<Rightarrow> (t_process \<times> t_shm_attach_flag) set"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   465
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   466
  "procs_of_shm [] = init_procs_of_shm"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   467
| "procs_of_shm (CreateShM p h # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   468
    (procs_of_shm \<tau>) (h := {})"  (* creator may not be the sharer of the shm *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   469
| "procs_of_shm (Attach p h flag # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   470
    (procs_of_shm \<tau>) (h := insert (p, flag) (procs_of_shm \<tau> h))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   471
| "procs_of_shm (Detach p h # \<tau>) =
13
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   472
    (procs_of_shm \<tau>) (h := (procs_of_shm \<tau> h) - {(p,flag) | flag. (p, flag) \<in> procs_of_shm \<tau> h})"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   473
| "procs_of_shm (DeleteShM p h # \<tau>) = (procs_of_shm \<tau>) (h := {})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   474
| "procs_of_shm (Clone p p' fds shms # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   475
    (\<lambda> h. if (h \<in> shms) 
13
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   476
          then (procs_of_shm \<tau> h) \<union> {(p', flag) | flag. (p, flag) \<in> procs_of_shm \<tau> h}
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   477
          else procs_of_shm \<tau> h)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   478
| "procs_of_shm (Execve p f fds # \<tau>) = 
13
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   479
    (\<lambda> h. procs_of_shm \<tau> h - {(p, flag) | flag. (p, flag) \<in> procs_of_shm \<tau> h})"
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   480
| "procs_of_shm (Kill p p' # s) = 
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   481
    (\<lambda> h. (procs_of_shm s h) - {(p', flag) | flag. (p', flag) \<in> procs_of_shm s h})"
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   482
| "procs_of_shm (Exit p # s) = 
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   483
    (\<lambda> h. (procs_of_shm s h) - {(p, flag) | flag. (p, flag) \<in> procs_of_shm s h})"
7b5e9fbeaf93 co2sobj simpset
chunhan
parents: 12
diff changeset
   484
| "procs_of_shm (e # \<tau>) = procs_of_shm \<tau>"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   485
26
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   486
(*
25
259a50be4381 wrong of info-flow-shm, it is a inductive(transitive) notion, not a simple relation just between 2 nodes, more information, see 5.7 of ideas_of_selinux.txt
chunhan
parents: 23
diff changeset
   487
inductive info_flow_shm :: "t_state \<Rightarrow> t_process \<Rightarrow> t_process \<Rightarrow> bool"
259a50be4381 wrong of info-flow-shm, it is a inductive(transitive) notion, not a simple relation just between 2 nodes, more information, see 5.7 of ideas_of_selinux.txt
chunhan
parents: 23
diff changeset
   488
where
259a50be4381 wrong of info-flow-shm, it is a inductive(transitive) notion, not a simple relation just between 2 nodes, more information, see 5.7 of ideas_of_selinux.txt
chunhan
parents: 23
diff changeset
   489
  "p \<in> current_procs s \<Longrightarrow> info_flow_shm s p p"
259a50be4381 wrong of info-flow-shm, it is a inductive(transitive) notion, not a simple relation just between 2 nodes, more information, see 5.7 of ideas_of_selinux.txt
chunhan
parents: 23
diff changeset
   490
| "\<lbrakk>info_flow_shm s p p'; (p', SHM_RDWR) \<in> procs_of_shm s h; (p'', flag) \<in> procs_of_shm s h; p' \<noteq> p''\<rbrakk>
259a50be4381 wrong of info-flow-shm, it is a inductive(transitive) notion, not a simple relation just between 2 nodes, more information, see 5.7 of ideas_of_selinux.txt
chunhan
parents: 23
diff changeset
   491
   \<Longrightarrow> info_flow_shm s p p''"
26
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   492
*)
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   493
definition one_flow_shm :: "t_state \<Rightarrow> t_shm \<Rightarrow> t_process \<Rightarrow> t_process \<Rightarrow> bool"
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   494
where
27
fc749f19b894 Info_flow_shm_attach_prop
chunhan
parents: 26
diff changeset
   495
  "one_flow_shm s h from to \<equiv> from \<noteq> to \<and> (from, SHM_RDWR) \<in> procs_of_shm s h \<and> 
fc749f19b894 Info_flow_shm_attach_prop
chunhan
parents: 26
diff changeset
   496
                              (\<exists> flag. (to, flag) \<in> procs_of_shm s h)"
26
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   497
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   498
fun self_shm :: "t_state \<Rightarrow> t_process \<Rightarrow> t_process \<Rightarrow> bool"
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   499
where
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   500
  "self_shm s p p' = (p = p' \<and> p' \<in> current_procs s)"
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   501
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   502
definition info_flow_shm :: "t_state \<Rightarrow> t_process \<Rightarrow> t_process \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   503
where
26
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   504
  "info_flow_shm s from to \<equiv> (self_shm s from to) \<or> (\<exists> h. one_flow_shm s h from to)" 
b6333712cb02 finished info_flow_shm(simple def) simpset
chunhan
parents: 25
diff changeset
   505
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   506
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   507
fun current_msgqs :: "t_state \<Rightarrow> t_msg set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   508
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   509
  "current_msgqs [] = init_msgqs"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   510
| "current_msgqs (CreateMsgq p q # \<tau>) = insert q (current_msgqs \<tau>)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   511
| "current_msgqs (RemoveMsgq p q # \<tau>) = (current_msgqs \<tau>) - {q}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   512
| "current_msgqs (_ # \<tau>) = current_msgqs \<tau>"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   513
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   514
fun msgs_of_queue :: "t_state \<Rightarrow> t_msgq \<Rightarrow> t_msg list"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   515
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   516
  "msgs_of_queue [] = init_msgs_of_queue"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   517
| "msgs_of_queue (CreateMsgq p q # \<tau>) = (msgs_of_queue \<tau>)(q := [])"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   518
| "msgs_of_queue (SendMsg p q m  # \<tau>) = (msgs_of_queue \<tau>)(q := msgs_of_queue \<tau> q @ [m])"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   519
| "msgs_of_queue (RecvMsg p q m  # \<tau>) = (msgs_of_queue \<tau>)(q := tl (msgs_of_queue \<tau> q))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   520
| "msgs_of_queue (RemoveMsgq p q # \<tau>) = (msgs_of_queue \<tau>)(q := [])" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   521
| "msgs_of_queue (_ # \<tau>) = msgs_of_queue \<tau>"         
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   522
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   523
definition current_file_inums :: "t_state \<Rightarrow> t_inode_num set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   524
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   525
  "current_file_inums \<tau> \<equiv> {im. \<exists> f. inum_of_file \<tau> f = Some im}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   526
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   527
definition current_sock_inums :: "t_state \<Rightarrow> t_inode_num set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   528
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   529
  "current_sock_inums \<tau> = {im. \<exists> s. inum_of_socket \<tau> s = Some im}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   530
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   531
definition current_inode_nums :: "t_state \<Rightarrow> nat set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   532
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   533
  "current_inode_nums \<tau> = current_file_inums \<tau> \<union> current_sock_inums \<tau>"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   534
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   535
fun flags_of_proc_fd :: "t_state \<Rightarrow> t_process \<Rightarrow> t_fd \<Rightarrow> t_open_flags option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   536
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   537
  "flags_of_proc_fd [] p fd = init_oflags_of_proc_fd p fd" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   538
| "flags_of_proc_fd (Open p f flags fd iopt # \<tau>) p' fd' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   539
     (if (p = p' \<and> fd = fd') then Some flags else flags_of_proc_fd \<tau> p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   540
| "flags_of_proc_fd (CloseFd p fd # \<tau>) p' fd' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   541
     (if (p = p' \<and> fd = fd') then None else flags_of_proc_fd \<tau> p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   542
| "flags_of_proc_fd (CreateSock p af st fd ino # \<tau>) p' fd' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   543
     (if (p = p' \<and> fd = fd') then None else flags_of_proc_fd \<tau> p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   544
| "flags_of_proc_fd (Accept p fd addr lport' fd' ino # \<tau>) p' fd'' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   545
     (if (p = p' \<and> fd' = fd'') then None else flags_of_proc_fd \<tau> p' fd'')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   546
| "flags_of_proc_fd (Clone p p' fds shms # \<tau>) p'' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   547
     (if (p' = p'' \<and> fd \<in> fds) then flags_of_proc_fd \<tau> p fd else flags_of_proc_fd \<tau> p'' fd)"  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   548
| "flags_of_proc_fd (Execve p f fds # \<tau>) p' fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   549
     (if (p' = p \<and> fd \<in> fds) then flags_of_proc_fd \<tau> p fd else flags_of_proc_fd \<tau> p' fd)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   550
| "flags_of_proc_fd (Kill p\<^isub>1 p\<^isub>2 # \<tau>) p fd = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   551
     (if (p = p\<^isub>2) then None else flags_of_proc_fd \<tau> p fd)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   552
| "flags_of_proc_fd (Exit p # \<tau>) p' fd' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   553
     (if (p = p') then None else flags_of_proc_fd \<tau> p' fd')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   554
| "flags_of_proc_fd (e # \<tau>) p fd = flags_of_proc_fd \<tau> p fd" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   555
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   556
(* 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   557
fun file_at_writing_by:: "t_state \<Rightarrow> t_file \<Rightarrow> (t_process \<times> t_fd) set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   558
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   559
  "file_at_writing_by [] f = init_file_at_writing_by f"  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   560
| "file_at_writing_by (Open p f flags fd (Some inum) # \<tau>) f' = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   561
     if (f' = f) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   562
     then ( if (is_write_flag flags) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   563
            then {(p, fd)}
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   564
            else {} )
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   565
     else file_at_writing_by \<tau> f'                              )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   566
| "file_at_writing_by (Open p f flags fd None # \<tau>) f' = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   567
     if (f' = f \<and> is_write_flag flags) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   568
     then insert (p, fd) (file_at_writing_by \<tau> f) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   569
     else file_at_writing_by \<tau> f'                       )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   570
| "file_at_writing_by (Mkdir p f inum # \<tau>) f' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   571
     (if (f' = f) then {} else file_at_writing_by \<tau> f')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   572
| "file_at_writing_by (LinkHard p f f' # \<tau>) f'' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   573
     (if (f'' = f') then file_at_writing_by \<tau> f else file_at_writing_by \<tau> f'')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   574
| "file_at_writing_by (Rename p f\<^isub>2 f\<^isub>3 # \<tau>) f = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   575
     if (f\<^isub>3 \<preceq> f) then file_at_writing_by \<tau> (file_before_rename f\<^isub>2 f\<^isub>3 f)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   576
     else file_at_writing_by \<tau> f               )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   577
| "file_at_writing_by (CloseFd p fd # \<tau>) f = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   578
     (file_at_writing_by \<tau> f - {(p, fd)})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   579
| "file_at_writing_by (Clone p p' fds shms # \<tau>) f = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   580
     (file_at_writing_by \<tau> f) \<union> {(p',fd)| fd. fd \<in> fds \<and> (p, fd) \<in> file_at_writing_by \<tau> f}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   581
| "file_at_writing_by (Execve p f fds # \<tau>) f' = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   582
     (if (f' = f) then {} else file_at_writing_by \<tau> f')"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   583
| "file_at_writing_by (Exit p # \<tau>) f = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   584
     (file_at_writing_by \<tau> f - {(p, fd)| fd. (p, fd) \<in> file_at_writing_by \<tau> f})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   585
| "file_at_writing_by (Kill p p' # \<tau>) f = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   586
     (file_at_writing_by \<tau> f - {(p', fd)| fd. (p', fd) \<in> file_at_writing_by \<tau> f})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   587
| "file_at_writing_by (e # \<tau>) f            =  file_at_writing_by \<tau> f"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   588
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   589
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   590
definition current_users :: "t_state \<Rightarrow> user_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   591
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   592
  "current_users \<tau> \<equiv> init_users"  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   593
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   594
fun update_with_shuthow :: "t_sock_state option \<Rightarrow> t_shutdown_how \<Rightarrow> t_sock_state option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   595
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   596
  "update_with_shuthow (Some (SS_trans Trans_Recv)) SHUT_RD = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   597
| "update_with_shuthow (Some (SS_trans Trans_RS))   SHUT_RD = Some (SS_trans Trans_Send)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   598
| "update_with_shuthow (Some (SS_trans Trans_Send)) SHUT_RD = Some (SS_trans Trans_Send)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   599
| "update_with_shuthow (Some (SS_trans Trans_No))   SHUT_RD = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   600
| "update_with_shuthow (Some (SS_trans Trans_Recv)) SHUT_WR = Some (SS_trans Trans_Recv)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   601
| "update_with_shuthow (Some (SS_trans Trans_RS))   SHUT_WR = Some (SS_trans Trans_Recv)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   602
| "update_with_shuthow (Some (SS_trans Trans_Send)) SHUT_WR = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   603
| "update_with_shuthow (Some (SS_trans Trans_No))   SHUT_WR = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   604
| "update_with_shuthow (Some (SS_trans Trans_Recv)) SHUT_RDWR = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   605
| "update_with_shuthow (Some (SS_trans Trans_RS))   SHUT_RDWR = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   606
| "update_with_shuthow (Some (SS_trans Trans_Send)) SHUT_RDWR = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   607
| "update_with_shuthow (Some (SS_trans Trans_No))   SHUT_RDWR = Some (SS_trans Trans_No)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   608
| "update_with_shuthow opt1                         how       = None" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   609
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   610
fun socket_state :: "t_state \<Rightarrow> t_socket \<Rightarrow> t_sock_state option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   611
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   612
  "socket_state [] = init_socket_state"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   613
| "socket_state (CloseFd p fd # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   614
     (socket_state \<tau>) ((p, fd):= None)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   615
| "socket_state (CreateSock p af st fd ino # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   616
     (socket_state \<tau>) ((p, fd) := Some SS_create)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   617
| "socket_state (Bind p fd addr # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   618
     (socket_state \<tau>) ((p, fd) := Some SS_bind)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   619
| "socket_state (Connect p fd addr # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   620
     (socket_state \<tau>) ((p, fd) := Some (SS_trans Trans_RS))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   621
| "socket_state (Listen p fd # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   622
     (socket_state \<tau>) ((p, fd) := Some SS_listen)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   623
| "socket_state (Accept p fd addr lport' fd' ino # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   624
     (socket_state \<tau>) ((p, fd') := Some (SS_trans Trans_RS))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   625
| "socket_state (Shutdown p fd sh # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   626
     (socket_state \<tau>) ((p, fd) := update_with_shuthow (socket_state \<tau> (p, fd)) sh)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   627
| "socket_state (Clone p p' fds shms # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   628
     (\<lambda> (p'', fd). if (p'' = p' \<and> fd \<in> fds) then socket_state \<tau> (p, fd) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   629
                   else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   630
                   else socket_state \<tau> (p'', fd))" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   631
| "socket_state (Execve p f fds # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   632
     (\<lambda> (p', fd). if (p' = p \<and> fd \<in> fds) then socket_state \<tau> (p, fd) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   633
                  else if (p' = p) then None 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   634
                  else socket_state \<tau> (p', fd))" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   635
| "socket_state (Kill p\<^isub>1 p\<^isub>2 # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   636
     (\<lambda> (p, fd). if (p = p\<^isub>2) then None else socket_state \<tau> (p, fd))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   637
| "socket_state (Exit p # \<tau>) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   638
     (\<lambda> (p', fd'). if (p = p') then None else socket_state \<tau> (p', fd'))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   639
| "socket_state (e # \<tau>) = socket_state \<tau>"  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   640
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   641
definition socket_in_trans :: "t_state \<Rightarrow> t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   642
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   643
  "socket_in_trans \<tau> s \<equiv> (case (socket_state \<tau> s) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   644
                            Some st \<Rightarrow> (case st of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   645
                                          SS_trans para \<Rightarrow> True
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   646
                                        | _             \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   647
                          | _       \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   648
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   649
definition socket_in_sending :: "t_state \<Rightarrow> t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   650
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   651
  "socket_in_sending \<tau> s \<equiv> (socket_state \<tau> s = Some (SS_trans Trans_Send)) \<or> (socket_state \<tau> s = Some (SS_trans Trans_RS))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   652
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   653
definition socket_in_recving :: "t_state \<Rightarrow> t_socket \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   654
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   655
  "socket_in_recving \<tau> s \<equiv> (socket_state \<tau> s = Some (SS_trans Trans_Recv)) \<or> (socket_state \<tau> s = Some (SS_trans Trans_RS))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   656
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   657
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   658
(******* admissable check by the OS *******)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   659
fun os_grant :: "t_state \<Rightarrow> t_event \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   660
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   661
  "os_grant \<tau> (Open p f flags fd inumopt) = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   662
     case inumopt of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   663
       Some ino \<Rightarrow>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   664
    (p \<in> current_procs \<tau> \<and> f \<notin> current_files \<tau> \<and> 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   665
     (\<exists> pf. parent f = Some pf \<and> is_dir \<tau> pf \<and> pf \<notin> files_hung_by_del \<tau>) \<and>
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   666
     is_creat_flag flags \<and> fd \<notin> (current_proc_fds \<tau> p) \<and> ino \<notin> (current_inode_nums \<tau>))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   667
   |   None     \<Rightarrow>
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   668
    (p \<in> current_procs \<tau> \<and> \<not> is_creat_excl_flag flags \<and> is_file \<tau> f \<and>
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   669
     fd \<notin> (current_proc_fds \<tau> p))           )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   670
(*(if (is_dir \<tau> f) then (is_dir_flag flags \<and> \<not> is_write_flag flags) else (\<not> is_dir_flag flags)),
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   671
  here open is not applied to directories, readdir is for that, but it is not security-related *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   672
| "os_grant \<tau> (CloseFd p fd)                  = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   673
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   674
| "os_grant \<tau> (UnLink p f)                    = 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   675
    (p \<in> current_procs \<tau> \<and> is_file \<tau> f \<and> f \<notin> files_hung_by_del \<tau>)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   676
| "os_grant \<tau> (Rmdir p f)                     = 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   677
    (p \<in> current_procs \<tau> \<and> dir_is_empty \<tau> f \<and> f \<notin> files_hung_by_del \<tau> \<and> f \<noteq> [])" (* root file cannot be deleted *)
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   678
| "os_grant \<tau> (Mkdir p f ino)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   679
    (p \<in> current_procs \<tau> \<and> f \<notin> current_files \<tau> \<and> 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   680
     (\<exists> pf. parent f = Some pf \<and> is_dir \<tau> pf \<and> pf \<notin> files_hung_by_del \<tau>) \<and>
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   681
     ino \<notin> (current_inode_nums \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   682
| "os_grant \<tau> (LinkHard p f\<^isub>1 f\<^isub>2)              = 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   683
    (p \<in> current_procs \<tau> \<and> is_file \<tau> f\<^isub>1 \<and> f\<^isub>2 \<notin> current_files \<tau> \<and> 
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   684
     (\<exists> pf\<^isub>2. parent f\<^isub>2 = Some pf\<^isub>2 \<and> is_dir \<tau> pf\<^isub>2 \<and> pf\<^isub>2 \<notin> files_hung_by_del \<tau>))"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   685
| "os_grant \<tau> (Truncate p f len)              = 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   686
    (p \<in> current_procs \<tau> \<and> is_file \<tau> f)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   687
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   688
| "os_grant \<tau> (FTruncate p fd len)            = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   689
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   690
     (\<exists> f. file_of_proc_fd \<tau> p fd = Some f \<and> f \<in> current_files \<tau> \<and> is_file \<tau> f) \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   691
     (\<exists> flags. flags_of_proc_fd \<tau> p fd = Some flags \<and> is_write_flag flags))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   692
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   693
| "os_grant \<tau> (ReadFile p fd)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   694
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   695
     (\<exists> f. file_of_proc_fd \<tau> p fd = Some f \<and> f \<in> current_files \<tau>) \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   696
     (\<exists> flags. flags_of_proc_fd \<tau> p fd = Some flags \<and> is_read_flag flags))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   697
| "os_grant \<tau> (WriteFile p fd)                = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   698
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   699
     (\<exists> f. file_of_proc_fd \<tau> p fd = Some f \<and> f \<in> current_files \<tau>) \<and> 
69
fc7151df7f8e simplifing model, by changing current_proc_fds to proc_file_fds in the Clone & Execve cases of os_grant
chunhan
parents: 68
diff changeset
   700
     (\<exists> flags. flags_of_proc_fd \<tau> p fd = Some flags \<and> is_write_flag flags))" 
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   701
| "os_grant \<tau> (Execve p f fds)                = 
68
742bed613245 simplifing model, by changing sectxt_of_obj s' (O_proc p) of None \<Rightarrow> False
chunhan
parents: 67
diff changeset
   702
    (p \<in> current_procs \<tau> \<and> is_file \<tau> f \<and> fds \<subseteq> proc_file_fds \<tau> p)" (* file_at_writing_by \<tau> f = {} \<and> fds \<subseteq> current_proc_fds \<tau> p *)
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   703
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   704
| "os_grant \<tau> (Rename p f\<^isub>2 f\<^isub>3)                = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   705
    (p \<in> current_procs \<tau> \<and> f\<^isub>2 \<in> current_files \<tau> \<and> \<not>(f\<^isub>2 \<preceq> f\<^isub>3) \<and> f\<^isub>3 \<notin> current_files \<tau> \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   706
     (\<exists> pf\<^isub>3. parent f\<^isub>3 = Some pf\<^isub>3 \<and> pf\<^isub>3 \<in> current_files \<tau> \<and> is_dir \<tau> pf\<^isub>3 \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   707
             pf\<^isub>3 \<notin> files_hung_by_del \<tau>) )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   708
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   709
| "os_grant \<tau> (CreateMsgq p q)                = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   710
    (p \<in> current_procs \<tau> \<and> q \<notin> (current_msgqs \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   711
| "os_grant \<tau> (SendMsg p q m)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   712
    (p \<in> current_procs \<tau> \<and> q \<in> current_msgqs \<tau> \<and> m \<notin> (set (msgs_of_queue \<tau> q)))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   713
| "os_grant \<tau> (RecvMsg p q m)                 = 
31
aa1375b6c0eb find bugs in os_grant, case RecvMsg
chunhan
parents: 27
diff changeset
   714
    (p \<in> current_procs \<tau> \<and> q \<in> current_msgqs \<tau> \<and> m = hd (msgs_of_queue \<tau> q) \<and> msgs_of_queue \<tau> q \<noteq> [])"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   715
| "os_grant \<tau> (RemoveMsgq p q)                = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   716
    (p \<in> current_procs \<tau> \<and> q \<in> current_msgqs \<tau>)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   717
| "os_grant \<tau> (CreateShM p h)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   718
    (p \<in> current_procs \<tau> \<and> h \<notin> (current_shms \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   719
| "os_grant \<tau> (Attach p h flag)               = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   720
    (p \<in> current_procs \<tau> \<and> h \<in> current_shms \<tau> \<and> \<not> (\<exists> flag. (p, flag) \<in> procs_of_shm \<tau> h))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   721
| "os_grant \<tau> (Detach p h)                    = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   722
    (p \<in> current_procs \<tau> \<and> h \<in> current_shms \<tau> \<and> (\<exists> flag. (p, flag) \<in> procs_of_shm \<tau> h))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   723
| "os_grant \<tau> (DeleteShM p h)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   724
    (p \<in> current_procs \<tau> \<and> h \<in> current_shms \<tau>)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   725
| "os_grant \<tau> (CreateSock p af st fd ino)     = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   726
    (p \<in> current_procs \<tau> \<and> af = AF_INET \<and> fd \<notin> (current_proc_fds \<tau> p) \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   727
     ino \<notin> (current_inode_nums \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   728
| "os_grant \<tau> (Accept p fd addr port fd' ino) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   729
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> (p, fd) \<in> current_sockets \<tau> \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   730
     fd' \<notin> (current_proc_fds \<tau> p) \<and> socket_state \<tau> (p, fd) = Some SS_listen \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   731
     is_tcp_sock \<tau> (p, fd) \<and> ino \<notin> (current_inode_nums \<tau>))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   732
| "os_grant \<tau> (Bind p fd addr)                = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   733
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> (p, fd) \<in> current_sockets \<tau> \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   734
     socket_state \<tau> (p, fd) = Some SS_create)" (* ?? !! (case addr of INET_ADDR ip port \<Rightarrow> ip \<in> local_ipaddrs)) *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   735
| "os_grant \<tau> (Connect p fd addr)             = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   736
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> (p, fd) \<in> current_sockets \<tau> \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   737
     socket_state \<tau> (p, fd) = Some SS_bind)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   738
| "os_grant \<tau> (Listen p fd)                   = 
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   739
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> is_tcp_sock \<tau> (p, fd) \<and>
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   740
     socket_state \<tau> (p, fd) = Some SS_bind)" (* Listen and Accept should only be used for TCP sever side *)
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   741
| "os_grant \<tau> (SendSock p fd)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   742
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> (p, fd) \<in> current_sockets \<tau> \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   743
     socket_in_sending \<tau> (p, fd))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   744
| "os_grant \<tau> (RecvSock p fd)                 = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   745
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> (p, fd) \<in> current_sockets \<tau> \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   746
     socket_in_recving \<tau> (p, fd))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   747
| "os_grant \<tau> (Shutdown p fd sh)              = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   748
    (p \<in> current_procs \<tau> \<and> fd \<in> current_proc_fds \<tau> p \<and> (p, fd) \<in> current_sockets \<tau> \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   749
     socket_in_trans \<tau> (p, fd))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   750
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   751
| "os_grant \<tau> (ChangeOwner p u)               = (p \<in> current_procs \<tau> \<and> u \<in> current_users \<tau>)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   752
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   753
| "os_grant \<tau> (Clone p p' fds shms)           = 
68
742bed613245 simplifing model, by changing sectxt_of_obj s' (O_proc p) of None \<Rightarrow> False
chunhan
parents: 67
diff changeset
   754
    (p \<in> current_procs \<tau> \<and> p' \<notin> (current_procs \<tau>) \<and> fds \<subseteq> proc_file_fds \<tau> p \<and>
742bed613245 simplifing model, by changing sectxt_of_obj s' (O_proc p) of None \<Rightarrow> False
chunhan
parents: 67
diff changeset
   755
     (\<forall> h \<in> shms. \<exists> flag. (p, flag) \<in> procs_of_shm \<tau> h))" (* current_proc_fds \<rightarrow> proc_file_fds *)
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   756
| "os_grant \<tau> (Kill p\<^isub>1 p\<^isub>2)                    = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   757
    (p\<^isub>1 \<in> current_procs \<tau> \<and> p\<^isub>2 \<in> current_procs \<tau>)" (* a process can kill itself right? *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   758
| "os_grant \<tau> (Exit p)                        = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   759
    (p \<in> current_procs \<tau>)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   760
| "os_grant \<tau> (Ptrace p\<^isub>1 p\<^isub>2)                  = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   761
    (p\<^isub>1 \<in> current_procs \<tau> \<and> p\<^isub>2 \<in> current_procs \<tau>)" (* a process can trace itself right? *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   762
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   763
fun alive :: "t_state \<Rightarrow> t_object \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   764
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   765
  "alive s (O_proc p)     = (p \<in> current_procs s)"
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   766
| "alive s (O_file f)     = (is_file s f)"
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   767
| "alive s (O_dir  f)     = (is_dir s f)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   768
| "alive s (O_fd p fd)    = (fd \<in> current_proc_fds s p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   769
| "alive s (O_node n)     = (n \<in> init_nodes)"
6
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   770
| "alive s (O_tcp_sock k) = (is_tcp_sock s k)"
8779d321cc2e remove duplicated pre-condition of current_files in OS_grant, since it is property if is_file/is_dir.
chunhan
parents: 4
diff changeset
   771
| "alive s (O_udp_sock k) = (is_udp_sock s k)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   772
| "alive s (O_shm  h)     = (h \<in> current_shms s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   773
| "alive s (O_msgq q)     = (q \<in> current_msgqs s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   774
| "alive s (O_msg q m)    = (m \<in> set (msgs_of_queue s q) \<and> q \<in> current_msgqs s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   775
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   776
(* deleted objects should be "taintable" objects, objects like fd should not be in consideration *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   777
(* actually, deleted should be renamed as "vanished", cause "exit/closefd" *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   778
fun deleted :: "t_object \<Rightarrow> t_event list \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   779
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   780
  "deleted obj [] = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   781
| "deleted obj (Kill p p' # s)  = ((obj = O_proc p') \<or> (\<exists> fd \<in> current_proc_fds s p'. obj = O_fd p' fd) \<or> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   782
                                  (\<exists> fd. obj = O_tcp_sock (p', fd) \<and> is_tcp_sock s (p',fd)) \<or>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   783
                                  (\<exists> fd. obj = O_udp_sock (p', fd) \<and> is_udp_sock s (p',fd)) \<or>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   784
                                  deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   785
| "deleted obj (CloseFd p fd # s) = ((obj = O_fd p fd) \<or> (obj = O_tcp_sock (p,fd) \<and> is_tcp_sock s (p,fd)) \<or>
4
e9c5594d5963 fixed bugs in deleted definition
chunhan
parents: 2
diff changeset
   786
                                     (obj = O_udp_sock (p,fd) \<and> is_udp_sock s (p, fd)) \<or> 
e9c5594d5963 fixed bugs in deleted definition
chunhan
parents: 2
diff changeset
   787
                                     (\<exists> f. obj = O_file f \<and> proc_fd_of_file s f = {(p, fd)} \<and> 
e9c5594d5963 fixed bugs in deleted definition
chunhan
parents: 2
diff changeset
   788
                                           f \<in> files_hung_by_del s) \<or> deleted obj s)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   789
| "deleted obj (Execve p f fds # s) = ((\<exists> fd \<in> current_proc_fds s p. obj = O_fd p fd \<and> fd \<notin> fds) \<or> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   790
                                       (\<exists> fd. obj = O_tcp_sock (p, fd) \<and> is_tcp_sock s (p,fd) \<and> fd \<notin> fds) \<or>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   791
                                       (\<exists> fd. obj = O_udp_sock (p, fd) \<and> is_udp_sock s (p,fd) \<and> fd \<notin> fds) \<or>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   792
                                       deleted obj s)"
4
e9c5594d5963 fixed bugs in deleted definition
chunhan
parents: 2
diff changeset
   793
| "deleted obj (Clone p p' fds shms # s) = ((\<exists> fd \<in> current_proc_fds s p. obj = O_fd p' fd \<and> fd \<notin> fds) \<or> 
e9c5594d5963 fixed bugs in deleted definition
chunhan
parents: 2
diff changeset
   794
                                            deleted obj s)"
8
289a30c4cfb7 find bugs in deleted & inum_of_file
chunhan
parents: 7
diff changeset
   795
| "deleted obj (UnLink p f # s) = ((proc_fd_of_file s f = {} \<and> obj = O_file f) \<or> deleted obj s)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   796
| "deleted obj (Rmdir p f # s)  = ((obj = O_dir  f) \<or> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   797
| "deleted obj (Exit p # s) = ((obj = O_proc p) \<or> (\<exists> fd \<in> current_proc_fds s p. obj = O_fd p fd) \<or> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   798
                               (\<exists> fd. obj = O_tcp_sock (p, fd) \<and> is_tcp_sock s (p,fd)) \<or>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   799
                               (\<exists> fd. obj = O_udp_sock (p, fd) \<and> is_udp_sock s (p,fd)) \<or> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   800
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   801
| "deleted obj (Rename p f f' # s)  = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   802
     (case obj of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   803
        O_file f'' \<Rightarrow> f \<preceq> f'' \<or> deleted obj s
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   804
      | O_dir  f'' \<Rightarrow> f \<preceq> f'' \<or> deleted obj s
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   805
      | _ \<Rightarrow> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   806
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   807
| "deleted obj (RemoveMsgq p q # s) = (obj = O_msgq q \<or> (\<exists> m. obj = O_msg q m) \<or> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   808
| "deleted obj (DeleteShM p h # s) = (obj = O_shm h \<or> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   809
| "deleted obj (RecvMsg p q m # s)  = (obj = O_msg q m \<or> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   810
| "deleted obj (_ # s) = deleted obj s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   811
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   812
end
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   813
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   814
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   815
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   816
locale flask = init + 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   817
 fixes
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   818
   (***************** Policy-specific Parameters *************)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   819
      type_transition_rules :: "type_transition_rule_list_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   820
  and allowed_rules :: "allowed_rule_list_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   821
  and role_allowed_rules :: "role_allow_rule_list_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   822
  and role_declaration_rules :: "role_declarations_list_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   823
  and role_transition_rules:: "role_transition_rule_list_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   824
  and constrains_rules :: "constrains_list_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   825
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   826
  and init_type_of_obj :: "t_object \<rightharpoonup> type_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   827
  and init_user_of_obj :: "t_object \<rightharpoonup> user_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   828
  and init_role_of_proc :: "t_process \<rightharpoonup> role_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   829
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   830
  assumes
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   831
   
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   832
      init_obj_has_type: "\<And> obj. init_alive obj \<Longrightarrow> \<exists> t. init_type_of_obj obj = Some t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   833
  and init_type_has_obj: "\<And> obj t. init_type_of_obj obj = Some t \<Longrightarrow> init_alive obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   834
  and init_obj_has_user: "\<And> obj. init_alive obj \<Longrightarrow> \<exists> u. init_user_of_obj obj = Some u"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   835
  and init_user_has_obj: "\<And> obj u. init_user_of_obj obj = Some u \<Longrightarrow> init_alive obj \<and> u \<in> init_users"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   836
  and init_proc_has_role: "bidirect_in_init init_procs init_role_of_proc"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   837
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   838
begin
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   839
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   840
(*********** policy-specified computations, not-event-related ************)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   841
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   842
(* security_transition_sid : type_transition_rules
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   843
 * It's a system-call offered by security-server? So access-control-checked too?
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   844
 * according to selinux, it deals only with execve and file-creation
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   845
 *  is_execve: if is the execve case
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   846
 *  is_file: if is the creation of file/dir
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   847
 *  change from is_execve to is_file, because the new message by default use
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   848
 *  the type of the sending process too. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   849
 *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   850
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   851
definition type_transition :: "type_t \<Rightarrow> type_t \<Rightarrow> security_class_t \<Rightarrow> bool \<Rightarrow> type_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   852
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   853
  "type_transition st rt tc IS_file \<equiv> (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   854
     case (lookup type_transition_rules 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   855
             (\<lambda> (stp, rtp, tc', dt). patt_match stp st \<and> patt_match rtp rt \<and> tc = tc')) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   856
       None     \<Rightarrow> (if IS_file then rt else st)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   857
     | Some (stp,rtp,tc',dt) \<Rightarrow> dt)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   858
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   859
(* allowed_rule_list *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   860
definition TE_allow :: "type_t \<Rightarrow> type_t \<Rightarrow> security_class_t \<Rightarrow> permission_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   861
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   862
  "TE_allow st tt tc perm \<equiv> member allowed_rules
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   863
      (\<lambda> (stp, ttp, tc', pp). tc = tc' \<and> patt_match stp st \<and> patt_match_self ttp tt st \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   864
                              patt_match pp perm)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   865
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   866
(* role_allow_rule_list_t *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   867
definition role_transition :: "role_t \<Rightarrow> type_t \<Rightarrow> role_t option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   868
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   869
  "role_transition r t \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   870
     (case (lookup role_transition_rules (\<lambda> (pr, ft, nr). pr = r \<and> t = ft)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   871
        None \<Rightarrow> None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   872
      | Some (pr,ft,nr) \<Rightarrow> Some nr)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   873
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   874
definition role_decl_check :: "role_t \<Rightarrow> type_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   875
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   876
  "role_decl_check r t \<equiv> member role_declaration_rules (\<lambda> (role, types). r = role \<and> t \<in> types)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   877
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   878
definition role_allow :: "role_t \<Rightarrow> role_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   879
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   880
  "role_allow r nr \<equiv> member role_allowed_rules (\<lambda> (from, to). r \<in> from \<and> nr \<in> to)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   881
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   882
(* here don't use lookup, because constrains should all be satisfied, 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   883
 * while transitions always choose the "first" one 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   884
 *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   885
definition constrains_satisfied :: 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   886
  "security_context_t \<Rightarrow> security_context_t \<Rightarrow> security_class_t \<Rightarrow> permission_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   887
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   888
  "constrains_satisfied sctxt tctxt c p \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   889
    (fold (\<lambda> (cset, pset, P) res. res \<and> (if (c \<in> cset \<and> p \<in> pset) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   890
                                            then P sctxt tctxt else True))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   891
          constrains_rules True)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   892
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   893
(* main interface for TE_allow check and constrains check *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   894
fun permission_check:: 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   895
  "security_context_t \<Rightarrow> security_context_t \<Rightarrow> security_class_t \<Rightarrow> permission_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   896
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   897
  "permission_check (su,sr,st) (tu,tr,tt) c p =
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   898
    ((TE_allow st tt c p) \<and> (constrains_satisfied (su,sr,st) (tu,tr,tt) c p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   899
declare permission_check.simps [simp del]
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   900
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   901
(* no changeowner ??? : by adding "relabel obj sectxt" event or "login" event? 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   902
 * or this explanation: the running of the sever will not grant any login but running 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   903
 * of the server-programs! 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   904
 *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   905
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   906
fun user_of_obj :: "t_state \<Rightarrow> t_object \<Rightarrow> user_t option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   907
where 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   908
  "user_of_obj [] = init_user_of_obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   909
| "user_of_obj (Clone p p' fds shms # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   910
    (\<lambda> obj. case obj of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   911
              O_proc p'' \<Rightarrow> if (p'' = p') then user_of_obj s (O_proc p) else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   912
            | O_fd p'' fd  \<Rightarrow> if (p'' = p' \<and> fd \<in> fds) then user_of_obj s (O_fd p fd)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   913
                              else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   914
                                   else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   915
            | O_tcp_sock (p'',fd) \<Rightarrow> if (p'' = p' \<and> fd \<in> fds) then user_of_obj s (O_tcp_sock (p, fd))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   916
                                     else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   917
                                          else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   918
            | O_udp_sock (p'',fd) \<Rightarrow> if (p'' = p' \<and> fd \<in> fds) then user_of_obj s (O_udp_sock (p, fd))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   919
                                     else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   920
                                          else user_of_obj s obj 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   921
            | _ \<Rightarrow> user_of_obj s obj)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   922
| "user_of_obj (Open p f flags fd iopt # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   923
    (case iopt of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   924
       None \<Rightarrow> (user_of_obj s) ((O_fd p fd) := user_of_obj s (O_proc p))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   925
     | _    \<Rightarrow> ((user_of_obj s) ((O_fd p fd) := user_of_obj s (O_proc p)))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   926
               ((O_file f) := user_of_obj s (O_proc p)))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   927
| "user_of_obj (Mkdir p f inum # s) =
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   928
    (user_of_obj s) ((O_dir f) := user_of_obj s (O_proc p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   929
| "user_of_obj (LinkHard p f f' # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   930
    (user_of_obj s) ((O_file f') := user_of_obj s (O_proc p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   931
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   932
| "user_of_obj (Rename p f2 f3 # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   933
    (\<lambda> obj. case obj of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   934
              O_file f \<Rightarrow> if (f3 \<preceq> f) then user_of_obj s (O_file (file_before_rename f2 f3 f))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   935
                          else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   936
            | O_dir  f \<Rightarrow> if (f3 \<preceq> f) then user_of_obj s (O_dir (file_before_rename f2 f3 f))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   937
                          else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   938
            | _        \<Rightarrow> user_of_obj s obj)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   939
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   940
| "user_of_obj (CreateMsgq p q # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   941
    (user_of_obj s) ((O_msgq q) := user_of_obj s (O_proc p))" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   942
| "user_of_obj (SendMsg p q m # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   943
    (user_of_obj s) ((O_msg q m) := user_of_obj s (O_proc p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   944
| "user_of_obj (CreateShM p h # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   945
    (user_of_obj s) ((O_shm h) := user_of_obj s (O_proc p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   946
| "user_of_obj (CreateSock p af st fd inum # s) =  (\<lambda> obj. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   947
     case obj of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   948
       O_fd p' fd' \<Rightarrow> if (p' = p \<and> fd' = fd) then user_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   949
                      else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   950
     | O_tcp_sock (p', fd') \<Rightarrow> if (p' = p \<and> fd' = fd \<and> st = STREAM) then user_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   951
                               else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   952
     | O_udp_sock (p', fd') \<Rightarrow> if (p' = p \<and> fd' = fd \<and> st = DGRAM) then user_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   953
                               else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   954
     | _ \<Rightarrow> user_of_obj s obj )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   955
| "user_of_obj (Accept p fd addr port fd' inum # s) = (\<lambda> obj. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   956
     case obj of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   957
       O_fd p' fd'' \<Rightarrow> if (p' = p \<and> fd'' = fd') then user_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   958
                      else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   959
     | O_tcp_sock (p', fd'') \<Rightarrow> if (p' = p \<and> fd'' = fd') then user_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   960
                               else user_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   961
     | _ \<Rightarrow> user_of_obj s obj )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   962
| "user_of_obj (_ # s) = user_of_obj s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   963
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   964
fun type_of_obj :: "t_state \<Rightarrow> (t_object \<Rightarrow> type_t option)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   965
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   966
  "type_of_obj [] = init_type_of_obj"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   967
| "type_of_obj (Clone p p' fds shms # s) = (\<lambda> obj. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   968
     case obj of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   969
       O_proc p'' \<Rightarrow> if (p'' = p') then type_of_obj s (O_proc p) else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   970
     | O_fd p'' fd \<Rightarrow> if (p'' = p' \<and> fd \<in> fds) then type_of_obj s (O_fd p fd)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   971
                      else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   972
                           else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   973
     | O_tcp_sock (p'', fd) \<Rightarrow> if (p'' = p' \<and> fd \<in> fds) then type_of_obj s (O_tcp_sock (p, fd))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   974
                               else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   975
                                    else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   976
     | O_udp_sock (p'', fd) \<Rightarrow> if (p'' = p' \<and> fd \<in> fds) then type_of_obj s (O_udp_sock (p, fd))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   977
                               else if (p'' = p') then None
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   978
                                    else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   979
     | _ \<Rightarrow> type_of_obj s obj )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   980
| "type_of_obj (Execve p f fds # s) = (type_of_obj s) ((O_proc p) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   981
    (case (type_of_obj s (O_proc p), type_of_obj s (O_file f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   982
       (Some tp, Some tf) \<Rightarrow> Some (type_transition tp tf C_process False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   983
     | _                  \<Rightarrow> None)                    )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   984
| "type_of_obj (Open p f flags fd (Some inum) # s) = ((type_of_obj s) ((O_file f) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   985
     (case (parent f) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   986
        Some pf \<Rightarrow> (case (type_of_obj s (O_proc p), type_of_obj s (O_dir pf)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   987
                      (Some tp, Some tpf) \<Rightarrow> Some (type_transition tp tpf C_file True)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   988
                    | _ \<Rightarrow> None)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   989
      | _       \<Rightarrow> None)                              )) ((O_fd p fd) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   990
     type_of_obj s (O_proc p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   991
| "type_of_obj (Open p f flags fd None # s) = (type_of_obj s) ((O_fd p fd) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   992
     type_of_obj s (O_proc p))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   993
| "type_of_obj (Mkdir p f inum # s) = (type_of_obj s) ((O_dir f) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   994
     (case (parent f) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   995
        Some pf \<Rightarrow> (case (type_of_obj s (O_proc p), type_of_obj s (O_dir pf)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   996
                     (Some tp, Some tpf) \<Rightarrow> Some (type_transition tp tpf C_dir True)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   997
                   | _ \<Rightarrow> None)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   998
     | _ \<Rightarrow> None)                                 )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
   999
| "type_of_obj (LinkHard p f f' # s) = (type_of_obj s) ((O_file f') := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1000
    (case (parent f') of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1001
       Some pf \<Rightarrow> (case (type_of_obj s (O_proc p), type_of_obj s (O_dir pf)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1002
                    (Some tp, Some tpf) \<Rightarrow> Some (type_transition tp tpf C_file True)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1003
                  | _ \<Rightarrow> None)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1004
     | _ \<Rightarrow> None)                                      )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1005
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1006
| "type_of_obj (Rename p f f' # s) = (\<lambda> obj. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1007
      case obj of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1008
        O_file f'' \<Rightarrow> (if (f' \<preceq> f'') then type_of_obj s (O_file (file_before_rename f f' f''))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1009
                       else type_of_obj s (O_file f''))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1010
      | O_dir f'' \<Rightarrow> (if (f' \<preceq> f'') then type_of_obj s (O_file (file_before_rename f f' f''))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1011
                      else type_of_obj s (O_file f''))
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1012
      | _ \<Rightarrow> type_of_obj s obj   )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1013
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1014
| "type_of_obj (CreateMsgq p q # s) = (type_of_obj s) ((O_msgq q) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1015
     (case (type_of_obj s (O_proc p)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1016
        Some tp \<Rightarrow> Some tp
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1017
      | _       \<Rightarrow> None)                          )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1018
| "type_of_obj (SendMsg p q m # s) = (type_of_obj s) ((O_msg q m) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1019
     (case (type_of_obj s (O_proc p), type_of_obj s (O_msgq q)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1020
        (Some tp, Some tq) \<Rightarrow> Some (type_transition tp tq C_msg False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1021
      | _ \<Rightarrow> None)                               )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1022
| "type_of_obj (CreateShM p h # s) = (type_of_obj s) ((O_shm h) := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1023
     (case (type_of_obj s (O_proc p)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1024
        Some tp \<Rightarrow> Some tp
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1025
      | _       \<Rightarrow> None)                          )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1026
| "type_of_obj (CreateSock p af st fd inum # s) = (\<lambda> obj. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1027
     case obj of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1028
       O_fd p' fd' \<Rightarrow> if (p' = p \<and> fd' = fd) then type_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1029
                      else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1030
     | O_tcp_sock (p', fd') \<Rightarrow> if (p' = p \<and> fd' = fd \<and> st = STREAM) then type_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1031
                               else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1032
     | O_udp_sock (p', fd') \<Rightarrow> if (p' = p \<and> fd' = fd \<and> st = DGRAM) then type_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1033
                               else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1034
     | _ \<Rightarrow> type_of_obj s obj )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1035
| "type_of_obj (Accept p fd addr port fd' inum # s) = (\<lambda> obj. 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1036
     case obj of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1037
       O_fd p' fd'' \<Rightarrow> if (p' = p \<and> fd'' = fd') then type_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1038
                      else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1039
     | O_tcp_sock (p', fd'') \<Rightarrow> if (p' = p \<and> fd'' = fd') then type_of_obj s (O_proc p)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1040
                               else type_of_obj s obj
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1041
     | _ \<Rightarrow> type_of_obj s obj )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1042
| "type_of_obj (_ # s) = type_of_obj s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1043
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1044
fun role_of_proc :: "t_state \<Rightarrow> (t_process \<Rightarrow> role_t option)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1045
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1046
  "role_of_proc [] = init_role_of_proc"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1047
| "role_of_proc (Clone p p' fds shms # s) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1048
    (role_of_proc s) (p' := role_of_proc s p)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1049
| "role_of_proc (Execve p f fds # s) = (role_of_proc s) (p := 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1050
    (case (role_of_proc s p, type_of_obj s (O_file f)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1051
       (Some r, Some ft) \<Rightarrow> role_transition r ft
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1052
     | _ \<Rightarrow> None)                       )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1053
| "role_of_proc (_ # s) = role_of_proc s"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1054
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1055
fun role_of_obj :: "t_state \<Rightarrow> t_object \<Rightarrow> role_t option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1056
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1057
  "role_of_obj s (O_proc p) = role_of_proc s p"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1058
| "role_of_obj s _          = Some R_object"  (* object_r *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1059
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1060
definition sectxt_of_obj :: "t_state \<Rightarrow> t_object \<Rightarrow> security_context_t option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1061
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1062
  "sectxt_of_obj s obj = (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1063
     case (user_of_obj s obj, role_of_obj s obj, type_of_obj s obj) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1064
       (Some u, Some r, Some t) \<Rightarrow> Some (u, r, t)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1065
     | _                        \<Rightarrow> None)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1066
7
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1067
fun init_role_of_obj :: "t_object \<Rightarrow> role_t option"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1068
where
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1069
  "init_role_of_obj (O_proc p) = init_role_of_proc p"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1070
| "init_role_of_obj _          = Some R_object"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1071
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1072
definition init_sectxt_of_obj :: "t_object \<Rightarrow> security_context_t option"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1073
where
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1074
  "init_sectxt_of_obj obj \<equiv>
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1075
     (case (init_user_of_obj obj, init_role_of_obj obj, init_type_of_obj obj) of
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1076
        (Some u, Some r, Some t) \<Rightarrow> Some (u,r,t)
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1077
      | _ \<Rightarrow> None)"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1078
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1079
definition sec_of_root :: "security_context_t"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1080
where
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1081
  "sec_of_root \<equiv> (case (init_user_of_obj (O_dir []), init_type_of_obj (O_dir [])) of
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1082
     (Some u, Some t) \<Rightarrow> (u, R_object, t))"
f27882976251 finally get cf2sfile path property done
chunhan
parents: 6
diff changeset
  1083
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1084
(******* flask granting ********
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1085
 * involves three kinds of rules:
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1086
 *  1. allow rule of types, allowed_rule_list_t, main
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1087
 *  2. allow rule of roles, role_allow_rule_list_t, mainly for execve call
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1088
 *  3. constrains, section 3.4.5, user-specifically defined.
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1089
 * Passed all these 3, then grant Yes, else No 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1090
 *) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1091
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1092
definition search_check_allp :: "security_context_t \<Rightarrow> security_context_t set \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1093
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1094
  "search_check_allp pctxt sectxts = (\<forall> sec \<in> sectxts. permission_check pctxt sec C_dir P_search)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1095
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1096
definition search_check_file :: "security_context_t \<Rightarrow> security_context_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1097
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1098
  "search_check_file sctxt fctxt \<equiv> permission_check sctxt fctxt C_file P_search"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1099
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1100
definition search_check_dir :: "security_context_t \<Rightarrow> security_context_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1101
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1102
  "search_check_dir sctxt fctxt \<equiv> permission_check sctxt fctxt C_dir P_search"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1103
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1104
fun get_parentfs_ctxts :: "t_state \<Rightarrow> t_file \<Rightarrow> (security_context_t list) option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1105
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1106
  "get_parentfs_ctxts s [] = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1107
     (case (sectxt_of_obj s (O_dir [])) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1108
        Some ctxt \<Rightarrow> Some [ctxt]
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1109
      | _         \<Rightarrow> None)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1110
| "get_parentfs_ctxts s (f#pf) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1111
     (case (get_parentfs_ctxts s pf, sectxt_of_obj s (O_dir (f#pf))) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1112
        (Some ctxts, Some ctxt) \<Rightarrow> Some (ctxt#ctxts)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1113
      | _ \<Rightarrow> None)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1114
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1115
definition search_check_ctxt:: 
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1116
  "security_context_t \<Rightarrow> security_context_t \<Rightarrow> security_context_t set \<Rightarrow> bool \<Rightarrow> bool"
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1117
where
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1118
  "search_check_ctxt pctxt fctxt asecs if_file \<equiv> (
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1119
      if if_file 
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1120
      then search_check_file pctxt fctxt \<and> search_check_allp pctxt asecs
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1121
      else search_check_dir  pctxt fctxt \<and> search_check_allp pctxt asecs )"
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1122
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1123
fun search_check :: "t_state \<Rightarrow> security_context_t \<Rightarrow> t_file \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1124
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1125
  "search_check s pctxt [] = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1126
     (case (sectxt_of_obj s (O_dir [])) of
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1127
        Some fctxt \<Rightarrow> search_check_ctxt pctxt fctxt {} False 
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1128
      | _          \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1129
| "search_check s pctxt (f#pf) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1130
     (if (is_file s (f#pf)) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1131
      then (case (sectxt_of_obj s (O_file (f#pf)), get_parentfs_ctxts s pf) of
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1132
              (Some fctxt, Some pfctxts) \<Rightarrow> search_check_ctxt pctxt fctxt (set pfctxts) True
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1133
            | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1134
      else (case (sectxt_of_obj s (O_dir (f#pf)), get_parentfs_ctxts s pf) of
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1135
              (Some fctxt, Some pfctxts) \<Rightarrow> search_check_ctxt pctxt fctxt (set pfctxts) False
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1136
            | _ \<Rightarrow> False))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1137
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1138
(* this means we should prove every current fd has a security context! *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1139
definition sectxts_of_fds :: "t_state \<Rightarrow> t_process \<Rightarrow> t_fd set \<Rightarrow> security_context_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1140
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1141
  "sectxts_of_fds s p fds \<equiv> {ctxt. \<exists> fd \<in> fds. sectxt_of_obj s (O_fd p fd) = Some ctxt}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1142
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1143
definition inherit_fds_check_ctxt:: "security_context_t \<Rightarrow> security_context_t set \<Rightarrow> bool"
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1144
where
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1145
  "inherit_fds_check_ctxt p fds \<equiv> (\<forall> ctxt \<in> fds. permission_check p ctxt C_fd P_inherit)"
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1146
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1147
definition inherit_fds_check :: "t_state \<Rightarrow> security_context_t \<Rightarrow> t_process \<Rightarrow> t_fd set \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1148
where
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1149
  "inherit_fds_check s npsectxt p fds \<equiv> inherit_fds_check_ctxt npsectxt (sectxts_of_fds s p fds)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1150
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1151
fun npctxt_execve :: "security_context_t \<Rightarrow> security_context_t \<Rightarrow> security_context_t option"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1152
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1153
  "npctxt_execve (pu,pr,pt) (fu,fr,ft) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1154
     (case (role_transition pr ft) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1155
        Some nr \<Rightarrow> Some (pu, nr, type_transition pt ft C_process False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1156
      | _       \<Rightarrow>  None)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1157
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1158
fun nfctxt_create :: "security_context_t \<Rightarrow> security_context_t \<Rightarrow> security_class_t \<Rightarrow> security_context_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1159
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1160
  "nfctxt_create (pu,pr,pt) (fu,fr,ft) cls = (pu, R_object, type_transition pt ft cls True)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1161
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1162
fun grant_execve :: 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1163
  "security_context_t \<Rightarrow> security_context_t \<Rightarrow> security_context_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1164
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1165
  "grant_execve (up,rp,tp) (uf,rf,tf) (up',nr,nt) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1166
         (role_decl_check nr nt \<and> role_allow rp nr \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1167
          permission_check (up,rp,tp) (uf,rf,tf) C_file P_execute \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1168
          permission_check (up,nr,nt) (uf,rf,tf) C_file P_entrypoint \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1169
          permission_check (up,rp,tp) (up,nr,nt) C_process P_transition \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1170
          permission_check (up,nr,nt) (uf,rf,tf) C_process P_execute)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1171
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1172
definition sectxts_of_shms :: "t_state \<Rightarrow> t_shm set \<Rightarrow> security_context_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1173
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1174
  "sectxts_of_shms s shms \<equiv> {ctxt. \<exists> h \<in> shms. sectxt_of_obj s (O_shm h) = Some ctxt}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1175
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1176
definition inherit_shms_check_ctxt:: "security_context_t \<Rightarrow> security_context_t set \<Rightarrow> bool"
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1177
where
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1178
  "inherit_shms_check_ctxt p shms \<equiv> (\<forall> ctxt \<in> shms. permission_check p ctxt C_shm P_inherit)"
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1179
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1180
definition inherit_shms_check :: "t_state \<Rightarrow> security_context_t \<Rightarrow> t_shm set \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1181
where
67
811e3028d169 update grant_check
chunhan
parents: 65
diff changeset
  1182
  "inherit_shms_check s npsectxt shms \<equiv> inherit_shms_check_ctxt npsectxt (sectxts_of_shms s shms)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1183
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1184
fun perm_of_mflag :: "t_open_must_flag \<Rightarrow> permission_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1185
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1186
  "perm_of_mflag OF_RDONLY = {P_read}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1187
| "perm_of_mflag OF_WRONLY = {P_write}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1188
| "perm_of_mflag OF_RDWR   = {P_read, P_write}"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1189
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1190
definition perm_of_oflag :: "t_open_option_flag set \<Rightarrow> permission_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1191
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1192
  "perm_of_oflag oflags \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1193
    (case (OF_APPEND \<in> oflags, OF_CREAT \<in> oflags) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1194
       (True, True) \<Rightarrow> {P_append, P_create} 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1195
     | (True, _   ) \<Rightarrow> {P_append}
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1196
     | (_   , True) \<Rightarrow> {P_create}
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1197
     | _            \<Rightarrow> {})"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1198
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1199
definition perms_of_flags :: "t_open_flags \<Rightarrow> permission_t set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1200
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1201
  "perms_of_flags flags \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1202
    (case flags of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1203
       (mflag,oflags) \<Rightarrow> (perm_of_mflag mflag \<union> perm_of_oflag oflags))"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1204
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1205
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1206
definition class_of_flags :: "t_open_flags \<Rightarrow> security_class_t"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1207
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1208
  "class_of_flags flags \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1209
    (case flags of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1210
      (mflag, oflags) \<Rightarrow> if (OF_DIRECTORY \<in> oflags) then C_dir else C_file)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1211
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1212
definition obj_of_flags :: "t_open_flags \<Rightarrow> t_file \<Rightarrow> t_object"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1213
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1214
  "obj_of_flags flags f \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1215
    (case flags of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1216
      (mflag, oflags) \<Rightarrow> if (OF_DIRECTORY \<in> oflags) then O_dir f else O_file f)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1217
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1218
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1219
definition oflags_check :: "t_open_flags \<Rightarrow> security_context_t \<Rightarrow> security_context_t \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1220
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1221
  "oflags_check flags pctxt fctxt \<equiv> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1222
     \<forall> perm \<in> (perms_of_flags flags). permission_check pctxt fctxt C_file perm"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1223
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1224
fun grant :: "t_state \<Rightarrow> t_event \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1225
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1226
  "grant s (Execve p f fds) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1227
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_file f)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1228
       (Some (up, rp, tp), Some (uf, rf, tf)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1229
         (case (npctxt_execve (up,rp,tp) (uf,rf,tf)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1230
            Some (pu,nr,nt) \<Rightarrow> (
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1231
              search_check s (up,rp,tp) f \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1232
              grant_execve (up,rp,tp) (uf,rf,tf) (up,nr,nt) \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1233
              inherit_fds_check s (up,nr,nt) p fds)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1234
          | _       \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1235
     | _ \<Rightarrow> False )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1236
| "grant s (Clone p p' fds shms) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1237
    (case (sectxt_of_obj s (O_proc p)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1238
       Some (up, rp, tp) \<Rightarrow>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1239
         (permission_check (up,rp,tp) (up,rp,tp) C_process P_fork \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1240
          inherit_fds_check s (up,rp,tp) p fds \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1241
          inherit_shms_check s (up,rp,tp) shms)          
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1242
     | _ \<Rightarrow> False )"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1243
| "grant s (Kill p p') = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1244
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_proc p')) of  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1245
       (Some (su,sr,st), Some (tu,tr,tt)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1246
         permission_check (su,sr,st) (tu,tr,tt) C_process P_sigkill
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1247
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1248
| "grant s (Ptrace p p') = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1249
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_proc p')) of  
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1250
       (Some (su,sr,st), Some (tu,tr,tt)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1251
         permission_check (su,sr,st) (tu,tr,tt) C_process P_ptrace
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1252
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1253
| "grant s (Exit p) = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1254
| "grant s (Open p f flags fd None) =
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1255
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_file f)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1256
      (Some (pu,pr,pt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1257
        search_check s (pu,pr,pt) f \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1258
        oflags_check flags (pu,pr,pt) (fu,fr,ft) \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1259
        permission_check (pu,pr,pt) (pu,pr,pt) C_fd P_setattr
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1260
    | _ \<Rightarrow>False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1261
| "grant s (Open p f flags fd (Some inum)) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1262
    (case (parent f) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1263
       Some pf \<Rightarrow> (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_dir pf)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1264
                    (Some (pu,pr,pt), Some (pfu,pfr,pft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1265
                        (search_check s (pu,pr,pt) pf \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1266
                         oflags_check flags (pu,pr,pt) (nfctxt_create (pu,pr,pt) (pfu,pfr,pft) C_file) \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1267
                         permission_check (pu,pr,pt) (pfu,pfr,pft) C_dir P_add_name \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1268
                         permission_check (pu,pr,pt) (pu,pr,pt) C_fd P_setattr)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1269
                  | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1270
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1271
| "grant s (ReadFile p fd) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1272
    (case (file_of_proc_fd s p fd) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1273
       Some f \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1274
        (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_fd p fd), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1275
               sectxt_of_obj s (O_file f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1276
           (Some (pu,pr,pt), Some (fdu,fdr,fdt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1277
             (permission_check (pu,pr,pt) (fdu,fdr,fdt) C_fd P_setattr \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1278
              permission_check (pu,pr,pt) (fu,fr,ft) C_file P_read)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1279
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1280
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1281
| "grant s (WriteFile p fd) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1282
    (case (file_of_proc_fd s p fd) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1283
       Some f \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1284
        (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_fd p fd), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1285
               sectxt_of_obj s (O_file f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1286
           (Some (pu,pr,pt), Some (fdu,fdr,fdt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1287
             (permission_check (pu,pr,pt) (fdu,fdr,fdt) C_fd P_setattr \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1288
              permission_check (pu,pr,pt) (fu,fr,ft) C_file P_write)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1289
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1290
     | _ \<Rightarrow> False)" 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1291
| "grant s (CloseFd p fd) = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1292
| "grant s (UnLink p f) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1293
    (case (parent f) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1294
       Some pf \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1295
         (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_dir pf), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1296
                sectxt_of_obj s (O_file f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1297
           (Some (pu,pr,pt), Some (du,dr,dt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1298
             (search_check s (pu,pr,pt) f \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1299
              permission_check (pu,pr,pt) (fu,fr,ft) C_file P_unlink \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1300
              permission_check (pu,pr,pt) (du,dr,dt) C_dir P_remove_name)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1301
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1302
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1303
| "grant s (Rmdir p f) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1304
    (case (parent f) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1305
       Some pf \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1306
         (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_dir pf), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1307
                sectxt_of_obj s (O_dir f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1308
           (Some (pu,pr,pt), Some (du,dr,dt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1309
             (search_check s (pu,pr,pt) f \<and> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1310
              permission_check (pu,pr,pt) (fu,fr,ft) C_dir P_rmdir \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1311
              permission_check (pu,pr,pt) (du,dr,dt) C_dir P_remove_name)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1312
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1313
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1314
| "grant s (Mkdir p f inum) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1315
    (case (parent f) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1316
       Some pf \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1317
         (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_dir pf)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1318
           (Some (pu,pr,pt), Some (du,dr,dt)) \<Rightarrow> 
78
chunhan
parents: 70
diff changeset
  1319
             (search_check s (pu,pr,pt) pf \<and> 
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1320
              permission_check (pu,pr,pt) (nfctxt_create (pu,pr,pt) (du,dr,dt) C_dir) C_dir P_create \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1321
              permission_check (pu,pr,pt) (du,dr,dt) C_dir P_add_name)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1322
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1323
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1324
| "grant s (LinkHard p f f') = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1325
    (case (parent f') of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1326
       Some pf \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1327
         (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_dir pf), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1328
                sectxt_of_obj s (O_file f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1329
           (Some (pu,pr,pt), Some (du,dr,dt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1330
             (search_check s (pu,pr,pt) f \<and> search_check s (pu,pr,pt) pf \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1331
              permission_check (pu,pr,pt) (fu,fr,ft) C_file P_link \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1332
              permission_check (pu,pr,pt) (du,dr,dt) C_dir P_add_name)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1333
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1334
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1335
| "grant s (Truncate p f len) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1336
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_file f)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1337
       (Some (pu,pr,pt), Some (fu,fr,ft)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1338
          (search_check s (pu,pr,pt) f \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1339
           permission_check (pu,pr,pt) (fu,fr,ft) C_file P_setattr)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1340
        | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1341
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1342
| "grant s (Rename p f f') = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1343
    (case (parent f, parent f') of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1344
       (Some pf, Some pf') \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1345
         (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_dir pf), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1346
                sectxt_of_obj s (O_file f), sectxt_of_obj s (O_dir pf')) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1347
            (Some (pu,pr,pt), Some (pfu,pfr,pft), Some (fu,fr,ft), 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1348
             Some (pfu',pfr',pft')) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1349
               (search_check s (pu,pr,pt) f \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1350
                permission_check (pu,pr,pt) (pfu,pfr,pft) C_dir P_remove_name \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1351
                (if (is_file s f) 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1352
                 then permission_check (pu,pr,pt) (fu,fr,ft) C_file P_rename
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1353
                 else permission_check (pu,pr,pt) (fu,fr,ft) C_dir P_reparent) \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1354
                search_check s (pu,pr,pt) pf' \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1355
                permission_check (pu,pr,pt) (pfu',pfr',pft') C_dir P_add_name)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1356
         | _ \<Rightarrow> False)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1357
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1358
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1359
| "grant s (CreateMsgq p q) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1360
    (case (sectxt_of_obj s (O_proc p)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1361
       Some (pu,pr,pt) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1362
        (permission_check (pu,pr,pt) (pu,pr,pt) C_msgq P_associate \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1363
         permission_check (pu,pr,pt) (pu,pr,pt) C_msgq P_create)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1364
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1365
| "grant s (SendMsg p q m) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1366
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_msgq q)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1367
      (Some (pu,pr,pt), Some (qu,qr,qt)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1368
        (permission_check (pu,pr,pt) (qu,qr,qt) C_msgq P_enqueue \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1369
         permission_check (pu,pr,pt) (qu,qr,qt) C_msgq P_write \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1370
         permission_check (pu,pr,pt) (pu,pr,pt) C_msg  P_send)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1371
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1372
| "grant s (RecvMsg p q m) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1373
    (case (sectxt_of_obj s (O_proc p),sectxt_of_obj s (O_msgq q),sectxt_of_obj s (O_msg q m)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1374
      (Some (pu,pr,pt), Some (qu,qr,qt), Some (mu,mr,mt)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1375
         permission_check (pu,pr,pt) (qu,qr,qt) C_msgq P_read \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1376
         permission_check (pu,pr,pt) (mu,mr,mt) C_msg  P_receive
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1377
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1378
| "grant s (RemoveMsgq p q) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1379
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_msgq q)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1380
      (Some (pu,pr,pt), Some (qu,qr,qt)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1381
        permission_check (pu,pr,pt) (qu,qr,qt) C_msgq P_destroy
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1382
    | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1383
| "grant s (CreateShM p h) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1384
    (case (sectxt_of_obj s (O_proc p)) of 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1385
       Some (pu,pr,pt) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1386
        (permission_check (pu,pr,pt) (pu,pr,pt) C_shm P_associate \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1387
         permission_check (pu,pr,pt) (pu,pr,pt) C_shm P_create)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1388
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1389
| "grant s (Attach p h flag) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1390
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_shm h)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1391
       (Some (pu,pr,pt), Some (hu,hr,ht)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1392
         if flag = SHM_RDONLY 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1393
         then permission_check (pu,pr,pt) (hu,hr,ht) C_shm P_read
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1394
         else permission_check (pu,pr,pt) (hu,hr,ht) C_shm P_read \<and>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1395
              permission_check (pu,pr,pt) (hu,hr,ht) C_shm P_write
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1396
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1397
| "grant s (Detach p h) = True" (*?*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1398
| "grant s (DeleteShM p h) = 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1399
    (case (sectxt_of_obj s (O_proc p), sectxt_of_obj s (O_shm h)) of
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1400
       (Some (pu,pr,pt), Some (hu,hr,ht)) \<Rightarrow> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1401
          permission_check (pu,pr,pt) (hu,hr,ht) C_shm P_destroy
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1402
     | _ \<Rightarrow> False)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1403
    
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1404
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1405
| "grant s _ = False" (* socket event is currently not in consideration *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1406
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1407
inductive valid :: "t_state \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1408
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1409
  "valid []"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1410
| "\<lbrakk>valid s; os_grant s e; grant s e\<rbrakk> \<Longrightarrow> valid (e # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1411
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1412
(* tobj: object that can be tainted *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1413
fun tobj_in_init :: "t_object \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1414
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1415
  "tobj_in_init (O_proc p) = (p \<in> init_procs)"
19
ced0fcfbcf8e reprove the top-level dynamic2static
chunhan
parents: 18
diff changeset
  1416
| "tobj_in_init (O_file f) = (is_init_file f)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1417
(* directory is not taintable 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1418
| "tobj_in_init (O_dir  f) = (f \<in> init_files)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1419
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1420
| "tobj_in_init (O_node n) = (n \<in> init_nodes)"
19
ced0fcfbcf8e reprove the top-level dynamic2static
chunhan
parents: 18
diff changeset
  1421
| "tobj_in_init (O_msg q m) = (m \<in> set (init_msgs_of_queue q) \<and> q \<in> init_msgqs)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1422
| "tobj_in_init _ = False" (* other kind of obj cannot be tainted *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1423
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1424
(* no use
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1425
fun no_del_event:: "t_event list \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1426
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1427
  "no_del_event [] = True"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1428
| "no_del_event (Kill p p' # \<tau>)  = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1429
| "no_del_event (CloseFd p fd # \<tau>) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1430
| "no_del_event (UnLink p f # \<tau>) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1431
| "no_del_event (Rmdir p f # \<tau>)  = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1432
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1433
| "no_del_event (Rename p f f' # \<tau>)  = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1434
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1435
| "no_del_event (RemoveMsgq p q # \<tau>) = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1436
| "no_del_event (RecvMsg p q m # \<tau>)  = False"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1437
| "no_del_event (_ # \<tau>) = no_del_event \<tau>"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1438
*)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1439
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1440
end
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1441
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1442
locale tainting = flask + 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1443
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1444
fixes seeds :: "t_object set"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1445
assumes 
23
25e55731ed01 locale of tainting for seeds when same shm/inode bugs
chunhan
parents: 22
diff changeset
  1446
      seeds_in_init: "\<And> obj. obj \<in> seeds \<Longrightarrow> tobj_in_init obj"
25e55731ed01 locale of tainting for seeds when same shm/inode bugs
chunhan
parents: 22
diff changeset
  1447
  and same_inode_in_seeds: "\<And> f f'. \<lbrakk>O_file f \<in> seeds; has_same_inode [] f f'\<rbrakk> \<Longrightarrow> O_file f' \<in> seeds"
25e55731ed01 locale of tainting for seeds when same shm/inode bugs
chunhan
parents: 22
diff changeset
  1448
  and flow_shm_in_seeds: "\<And> p p'. \<lbrakk>O_proc p \<in> seeds; info_flow_shm [] p p'\<rbrakk> \<Longrightarrow> O_proc p' \<in> seeds"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1449
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1450
begin
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1451
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1452
inductive tainted :: "t_object \<Rightarrow> t_state \<Rightarrow> bool" ("_ \<in> tainted _" [100, 100] 100)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1453
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1454
  t_init:   "obj \<in> seeds \<Longrightarrow> obj \<in> tainted []"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1455
| t_clone:  "\<lbrakk>O_proc p \<in> tainted s; valid (Clone p p' fds shms # s)\<rbrakk> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1456
             \<Longrightarrow> O_proc p' \<in> tainted (Clone p p' fds shms # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1457
| t_execve: "\<lbrakk>O_file f \<in> tainted s; valid (Execve p f fds # s)\<rbrakk> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1458
             \<Longrightarrow> O_proc p \<in> tainted (Execve p f fds # s)"
22
f20a798cdf7d info_flow_shm bug & update
chunhan
parents: 19
diff changeset
  1459
| t_ptrace: "\<lbrakk>O_proc p \<in> tainted s; valid (Ptrace p p' # s); info_flow_shm s p' p''\<rbrakk>
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1460
             \<Longrightarrow> O_proc p'' \<in> tainted (Ptrace p p' # s)"
22
f20a798cdf7d info_flow_shm bug & update
chunhan
parents: 19
diff changeset
  1461
| t_ptrace':"\<lbrakk>O_proc p' \<in> tainted s; valid (Ptrace p p' # s); info_flow_shm s p p''\<rbrakk>
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1462
             \<Longrightarrow> O_proc p'' \<in> tainted (Ptrace p p' # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1463
| t_cfile:  "\<lbrakk>O_proc p \<in> tainted s; valid (Open p f flags fd (Some inum) # s)\<rbrakk>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1464
             \<Longrightarrow> O_file f \<in> tainted (Open p f flags fd (Some inum) # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1465
| t_read:   "\<lbrakk>O_file f \<in> tainted s; valid (ReadFile p fd # s); 
22
f20a798cdf7d info_flow_shm bug & update
chunhan
parents: 19
diff changeset
  1466
              file_of_proc_fd s p fd = Some f; info_flow_shm s p p'\<rbrakk> 
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1467
             \<Longrightarrow> O_proc p' \<in> tainted (ReadFile p fd # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1468
| t_write:  "\<lbrakk>O_proc p \<in> tainted s; valid (WriteFile p fd # s);
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1469
              file_of_proc_fd s p fd = Some f; has_same_inode s f f'\<rbrakk> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1470
             \<Longrightarrow> O_file f' \<in> tainted (WriteFile p fd # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1471
(* directory is not tainted 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1472
| t_mkdir:  "\<lbrakk>O_proc p \<in> tainted s; valid (Mkdir p f inum # s)\<rbrakk> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1473
             \<Longrightarrow> O_dir f \<in> tainted (Mkdir p f inum # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1474
 *)
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1475
| t_link:   "\<lbrakk>O_file f \<in> tainted s; valid (LinkHard p f f' # s)\<rbrakk>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1476
             \<Longrightarrow> O_file f' \<in> tainted (LinkHard p f f' # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1477
| t_trunc:  "\<lbrakk>O_proc p \<in> tainted s; valid (Truncate p f len # s); len > 0; has_same_inode s f f'\<rbrakk>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1478
             \<Longrightarrow> O_file f' \<in> tainted (Truncate p f len # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1479
(*
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1480
| t_rename: "\<lbrakk>O_file f'' \<in> tainted s; valid (Rename p f f' # s);f \<preceq> f''\<rbrakk>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1481
             \<Longrightarrow> O_file (file_after_rename f f' f'') \<in> tainted (Rename p f f' # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1482
| t_rename':"\<lbrakk>O_dir f'' \<in> tainted s; valid (Rename p f f' # s);f \<preceq> f''\<rbrakk>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1483
             \<Longrightarrow> O_dir (file_after_rename f f' f'') \<in> tainted (Rename p f f' # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1484
*)
55
6f3ac2861978 bug in tainted
chunhan
parents: 31
diff changeset
  1485
| t_attach1:"\<lbrakk>O_proc p \<in> tainted s; valid (Attach p h SHM_RDWR # s); (p', flag') \<in> procs_of_shm s h; info_flow_shm s p' p''\<rbrakk>
6f3ac2861978 bug in tainted
chunhan
parents: 31
diff changeset
  1486
             \<Longrightarrow> O_proc p'' \<in> tainted (Attach p h SHM_RDWR # s)"
6f3ac2861978 bug in tainted
chunhan
parents: 31
diff changeset
  1487
| t_attach2:"\<lbrakk>O_proc p' \<in> tainted s; valid (Attach p h flag # s); (p', SHM_RDWR) \<in> procs_of_shm s h; info_flow_shm s p p''\<rbrakk>
6f3ac2861978 bug in tainted
chunhan
parents: 31
diff changeset
  1488
             \<Longrightarrow> O_proc p'' \<in> tainted (Attach p h flag # s)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1489
| t_sendmsg:"\<lbrakk>O_proc p \<in> tainted s; valid (SendMsg p q m # s)\<rbrakk>
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1490
             \<Longrightarrow> O_msg q m \<in> tainted (SendMsg p q m # s)"
22
f20a798cdf7d info_flow_shm bug & update
chunhan
parents: 19
diff changeset
  1491
| t_recvmsg:"\<lbrakk>O_msg q m \<in> tainted s; valid (RecvMsg p q m # s); info_flow_shm s p p'\<rbrakk>
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1492
             \<Longrightarrow> O_proc p' \<in> tainted (RecvMsg p q m # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1493
| t_remain: "\<lbrakk>obj \<in> tainted s; valid (e # s); alive (e # s) obj\<rbrakk> 
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1494
             \<Longrightarrow> obj \<in> tainted (e # s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1495
61
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1496
(* reasonable tainted object, fd and sock and msgq and msg is excluded 
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1497
 * this is different from tainted, which already excluded some of them,
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1498
 * tainted not excluded msg, which does not have the meaning of "tainteable", but 
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1499
 * but acting as a media to "pass" the virus. We normally will not say that 
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1500
 * a message is tableable or not.
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1501
 *)
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1502
fun appropriate :: "t_object \<Rightarrow> bool"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1503
where
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1504
  "appropriate (O_proc p)     = (p \<in> init_procs)"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1505
| "appropriate (O_file f)     = (is_init_file f)"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1506
| "appropriate (O_dir  f)     = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1507
| "appropriate (O_fd p fd)    = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1508
| "appropriate (O_node n)     = False" (* cause socket is temperary not considered *)
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1509
| "appropriate (O_tcp_sock k) = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1510
| "appropriate (O_udp_sock k) = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1511
| "appropriate (O_shm  h)     = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1512
| "appropriate (O_msgq q)     = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1513
| "appropriate (O_msg q m)    = False"
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1514
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1515
definition taintable:: "t_object \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1516
where
61
0d219ddd6354 appropriate object for taintable
chunhan
parents: 55
diff changeset
  1517
  "taintable obj \<equiv> init_alive obj \<and> appropriate obj \<and> (\<exists> s. obj \<in> tainted s)"
1
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1518
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1519
definition undeletable :: "t_object \<Rightarrow> bool"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1520
where
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1521
  "undeletable obj \<equiv> init_alive obj \<and> \<not> (\<exists> s. valid s \<and> deleted obj s)"
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1522
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1523
end
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1524
7d9c0ed02b56 thy files
chunhan
parents:
diff changeset
  1525
end