1 # IBM Integrity Measurement Architecture
4 bool "Integrity Measurement Architecture(IMA)"
10 select CRYPTO_HASH_INFO
11 select TCG_TPM if HAS_IOMEM && !UML
12 select TCG_TIS if TCG_TPM && X86
13 select TCG_CRB if TCG_TPM && ACPI
14 select TCG_IBMVTPM if TCG_TPM && PPC_PSERIES
15 select INTEGRITY_AUDIT if AUDIT
17 The Trusted Computing Group(TCG) runtime Integrity
18 Measurement Architecture(IMA) maintains a list of hash
19 values of executables and other sensitive system files,
20 as they are read or executed. If an attacker manages
21 to change the contents of an important system file
22 being measured, we can tell.
24 If your system has a TPM chip, then IMA also maintains
25 an aggregate integrity value over this list inside the
26 TPM hardware, so that the TPM can prove to a third party
27 whether or not critical system files have been modified.
28 Read <http://www.usenix.org/events/sec04/tech/sailer.html>
29 to learn more about IMA.
33 bool "Enable carrying the IMA measurement list across a soft boot"
34 depends on IMA && TCG_TPM && HAVE_IMA_KEXEC
37 TPM PCRs are only reset on a hard reboot. In order to validate
38 a TPM's quote after a soft boot, the IMA measurement list of the
39 running kernel must be saved and restored on boot.
41 Depending on the IMA policy, the measurement list can grow to
44 config IMA_MEASURE_PCR_IDX
50 IMA_MEASURE_PCR_IDX determines the TPM PCR register index
51 that IMA uses to maintain the integrity aggregate of the
52 measurement list. If unsure, use the default 10.
56 depends on IMA && AUDIT && (SECURITY_SELINUX || SECURITY_SMACK)
59 Disabling this option will disregard LSM based policy rules.
62 prompt "Default template"
63 default IMA_NG_TEMPLATE
66 Select the default IMA measurement template.
68 The original 'ima' measurement list template contains a
69 hash, defined as 20 bytes, and a null terminated pathname,
70 limited to 255 characters. The 'ima-ng' measurement list
71 template permits both larger hash digests and longer
76 config IMA_NG_TEMPLATE
77 bool "ima-ng (default)"
78 config IMA_SIG_TEMPLATE
82 config IMA_DEFAULT_TEMPLATE
85 default "ima" if IMA_TEMPLATE
86 default "ima-ng" if IMA_NG_TEMPLATE
87 default "ima-sig" if IMA_SIG_TEMPLATE
90 prompt "Default integrity hash algorithm"
91 default IMA_DEFAULT_HASH_SHA1
94 Select the default hash algorithm used for the measurement
95 list, integrity appraisal and audit log. The compiled default
96 hash algorithm can be overwritten using the kernel command
97 line 'ima_hash=' option.
99 config IMA_DEFAULT_HASH_SHA1
100 bool "SHA1 (default)"
101 depends on CRYPTO_SHA1=y
103 config IMA_DEFAULT_HASH_SHA256
105 depends on CRYPTO_SHA256=y && !IMA_TEMPLATE
107 config IMA_DEFAULT_HASH_SHA512
109 depends on CRYPTO_SHA512=y && !IMA_TEMPLATE
111 config IMA_DEFAULT_HASH_WP512
113 depends on CRYPTO_WP512=y && !IMA_TEMPLATE
116 config IMA_DEFAULT_HASH
119 default "sha1" if IMA_DEFAULT_HASH_SHA1
120 default "sha256" if IMA_DEFAULT_HASH_SHA256
121 default "sha512" if IMA_DEFAULT_HASH_SHA512
122 default "wp512" if IMA_DEFAULT_HASH_WP512
124 config IMA_WRITE_POLICY
125 bool "Enable multiple writes to the IMA policy"
129 IMA policy can now be updated multiple times. The new rules get
130 appended to the original policy. Have in mind that the rules are
131 scanned in FIFO order so be careful when you design and add new ones.
135 config IMA_READ_POLICY
136 bool "Enable reading back the current IMA policy"
138 default y if IMA_WRITE_POLICY
139 default n if !IMA_WRITE_POLICY
141 It is often useful to be able to read back the IMA policy. It is
142 even more important after introducing CONFIG_IMA_WRITE_POLICY.
143 This option allows the root user to see the current policy rules.
146 bool "Appraise integrity measurements"
150 This option enables local measurement integrity appraisal.
151 It requires the system to be labeled with a security extended
152 attribute containing the file hash measurement. To protect
153 the security extended attributes from offline attack, enable
156 For more information on integrity appraisal refer to:
157 <http://linux-ima.sourceforge.net>
160 config IMA_APPRAISE_BUILD_POLICY
161 bool "IMA build time configured policy rules"
162 depends on IMA_APPRAISE && INTEGRITY_ASYMMETRIC_KEYS
165 This option defines an IMA appraisal policy at build time, which
166 is enforced at run time without having to specify a builtin
167 policy name on the boot command line. The build time appraisal
168 policy rules persist after loading a custom policy.
170 Depending on the rules configured, this policy may require kernel
171 modules, firmware, the kexec kernel image, and/or the IMA policy
172 to be signed. Unsigned files might prevent the system from
173 booting or applications from working properly.
175 config IMA_APPRAISE_REQUIRE_FIRMWARE_SIGS
176 bool "Appraise firmware signatures"
177 depends on IMA_APPRAISE_BUILD_POLICY
180 This option defines a policy requiring all firmware to be signed,
181 including the regulatory.db. If both this option and
182 CFG80211_REQUIRE_SIGNED_REGDB are enabled, then both signature
183 verification methods are necessary.
185 config IMA_APPRAISE_REQUIRE_KEXEC_SIGS
186 bool "Appraise kexec kernel image signatures"
187 depends on IMA_APPRAISE_BUILD_POLICY
190 Enabling this rule will require all kexec'ed kernel images to
191 be signed and verified by a public key on the trusted IMA
194 Kernel image signatures can not be verified by the original
195 kexec_load syscall. Enabling this rule will prevent its
198 config IMA_APPRAISE_REQUIRE_MODULE_SIGS
199 bool "Appraise kernel modules signatures"
200 depends on IMA_APPRAISE_BUILD_POLICY
203 Enabling this rule will require all kernel modules to be signed
204 and verified by a public key on the trusted IMA keyring.
206 Kernel module signatures can only be verified by IMA-appraisal,
207 via the finit_module syscall. Enabling this rule will prevent
208 the usage of the init_module syscall.
210 config IMA_APPRAISE_REQUIRE_POLICY_SIGS
211 bool "Appraise IMA policy signature"
212 depends on IMA_APPRAISE_BUILD_POLICY
215 Enabling this rule will require the IMA policy to be signed and
216 and verified by a key on the trusted IMA keyring.
218 config IMA_APPRAISE_BOOTPARAM
219 bool "ima_appraise boot parameter"
220 depends on IMA_APPRAISE
223 This option enables the different "ima_appraise=" modes
224 (eg. fix, log) from the boot command line.
226 config IMA_TRUSTED_KEYRING
227 bool "Require all keys on the .ima keyring be signed (deprecated)"
228 depends on IMA_APPRAISE && SYSTEM_TRUSTED_KEYRING
229 depends on INTEGRITY_ASYMMETRIC_KEYS
230 select INTEGRITY_TRUSTED_KEYRING
233 This option requires that all keys added to the .ima
234 keyring be signed by a key on the system trusted keyring.
236 This option is deprecated in favor of INTEGRITY_TRUSTED_KEYRING
238 config IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY
239 bool "Permit keys validly signed by a built-in or secondary CA cert (EXPERIMENTAL)"
240 depends on SYSTEM_TRUSTED_KEYRING
241 depends on SECONDARY_TRUSTED_KEYRING
242 depends on INTEGRITY_ASYMMETRIC_KEYS
243 select INTEGRITY_TRUSTED_KEYRING
246 Keys may be added to the IMA or IMA blacklist keyrings, if the
247 key is validly signed by a CA cert in the system built-in or
248 secondary trusted keyrings.
250 Intermediate keys between those the kernel has compiled in and the
251 IMA keys to be added may be added to the system secondary keyring,
252 provided they are validly signed by a key already resident in the
253 built-in or secondary trusted keyrings.
255 config IMA_BLACKLIST_KEYRING
256 bool "Create IMA machine owner blacklist keyrings (EXPERIMENTAL)"
257 depends on SYSTEM_TRUSTED_KEYRING
258 depends on IMA_TRUSTED_KEYRING
261 This option creates an IMA blacklist keyring, which contains all
262 revoked IMA keys. It is consulted before any other keyring. If
263 the search is successful the requested operation is rejected and
264 an error is returned to the caller.
267 bool "Load X509 certificate onto the '.ima' trusted keyring"
268 depends on IMA_TRUSTED_KEYRING
271 File signature verification is based on the public keys
272 loaded on the .ima trusted keyring. These public keys are
273 X509 certificates signed by a trusted key on the
274 .system keyring. This option enables X509 certificate
275 loading from the kernel onto the '.ima' trusted keyring.
278 string "IMA X509 certificate path"
279 depends on IMA_LOAD_X509
280 default "/etc/keys/x509_ima.der"
282 This option defines IMA X509 certificate path.
284 config IMA_APPRAISE_SIGNED_INIT
285 bool "Require signed user-space initialization"
286 depends on IMA_LOAD_X509
289 This option requires user-space init to be signed.