From: John Johansen Date: Fri, 25 Jul 2014 11:02:03 +0000 (-0700) Subject: apparmor: exec should not be returning ENOENT when it denies X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~9692^2~28 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=9049a7922124d843a2cd26a02b1d00a17596ec0c;p=mirror_ubuntu-focal-kernel.git apparmor: exec should not be returning ENOENT when it denies The current behavior is confusing as it causes exec failures to report the executable is missing instead of identifying that apparmor caused the failure. Signed-off-by: John Johansen Acked-by: Seth Arnold --- diff --git a/security/apparmor/domain.c b/security/apparmor/domain.c index dc0027b28b04..67a7418937a5 100644 --- a/security/apparmor/domain.c +++ b/security/apparmor/domain.c @@ -433,7 +433,7 @@ int apparmor_bprm_set_creds(struct linux_binprm *bprm) new_profile = aa_get_newest_profile(ns->unconfined); info = "ux fallback"; } else { - error = -ENOENT; + error = -EACCES; info = "profile not found"; /* remove MAY_EXEC to audit as failure */ perms.allow &= ~MAY_EXEC;