2013-11-01 14:49:04

by J. Bruce Fields

[permalink] [raw]
Subject: [PATCH] nfsd4: fix discarded security labels on setattr

Jeff just noticed this. Argh.

--b.

commit 1012e867f57b3ae5712ea329065a9ab899c7986c
Author: J. Bruce Fields <[email protected]>
Date: Fri Nov 1 10:42:15 2013 -0400

nfsd4: fix discarded security labels on setattr

Security labels in setattr calls are currently ignored because we forget
to set label->len.

Reported-by: Jeff Layton <[email protected]>
Signed-off-by: J. Bruce Fields <[email protected]>

diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
index d9454fe..438d818 100644
--- a/fs/nfsd/nfs4xdr.c
+++ b/fs/nfsd/nfs4xdr.c
@@ -411,6 +411,7 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
label->data = kzalloc(dummy32 + 1, GFP_KERNEL);
if (!label->data)
return nfserr_jukebox;
+ label->len = dummy32;
defer_free(argp, kfree, label->data);
memcpy(label->data, buf, dummy32);
}


2013-11-01 18:40:04

by J. Bruce Fields

[permalink] [raw]
Subject: Re: [PATCH] nfsd4: fix discarded security labels on setattr

On Fri, Nov 01, 2013 at 10:49:03AM -0400, J. Bruce Fields wrote:
> Jeff just noticed this. Argh.

Applying for 3.13.--b.

>
> --b.
>
> commit 1012e867f57b3ae5712ea329065a9ab899c7986c
> Author: J. Bruce Fields <[email protected]>
> Date: Fri Nov 1 10:42:15 2013 -0400
>
> nfsd4: fix discarded security labels on setattr
>
> Security labels in setattr calls are currently ignored because we forget
> to set label->len.
>
> Reported-by: Jeff Layton <[email protected]>
> Signed-off-by: J. Bruce Fields <[email protected]>
>
> diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c
> index d9454fe..438d818 100644
> --- a/fs/nfsd/nfs4xdr.c
> +++ b/fs/nfsd/nfs4xdr.c
> @@ -411,6 +411,7 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
> label->data = kzalloc(dummy32 + 1, GFP_KERNEL);
> if (!label->data)
> return nfserr_jukebox;
> + label->len = dummy32;
> defer_free(argp, kfree, label->data);
> memcpy(label->data, buf, dummy32);
> }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html