linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Steve Dickson <SteveD@redhat.com>
To: Jose Castillo <jcastillo@redhat.com>
Cc: Linux NFS Mailing list <linux-nfs@vger.kernel.org>
Subject: Re: [PATCH] Add the missing '$' in auth_unix_ip()
Date: Mon, 22 Apr 2013 13:07:04 -0400	[thread overview]
Message-ID: <51756E38.6030905@RedHat.com> (raw)
In-Reply-To: <1365522899-29123-1-git-send-email-jcastillo@redhat.com>



On 09/04/13 11:54, Jose Castillo wrote:
> Signed-off-by: Jose Castillo <jcastillo@redhat.com>
Committed...

steved.
> ---
>  utils/mountd/cache.c | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c
> index 978698d..e1027f3 100644
> --- a/utils/mountd/cache.c
> +++ b/utils/mountd/cache.c
> @@ -80,7 +80,7 @@ static void auth_unix_ip(FILE *f)
>  	 */
>  	char *cp;
>  	char class[20];
> -	char ipaddr[INET6_ADDRSTRLEN];
> +	char ipaddr[INET6_ADDRSTRLEN + 1];
>  	char *client = NULL;
>  	struct addrinfo *tmp = NULL;
>  	if (readline(fileno(f), &lbuf, &lbuflen) != 1)
> @@ -94,7 +94,7 @@ static void auth_unix_ip(FILE *f)
>  	    strcmp(class, "nfsd") != 0)
>  		return;
>  
> -	if (qword_get(&cp, ipaddr, sizeof(ipaddr)) <= 0)
> +	if (qword_get(&cp, ipaddr, sizeof(ipaddr) - 1) <= 0)
>  		return;
>  
>  	tmp = host_pton(ipaddr);
> @@ -116,9 +116,11 @@ static void auth_unix_ip(FILE *f)
>  	qword_print(f, "nfsd");
>  	qword_print(f, ipaddr);
>  	qword_printtimefrom(f, DEFAULT_TTL);
> -	if (use_ipaddr)
> +	if (use_ipaddr) {
> +		memmove(ipaddr + 1, ipaddr, strlen(ipaddr) + 1);
> +		ipaddr[0] = '$';
>  		qword_print(f, ipaddr);
> -	else if (client)
> +	} else if (client)
>  		qword_print(f, *client?client:"DEFAULT");
>  	qword_eol(f);
>  	xlog(D_CALL, "auth_unix_ip: client %p '%s'", client, client?client: "DEFAULT");
> 

      parent reply	other threads:[~2013-04-22 17:07 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-09 15:54 [PATCH] Add the missing '$' in auth_unix_ip() Jose Castillo
2013-04-09 19:11 ` J. Bruce Fields
2013-04-10 11:11   ` Jose Castillo
2013-04-11 12:27     ` J. Bruce Fields
2013-04-11 16:08       ` Jose Castillo
2013-04-22 17:07 ` Steve Dickson [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=51756E38.6030905@RedHat.com \
    --to=steved@redhat.com \
    --cc=jcastillo@redhat.com \
    --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 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).