public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Chuck Lever <chuck.lever@oracle.com>
Cc: linux-nfs@vger.kernel.org
Subject: Re: [PATCH 1/3] SUNRPC: Use rpc_pton() in ip_map_parse()
Date: Fri, 15 Jan 2010 17:25:08 -0500	[thread overview]
Message-ID: <20100115222508.GE30624@fieldses.org> (raw)
In-Reply-To: <20100113211031.19409.92550.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>

On Wed, Jan 13, 2010 at 04:10:31PM -0500, Chuck Lever wrote:
> The existing logic in ip_map_parse() can not currently parse
> shorthanded IPv6 addresses (anything with a double colon), nor can
> it parse an IPv6 presentation address with a scope ID.  An
> IPv6-enabled mountd can pass down both.

Why does mountd need to be able to do that?

--b.

> 
> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
> ---
> 
>  net/sunrpc/svcauth_unix.c |   47 +++++++++++++++++++++++++--------------------
>  1 files changed, 26 insertions(+), 21 deletions(-)
> 
> diff --git a/net/sunrpc/svcauth_unix.c b/net/sunrpc/svcauth_unix.c
> index d8c0411..97f0e9e 100644
> --- a/net/sunrpc/svcauth_unix.c
> +++ b/net/sunrpc/svcauth_unix.c
> @@ -15,6 +15,7 @@
>  #include <linux/kernel.h>
>  #define RPCDBG_FACILITY	RPCDBG_AUTH
>  
> +#include <linux/sunrpc/clnt.h>
>  
>  /*
>   * AUTHUNIX and AUTHNULL credentials are both handled here.
> @@ -187,10 +188,13 @@ static int ip_map_parse(struct cache_detail *cd,
>  	 * for scratch: */
>  	char *buf = mesg;
>  	int len;
> -	int b1, b2, b3, b4, b5, b6, b7, b8;
> -	char c;
>  	char class[8];
> -	struct in6_addr addr;
> +	union {
> +		struct sockaddr		sa;
> +		struct sockaddr_in	s4;
> +		struct sockaddr_in6	s6;
> +	} address;
> +	struct sockaddr_in6 sin6;
>  	int err;
>  
>  	struct ip_map *ipmp;
> @@ -209,24 +213,24 @@ static int ip_map_parse(struct cache_detail *cd,
>  	len = qword_get(&mesg, buf, mlen);
>  	if (len <= 0) return -EINVAL;
>  
> -	if (sscanf(buf, "%u.%u.%u.%u%c", &b1, &b2, &b3, &b4, &c) == 4) {
> -		addr.s6_addr32[0] = 0;
> -		addr.s6_addr32[1] = 0;
> -		addr.s6_addr32[2] = htonl(0xffff);
> -		addr.s6_addr32[3] =
> -			htonl((((((b1<<8)|b2)<<8)|b3)<<8)|b4);
> -       } else if (sscanf(buf, "%04x:%04x:%04x:%04x:%04x:%04x:%04x:%04x%c",
> -			&b1, &b2, &b3, &b4, &b5, &b6, &b7, &b8, &c) == 8) {
> -		addr.s6_addr16[0] = htons(b1);
> -		addr.s6_addr16[1] = htons(b2);
> -		addr.s6_addr16[2] = htons(b3);
> -		addr.s6_addr16[3] = htons(b4);
> -		addr.s6_addr16[4] = htons(b5);
> -		addr.s6_addr16[5] = htons(b6);
> -		addr.s6_addr16[6] = htons(b7);
> -		addr.s6_addr16[7] = htons(b8);
> -       } else
> +	if (rpc_pton(buf, len, &address.sa, sizeof(address)) == 0)
>  		return -EINVAL;
> +	switch (address.sa.sa_family) {
> +	case AF_INET:
> +		/* Form a mapped IPv4 address in sin6 */
> +		memset(&sin6, 0, sizeof(sin6));
> +		sin6.sin6_family = AF_INET6;
> +		sin6.sin6_addr.s6_addr32[2] = htonl(0xffff);
> +		sin6.sin6_addr.s6_addr32[3] = address.s4.sin_addr.s_addr;
> +		break;
> +#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
> +	case AF_INET6:
> +		memcpy(&sin6, &address.s6, sizeof(sin6));
> +		break;
> +#endif
> +	default:
> +		return -EINVAL;
> +	}
>  
>  	expiry = get_expiry(&mesg);
>  	if (expiry ==0)
> @@ -243,7 +247,8 @@ static int ip_map_parse(struct cache_detail *cd,
>  	} else
>  		dom = NULL;
>  
> -	ipmp = ip_map_lookup(class, &addr);
> +	/* IPv6 scope IDs are ignored for now */
> +	ipmp = ip_map_lookup(class, &sin6.sin6_addr);
>  	if (ipmp) {
>  		err = ip_map_update(ipmp,
>  			     container_of(dom, struct unix_domain, h),
> 

  parent reply	other threads:[~2010-01-15 22:23 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-13 21:10 [PATCH 0/3] NFSD IPv6 patches Chuck Lever
     [not found] ` <20100113210650.19409.38009.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-01-13 21:10   ` [PATCH 1/3] SUNRPC: Use rpc_pton() in ip_map_parse() Chuck Lever
     [not found]     ` <20100113211031.19409.92550.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-01-15 22:25       ` J. Bruce Fields [this message]
2010-01-15 22:55         ` Chuck Lever
2010-01-15 22:58           ` J. Bruce Fields
2010-01-13 21:10   ` [PATCH 2/3] NFSD: Support AF_INET6 in svc_addsock() function Chuck Lever
2010-01-13 21:10   ` [PATCH 3/3] NFSD: Enable NFS server use of PF_INET6 Chuck Lever
     [not found]     ` <20100113211048.19409.86029.stgit-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2010-01-15 22:35       ` J. Bruce Fields
2010-01-15 23:09         ` Chuck Lever
2010-01-21 22:52           ` J. Bruce Fields
2010-01-22 17:10             ` Chuck Lever
2010-01-22 18:06               ` J. Bruce Fields
2010-01-15 22:44       ` J. Bruce Fields
2010-01-15 23:17         ` Chuck Lever
2010-01-21 22:07           ` J. Bruce Fields
2010-01-22 17:07             ` Chuck Lever
2010-01-22 18:06               ` J. Bruce Fields

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=20100115222508.GE30624@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=chuck.lever@oracle.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