[PATCH] AppArmor: minor error reporting fix
Kees Cook
kees at ubuntu.com
Tue Sep 25 20:13:50 UTC 2007
Hi, can this please get commit'd to l-u-m for post-beta publication?
Thanks,
-Kees
---
diff --git a/ubuntu/security/apparmor/main.c b/ubuntu/security/apparmor/main.c
index f4e9182..2daf884 100644
--- a/ubuntu/security/apparmor/main.c
+++ b/ubuntu/security/apparmor/main.c
@@ -191,8 +191,10 @@ static int aa_perm_dentry(struct aa_profile *profile, struct dentry *dentry,
*/
if (PTR_ERR(sa->name) == -ENOENT && (check & AA_CHECK_FD))
sa->denied_mask = 0;
- else
- sa->denied_mask = PTR_ERR(sa->name);
+ else {
+ sa->denied_mask = sa->requested_mask;
+ sa->error_code = PTR_ERR(sa->name);
+ }
sa->name = NULL;
} else
sa->denied_mask = aa_file_denied(profile, sa->name,
--
Kees Cook
More information about the kernel-team
mailing list