* [PATCH] apparmor: fix error code in aafs_create()
@ 2017-06-14 10:40 Dan Carpenter
2017-06-14 14:44 ` John Johansen
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2017-06-14 10:40 UTC (permalink / raw)
To: linux-security-module
We accidentally return ERR_PTR(0) if lookup_one_len() fails. The caller
is expecting error pointers so it likely causes problems later on. For
example, on one path I saw it triggered an AA_BUG().
Fixes: a481f4d91783 ("apparmor: add custom apparmorfs that will be used by policy namespace files")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c
index 853c2ec8e0c9..2caeb748070c 100644
--- a/security/apparmor/apparmorfs.c
+++ b/security/apparmor/apparmorfs.c
@@ -248,8 +248,10 @@ static struct dentry *aafs_create(const char *name, umode_t mode,
inode_lock(dir);
dentry = lookup_one_len(name, parent, strlen(name));
- if (IS_ERR(dentry))
+ if (IS_ERR(dentry)) {
+ error = PTR_ERR(dentry);
goto fail_lock;
+ }
if (d_really_is_positive(dentry)) {
error = -EEXIST;
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] apparmor: fix error code in aafs_create()
2017-06-14 10:40 [PATCH] apparmor: fix error code in aafs_create() Dan Carpenter
@ 2017-06-14 14:44 ` John Johansen
0 siblings, 0 replies; 2+ messages in thread
From: John Johansen @ 2017-06-14 14:44 UTC (permalink / raw)
To: linux-security-module
On 06/14/2017 03:40 AM, Dan Carpenter wrote:
> We accidentally return ERR_PTR(0) if lookup_one_len() fails. The caller
> is expecting error pointers so it likely causes problems later on. For
> example, on one path I saw it triggered an AA_BUG().
>
> Fixes: a481f4d91783 ("apparmor: add custom apparmorfs that will be used by policy namespace files")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: John Johansen <john.johansen@canonical.com>
I'll pull this in and forward it up to James along with a couple of other
bug fixes
thanks
>
> diff --git a/security/apparmor/apparmorfs.c b/security/apparmor/apparmorfs.c
> index 853c2ec8e0c9..2caeb748070c 100644
> --- a/security/apparmor/apparmorfs.c
> +++ b/security/apparmor/apparmorfs.c
> @@ -248,8 +248,10 @@ static struct dentry *aafs_create(const char *name, umode_t mode,
>
> inode_lock(dir);
> dentry = lookup_one_len(name, parent, strlen(name));
> - if (IS_ERR(dentry))
> + if (IS_ERR(dentry)) {
> + error = PTR_ERR(dentry);
> goto fail_lock;
> + }
>
> if (d_really_is_positive(dentry)) {
> error = -EEXIST;
>
--
To unsubscribe from this list: send the line "unsubscribe linux-security-module" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-06-14 14:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-14 10:40 [PATCH] apparmor: fix error code in aafs_create() Dan Carpenter
2017-06-14 14:44 ` John Johansen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).