xref: /linux/security/integrity/ima/ima_api.c (revision d6fd48ef)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (C) 2008 IBM Corporation
4  *
5  * Author: Mimi Zohar <zohar@us.ibm.com>
6  *
7  * File: ima_api.c
8  *	Implements must_appraise_or_measure, collect_measurement,
9  *	appraise_measurement, store_measurement and store_template.
10  */
11 #include <linux/slab.h>
12 #include <linux/file.h>
13 #include <linux/fs.h>
14 #include <linux/xattr.h>
15 #include <linux/evm.h>
16 #include <linux/iversion.h>
17 #include <linux/fsverity.h>
18 
19 #include "ima.h"
20 
21 /*
22  * ima_free_template_entry - free an existing template entry
23  */
24 void ima_free_template_entry(struct ima_template_entry *entry)
25 {
26 	int i;
27 
28 	for (i = 0; i < entry->template_desc->num_fields; i++)
29 		kfree(entry->template_data[i].data);
30 
31 	kfree(entry->digests);
32 	kfree(entry);
33 }
34 
35 /*
36  * ima_alloc_init_template - create and initialize a new template entry
37  */
38 int ima_alloc_init_template(struct ima_event_data *event_data,
39 			    struct ima_template_entry **entry,
40 			    struct ima_template_desc *desc)
41 {
42 	struct ima_template_desc *template_desc;
43 	struct tpm_digest *digests;
44 	int i, result = 0;
45 
46 	if (desc)
47 		template_desc = desc;
48 	else
49 		template_desc = ima_template_desc_current();
50 
51 	*entry = kzalloc(struct_size(*entry, template_data,
52 				     template_desc->num_fields), GFP_NOFS);
53 	if (!*entry)
54 		return -ENOMEM;
55 
56 	digests = kcalloc(NR_BANKS(ima_tpm_chip) + ima_extra_slots,
57 			  sizeof(*digests), GFP_NOFS);
58 	if (!digests) {
59 		kfree(*entry);
60 		*entry = NULL;
61 		return -ENOMEM;
62 	}
63 
64 	(*entry)->digests = digests;
65 	(*entry)->template_desc = template_desc;
66 	for (i = 0; i < template_desc->num_fields; i++) {
67 		const struct ima_template_field *field =
68 			template_desc->fields[i];
69 		u32 len;
70 
71 		result = field->field_init(event_data,
72 					   &((*entry)->template_data[i]));
73 		if (result != 0)
74 			goto out;
75 
76 		len = (*entry)->template_data[i].len;
77 		(*entry)->template_data_len += sizeof(len);
78 		(*entry)->template_data_len += len;
79 	}
80 	return 0;
81 out:
82 	ima_free_template_entry(*entry);
83 	*entry = NULL;
84 	return result;
85 }
86 
87 /*
88  * ima_store_template - store ima template measurements
89  *
90  * Calculate the hash of a template entry, add the template entry
91  * to an ordered list of measurement entries maintained inside the kernel,
92  * and also update the aggregate integrity value (maintained inside the
93  * configured TPM PCR) over the hashes of the current list of measurement
94  * entries.
95  *
96  * Applications retrieve the current kernel-held measurement list through
97  * the securityfs entries in /sys/kernel/security/ima. The signed aggregate
98  * TPM PCR (called quote) can be retrieved using a TPM user space library
99  * and is used to validate the measurement list.
100  *
101  * Returns 0 on success, error code otherwise
102  */
103 int ima_store_template(struct ima_template_entry *entry,
104 		       int violation, struct inode *inode,
105 		       const unsigned char *filename, int pcr)
106 {
107 	static const char op[] = "add_template_measure";
108 	static const char audit_cause[] = "hashing_error";
109 	char *template_name = entry->template_desc->name;
110 	int result;
111 
112 	if (!violation) {
113 		result = ima_calc_field_array_hash(&entry->template_data[0],
114 						   entry);
115 		if (result < 0) {
116 			integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode,
117 					    template_name, op,
118 					    audit_cause, result, 0);
119 			return result;
120 		}
121 	}
122 	entry->pcr = pcr;
123 	result = ima_add_template_entry(entry, violation, op, inode, filename);
124 	return result;
125 }
126 
127 /*
128  * ima_add_violation - add violation to measurement list.
129  *
130  * Violations are flagged in the measurement list with zero hash values.
131  * By extending the PCR with 0xFF's instead of with zeroes, the PCR
132  * value is invalidated.
133  */
134 void ima_add_violation(struct file *file, const unsigned char *filename,
135 		       struct integrity_iint_cache *iint,
136 		       const char *op, const char *cause)
137 {
138 	struct ima_template_entry *entry;
139 	struct inode *inode = file_inode(file);
140 	struct ima_event_data event_data = { .iint = iint,
141 					     .file = file,
142 					     .filename = filename,
143 					     .violation = cause };
144 	int violation = 1;
145 	int result;
146 
147 	/* can overflow, only indicator */
148 	atomic_long_inc(&ima_htable.violations);
149 
150 	result = ima_alloc_init_template(&event_data, &entry, NULL);
151 	if (result < 0) {
152 		result = -ENOMEM;
153 		goto err_out;
154 	}
155 	result = ima_store_template(entry, violation, inode,
156 				    filename, CONFIG_IMA_MEASURE_PCR_IDX);
157 	if (result < 0)
158 		ima_free_template_entry(entry);
159 err_out:
160 	integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
161 			    op, cause, result, 0);
162 }
163 
164 /**
165  * ima_get_action - appraise & measure decision based on policy.
166  * @idmap: idmap of the mount the inode was found from
167  * @inode: pointer to the inode associated with the object being validated
168  * @cred: pointer to credentials structure to validate
169  * @secid: secid of the task being validated
170  * @mask: contains the permission mask (MAY_READ, MAY_WRITE, MAY_EXEC,
171  *        MAY_APPEND)
172  * @func: caller identifier
173  * @pcr: pointer filled in if matched measure policy sets pcr=
174  * @template_desc: pointer filled in if matched measure policy sets template=
175  * @func_data: func specific data, may be NULL
176  * @allowed_algos: allowlist of hash algorithms for the IMA xattr
177  *
178  * The policy is defined in terms of keypairs:
179  *		subj=, obj=, type=, func=, mask=, fsmagic=
180  *	subj,obj, and type: are LSM specific.
181  *	func: FILE_CHECK | BPRM_CHECK | CREDS_CHECK | MMAP_CHECK | MODULE_CHECK
182  *	| KEXEC_CMDLINE | KEY_CHECK | CRITICAL_DATA | SETXATTR_CHECK
183  *	| MMAP_CHECK_REQPROT
184  *	mask: contains the permission mask
185  *	fsmagic: hex value
186  *
187  * Returns IMA_MEASURE, IMA_APPRAISE mask.
188  *
189  */
190 int ima_get_action(struct mnt_idmap *idmap, struct inode *inode,
191 		   const struct cred *cred, u32 secid, int mask,
192 		   enum ima_hooks func, int *pcr,
193 		   struct ima_template_desc **template_desc,
194 		   const char *func_data, unsigned int *allowed_algos)
195 {
196 	int flags = IMA_MEASURE | IMA_AUDIT | IMA_APPRAISE | IMA_HASH;
197 
198 	flags &= ima_policy_flag;
199 
200 	return ima_match_policy(idmap, inode, cred, secid, func, mask,
201 				flags, pcr, template_desc, func_data,
202 				allowed_algos);
203 }
204 
205 static int ima_get_verity_digest(struct integrity_iint_cache *iint,
206 				 struct ima_max_digest_data *hash)
207 {
208 	enum hash_algo verity_alg;
209 	int ret;
210 
211 	/*
212 	 * On failure, 'measure' policy rules will result in a file data
213 	 * hash containing 0's.
214 	 */
215 	ret = fsverity_get_digest(iint->inode, hash->digest, &verity_alg);
216 	if (ret)
217 		return ret;
218 
219 	/*
220 	 * Unlike in the case of actually calculating the file hash, in
221 	 * the fsverity case regardless of the hash algorithm, return
222 	 * the verity digest to be included in the measurement list. A
223 	 * mismatch between the verity algorithm and the xattr signature
224 	 * algorithm, if one exists, will be detected later.
225 	 */
226 	hash->hdr.algo = verity_alg;
227 	hash->hdr.length = hash_digest_size[verity_alg];
228 	return 0;
229 }
230 
231 /*
232  * ima_collect_measurement - collect file measurement
233  *
234  * Calculate the file hash, if it doesn't already exist,
235  * storing the measurement and i_version in the iint.
236  *
237  * Must be called with iint->mutex held.
238  *
239  * Return 0 on success, error code otherwise
240  */
241 int ima_collect_measurement(struct integrity_iint_cache *iint,
242 			    struct file *file, void *buf, loff_t size,
243 			    enum hash_algo algo, struct modsig *modsig)
244 {
245 	const char *audit_cause = "failed";
246 	struct inode *inode = file_inode(file);
247 	const char *filename = file->f_path.dentry->d_name.name;
248 	struct ima_max_digest_data hash;
249 	int result = 0;
250 	int length;
251 	void *tmpbuf;
252 	u64 i_version;
253 
254 	/*
255 	 * Always collect the modsig, because IMA might have already collected
256 	 * the file digest without collecting the modsig in a previous
257 	 * measurement rule.
258 	 */
259 	if (modsig)
260 		ima_collect_modsig(modsig, buf, size);
261 
262 	if (iint->flags & IMA_COLLECTED)
263 		goto out;
264 
265 	/*
266 	 * Detecting file change is based on i_version. On filesystems
267 	 * which do not support i_version, support was originally limited
268 	 * to an initial measurement/appraisal/audit, but was modified to
269 	 * assume the file changed.
270 	 */
271 	i_version = inode_query_iversion(inode);
272 	hash.hdr.algo = algo;
273 	hash.hdr.length = hash_digest_size[algo];
274 
275 	/* Initialize hash digest to 0's in case of failure */
276 	memset(&hash.digest, 0, sizeof(hash.digest));
277 
278 	if (iint->flags & IMA_VERITY_REQUIRED) {
279 		result = ima_get_verity_digest(iint, &hash);
280 		switch (result) {
281 		case 0:
282 			break;
283 		case -ENODATA:
284 			audit_cause = "no-verity-digest";
285 			break;
286 		default:
287 			audit_cause = "invalid-verity-digest";
288 			break;
289 		}
290 	} else if (buf) {
291 		result = ima_calc_buffer_hash(buf, size, &hash.hdr);
292 	} else {
293 		result = ima_calc_file_hash(file, &hash.hdr);
294 	}
295 
296 	if (result && result != -EBADF && result != -EINVAL)
297 		goto out;
298 
299 	length = sizeof(hash.hdr) + hash.hdr.length;
300 	tmpbuf = krealloc(iint->ima_hash, length, GFP_NOFS);
301 	if (!tmpbuf) {
302 		result = -ENOMEM;
303 		goto out;
304 	}
305 
306 	iint->ima_hash = tmpbuf;
307 	memcpy(iint->ima_hash, &hash, length);
308 	iint->version = i_version;
309 
310 	/* Possibly temporary failure due to type of read (eg. O_DIRECT) */
311 	if (!result)
312 		iint->flags |= IMA_COLLECTED;
313 out:
314 	if (result) {
315 		if (file->f_flags & O_DIRECT)
316 			audit_cause = "failed(directio)";
317 
318 		integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode,
319 				    filename, "collect_data", audit_cause,
320 				    result, 0);
321 	}
322 	return result;
323 }
324 
325 /*
326  * ima_store_measurement - store file measurement
327  *
328  * Create an "ima" template and then store the template by calling
329  * ima_store_template.
330  *
331  * We only get here if the inode has not already been measured,
332  * but the measurement could already exist:
333  *	- multiple copies of the same file on either the same or
334  *	  different filesystems.
335  *	- the inode was previously flushed as well as the iint info,
336  *	  containing the hashing info.
337  *
338  * Must be called with iint->mutex held.
339  */
340 void ima_store_measurement(struct integrity_iint_cache *iint,
341 			   struct file *file, const unsigned char *filename,
342 			   struct evm_ima_xattr_data *xattr_value,
343 			   int xattr_len, const struct modsig *modsig, int pcr,
344 			   struct ima_template_desc *template_desc)
345 {
346 	static const char op[] = "add_template_measure";
347 	static const char audit_cause[] = "ENOMEM";
348 	int result = -ENOMEM;
349 	struct inode *inode = file_inode(file);
350 	struct ima_template_entry *entry;
351 	struct ima_event_data event_data = { .iint = iint,
352 					     .file = file,
353 					     .filename = filename,
354 					     .xattr_value = xattr_value,
355 					     .xattr_len = xattr_len,
356 					     .modsig = modsig };
357 	int violation = 0;
358 
359 	/*
360 	 * We still need to store the measurement in the case of MODSIG because
361 	 * we only have its contents to put in the list at the time of
362 	 * appraisal, but a file measurement from earlier might already exist in
363 	 * the measurement list.
364 	 */
365 	if (iint->measured_pcrs & (0x1 << pcr) && !modsig)
366 		return;
367 
368 	result = ima_alloc_init_template(&event_data, &entry, template_desc);
369 	if (result < 0) {
370 		integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
371 				    op, audit_cause, result, 0);
372 		return;
373 	}
374 
375 	result = ima_store_template(entry, violation, inode, filename, pcr);
376 	if ((!result || result == -EEXIST) && !(file->f_flags & O_DIRECT)) {
377 		iint->flags |= IMA_MEASURED;
378 		iint->measured_pcrs |= (0x1 << pcr);
379 	}
380 	if (result < 0)
381 		ima_free_template_entry(entry);
382 }
383 
384 void ima_audit_measurement(struct integrity_iint_cache *iint,
385 			   const unsigned char *filename)
386 {
387 	struct audit_buffer *ab;
388 	char *hash;
389 	const char *algo_name = hash_algo_name[iint->ima_hash->algo];
390 	int i;
391 
392 	if (iint->flags & IMA_AUDITED)
393 		return;
394 
395 	hash = kzalloc((iint->ima_hash->length * 2) + 1, GFP_KERNEL);
396 	if (!hash)
397 		return;
398 
399 	for (i = 0; i < iint->ima_hash->length; i++)
400 		hex_byte_pack(hash + (i * 2), iint->ima_hash->digest[i]);
401 	hash[i * 2] = '\0';
402 
403 	ab = audit_log_start(audit_context(), GFP_KERNEL,
404 			     AUDIT_INTEGRITY_RULE);
405 	if (!ab)
406 		goto out;
407 
408 	audit_log_format(ab, "file=");
409 	audit_log_untrustedstring(ab, filename);
410 	audit_log_format(ab, " hash=\"%s:%s\"", algo_name, hash);
411 
412 	audit_log_task_info(ab);
413 	audit_log_end(ab);
414 
415 	iint->flags |= IMA_AUDITED;
416 out:
417 	kfree(hash);
418 	return;
419 }
420 
421 /*
422  * ima_d_path - return a pointer to the full pathname
423  *
424  * Attempt to return a pointer to the full pathname for use in the
425  * IMA measurement list, IMA audit records, and auditing logs.
426  *
427  * On failure, return a pointer to a copy of the filename, not dname.
428  * Returning a pointer to dname, could result in using the pointer
429  * after the memory has been freed.
430  */
431 const char *ima_d_path(const struct path *path, char **pathbuf, char *namebuf)
432 {
433 	char *pathname = NULL;
434 
435 	*pathbuf = __getname();
436 	if (*pathbuf) {
437 		pathname = d_absolute_path(path, *pathbuf, PATH_MAX);
438 		if (IS_ERR(pathname)) {
439 			__putname(*pathbuf);
440 			*pathbuf = NULL;
441 			pathname = NULL;
442 		}
443 	}
444 
445 	if (!pathname) {
446 		strscpy(namebuf, path->dentry->d_name.name, NAME_MAX);
447 		pathname = namebuf;
448 	}
449 
450 	return pathname;
451 }
452