Lines Matching refs:status
59 * is_ima_appraise_enabled - return appraise status
131 enum integrity_status status)
136 iint->ima_mmap_status = status;
139 iint->ima_bprm_status = status;
142 iint->ima_creds_status = status;
146 iint->ima_file_status = status;
150 iint->ima_read_status = status;
281 enum integrity_status *status, const char **cause)
294 if (*status != INTEGRITY_PASS_IMMUTABLE) {
300 *status = INTEGRITY_FAIL;
320 *status = INTEGRITY_FAIL;
323 *status = INTEGRITY_PASS;
331 *status = INTEGRITY_FAIL;
338 *status = INTEGRITY_FAIL;
347 *status = INTEGRITY_UNKNOWN;
359 *status = INTEGRITY_FAIL;
361 *status = INTEGRITY_PASS;
370 *status = INTEGRITY_FAIL;
378 *status = INTEGRITY_FAIL;
386 *status = INTEGRITY_FAIL;
396 *status = INTEGRITY_FAIL;
398 *status = INTEGRITY_PASS;
403 *status = INTEGRITY_UNKNOWN;
419 enum integrity_status *status, const char **cause)
430 *status = INTEGRITY_FAIL;
432 *status = INTEGRITY_PASS;
490 enum integrity_status status = INTEGRITY_UNKNOWN;
512 status = INTEGRITY_NOLABEL;
518 status = INTEGRITY_PASS;
522 status = evm_verifyxattr(dentry, XATTR_NAME_IMA, xattr_value,
524 switch (status) {
545 WARN_ONCE(true, "Unexpected integrity status %d\n", status);
549 rc = xattr_verify(func, iint, xattr_value, xattr_len, &status,
559 rc = modsig_verify(func, modsig, &status, &cause);
571 status = INTEGRITY_FAIL;
575 } else if (status != INTEGRITY_PASS) {
581 status = INTEGRITY_PASS;
590 status = INTEGRITY_PASS;
599 ima_set_cache_status(iint, func, status);
600 return status;