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 bool ima_get_verity_digest(struct integrity_iint_cache *iint, 206 struct ima_max_digest_data *hash) 207 { 208 enum hash_algo alg; 209 int digest_len; 210 211 /* 212 * On failure, 'measure' policy rules will result in a file data 213 * hash containing 0's. 214 */ 215 digest_len = fsverity_get_digest(iint->inode, hash->digest, NULL, &alg); 216 if (digest_len == 0) 217 return false; 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 = alg; 227 hash->hdr.length = digest_len; 228 return true; 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 if (!ima_get_verity_digest(iint, &hash)) { 280 audit_cause = "no-verity-digest"; 281 result = -ENODATA; 282 } 283 } else if (buf) { 284 result = ima_calc_buffer_hash(buf, size, &hash.hdr); 285 } else { 286 result = ima_calc_file_hash(file, &hash.hdr); 287 } 288 289 if (result && result != -EBADF && result != -EINVAL) 290 goto out; 291 292 length = sizeof(hash.hdr) + hash.hdr.length; 293 tmpbuf = krealloc(iint->ima_hash, length, GFP_NOFS); 294 if (!tmpbuf) { 295 result = -ENOMEM; 296 goto out; 297 } 298 299 iint->ima_hash = tmpbuf; 300 memcpy(iint->ima_hash, &hash, length); 301 iint->version = i_version; 302 303 /* Possibly temporary failure due to type of read (eg. O_DIRECT) */ 304 if (!result) 305 iint->flags |= IMA_COLLECTED; 306 out: 307 if (result) { 308 if (file->f_flags & O_DIRECT) 309 audit_cause = "failed(directio)"; 310 311 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, 312 filename, "collect_data", audit_cause, 313 result, 0); 314 } 315 return result; 316 } 317 318 /* 319 * ima_store_measurement - store file measurement 320 * 321 * Create an "ima" template and then store the template by calling 322 * ima_store_template. 323 * 324 * We only get here if the inode has not already been measured, 325 * but the measurement could already exist: 326 * - multiple copies of the same file on either the same or 327 * different filesystems. 328 * - the inode was previously flushed as well as the iint info, 329 * containing the hashing info. 330 * 331 * Must be called with iint->mutex held. 332 */ 333 void ima_store_measurement(struct integrity_iint_cache *iint, 334 struct file *file, const unsigned char *filename, 335 struct evm_ima_xattr_data *xattr_value, 336 int xattr_len, const struct modsig *modsig, int pcr, 337 struct ima_template_desc *template_desc) 338 { 339 static const char op[] = "add_template_measure"; 340 static const char audit_cause[] = "ENOMEM"; 341 int result = -ENOMEM; 342 struct inode *inode = file_inode(file); 343 struct ima_template_entry *entry; 344 struct ima_event_data event_data = { .iint = iint, 345 .file = file, 346 .filename = filename, 347 .xattr_value = xattr_value, 348 .xattr_len = xattr_len, 349 .modsig = modsig }; 350 int violation = 0; 351 352 /* 353 * We still need to store the measurement in the case of MODSIG because 354 * we only have its contents to put in the list at the time of 355 * appraisal, but a file measurement from earlier might already exist in 356 * the measurement list. 357 */ 358 if (iint->measured_pcrs & (0x1 << pcr) && !modsig) 359 return; 360 361 result = ima_alloc_init_template(&event_data, &entry, template_desc); 362 if (result < 0) { 363 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename, 364 op, audit_cause, result, 0); 365 return; 366 } 367 368 result = ima_store_template(entry, violation, inode, filename, pcr); 369 if ((!result || result == -EEXIST) && !(file->f_flags & O_DIRECT)) { 370 iint->flags |= IMA_MEASURED; 371 iint->measured_pcrs |= (0x1 << pcr); 372 } 373 if (result < 0) 374 ima_free_template_entry(entry); 375 } 376 377 void ima_audit_measurement(struct integrity_iint_cache *iint, 378 const unsigned char *filename) 379 { 380 struct audit_buffer *ab; 381 char *hash; 382 const char *algo_name = hash_algo_name[iint->ima_hash->algo]; 383 int i; 384 385 if (iint->flags & IMA_AUDITED) 386 return; 387 388 hash = kzalloc((iint->ima_hash->length * 2) + 1, GFP_KERNEL); 389 if (!hash) 390 return; 391 392 for (i = 0; i < iint->ima_hash->length; i++) 393 hex_byte_pack(hash + (i * 2), iint->ima_hash->digest[i]); 394 hash[i * 2] = '\0'; 395 396 ab = audit_log_start(audit_context(), GFP_KERNEL, 397 AUDIT_INTEGRITY_RULE); 398 if (!ab) 399 goto out; 400 401 audit_log_format(ab, "file="); 402 audit_log_untrustedstring(ab, filename); 403 audit_log_format(ab, " hash=\"%s:%s\"", algo_name, hash); 404 405 audit_log_task_info(ab); 406 audit_log_end(ab); 407 408 iint->flags |= IMA_AUDITED; 409 out: 410 kfree(hash); 411 return; 412 } 413 414 /* 415 * ima_d_path - return a pointer to the full pathname 416 * 417 * Attempt to return a pointer to the full pathname for use in the 418 * IMA measurement list, IMA audit records, and auditing logs. 419 * 420 * On failure, return a pointer to a copy of the filename, not dname. 421 * Returning a pointer to dname, could result in using the pointer 422 * after the memory has been freed. 423 */ 424 const char *ima_d_path(const struct path *path, char **pathbuf, char *namebuf) 425 { 426 char *pathname = NULL; 427 428 *pathbuf = __getname(); 429 if (*pathbuf) { 430 pathname = d_absolute_path(path, *pathbuf, PATH_MAX); 431 if (IS_ERR(pathname)) { 432 __putname(*pathbuf); 433 *pathbuf = NULL; 434 pathname = NULL; 435 } 436 } 437 438 if (!pathname) { 439 strscpy(namebuf, path->dentry->d_name.name, NAME_MAX); 440 pathname = namebuf; 441 } 442 443 return pathname; 444 } 445