LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Trond Myklebust <Trond.Myklebust@netapp.com>
To: Chuck Lever <chuck.lever@oracle.com>
Cc: Jesper Juhl <jj@chaosbits.net>, Milton Miller <miltonm@bga.com>,
linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org,
Neil Brown <neilb@suse.de>,
bfields@fieldses.org
Subject: Re: [PATCH] Fix size argument to memset call in nfsacl_encode
Date: Thu, 03 Feb 2011 15:06:54 -0500 [thread overview]
Message-ID: <1296763614.3015.26.camel@heimdal.trondhjem.org> (raw)
In-Reply-To: <705C97E5-E273-45AA-9714-2BF409DE1322@oracle.com>
On Thu, 2011-02-03 at 15:00 -0500, Chuck Lever wrote:
> On Feb 3, 2011, at 2:41 PM, Jesper Juhl wrote:
>
> > On Thu, 3 Feb 2011, Trond Myklebust wrote:
> >
> >> On Thu, 2011-02-03 at 20:15 +0100, Jesper Juhl wrote:
> >>> We want to give memset() the sizeof(struct posix_acl), not
> >>> sizeof(struct posix_acl *).
> >>>
> >>> Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> >>> ---
> >>> nfsacl.c | 2 +-
> >>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>
> >>> diff --git a/fs/nfs_common/nfsacl.c b/fs/nfs_common/nfsacl.c
> >>> index 84c27d6..bc6d81b 100644
> >>> --- a/fs/nfs_common/nfsacl.c
> >>> +++ b/fs/nfs_common/nfsacl.c
> >>> @@ -117,7 +117,7 @@ int nfsacl_encode(struct xdr_buf *buf, unsigned int base, struct inode *inode,
> >>> * invoked in contexts where a memory allocation failure is
> >>> * fatal. Fortunately this fake ACL is small enough to
> >>> * construct on the stack. */
> >>> - memset(acl2, 0, sizeof(acl2));
> >>> + memset(acl2, 0, sizeof(*acl2));
> >>> posix_acl_init(acl2, 4);
> >>>
> >>> /* Insert entries in canonical order: other orders seem
> >>
> >> Ccing Milton Miller who also sent in the same patch.
> >>
> >> Neither patch is correct afaics. posix_acl_init() will clobber the above
> >> memset, and so the correct fix is just to get rid of it...
> >>
> >
> > posix_acl_init() sets a_refcount and a_count, but what about a_entries ...
> > no problem, nfsacl_encode() itself takes care of that post the
> > posix_acl_init() call.. it's all good.
> >
> > So ...
> >
> >
> > Remove pointless memset() in nfsacl_encode().
> >
> > Thanks to Trond Myklebust <Trond.Myklebust@netapp.com> for pointing out
> > that it is not needed since posix_acl_init() will set everything
> > regardless..
> >
> > Signed-off-by: Jesper Juhl <jj@chaosbits.net>
> > ---
> > nfsacl.c | 1 -
> > 1 file changed, 1 deletion(-)
> >
> > diff --git a/fs/nfs_common/nfsacl.c b/fs/nfs_common/nfsacl.c
> > index 84c27d6..ec0f277 100644
> > --- a/fs/nfs_common/nfsacl.c
> > +++ b/fs/nfs_common/nfsacl.c
> > @@ -117,7 +117,6 @@ int nfsacl_encode(struct xdr_buf *buf, unsigned int base, struct inode *inode,
> > * invoked in contexts where a memory allocation failure is
> > * fatal. Fortunately this fake ACL is small enough to
> > * construct on the stack. */
> > - memset(acl2, 0, sizeof(acl2));
> > posix_acl_init(acl2, 4);
> >
> > /* Insert entries in canonical order: other orders seem
>
> If there is a guarantee that random data that potentially resides between the fields in that structure will never appear on the wire, then ACK.
>
Yes, that is guaranteed. The posix_acl structure is initialised by
posix_acl_init above, and the array itself is initialised by us in the
lines following that...
--
Trond Myklebust
Linux NFS client maintainer
NetApp
Trond.Myklebust@netapp.com
www.netapp.com
next prev parent reply other threads:[~2011-02-03 20:07 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-03 19:15 Jesper Juhl
2011-02-03 19:28 ` Trond Myklebust
2011-02-03 19:41 ` Jesper Juhl
2011-02-03 20:00 ` Chuck Lever
2011-02-03 20:06 ` Trond Myklebust [this message]
2011-02-03 20:29 ` Chuck Lever
2011-02-03 21:55 ` Trond Myklebust
2011-02-23 22:26 ` Jesper Juhl
2011-02-23 22:27 ` Jesper Juhl
2011-02-04 0:37 ` Milton Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1296763614.3015.26.camel@heimdal.trondhjem.org \
--to=trond.myklebust@netapp.com \
--cc=bfields@fieldses.org \
--cc=chuck.lever@oracle.com \
--cc=jj@chaosbits.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nfs@vger.kernel.org \
--cc=miltonm@bga.com \
--cc=neilb@suse.de \
--subject='Re: [PATCH] Fix size argument to memset call in nfsacl_encode' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
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).