2 * Copyright (C) 2008 IBM Corporation
4 * Author: Mimi Zohar <zohar@us.ibm.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2 of the
12 * Implements must_appraise_or_measure, collect_measurement,
13 * appraise_measurement, store_measurement and store_template.
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/file.h>
19 #include <linux/xattr.h>
20 #include <linux/evm.h>
21 #include <linux/iversion.h>
26 * ima_free_template_entry - free an existing template entry
28 void ima_free_template_entry(struct ima_template_entry
*entry
)
32 for (i
= 0; i
< entry
->template_desc
->num_fields
; i
++)
33 kfree(entry
->template_data
[i
].data
);
39 * ima_alloc_init_template - create and initialize a new template entry
41 int ima_alloc_init_template(struct ima_event_data
*event_data
,
42 struct ima_template_entry
**entry
)
44 struct ima_template_desc
*template_desc
= ima_template_desc_current();
47 *entry
= kzalloc(sizeof(**entry
) + template_desc
->num_fields
*
48 sizeof(struct ima_field_data
), GFP_NOFS
);
52 (*entry
)->template_desc
= template_desc
;
53 for (i
= 0; i
< template_desc
->num_fields
; i
++) {
54 struct ima_template_field
*field
= template_desc
->fields
[i
];
57 result
= field
->field_init(event_data
,
58 &((*entry
)->template_data
[i
]));
62 len
= (*entry
)->template_data
[i
].len
;
63 (*entry
)->template_data_len
+= sizeof(len
);
64 (*entry
)->template_data_len
+= len
;
68 ima_free_template_entry(*entry
);
74 * ima_store_template - store ima template measurements
76 * Calculate the hash of a template entry, add the template entry
77 * to an ordered list of measurement entries maintained inside the kernel,
78 * and also update the aggregate integrity value (maintained inside the
79 * configured TPM PCR) over the hashes of the current list of measurement
82 * Applications retrieve the current kernel-held measurement list through
83 * the securityfs entries in /sys/kernel/security/ima. The signed aggregate
84 * TPM PCR (called quote) can be retrieved using a TPM user space library
85 * and is used to validate the measurement list.
87 * Returns 0 on success, error code otherwise
89 int ima_store_template(struct ima_template_entry
*entry
,
90 int violation
, struct inode
*inode
,
91 const unsigned char *filename
, int pcr
)
93 static const char op
[] = "add_template_measure";
94 static const char audit_cause
[] = "hashing_error";
95 char *template_name
= entry
->template_desc
->name
;
98 struct ima_digest_data hdr
;
99 char digest
[TPM_DIGEST_SIZE
];
103 int num_fields
= entry
->template_desc
->num_fields
;
105 /* this function uses default algo */
106 hash
.hdr
.algo
= HASH_ALGO_SHA1
;
107 result
= ima_calc_field_array_hash(&entry
->template_data
[0],
108 entry
->template_desc
,
109 num_fields
, &hash
.hdr
);
111 integrity_audit_msg(AUDIT_INTEGRITY_PCR
, inode
,
113 audit_cause
, result
, 0);
116 memcpy(entry
->digest
, hash
.hdr
.digest
, hash
.hdr
.length
);
119 result
= ima_add_template_entry(entry
, violation
, op
, inode
, filename
);
124 * ima_add_violation - add violation to measurement list.
126 * Violations are flagged in the measurement list with zero hash values.
127 * By extending the PCR with 0xFF's instead of with zeroes, the PCR
128 * value is invalidated.
130 void ima_add_violation(struct file
*file
, const unsigned char *filename
,
131 struct integrity_iint_cache
*iint
,
132 const char *op
, const char *cause
)
134 struct ima_template_entry
*entry
;
135 struct inode
*inode
= file_inode(file
);
136 struct ima_event_data event_data
= {iint
, file
, filename
, NULL
, 0,
141 /* can overflow, only indicator */
142 atomic_long_inc(&ima_htable
.violations
);
144 result
= ima_alloc_init_template(&event_data
, &entry
);
149 result
= ima_store_template(entry
, violation
, inode
,
150 filename
, CONFIG_IMA_MEASURE_PCR_IDX
);
152 ima_free_template_entry(entry
);
154 integrity_audit_msg(AUDIT_INTEGRITY_PCR
, inode
, filename
,
155 op
, cause
, result
, 0);
159 * ima_get_action - appraise & measure decision based on policy.
160 * @inode: pointer to inode to measure
161 * @cred: pointer to credentials structure to validate
162 * @secid: secid of the task being validated
163 * @mask: contains the permission mask (MAY_READ, MAY_WRITE, MAY_EXEC,
165 * @func: caller identifier
166 * @pcr: pointer filled in if matched measure policy sets pcr=
168 * The policy is defined in terms of keypairs:
169 * subj=, obj=, type=, func=, mask=, fsmagic=
170 * subj,obj, and type: are LSM specific.
171 * func: FILE_CHECK | BPRM_CHECK | CREDS_CHECK | MMAP_CHECK | MODULE_CHECK
172 * mask: contains the permission mask
175 * Returns IMA_MEASURE, IMA_APPRAISE mask.
178 int ima_get_action(struct inode
*inode
, const struct cred
*cred
, u32 secid
,
179 int mask
, enum ima_hooks func
, int *pcr
)
181 int flags
= IMA_MEASURE
| IMA_AUDIT
| IMA_APPRAISE
| IMA_HASH
;
183 flags
&= ima_policy_flag
;
185 return ima_match_policy(inode
, cred
, secid
, func
, mask
, flags
, pcr
);
189 * ima_collect_measurement - collect file measurement
191 * Calculate the file hash, if it doesn't already exist,
192 * storing the measurement and i_version in the iint.
194 * Must be called with iint->mutex held.
196 * Return 0 on success, error code otherwise
198 int ima_collect_measurement(struct integrity_iint_cache
*iint
,
199 struct file
*file
, void *buf
, loff_t size
,
202 const char *audit_cause
= "failed";
203 struct inode
*inode
= file_inode(file
);
204 const char *filename
= file
->f_path
.dentry
->d_name
.name
;
210 struct ima_digest_data hdr
;
211 char digest
[IMA_MAX_DIGEST_SIZE
];
214 if (iint
->flags
& IMA_COLLECTED
)
218 * Dectecting file change is based on i_version. On filesystems
219 * which do not support i_version, support is limited to an initial
220 * measurement/appraisal/audit.
222 i_version
= inode_query_iversion(inode
);
223 hash
.hdr
.algo
= algo
;
225 /* Initialize hash digest to 0's in case of failure */
226 memset(&hash
.digest
, 0, sizeof(hash
.digest
));
229 result
= ima_calc_buffer_hash(buf
, size
, &hash
.hdr
);
231 result
= ima_calc_file_hash(file
, &hash
.hdr
);
233 if (result
&& result
!= -EBADF
&& result
!= -EINVAL
)
236 length
= sizeof(hash
.hdr
) + hash
.hdr
.length
;
237 tmpbuf
= krealloc(iint
->ima_hash
, length
, GFP_NOFS
);
243 iint
->ima_hash
= tmpbuf
;
244 memcpy(iint
->ima_hash
, &hash
, length
);
245 iint
->version
= i_version
;
247 /* Possibly temporary failure due to type of read (eg. O_DIRECT) */
249 iint
->flags
|= IMA_COLLECTED
;
252 if (file
->f_flags
& O_DIRECT
)
253 audit_cause
= "failed(directio)";
255 integrity_audit_msg(AUDIT_INTEGRITY_DATA
, inode
,
256 filename
, "collect_data", audit_cause
,
263 * ima_store_measurement - store file measurement
265 * Create an "ima" template and then store the template by calling
266 * ima_store_template.
268 * We only get here if the inode has not already been measured,
269 * but the measurement could already exist:
270 * - multiple copies of the same file on either the same or
271 * different filesystems.
272 * - the inode was previously flushed as well as the iint info,
273 * containing the hashing info.
275 * Must be called with iint->mutex held.
277 void ima_store_measurement(struct integrity_iint_cache
*iint
,
278 struct file
*file
, const unsigned char *filename
,
279 struct evm_ima_xattr_data
*xattr_value
,
280 int xattr_len
, int pcr
)
282 static const char op
[] = "add_template_measure";
283 static const char audit_cause
[] = "ENOMEM";
284 int result
= -ENOMEM
;
285 struct inode
*inode
= file_inode(file
);
286 struct ima_template_entry
*entry
;
287 struct ima_event_data event_data
= {iint
, file
, filename
, xattr_value
,
291 if (iint
->measured_pcrs
& (0x1 << pcr
))
294 result
= ima_alloc_init_template(&event_data
, &entry
);
296 integrity_audit_msg(AUDIT_INTEGRITY_PCR
, inode
, filename
,
297 op
, audit_cause
, result
, 0);
301 result
= ima_store_template(entry
, violation
, inode
, filename
, pcr
);
302 if ((!result
|| result
== -EEXIST
) && !(file
->f_flags
& O_DIRECT
)) {
303 iint
->flags
|= IMA_MEASURED
;
304 iint
->measured_pcrs
|= (0x1 << pcr
);
307 ima_free_template_entry(entry
);
310 void ima_audit_measurement(struct integrity_iint_cache
*iint
,
311 const unsigned char *filename
)
313 struct audit_buffer
*ab
;
315 const char *algo_name
= hash_algo_name
[iint
->ima_hash
->algo
];
318 if (iint
->flags
& IMA_AUDITED
)
321 hash
= kzalloc((iint
->ima_hash
->length
* 2) + 1, GFP_KERNEL
);
325 for (i
= 0; i
< iint
->ima_hash
->length
; i
++)
326 hex_byte_pack(hash
+ (i
* 2), iint
->ima_hash
->digest
[i
]);
329 ab
= audit_log_start(audit_context(), GFP_KERNEL
,
330 AUDIT_INTEGRITY_RULE
);
334 audit_log_format(ab
, "file=");
335 audit_log_untrustedstring(ab
, filename
);
336 audit_log_format(ab
, " hash=\"%s:%s\"", algo_name
, hash
);
338 audit_log_task_info(ab
, current
);
341 iint
->flags
|= IMA_AUDITED
;
348 * ima_d_path - return a pointer to the full pathname
350 * Attempt to return a pointer to the full pathname for use in the
351 * IMA measurement list, IMA audit records, and auditing logs.
353 * On failure, return a pointer to a copy of the filename, not dname.
354 * Returning a pointer to dname, could result in using the pointer
355 * after the memory has been freed.
357 const char *ima_d_path(const struct path
*path
, char **pathbuf
, char *namebuf
)
359 char *pathname
= NULL
;
361 *pathbuf
= __getname();
363 pathname
= d_absolute_path(path
, *pathbuf
, PATH_MAX
);
364 if (IS_ERR(pathname
)) {
372 strlcpy(namebuf
, path
->dentry
->d_name
.name
, NAME_MAX
);