ima_policy 4.4 KB
Newer Older
M
Mimi Zohar 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
What:		security/ima/policy
Date:		May 2008
Contact:	Mimi Zohar <zohar@us.ibm.com>
Description:
		The Trusted Computing Group(TCG) runtime Integrity
		Measurement Architecture(IMA) maintains a list of hash
		values of executables and other sensitive system files
		loaded into the run-time of this system.  At runtime,
		the policy can be constrained based on LSM specific data.
		Policies are loaded into the securityfs file ima/policy
		by opening the file, writing the rules one at a time and
		then closing the file.  The new policy takes effect after
		the file ima/policy is closed.

15 16 17
		IMA appraisal, if configured, uses these file measurements
		for local measurement appraisal.

18
		::
M
Mimi Zohar 已提交
19

20 21 22 23 24
		  rule format: action [condition ...]

		  action: measure | dont_measure | appraise | dont_appraise |
			  audit | hash | dont_hash
		  condition:= base | lsm  [option]
25
			base:	[[func=] [mask=] [fsmagic=] [fsuuid=] [uid=]
26
				[euid=] [fowner=] [fsname=]]
M
Mimi Zohar 已提交
27 28
			lsm:	[[subj_user=] [subj_role=] [subj_type=]
				 [obj_user=] [obj_role=] [obj_type=]]
29
			option:	[[appraise_type=]] [template=] [permit_directio]
30
				[appraise_flag=] [keyrings=]
31 32 33
		  base:
			func:= [BPRM_CHECK][MMAP_CHECK][CREDS_CHECK][FILE_CHECK]MODULE_CHECK]
			        [FIRMWARE_CHECK]
34
				[KEXEC_KERNEL_CHECK] [KEXEC_INITRAMFS_CHECK]
35
				[KEXEC_CMDLINE] [KEY_CHECK] [CRITICAL_DATA]
36 37
			mask:= [[^]MAY_READ] [[^]MAY_WRITE] [[^]MAY_APPEND]
			       [[^]MAY_EXEC]
M
Mimi Zohar 已提交
38
			fsmagic:= hex value
39
			fsuuid:= file system UUID (e.g 8bcbe394-4f13-4144-be8e-5aa9ea2ce2f6)
M
Mimi Zohar 已提交
40
			uid:= decimal value
41
			euid:= decimal value
42
			fowner:= decimal value
43 44 45
		  lsm:  are LSM specific
		  option:
			appraise_type:= [imasig] [imasig|modsig]
46 47 48
			appraise_flag:= [check_blacklist]
			Currently, blacklist check is only for files signed with appended
			signature.
49 50 51
			keyrings:= list of keyrings
			(eg, .builtin_trusted_keys|.ima). Only valid
			when action is "measure" and func is KEY_CHECK.
52 53
			template:= name of a defined IMA template type
			(eg, ima-ng). Only valid when action is "measure".
54
			pcr:= decimal value
55 56
			label:= [data_label]
			data_label:= a unique string used for grouping and limiting critical data.
M
Mimi Zohar 已提交
57

58
		  default policy:
M
Mimi Zohar 已提交
59 60
			# PROC_SUPER_MAGIC
			dont_measure fsmagic=0x9fa0
61
			dont_appraise fsmagic=0x9fa0
M
Mimi Zohar 已提交
62 63
			# SYSFS_MAGIC
			dont_measure fsmagic=0x62656572
64
			dont_appraise fsmagic=0x62656572
M
Mimi Zohar 已提交
65 66
			# DEBUGFS_MAGIC
			dont_measure fsmagic=0x64626720
67
			dont_appraise fsmagic=0x64626720
M
Mimi Zohar 已提交
68 69
			# TMPFS_MAGIC
			dont_measure fsmagic=0x01021994
70 71 72
			dont_appraise fsmagic=0x01021994
			# RAMFS_MAGIC
			dont_appraise fsmagic=0x858458f6
73 74 75 76 77 78
			# DEVPTS_SUPER_MAGIC
			dont_measure fsmagic=0x1cd1
			dont_appraise fsmagic=0x1cd1
			# BINFMTFS_MAGIC
			dont_measure fsmagic=0x42494e4d
			dont_appraise fsmagic=0x42494e4d
M
Mimi Zohar 已提交
79 80
			# SECURITYFS_MAGIC
			dont_measure fsmagic=0x73636673
81
			dont_appraise fsmagic=0x73636673
82 83 84 85 86 87
			# SELINUX_MAGIC
			dont_measure fsmagic=0xf97cff8c
			dont_appraise fsmagic=0xf97cff8c
			# CGROUP_SUPER_MAGIC
			dont_measure fsmagic=0x27e0eb
			dont_appraise fsmagic=0x27e0eb
88 89 90
			# NSFS_MAGIC
			dont_measure fsmagic=0x6e736673
			dont_appraise fsmagic=0x6e736673
M
Mimi Zohar 已提交
91 92 93

			measure func=BPRM_CHECK
			measure func=FILE_MMAP mask=MAY_EXEC
94
			measure func=FILE_CHECK mask=MAY_READ uid=0
95 96
			measure func=MODULE_CHECK
			measure func=FIRMWARE_CHECK
97
			appraise fowner=0
M
Mimi Zohar 已提交
98 99 100

		The default policy measures all executables in bprm_check,
		all files mmapped executable in file_mmap, and all files
101 102
		open for read by root in do_filp_open.  The default appraisal
		policy appraises all files owned by root.
M
Mimi Zohar 已提交
103 104 105

		Examples of LSM specific definitions:

106 107
		SELinux::

M
Mimi Zohar 已提交
108
			dont_measure obj_type=var_log_t
109
			dont_appraise obj_type=var_log_t
M
Mimi Zohar 已提交
110
			dont_measure obj_type=auditd_log_t
111
			dont_appraise obj_type=auditd_log_t
112 113
			measure subj_user=system_u func=FILE_CHECK mask=MAY_READ
			measure subj_role=system_r func=FILE_CHECK mask=MAY_READ
M
Mimi Zohar 已提交
114

115 116
		Smack::

117
			measure subj_user=_ func=FILE_CHECK mask=MAY_READ
118

119
		Example of measure rules using alternate PCRs::
120 121 122

			measure func=KEXEC_KERNEL_CHECK pcr=4
			measure func=KEXEC_INITRAMFS_CHECK pcr=5
123 124 125 126

		Example of appraise rule allowing modsig appended signatures:

			appraise func=KEXEC_KERNEL_CHECK appraise_type=imasig|modsig
127 128 129 130

		Example of measure rule using KEY_CHECK to measure all keys:

			measure func=KEY_CHECK
131 132 133 134 135

		Example of measure rule using KEY_CHECK to only measure
		keys added to .builtin_trusted_keys or .ima keyring:

			measure func=KEY_CHECK keyrings=.builtin_trusted_keys|.ima