blob: dcff82205477cb935e8e2e2a156829eb182dead4 [file] [log] [blame]
Mimi Zohar4af46622009-02-04 09:07:00 -05001What: security/ima/policy
2Date: May 2008
3Contact: Mimi Zohar <zohar@us.ibm.com>
4Description:
5 The Trusted Computing Group(TCG) runtime Integrity
6 Measurement Architecture(IMA) maintains a list of hash
7 values of executables and other sensitive system files
8 loaded into the run-time of this system. At runtime,
9 the policy can be constrained based on LSM specific data.
10 Policies are loaded into the securityfs file ima/policy
11 by opening the file, writing the rules one at a time and
12 then closing the file. The new policy takes effect after
13 the file ima/policy is closed.
14
Mimi Zohar07f6a792011-03-09 22:25:48 -050015 IMA appraisal, if configured, uses these file measurements
16 for local measurement appraisal.
17
Mimi Zohar4af46622009-02-04 09:07:00 -050018 rule format: action [condition ...]
19
Mimi Zohar07f6a792011-03-09 22:25:48 -050020 action: measure | dont_measure | appraise | dont_appraise
Mimi Zohar4af46622009-02-04 09:07:00 -050021 condition:= base | lsm
Mimi Zohar07f6a792011-03-09 22:25:48 -050022 base: [[func=] [mask=] [fsmagic=] [uid=] [fowner]]
Mimi Zohar4af46622009-02-04 09:07:00 -050023 lsm: [[subj_user=] [subj_role=] [subj_type=]
24 [obj_user=] [obj_role=] [obj_type=]]
25
Mimi Zohar1e93d002010-01-26 17:02:41 -050026 base: func:= [BPRM_CHECK][FILE_MMAP][FILE_CHECK]
Mimi Zohar4af46622009-02-04 09:07:00 -050027 mask:= [MAY_READ] [MAY_WRITE] [MAY_APPEND] [MAY_EXEC]
28 fsmagic:= hex value
29 uid:= decimal value
Mimi Zohar07f6a792011-03-09 22:25:48 -050030 fowner:=decimal value
Mimi Zohar4af46622009-02-04 09:07:00 -050031 lsm: are LSM specific
32
33 default policy:
34 # PROC_SUPER_MAGIC
35 dont_measure fsmagic=0x9fa0
Mimi Zohar07f6a792011-03-09 22:25:48 -050036 dont_appraise fsmagic=0x9fa0
Mimi Zohar4af46622009-02-04 09:07:00 -050037 # SYSFS_MAGIC
38 dont_measure fsmagic=0x62656572
Mimi Zohar07f6a792011-03-09 22:25:48 -050039 dont_appraise fsmagic=0x62656572
Mimi Zohar4af46622009-02-04 09:07:00 -050040 # DEBUGFS_MAGIC
41 dont_measure fsmagic=0x64626720
Mimi Zohar07f6a792011-03-09 22:25:48 -050042 dont_appraise fsmagic=0x64626720
Mimi Zohar4af46622009-02-04 09:07:00 -050043 # TMPFS_MAGIC
44 dont_measure fsmagic=0x01021994
Mimi Zohar07f6a792011-03-09 22:25:48 -050045 dont_appraise fsmagic=0x01021994
46 # RAMFS_MAGIC
47 dont_measure fsmagic=0x858458f6
48 dont_appraise fsmagic=0x858458f6
Mimi Zohar4af46622009-02-04 09:07:00 -050049 # SECURITYFS_MAGIC
50 dont_measure fsmagic=0x73636673
Mimi Zohar07f6a792011-03-09 22:25:48 -050051 dont_appraise fsmagic=0x73636673
Mimi Zohar4af46622009-02-04 09:07:00 -050052
53 measure func=BPRM_CHECK
54 measure func=FILE_MMAP mask=MAY_EXEC
Mimi Zohar1e93d002010-01-26 17:02:41 -050055 measure func=FILE_CHECK mask=MAY_READ uid=0
Mimi Zohar07f6a792011-03-09 22:25:48 -050056 appraise fowner=0
Mimi Zohar4af46622009-02-04 09:07:00 -050057
58 The default policy measures all executables in bprm_check,
59 all files mmapped executable in file_mmap, and all files
Mimi Zohar07f6a792011-03-09 22:25:48 -050060 open for read by root in do_filp_open. The default appraisal
61 policy appraises all files owned by root.
Mimi Zohar4af46622009-02-04 09:07:00 -050062
63 Examples of LSM specific definitions:
64
65 SELinux:
66 # SELINUX_MAGIC
Mimi Zohar07f6a792011-03-09 22:25:48 -050067 dont_measure fsmagic=0xf97cff8c
68 dont_appraise fsmagic=0xf97cff8c
Mimi Zohar4af46622009-02-04 09:07:00 -050069
70 dont_measure obj_type=var_log_t
Mimi Zohar07f6a792011-03-09 22:25:48 -050071 dont_appraise obj_type=var_log_t
Mimi Zohar4af46622009-02-04 09:07:00 -050072 dont_measure obj_type=auditd_log_t
Mimi Zohar07f6a792011-03-09 22:25:48 -050073 dont_appraise obj_type=auditd_log_t
Mimi Zohar1e93d002010-01-26 17:02:41 -050074 measure subj_user=system_u func=FILE_CHECK mask=MAY_READ
75 measure subj_role=system_r func=FILE_CHECK mask=MAY_READ
Mimi Zohar4af46622009-02-04 09:07:00 -050076
77 Smack:
Mimi Zohar1e93d002010-01-26 17:02:41 -050078 measure subj_user=_ func=FILE_CHECK mask=MAY_READ