All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kinglong Mee <kinglongmee@gmail.com>
To: "J. Bruce Fields" <bfields@fieldses.org>
Cc: "linux-nfs@vger.kernel.org" <linux-nfs@vger.kernel.org>,
	kinglongmee@gmail.com
Subject: Re: [PATCH] nfsd: Prints a suitable length of filehandle
Date: Fri, 19 Jun 2015 08:49:29 +0800	[thread overview]
Message-ID: <55836719.8050806@gmail.com> (raw)
In-Reply-To: <20150618213550.GB21903@fieldses.org>

On 6/19/2015 5:35 AM, J. Bruce Fields wrote:
> On Thu, Jun 18, 2015 at 03:00:04PM +0800, Kinglong Mee wrote:
>> With nfsd_debug on, fh_verify prints a fixed length of filehandle as,
>> nfsd: fh_verify(8: 00010001 00000000 00000000 00000000 00000000 00000000)
>> nfsd: fh_verify(28: 00070001 001c0002 00000000 041f9334 9b432a4c 835d4c95)
>>
>> This patch lets nfsd prints a suitable length of filehandle as, 
>> nfsd: fh_verify(8: 00010001 00000000)
>> nfsd: fh_verify(28: 00070001 001c0002 00000000 041f9334 9b432a4c 835d4c95 8cbea40f)
>>
>> Also, use snprintf insteads sprintf.
>>
>> Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
>> ---
>>  fs/nfsd/nfsfh.c | 18 ++++++++----------
>>  1 file changed, 8 insertions(+), 10 deletions(-)
>>
>> diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c
>> index 350041a..dd6a5c1 100644
>> --- a/fs/nfsd/nfsfh.c
>> +++ b/fs/nfsd/nfsfh.c
>> @@ -650,16 +650,14 @@ fh_put(struct svc_fh *fhp)
>>  char * SVCFH_fmt(struct svc_fh *fhp)
>>  {
>>  	struct knfsd_fh *fh = &fhp->fh_handle;
>> -
>> -	static char buf[80];
>> -	sprintf(buf, "%d: %08x %08x %08x %08x %08x %08x",
>> -		fh->fh_size,
>> -		fh->fh_base.fh_pad[0],
>> -		fh->fh_base.fh_pad[1],
>> -		fh->fh_base.fh_pad[2],
>> -		fh->fh_base.fh_pad[3],
>> -		fh->fh_base.fh_pad[4],
>> -		fh->fh_base.fh_pad[5]);
>> +	/* 9 * NFS4_FHSIZE / 4 = 288 for fh_pad, 4 for fh_size, 1 for '\0' */
>> +	static char buf[293];
> 
> So that buffer can be shared by multiple users without any locking.
> 
> That's from the preexisting code, not your fault.  Also, I don't know
> whether to care about an unlikely race in debugging code.

I think we should not care it.
We cannot know the caller how to use it, printk directly or save to an pointer.
Otherwise let the caller supporting the buffer? that sounds bad.

> 
> The only risk aside from corruption of the output might be if the race
> could leave the string temporarily non-null-terminated.  I think that's
> possible?  In which case that could be prevented by making sure buf is
> initialized to zeroes and is at least one byte longer than the following
> code will ever write.

Yes, It's possible.
Static variable will be initialized to all zero default.
So, define a longer buffer is enough.

For that, I define a buffer with length is 293.

The max fh_size is NFS4_FHSIZE (128), as max length of
decimal string with a ':' is 4.

The max fh_pad length should be
9 (%08x and a ' ') * NFS4_FHSIZE / 4 = 288.

At last, 1 for '\0'

thanks,
Kinglong Mee

> 
> --b.
> 
>> +	int pos = 0, i = 0;
>> +
>> +	pos = snprintf(buf, sizeof(buf), "%d:", fh->fh_size);
>> +	for (i = 0; i < fh->fh_size / sizeof(__u32); i++)
>> +		pos += snprintf(buf + pos, sizeof(buf) - pos,
>> +				" %08x", fh->fh_base.fh_pad[i]);
>>  	return buf;
>>  }
>>  
>> -- 
>> 2.4.3
> 

      reply	other threads:[~2015-06-19  0:49 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-18  7:00 [PATCH] nfsd: Prints a suitable length of filehandle Kinglong Mee
2015-06-18 21:35 ` J. Bruce Fields
2015-06-19  0:49   ` Kinglong Mee [this message]

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=55836719.8050806@gmail.com \
    --to=kinglongmee@gmail.com \
    --cc=bfields@fieldses.org \
    --cc=linux-nfs@vger.kernel.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.