blob: de16de3f148d4ede92244d07bc1e5aebf04a6e48 [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
Peter Moodye7c568e2012-06-14 10:04:36 -070020 action: measure | dont_measure | appraise | dont_appraise | audit
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +030021 condition:= base | lsm [option]
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=]]
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +030025 option: [[appraise_type=]]
Mimi Zohar4af46622009-02-04 09:07:00 -050026
Mimi Zohar16cac492012-12-13 11:15:04 -050027 base: func:= [BPRM_CHECK][MMAP_CHECK][FILE_CHECK][MODULE_CHECK]
Mimi Zohar4af46622009-02-04 09:07:00 -050028 mask:= [MAY_READ] [MAY_WRITE] [MAY_APPEND] [MAY_EXEC]
29 fsmagic:= hex value
30 uid:= decimal value
Mimi Zohar07f6a792011-03-09 22:25:48 -050031 fowner:=decimal value
Mimi Zohar4af46622009-02-04 09:07:00 -050032 lsm: are LSM specific
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +030033 option: appraise_type:= [imasig]
Mimi Zohar4af46622009-02-04 09:07:00 -050034
35 default policy:
36 # PROC_SUPER_MAGIC
37 dont_measure fsmagic=0x9fa0
Mimi Zohar07f6a792011-03-09 22:25:48 -050038 dont_appraise fsmagic=0x9fa0
Mimi Zohar4af46622009-02-04 09:07:00 -050039 # SYSFS_MAGIC
40 dont_measure fsmagic=0x62656572
Mimi Zohar07f6a792011-03-09 22:25:48 -050041 dont_appraise fsmagic=0x62656572
Mimi Zohar4af46622009-02-04 09:07:00 -050042 # DEBUGFS_MAGIC
43 dont_measure fsmagic=0x64626720
Mimi Zohar07f6a792011-03-09 22:25:48 -050044 dont_appraise fsmagic=0x64626720
Mimi Zohar4af46622009-02-04 09:07:00 -050045 # TMPFS_MAGIC
46 dont_measure fsmagic=0x01021994
Mimi Zohar07f6a792011-03-09 22:25:48 -050047 dont_appraise fsmagic=0x01021994
48 # RAMFS_MAGIC
49 dont_measure fsmagic=0x858458f6
50 dont_appraise fsmagic=0x858458f6
Mimi Zohar4af46622009-02-04 09:07:00 -050051 # SECURITYFS_MAGIC
52 dont_measure fsmagic=0x73636673
Mimi Zohar07f6a792011-03-09 22:25:48 -050053 dont_appraise fsmagic=0x73636673
Mimi Zohar4af46622009-02-04 09:07:00 -050054
55 measure func=BPRM_CHECK
56 measure func=FILE_MMAP mask=MAY_EXEC
Mimi Zohar1e93d002010-01-26 17:02:41 -050057 measure func=FILE_CHECK mask=MAY_READ uid=0
Mimi Zoharfdf90722012-10-16 12:40:08 +103058 measure func=MODULE_CHECK uid=0
Mimi Zohar07f6a792011-03-09 22:25:48 -050059 appraise fowner=0
Mimi Zohar4af46622009-02-04 09:07:00 -050060
61 The default policy measures all executables in bprm_check,
62 all files mmapped executable in file_mmap, and all files
Mimi Zohar07f6a792011-03-09 22:25:48 -050063 open for read by root in do_filp_open. The default appraisal
64 policy appraises all files owned by root.
Mimi Zohar4af46622009-02-04 09:07:00 -050065
66 Examples of LSM specific definitions:
67
68 SELinux:
69 # SELINUX_MAGIC
Mimi Zohar07f6a792011-03-09 22:25:48 -050070 dont_measure fsmagic=0xf97cff8c
71 dont_appraise fsmagic=0xf97cff8c
Mimi Zohar4af46622009-02-04 09:07:00 -050072
73 dont_measure obj_type=var_log_t
Mimi Zohar07f6a792011-03-09 22:25:48 -050074 dont_appraise obj_type=var_log_t
Mimi Zohar4af46622009-02-04 09:07:00 -050075 dont_measure obj_type=auditd_log_t
Mimi Zohar07f6a792011-03-09 22:25:48 -050076 dont_appraise obj_type=auditd_log_t
Mimi Zohar1e93d002010-01-26 17:02:41 -050077 measure subj_user=system_u func=FILE_CHECK mask=MAY_READ
78 measure subj_role=system_r func=FILE_CHECK mask=MAY_READ
Mimi Zohar4af46622009-02-04 09:07:00 -050079
80 Smack:
Mimi Zohar1e93d002010-01-26 17:02:41 -050081 measure subj_user=_ func=FILE_CHECK mask=MAY_READ