[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87tydtm41s.fsf@tucsk.pomaz.szeredi.hu>
Date: Wed, 20 Apr 2011 15:43:27 +0200
From: Miklos Szeredi <miklos@...redi.hu>
To: Phillip Lougher <phillip.lougher@...il.com>
Cc: Michal Suchanek <hramrach@...trum.cz>,
Andreas Dilger <adilger@...ger.ca>,
Jiri Kosina <jkosina@...e.cz>,
Ric Wheeler <ricwheeler@...il.com>,
linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org,
David Howells <dhowells@...hat.com>,
Ian Kent <ikent@...hat.com>, Jeff Moyer <jmoyer@...hat.com>,
Christoph Hellwig <hch@...radead.org>,
Hugh Dickins <hughd@...gle.com>, Eric Paris <eparis@...hat.com>
Subject: Re: [PATCH] tmpfs: implement generic xattr support
Phillip Lougher <phillip.lougher@...il.com> writes:
> On Tue, Apr 19, 2011 at 9:04 PM, Miklos Szeredi <miklos@...redi.hu> wrote:
>
>> +static ssize_t shmem_listxattr(struct dentry *dentry, char *buffer, size_t size)
>
>> + spin_lock(&dentry->d_inode->i_lock);
>> + list_for_each_entry(xattr, &info->xattr_list, list) {
>> + /* skip "trusted." attributes for unprivileged callers */
>> + if (!trusted && xattr_is_trusted(xattr->name))
>> + continue;
>> +
>> + used += strlen(xattr->name) + 1;
>> + if (buffer) {
>> + if (size < used) {
>> + used = -ERANGE;
>> + break;
>> + }
>> + strncpy(buffer, xattr->name, strlen(xattr->name) + 1);
>>+ buffer += strlen(xattr->name) + 1;
>
> Why are you doing a strncpy here? strcpy() isn't going to copy more
> than strlen(xattr->name) + 1 bytes, and you know buffer is large
> enough to hold that because of the previous if (size < used) check?
>
> If you assigned the first strlen(xattr->name) + 1 to a temporary
> variable, you could use memcpy here, and avoid the 3 repeated
> strlen(xattr->name) calls.
Yeah, makes sense.
Thanks,
Miklos
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists