All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mount.nfs: Preserve any explicit port=2049 option
@ 2011-08-06 10:11 Luk Claes
  2011-08-06 17:01 ` Chuck Lever
                   ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Luk Claes @ 2011-08-06 10:11 UTC (permalink / raw)
  To: Steve Dickson, linux-nfs; +Cc: Luk Claes

If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.

Signed-off-by: Luk Claes <luk@debian.org>
---
 utils/mount/stropts.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
index f1aa503..8b2799c 100644
--- a/utils/mount/stropts.c
+++ b/utils/mount/stropts.c
@@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
 	if (po_append(options, new_option) == PO_FAILED)
 		return 0;
 
-	po_remove_all(options, "port");
-	if (nfs_pmap->pm_port != NFS_PORT) {
+	if(po_remove_all(options, "port") == PO_FOUND ||
+	   nfs_pmap->pm_port != NFS_PORT) {
 		snprintf(new_option, sizeof(new_option) - 1,
 			 "port=%lu", nfs_pmap->pm_port);
 		if (po_append(options, new_option) == PO_FAILED)
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-06 10:11 [PATCH] mount.nfs: Preserve any explicit port=2049 option Luk Claes
@ 2011-08-06 17:01 ` Chuck Lever
  2011-08-06 17:06   ` Luk Claes
  2011-08-25 20:25 ` Steve Dickson
  2011-09-14 18:26 ` Steve Dickson
  2 siblings, 1 reply; 13+ messages in thread
From: Chuck Lever @ 2011-08-06 17:01 UTC (permalink / raw)
  To: Luk Claes; +Cc: Steve Dickson, linux-nfs


On Aug 6, 2011, at 6:11 AM, Luk Claes wrote:

> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.

I'm not clear on what's broken.

> Signed-off-by: Luk Claes <luk@debian.org>
> ---
> utils/mount/stropts.c |    4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
> index f1aa503..8b2799c 100644
> --- a/utils/mount/stropts.c
> +++ b/utils/mount/stropts.c
> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
> 	if (po_append(options, new_option) == PO_FAILED)
> 		return 0;
> 
> -	po_remove_all(options, "port");
> -	if (nfs_pmap->pm_port != NFS_PORT) {
> +	if(po_remove_all(options, "port") == PO_FOUND ||
> +	   nfs_pmap->pm_port != NFS_PORT) {
> 		snprintf(new_option, sizeof(new_option) - 1,
> 			 "port=%lu", nfs_pmap->pm_port);
> 		if (po_append(options, new_option) == PO_FAILED)
> -- 
> 1.7.5.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-06 17:01 ` Chuck Lever
@ 2011-08-06 17:06   ` Luk Claes
  2011-08-07 14:51     ` Chuck Lever
  0 siblings, 1 reply; 13+ messages in thread
From: Luk Claes @ 2011-08-06 17:06 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Steve Dickson, linux-nfs

On 08/06/2011 07:01 PM, Chuck Lever wrote:
> 
> On Aug 6, 2011, at 6:11 AM, Luk Claes wrote:
> 
>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
> 
> I'm not clear on what's broken.

Without the patch, there will be a SunRPC GETPORT call to portmap when
the mount option would be port=2049, while it would not do that call
when port=2050 for instance.

Cheers

Luk

>> Signed-off-by: Luk Claes <luk@debian.org>
>> ---
>> utils/mount/stropts.c |    4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>> index f1aa503..8b2799c 100644
>> --- a/utils/mount/stropts.c
>> +++ b/utils/mount/stropts.c
>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>> 	if (po_append(options, new_option) == PO_FAILED)
>> 		return 0;
>>
>> -	po_remove_all(options, "port");
>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>> +	   nfs_pmap->pm_port != NFS_PORT) {
>> 		snprintf(new_option, sizeof(new_option) - 1,
>> 			 "port=%lu", nfs_pmap->pm_port);
>> 		if (po_append(options, new_option) == PO_FAILED)
>> -- 
>> 1.7.5.4
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> --
> Chuck Lever
> chuck[dot]lever[at]oracle[dot]com
> 
> 
> 


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-06 17:06   ` Luk Claes
@ 2011-08-07 14:51     ` Chuck Lever
  0 siblings, 0 replies; 13+ messages in thread
From: Chuck Lever @ 2011-08-07 14:51 UTC (permalink / raw)
  To: Luk Claes; +Cc: Steve Dickson, linux-nfs


On Aug 6, 2011, at 1:06 PM, Luk Claes wrote:

> On 08/06/2011 07:01 PM, Chuck Lever wrote:
>> 
>> On Aug 6, 2011, at 6:11 AM, Luk Claes wrote:
>> 
>>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>> 
>> I'm not clear on what's broken.
> 
> Without the patch, there will be a SunRPC GETPORT call to portmap when
> the mount option would be port=2049, while it would not do that call
> when port=2050 for instance.

One nit: please use the standard white space convention for "if ( )".  Thanks!  Otherwise, fix seems OK, but I haven't thought too hard about it.  I wish we had a comprehensive unit test suite for this code.

> Cheers
> 
> Luk
> 
>>> Signed-off-by: Luk Claes <luk@debian.org>
>>> ---
>>> utils/mount/stropts.c |    4 ++--
>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>> 
>>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>>> index f1aa503..8b2799c 100644
>>> --- a/utils/mount/stropts.c
>>> +++ b/utils/mount/stropts.c
>>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>>> 	if (po_append(options, new_option) == PO_FAILED)
>>> 		return 0;
>>> 
>>> -	po_remove_all(options, "port");
>>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>>> +	   nfs_pmap->pm_port != NFS_PORT) {
>>> 		snprintf(new_option, sizeof(new_option) - 1,
>>> 			 "port=%lu", nfs_pmap->pm_port);
>>> 		if (po_append(options, new_option) == PO_FAILED)
>>> -- 
>>> 1.7.5.4
>>> 
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> 
>> --
>> Chuck Lever
>> chuck[dot]lever[at]oracle[dot]com
>> 
>> 
>> 
> 

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-06 10:11 [PATCH] mount.nfs: Preserve any explicit port=2049 option Luk Claes
  2011-08-06 17:01 ` Chuck Lever
@ 2011-08-25 20:25 ` Steve Dickson
  2011-08-25 20:46   ` Chuck Lever
  2011-09-14 18:26 ` Steve Dickson
  2 siblings, 1 reply; 13+ messages in thread
From: Steve Dickson @ 2011-08-25 20:25 UTC (permalink / raw)
  To: Luk Claes; +Cc: linux-nfs

First of all let me apologize for taking so long
to get to this... I did take some time off.... 

On 08/06/2011 06:11 AM, Luk Claes wrote:
> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
> 
> Signed-off-by: Luk Claes <luk@debian.org>
> ---
>  utils/mount/stropts.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
> index f1aa503..8b2799c 100644
> --- a/utils/mount/stropts.c
> +++ b/utils/mount/stropts.c
> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>  	if (po_append(options, new_option) == PO_FAILED)
>  		return 0;
>  
> -	po_remove_all(options, "port");
> -	if (nfs_pmap->pm_port != NFS_PORT) {
> +	if(po_remove_all(options, "port") == PO_FOUND ||
> +	   nfs_pmap->pm_port != NFS_PORT) {
>  		snprintf(new_option, sizeof(new_option) - 1,
>  			 "port=%lu", nfs_pmap->pm_port);
>  		if (po_append(options, new_option) == PO_FAILED)
Now I like the idea of not sending the pmap inquire for the 
port when the port is specified on the command because its
a TCP connection. During automount storms, wasting TCP connections
is not a good thing... 

But your patch does not seem to do that since all the port
negotiation is done well before this part of the code.

I'm thinking some code has to change in nfs_probe_port() 
something like:

    mount.nfs: Do not send pmap inquire when port is specified
    
    When the port is specified on the command line do not
    send a pmap inquire asking for the port. Instead use
    the given port in the NFS ping. If the ping fails,
    assume a bad port was given and now go ask the server
    for the correct port.
    
    Signed-off-by: Steve Dickson <steved@redhat.com>

diff --git a/utils/mount/network.c b/utils/mount/network.c
index d1f91dc..405c320 100644
--- a/utils/mount/network.c
+++ b/utils/mount/network.c
@@ -545,17 +545,18 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
 	const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
 	const u_short port = (u_short) pmap->pm_port;
 	unsigned long vers = pmap->pm_vers;
-	unsigned short p_port;
+	unsigned short p_port = port;
+	int once = 1;
 
 	memcpy(saddr, sap, salen);
 	p_prot = prot ? &prot : protos;
 	p_vers = vers ? &vers : versions;
-
 	for (;;) {
 		if (verbose)
 			printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
 				progname, prog, *p_vers, *p_prot);
-		p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
+		if (!p_port)
+			p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
 		if (p_port) {
 			if (!port || port == p_port) {
 				nfs_set_port(saddr, p_port);
@@ -564,6 +565,15 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
 				if (nfs_rpc_ping(saddr, salen, prog,
 							*p_vers, *p_prot, NULL))
 					goto out_ok;
+				if (port == p_port && once) {
+					/*
+					 * Could be a bad port was specified. This
+					 * time ask the server for the port but only
+					 * do it once.
+					 */
+					p_port = once = 0;
+					continue;
+				}
 			} else
 				rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
 		}
@@ -589,6 +599,7 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
 	}
 
 	nfs_pp_debug2("failed");
 	return 0;
 
 out_ok:


I'm not sure this is best way either.... 

steved.





 

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-25 20:25 ` Steve Dickson
@ 2011-08-25 20:46   ` Chuck Lever
  2011-08-25 22:32     ` Jim Rees
  2011-08-26  0:49     ` Steve Dickson
  0 siblings, 2 replies; 13+ messages in thread
From: Chuck Lever @ 2011-08-25 20:46 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Luk Claes, linux-nfs


On Aug 25, 2011, at 4:25 PM, Steve Dickson wrote:

> First of all let me apologize for taking so long
> to get to this... I did take some time off.... 
> 
> On 08/06/2011 06:11 AM, Luk Claes wrote:
>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>> 
>> Signed-off-by: Luk Claes <luk@debian.org>
>> ---
>> utils/mount/stropts.c |    4 ++--
>> 1 files changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>> index f1aa503..8b2799c 100644
>> --- a/utils/mount/stropts.c
>> +++ b/utils/mount/stropts.c
>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>> 	if (po_append(options, new_option) == PO_FAILED)
>> 		return 0;
>> 
>> -	po_remove_all(options, "port");
>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>> +	   nfs_pmap->pm_port != NFS_PORT) {
>> 		snprintf(new_option, sizeof(new_option) - 1,
>> 			 "port=%lu", nfs_pmap->pm_port);
>> 		if (po_append(options, new_option) == PO_FAILED)
> Now I like the idea of not sending the pmap inquire for the 
> port when the port is specified on the command because its
> a TCP connection. During automount storms, wasting TCP connections
> is not a good thing... 
> 
> But your patch does not seem to do that since all the port
> negotiation is done well before this part of the code.

I thought the idea was to eliminate the port query during REnegotiation if "port=" was specified.  That seems like exactly what the patch does.  Does the initial port negotiation also have this problem?

But we should be careful here: mount.nfs will do an rpcbind query if a port= was specified if there is also some doubt about whether to use TCP or UDP, or what NFS version is available.  The only time rpcbind queries should be completely squashed is when the mount parameters are specified completely (transport, version, and port).

> I'm thinking some code has to change in nfs_probe_port() 
> something like:
> 
>    mount.nfs: Do not send pmap inquire when port is specified
> 
>    When the port is specified on the command line do not
>    send a pmap inquire asking for the port. Instead use
>    the given port in the NFS ping. If the ping fails,
>    assume a bad port was given and now go ask the server
>    for the correct port.

If the server has more than one NFS port enabled, and the client is requesting a port that isn't registered with the server's rpcbind, it shouldn't fall back to the registered port IMO.

>    Signed-off-by: Steve Dickson <steved@redhat.com>
> 
> diff --git a/utils/mount/network.c b/utils/mount/network.c
> index d1f91dc..405c320 100644
> --- a/utils/mount/network.c
> +++ b/utils/mount/network.c
> @@ -545,17 +545,18 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
> 	const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
> 	const u_short port = (u_short) pmap->pm_port;
> 	unsigned long vers = pmap->pm_vers;
> -	unsigned short p_port;
> +	unsigned short p_port = port;
> +	int once = 1;
> 
> 	memcpy(saddr, sap, salen);
> 	p_prot = prot ? &prot : protos;
> 	p_vers = vers ? &vers : versions;
> -
> 	for (;;) {
> 		if (verbose)
> 			printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
> 				progname, prog, *p_vers, *p_prot);
> -		p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
> +		if (!p_port)
> +			p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
> 		if (p_port) {
> 			if (!port || port == p_port) {
> 				nfs_set_port(saddr, p_port);
> @@ -564,6 +565,15 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
> 				if (nfs_rpc_ping(saddr, salen, prog,
> 							*p_vers, *p_prot, NULL))
> 					goto out_ok;
> +				if (port == p_port && once) {
> +					/*
> +					 * Could be a bad port was specified. This
> +					 * time ask the server for the port but only
> +					 * do it once.
> +					 */
> +					p_port = once = 0;
> +					continue;
> +				}
> 			} else
> 				rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
> 		}
> @@ -589,6 +599,7 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
> 	}
> 
> 	nfs_pp_debug2("failed");
> 	return 0;
> 
> out_ok:
> 
> 
> I'm not sure this is best way either.... 
> 
> steved.
> 
> 
> 
> 
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Chuck Lever
chuck[dot]lever[at]oracle[dot]com





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-25 20:46   ` Chuck Lever
@ 2011-08-25 22:32     ` Jim Rees
  2011-08-26  0:49     ` Steve Dickson
  1 sibling, 0 replies; 13+ messages in thread
From: Jim Rees @ 2011-08-25 22:32 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Steve Dickson, Luk Claes, linux-nfs

Chuck Lever wrote:

  But we should be careful here: mount.nfs will do an rpcbind query if a
  port= was specified if there is also some doubt about whether to use TCP
  or UDP, or what NFS version is available.  The only time rpcbind queries
  should be completely squashed is when the mount parameters are specified
  completely (transport, version, and port).

Was support for SRV records ever added to either rpcbind or nfs-utils?
Wouldn't that eliminate the need for portmap at least in some cases?  I
remember Andy working on a draft for this ages ago.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-25 20:46   ` Chuck Lever
  2011-08-25 22:32     ` Jim Rees
@ 2011-08-26  0:49     ` Steve Dickson
  2011-08-26 13:58       ` Chuck Lever
  1 sibling, 1 reply; 13+ messages in thread
From: Steve Dickson @ 2011-08-26  0:49 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Luk Claes, linux-nfs

On 08/25/2011 04:46 PM, Chuck Lever wrote:
> 
> On Aug 25, 2011, at 4:25 PM, Steve Dickson wrote:
> 
>> First of all let me apologize for taking so long
>> to get to this... I did take some time off.... 
>>
>> On 08/06/2011 06:11 AM, Luk Claes wrote:
>>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>>>
>>> Signed-off-by: Luk Claes <luk@debian.org>
>>> ---
>>> utils/mount/stropts.c |    4 ++--
>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>>> index f1aa503..8b2799c 100644
>>> --- a/utils/mount/stropts.c
>>> +++ b/utils/mount/stropts.c
>>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>>> 	if (po_append(options, new_option) == PO_FAILED)
>>> 		return 0;
>>>
>>> -	po_remove_all(options, "port");
>>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>>> +	   nfs_pmap->pm_port != NFS_PORT) {
>>> 		snprintf(new_option, sizeof(new_option) - 1,
>>> 			 "port=%lu", nfs_pmap->pm_port);
>>> 		if (po_append(options, new_option) == PO_FAILED)
>> Now I like the idea of not sending the pmap inquire for the 
>> port when the port is specified on the command because its
>> a TCP connection. During automount storms, wasting TCP connections
>> is not a good thing... 
>>
>> But your patch does not seem to do that since all the port
>> negotiation is done well before this part of the code.
> 
> I thought the idea was to eliminate the port query during REnegotiation
> if "port=" was specified.  That seems like exactly what the patch does.  
Ah, I did miss the renegotiation aspect... Its been a long day... ;-)

> Does the initial port negotiation also have this problem?
Well I was thinking why even do the initial port negotiation when
the port= is set... 
 
> 
> But we should be careful here: mount.nfs will do an rpcbind query if a port= 
> was specified if there is also some doubt about whether to use TCP or UDP, 
> or what NFS version is available.  The only time rpcbind queries should be 
> completely squashed is when the mount parameters are specified completely 
> (transport, version, and port).
I agree with being careful here... But if some admin is specifying 
a particular port I'm thinking one, they have a clue and two, 99% of 
time the port is correct. So lets just verify the port by using it
NFS ping. So I'm thinking %99 of the time there is no need to create 
that second TCP connection when a port is specified. 

But, here is were we have to be careful. That  1% of the
time the ping fails, for whatever reason... That is when I think
we to consult with the server's rpcbind and the second TCP
connection is justified. 

I just thinking making that assuming the specified info
is as good way to save a TCP connection... 

> 
>> I'm thinking some code has to change in nfs_probe_port() 
>> something like:
>>
>>    mount.nfs: Do not send pmap inquire when port is specified
>>
>>    When the port is specified on the command line do not
>>    send a pmap inquire asking for the port. Instead use
>>    the given port in the NFS ping. If the ping fails,
>>    assume a bad port was given and now go ask the server
>>    for the correct port.
> 
> If the server has more than one NFS port enabled, and the client is 
> requesting a port that isn't registered with the server's rpcbind, it 
> shouldn't fall back to the registered port IMO.
True. With this patch there is no fall back. When the NFS ping fails, 
the registered port is obtained; compared to the specified port.
If they are different the mount will fail as it does to today.

steved.

> 
>>    Signed-off-by: Steve Dickson <steved@redhat.com>
>>
>> diff --git a/utils/mount/network.c b/utils/mount/network.c
>> index d1f91dc..405c320 100644
>> --- a/utils/mount/network.c
>> +++ b/utils/mount/network.c
>> @@ -545,17 +545,18 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>> 	const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
>> 	const u_short port = (u_short) pmap->pm_port;
>> 	unsigned long vers = pmap->pm_vers;
>> -	unsigned short p_port;
>> +	unsigned short p_port = port;
>> +	int once = 1;
>>
>> 	memcpy(saddr, sap, salen);
>> 	p_prot = prot ? &prot : protos;
>> 	p_vers = vers ? &vers : versions;
>> -
>> 	for (;;) {
>> 		if (verbose)
>> 			printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
>> 				progname, prog, *p_vers, *p_prot);
>> -		p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>> +		if (!p_port)
>> +			p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>> 		if (p_port) {
>> 			if (!port || port == p_port) {
>> 				nfs_set_port(saddr, p_port);
>> @@ -564,6 +565,15 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>> 				if (nfs_rpc_ping(saddr, salen, prog,
>> 							*p_vers, *p_prot, NULL))
>> 					goto out_ok;
>> +				if (port == p_port && once) {
>> +					/*
>> +					 * Could be a bad port was specified. This
>> +					 * time ask the server for the port but only
>> +					 * do it once.
>> +					 */
>> +					p_port = once = 0;
>> +					continue;
>> +				}
>> 			} else
>> 				rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
>> 		}
>> @@ -589,6 +599,7 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>> 	}
>>
>> 	nfs_pp_debug2("failed");
>> 	return 0;
>>
>> out_ok:
>>
>>
>> I'm not sure this is best way either.... 
>>
>> steved.
>>
>>
>>
>>
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-26  0:49     ` Steve Dickson
@ 2011-08-26 13:58       ` Chuck Lever
  2011-08-27 12:56         ` Steve Dickson
  0 siblings, 1 reply; 13+ messages in thread
From: Chuck Lever @ 2011-08-26 13:58 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Luk Claes, linux-nfs


On Aug 25, 2011, at 8:49 PM, Steve Dickson wrote:

> On 08/25/2011 04:46 PM, Chuck Lever wrote:
>> 
>> On Aug 25, 2011, at 4:25 PM, Steve Dickson wrote:
>> 
>>> First of all let me apologize for taking so long
>>> to get to this... I did take some time off.... 
>>> 
>>> On 08/06/2011 06:11 AM, Luk Claes wrote:
>>>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>>>> 
>>>> Signed-off-by: Luk Claes <luk@debian.org>
>>>> ---
>>>> utils/mount/stropts.c |    4 ++--
>>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>>> 
>>>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>>>> index f1aa503..8b2799c 100644
>>>> --- a/utils/mount/stropts.c
>>>> +++ b/utils/mount/stropts.c
>>>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>>>> 	if (po_append(options, new_option) == PO_FAILED)
>>>> 		return 0;
>>>> 
>>>> -	po_remove_all(options, "port");
>>>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>>>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>>>> +	   nfs_pmap->pm_port != NFS_PORT) {
>>>> 		snprintf(new_option, sizeof(new_option) - 1,
>>>> 			 "port=%lu", nfs_pmap->pm_port);
>>>> 		if (po_append(options, new_option) == PO_FAILED)
>>> Now I like the idea of not sending the pmap inquire for the 
>>> port when the port is specified on the command because its
>>> a TCP connection. During automount storms, wasting TCP connections
>>> is not a good thing... 
>>> 
>>> But your patch does not seem to do that since all the port
>>> negotiation is done well before this part of the code.
>> 
>> I thought the idea was to eliminate the port query during REnegotiation
>> if "port=" was specified.  That seems like exactly what the patch does.  
> Ah, I did miss the renegotiation aspect... Its been a long day... ;-)
> 
>> Does the initial port negotiation also have this problem?
> Well I was thinking why even do the initial port negotiation when
> the port= is set... 

An rpcbind query is still needed if port= is specified but transport or version options were not.  Simply specifying port= does not shut off negotiation.  All three NFS parameters have to be specified to shut off the rpcbind query.  Doing the MNT request also performs an rpcbind query, but by default both of those are done via UDP.

The issue of keeping TCP port usage at a minimum is real and related to negotiation behavior, but is IMO separate.  My sense is that rpcbind queries are probably not really a big problem (and of course we would be wise to quantify this problem before making aggressive changes).  mount.nfs's rpcbind queries should always come from an ephemeral port, which is a larger resource pool than privileged ports and thus more difficult to exhaust.  Using NFSv4 more, just by itself, should improve matters since it skips the rpcbind step by default and doesn't use MNT at all.

>> But we should be careful here: mount.nfs will do an rpcbind query if a port= 
>> was specified if there is also some doubt about whether to use TCP or UDP, 
>> or what NFS version is available.  The only time rpcbind queries should be 
>> completely squashed is when the mount parameters are specified completely 
>> (transport, version, and port).
> I agree with being careful here... But if some admin is specifying 
> a particular port I'm thinking one, they have a clue and two, 99% of 
> time the port is correct. So lets just verify the port by using it
> NFS ping. So I'm thinking %99 of the time there is no need to create 
> that second TCP connection when a port is specified.

I think the kernel already does an NFS ping during mount processing (someone should verify that, of course).  But as I said above, all three NFS parameters [transport, NFS version, and port] have to be specified to avoid the rpcbind query.

> But, here is were we have to be careful. That  1% of the
> time the ping fails, for whatever reason... That is when I think
> we to consult with the server's rpcbind and the second TCP
> connection is justified. 
> 
> I just thinking making that assuming the specified info
> is as good way to save a TCP connection... 

Hrm, I don't see what that buys us.  If the ping fails and the port specified on the mount command line is actually registered on the server, what is the client's recourse?

> 
>> 
>>> I'm thinking some code has to change in nfs_probe_port() 
>>> something like:
>>> 
>>>   mount.nfs: Do not send pmap inquire when port is specified
>>> 
>>>   When the port is specified on the command line do not
>>>   send a pmap inquire asking for the port. Instead use
>>>   the given port in the NFS ping. If the ping fails,
>>>   assume a bad port was given and now go ask the server
>>>   for the correct port.
>> 
>> If the server has more than one NFS port enabled, and the client is 
>> requesting a port that isn't registered with the server's rpcbind, it 
>> shouldn't fall back to the registered port IMO.
> True. With this patch there is no fall back. When the NFS ping fails, 
> the registered port is obtained; compared to the specified port.
> If they are different the mount will fail as it does to today.
> 
> steved.
> 
>> 
>>>   Signed-off-by: Steve Dickson <steved@redhat.com>
>>> 
>>> diff --git a/utils/mount/network.c b/utils/mount/network.c
>>> index d1f91dc..405c320 100644
>>> --- a/utils/mount/network.c
>>> +++ b/utils/mount/network.c
>>> @@ -545,17 +545,18 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>> 	const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
>>> 	const u_short port = (u_short) pmap->pm_port;
>>> 	unsigned long vers = pmap->pm_vers;
>>> -	unsigned short p_port;
>>> +	unsigned short p_port = port;
>>> +	int once = 1;
>>> 
>>> 	memcpy(saddr, sap, salen);
>>> 	p_prot = prot ? &prot : protos;
>>> 	p_vers = vers ? &vers : versions;
>>> -
>>> 	for (;;) {
>>> 		if (verbose)
>>> 			printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
>>> 				progname, prog, *p_vers, *p_prot);
>>> -		p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>>> +		if (!p_port)
>>> +			p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>>> 		if (p_port) {
>>> 			if (!port || port == p_port) {
>>> 				nfs_set_port(saddr, p_port);
>>> @@ -564,6 +565,15 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>> 				if (nfs_rpc_ping(saddr, salen, prog,
>>> 							*p_vers, *p_prot, NULL))
>>> 					goto out_ok;
>>> +				if (port == p_port && once) {
>>> +					/*
>>> +					 * Could be a bad port was specified. This
>>> +					 * time ask the server for the port but only
>>> +					 * do it once.
>>> +					 */
>>> +					p_port = once = 0;
>>> +					continue;
>>> +				}
>>> 			} else
>>> 				rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
>>> 		}
>>> @@ -589,6 +599,7 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>> 	}
>>> 
>>> 	nfs_pp_debug2("failed");
>>> 	return 0;
>>> 
>>> out_ok:
>>> 
>>> 
>>> I'm not sure this is best way either.... 
>>> 
>>> steved.
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>> 

-- 
Chuck Lever
chuck[dot]lever[at]oracle[dot]com





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-26 13:58       ` Chuck Lever
@ 2011-08-27 12:56         ` Steve Dickson
  2011-08-27 23:45           ` Chuck Lever
  0 siblings, 1 reply; 13+ messages in thread
From: Steve Dickson @ 2011-08-27 12:56 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Luk Claes, linux-nfs

Hey,

On 08/26/2011 09:58 AM, Chuck Lever wrote:
> 
> On Aug 25, 2011, at 8:49 PM, Steve Dickson wrote:
> 
>> On 08/25/2011 04:46 PM, Chuck Lever wrote:
>>>
>>> On Aug 25, 2011, at 4:25 PM, Steve Dickson wrote:
>>>
>>>> First of all let me apologize for taking so long
>>>> to get to this... I did take some time off.... 
>>>>
>>>> On 08/06/2011 06:11 AM, Luk Claes wrote:
>>>>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>>>>>
>>>>> Signed-off-by: Luk Claes <luk@debian.org>
>>>>> ---
>>>>> utils/mount/stropts.c |    4 ++--
>>>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>>>>
>>>>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>>>>> index f1aa503..8b2799c 100644
>>>>> --- a/utils/mount/stropts.c
>>>>> +++ b/utils/mount/stropts.c
>>>>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>>>>> 	if (po_append(options, new_option) == PO_FAILED)
>>>>> 		return 0;
>>>>>
>>>>> -	po_remove_all(options, "port");
>>>>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>>>>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>>>>> +	   nfs_pmap->pm_port != NFS_PORT) {
>>>>> 		snprintf(new_option, sizeof(new_option) - 1,
>>>>> 			 "port=%lu", nfs_pmap->pm_port);
>>>>> 		if (po_append(options, new_option) == PO_FAILED)
>>>> Now I like the idea of not sending the pmap inquire for the 
>>>> port when the port is specified on the command because its
>>>> a TCP connection. During automount storms, wasting TCP connections
>>>> is not a good thing... 
>>>>
>>>> But your patch does not seem to do that since all the port
>>>> negotiation is done well before this part of the code.
>>>
>>> I thought the idea was to eliminate the port query during REnegotiation
>>> if "port=" was specified.  That seems like exactly what the patch does.  
>> Ah, I did miss the renegotiation aspect... Its been a long day... ;-)
>>
>>> Does the initial port negotiation also have this problem?
>> Well I was thinking why even do the initial port negotiation when
>> the port= is set... 
> 
> An rpcbind query is still needed if port= is specified but transport or 
> version options were not. Simply specifying port= does not shut off 
> negotiation. 
You are correct. Not only is the port specified but the version is also
specified as well due to the fact we are in this part of the code. 

> All three NFS parameters have to be specified to shut off the rpcbind query.
Why is this such a hard and fast rule? 

Maybe in the past, when we moved from v2 to v3 and from UDP to TCP, all 
three were needed but not in day in aged. TCP is now a mandated protocol,
which almost guarantees it will be support, in present day servers.
 
So at this point if have we two of the three, the port and version, why
not just use the default protocol (TCP) and do the NFS ping? The
chances of the ping working are very high plus what is going to break?
 
> Doing the MNT request also performs an rpcbind query, but by default both 
> of those are done via UDP.
No. The query for the port were going over TCP. That's what caught
my eye.

> 
> The issue of keeping TCP port usage at a minimum is real and related to 
> negotiation behavior, but is IMO separate.  My sense is that rpcbind 
> queries are probably not really a big problem (and of course we would 
> be wise to quantify this problem before making aggressive changes).
I don't see this as an aggressive change. I see it as adapting the
code to present day circumstances.   
  
> mount.nfs's rpcbind queries should always come from an ephemeral port, 
> which is a larger resource pool than privileged ports and thus more 
> difficult to exhaust.  Using NFSv4 more, just by itself, should improve 
> matters since it skips the rpcbind step by default and doesn't use MNT at all.
All the above is true. But look at it from the server point of view. 
During an automount storm, thousands of clients doing v3 mounts. This
type of short cut will eliminate thousands of TCP the server will have
to deal with.

steved.

> 
>>> But we should be careful here: mount.nfs will do an rpcbind query if a port= 
>>> was specified if there is also some doubt about whether to use TCP or UDP, 
>>> or what NFS version is available.  The only time rpcbind queries should be 
>>> completely squashed is when the mount parameters are specified completely 
>>> (transport, version, and port).
>> I agree with being careful here... But if some admin is specifying 
>> a particular port I'm thinking one, they have a clue and two, 99% of 
>> time the port is correct. So lets just verify the port by using it
>> NFS ping. So I'm thinking %99 of the time there is no need to create 
>> that second TCP connection when a port is specified.
> 
> I think the kernel already does an NFS ping during mount processing (someone should verify that, of course).  But as I said above, all three NFS parameters [transport, NFS version, and port] have to be specified to avoid the rpcbind query.
> 
>> But, here is were we have to be careful. That  1% of the
>> time the ping fails, for whatever reason... That is when I think
>> we to consult with the server's rpcbind and the second TCP
>> connection is justified. 
>>
>> I just thinking making that assuming the specified info
>> is as good way to save a TCP connection... 
> 
> Hrm, I don't see what that buys us.  If the ping fails and the port specified on the mount command line is actually registered on the server, what is the client's recourse?
> 
>>
>>>
>>>> I'm thinking some code has to change in nfs_probe_port() 
>>>> something like:
>>>>
>>>>   mount.nfs: Do not send pmap inquire when port is specified
>>>>
>>>>   When the port is specified on the command line do not
>>>>   send a pmap inquire asking for the port. Instead use
>>>>   the given port in the NFS ping. If the ping fails,
>>>>   assume a bad port was given and now go ask the server
>>>>   for the correct port.
>>>
>>> If the server has more than one NFS port enabled, and the client is 
>>> requesting a port that isn't registered with the server's rpcbind, it 
>>> shouldn't fall back to the registered port IMO.
>> True. With this patch there is no fall back. When the NFS ping fails, 
>> the registered port is obtained; compared to the specified port.
>> If they are different the mount will fail as it does to today.
>>
>> steved.
>>
>>>
>>>>   Signed-off-by: Steve Dickson <steved@redhat.com>
>>>>
>>>> diff --git a/utils/mount/network.c b/utils/mount/network.c
>>>> index d1f91dc..405c320 100644
>>>> --- a/utils/mount/network.c
>>>> +++ b/utils/mount/network.c
>>>> @@ -545,17 +545,18 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>>> 	const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
>>>> 	const u_short port = (u_short) pmap->pm_port;
>>>> 	unsigned long vers = pmap->pm_vers;
>>>> -	unsigned short p_port;
>>>> +	unsigned short p_port = port;
>>>> +	int once = 1;
>>>>
>>>> 	memcpy(saddr, sap, salen);
>>>> 	p_prot = prot ? &prot : protos;
>>>> 	p_vers = vers ? &vers : versions;
>>>> -
>>>> 	for (;;) {
>>>> 		if (verbose)
>>>> 			printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
>>>> 				progname, prog, *p_vers, *p_prot);
>>>> -		p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>>>> +		if (!p_port)
>>>> +			p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>>>> 		if (p_port) {
>>>> 			if (!port || port == p_port) {
>>>> 				nfs_set_port(saddr, p_port);
>>>> @@ -564,6 +565,15 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>>> 				if (nfs_rpc_ping(saddr, salen, prog,
>>>> 							*p_vers, *p_prot, NULL))
>>>> 					goto out_ok;
>>>> +				if (port == p_port && once) {
>>>> +					/*
>>>> +					 * Could be a bad port was specified. This
>>>> +					 * time ask the server for the port but only
>>>> +					 * do it once.
>>>> +					 */
>>>> +					p_port = once = 0;
>>>> +					continue;
>>>> +				}
>>>> 			} else
>>>> 				rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
>>>> 		}
>>>> @@ -589,6 +599,7 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>>> 	}
>>>>
>>>> 	nfs_pp_debug2("failed");
>>>> 	return 0;
>>>>
>>>> out_ok:
>>>>
>>>>
>>>> I'm not sure this is best way either.... 
>>>>
>>>> steved.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>>>> the body of a message to majordomo@vger.kernel.org
>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>
> 

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-27 12:56         ` Steve Dickson
@ 2011-08-27 23:45           ` Chuck Lever
  2011-08-29 14:00             ` Steve Dickson
  0 siblings, 1 reply; 13+ messages in thread
From: Chuck Lever @ 2011-08-27 23:45 UTC (permalink / raw)
  To: Steve Dickson; +Cc: Luk Claes, linux-nfs


On Aug 27, 2011, at 8:56 AM, Steve Dickson wrote:

> Hey,
> 
> On 08/26/2011 09:58 AM, Chuck Lever wrote:
>> 
>> On Aug 25, 2011, at 8:49 PM, Steve Dickson wrote:
>> 
>>> On 08/25/2011 04:46 PM, Chuck Lever wrote:
>>>> 
>>>> On Aug 25, 2011, at 4:25 PM, Steve Dickson wrote:
>>>> 
>>>>> First of all let me apologize for taking so long
>>>>> to get to this... I did take some time off.... 
>>>>> 
>>>>> On 08/06/2011 06:11 AM, Luk Claes wrote:
>>>>>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>>>>>> 
>>>>>> Signed-off-by: Luk Claes <luk@debian.org>
>>>>>> ---
>>>>>> utils/mount/stropts.c |    4 ++--
>>>>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>>>>> 
>>>>>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>>>>>> index f1aa503..8b2799c 100644
>>>>>> --- a/utils/mount/stropts.c
>>>>>> +++ b/utils/mount/stropts.c
>>>>>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>>>>>> 	if (po_append(options, new_option) == PO_FAILED)
>>>>>> 		return 0;
>>>>>> 
>>>>>> -	po_remove_all(options, "port");
>>>>>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>>>>>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>>>>>> +	   nfs_pmap->pm_port != NFS_PORT) {
>>>>>> 		snprintf(new_option, sizeof(new_option) - 1,
>>>>>> 			 "port=%lu", nfs_pmap->pm_port);
>>>>>> 		if (po_append(options, new_option) == PO_FAILED)
>>>>> Now I like the idea of not sending the pmap inquire for the 
>>>>> port when the port is specified on the command because its
>>>>> a TCP connection. During automount storms, wasting TCP connections
>>>>> is not a good thing... 
>>>>> 
>>>>> But your patch does not seem to do that since all the port
>>>>> negotiation is done well before this part of the code.
>>>> 
>>>> I thought the idea was to eliminate the port query during REnegotiation
>>>> if "port=" was specified.  That seems like exactly what the patch does.  
>>> Ah, I did miss the renegotiation aspect... Its been a long day... ;-)
>>> 
>>>> Does the initial port negotiation also have this problem?
>>> Well I was thinking why even do the initial port negotiation when
>>> the port= is set... 
>> 
>> An rpcbind query is still needed if port= is specified but transport or 
>> version options were not. Simply specifying port= does not shut off 
>> negotiation. 
> You are correct. Not only is the port specified but the version is also
> specified as well due to the fact we are in this part of the code. 
> 
>> All three NFS parameters have to be specified to shut off the rpcbind query.
> Why is this such a hard and fast rule?

If we change mount.nfs to go straight to TCP, then it will break mounting servers that support only UDP, when default mount options are used.  We've tried this before (I think quite by accident IIRC), and folks complained about the regression.

> Maybe in the past, when we moved from v2 to v3 and from UDP to TCP, all 
> three were needed but not in day in aged. TCP is now a mandated protocol,
> which almost guarantees it will be support, in present day servers.
> 
> So at this point if have we two of the three, the port and version, why
> not just use the default protocol (TCP) and do the NFS ping?

If a user has already gone to the trouble of specifying vers=3 and port=2049, why can't she simply add proto=tcp,mountproto=udp as well?  It seems to me we have an existing solution to this problem.

> The chances of the ping working are very high plus what is going to break?

What's going to break is users who have servers that listen only on UDP.  Suppose a user requests an NFS mount but specifies no mount options.  Our client will try to connect to those servers via TCP, and such servers will reply with RST.  Our client will then keep trying to connect via TCP, because it will think "RST" means "I'm still booting."  The mount request will eventually fail.  See the recent thread from Shehjar.

>> Doing the MNT request also performs an rpcbind query, but by default both 
>> of those are done via UDP.
> No. The query for the port were going over TCP. That's what caught
> my eye.

Sure, and I agree that bears some investigation.

NFSv2 and NFSv3 perform a MNT request first.  The associated rpcbind query and the MNT request should be done over UDP by default.  If these are not going over UDP by default, then we should change that (and that would be allowed because I believe that's the documented default behavior (he said, without checking)).  What exactly are the mount options used when an extra TCP connection appears?

>From memory, with a text-based mount, by default the kernel should do an rpcbind over UDP, then a MNT request over UDP, then an rpcbind over TCP, and finally a TCP connection to the NFS server; the first operation on the kernel's NFS socket should be NULL (ie, an NFS ping).  We can get rid of that second rpcbind right now by telling afflicted users to specify the NFS version, the transport protocols, and the NFS server port on the mount command line.

Does mount.nfs then also need to do an NFS ping?  That would simply add another TCP connection, which we are trying to avoid.  Plus... I think the change you proposed is for code that is nowadays only invoked during REnegotiation (ie the kernel mount request failed, and kicked it back to user space).  Does that help the automounter storm case?

>> The issue of keeping TCP port usage at a minimum is real and related to 
>> negotiation behavior, but is IMO separate.  My sense is that rpcbind 
>> queries are probably not really a big problem (and of course we would 
>> be wise to quantify this problem before making aggressive changes).
> I don't see this as an aggressive change. I see it as adapting the
> code to present day circumstances.
> 
>> mount.nfs's rpcbind queries should always come from an ephemeral port, 
>> which is a larger resource pool than privileged ports and thus more 
>> difficult to exhaust.  Using NFSv4 more, just by itself, should improve 
>> matters since it skips the rpcbind step by default and doesn't use MNT at all.
> All the above is true. But look at it from the server point of view. 
> During an automount storm, thousands of clients doing v3 mounts. This
> type of short cut will eliminate thousands of TCP the server will have
> to deal with.

The same effect is achieved if we have automounter users add "proto=tcp,mountproto=udp" to their mount command lines.  No code change is needed, and it's backwards compatible with our current negotiation strategy.

Negotiation is the common case, as mount.nfs should "just work" in as many cases as possible.  Automounter in large enterprises is a less frequent case, and one where it is entirely reasonable to tell folks to use more specific mount options to get the behavior they desire.  Changing mount.nfs's negotiation strategy at this point will just make some users (and possibly your test team) angry.

> steved.
> 
>> 
>>>> But we should be careful here: mount.nfs will do an rpcbind query if a port= 
>>>> was specified if there is also some doubt about whether to use TCP or UDP, 
>>>> or what NFS version is available.  The only time rpcbind queries should be 
>>>> completely squashed is when the mount parameters are specified completely 
>>>> (transport, version, and port).
>>> I agree with being careful here... But if some admin is specifying 
>>> a particular port I'm thinking one, they have a clue and two, 99% of 
>>> time the port is correct. So lets just verify the port by using it
>>> NFS ping. So I'm thinking %99 of the time there is no need to create 
>>> that second TCP connection when a port is specified.
>> 
>> I think the kernel already does an NFS ping during mount processing (someone should verify that, of course).  But as I said above, all three NFS parameters [transport, NFS version, and port] have to be specified to avoid the rpcbind query.
>> 
>>> But, here is were we have to be careful. That  1% of the
>>> time the ping fails, for whatever reason... That is when I think
>>> we to consult with the server's rpcbind and the second TCP
>>> connection is justified. 
>>> 
>>> I just thinking making that assuming the specified info
>>> is as good way to save a TCP connection... 
>> 
>> Hrm, I don't see what that buys us.  If the ping fails and the port specified on the mount command line is actually registered on the server, what is the client's recourse?
>> 
>>> 
>>>> 
>>>>> I'm thinking some code has to change in nfs_probe_port() 
>>>>> something like:
>>>>> 
>>>>>  mount.nfs: Do not send pmap inquire when port is specified
>>>>> 
>>>>>  When the port is specified on the command line do not
>>>>>  send a pmap inquire asking for the port. Instead use
>>>>>  the given port in the NFS ping. If the ping fails,
>>>>>  assume a bad port was given and now go ask the server
>>>>>  for the correct port.
>>>> 
>>>> If the server has more than one NFS port enabled, and the client is 
>>>> requesting a port that isn't registered with the server's rpcbind, it 
>>>> shouldn't fall back to the registered port IMO.
>>> True. With this patch there is no fall back. When the NFS ping fails, 
>>> the registered port is obtained; compared to the specified port.
>>> If they are different the mount will fail as it does to today.
>>> 
>>> steved.
>>> 
>>>> 
>>>>>  Signed-off-by: Steve Dickson <steved@redhat.com>
>>>>> 
>>>>> diff --git a/utils/mount/network.c b/utils/mount/network.c
>>>>> index d1f91dc..405c320 100644
>>>>> --- a/utils/mount/network.c
>>>>> +++ b/utils/mount/network.c
>>>>> @@ -545,17 +545,18 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>>>> 	const unsigned int prot = (u_int)pmap->pm_prot, *p_prot;
>>>>> 	const u_short port = (u_short) pmap->pm_port;
>>>>> 	unsigned long vers = pmap->pm_vers;
>>>>> -	unsigned short p_port;
>>>>> +	unsigned short p_port = port;
>>>>> +	int once = 1;
>>>>> 
>>>>> 	memcpy(saddr, sap, salen);
>>>>> 	p_prot = prot ? &prot : protos;
>>>>> 	p_vers = vers ? &vers : versions;
>>>>> -
>>>>> 	for (;;) {
>>>>> 		if (verbose)
>>>>> 			printf(_("%s: prog %lu, trying vers=%lu, prot=%u\n"),
>>>>> 				progname, prog, *p_vers, *p_prot);
>>>>> -		p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>>>>> +		if (!p_port)
>>>>> +			p_port = nfs_getport(saddr, salen, prog, *p_vers, *p_prot);
>>>>> 		if (p_port) {
>>>>> 			if (!port || port == p_port) {
>>>>> 				nfs_set_port(saddr, p_port);
>>>>> @@ -564,6 +565,15 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>>>> 				if (nfs_rpc_ping(saddr, salen, prog,
>>>>> 							*p_vers, *p_prot, NULL))
>>>>> 					goto out_ok;
>>>>> +				if (port == p_port && once) {
>>>>> +					/*
>>>>> +					 * Could be a bad port was specified. This
>>>>> +					 * time ask the server for the port but only
>>>>> +					 * do it once.
>>>>> +					 */
>>>>> +					p_port = once = 0;
>>>>> +					continue;
>>>>> +				}
>>>>> 			} else
>>>>> 				rpc_createerr.cf_stat = RPC_PROGNOTREGISTERED;
>>>>> 		}
>>>>> @@ -589,6 +599,7 @@ static int nfs_probe_port(const struct sockaddr *sap, const socklen_t salen,
>>>>> 	}
>>>>> 
>>>>> 	nfs_pp_debug2("failed");
>>>>> 	return 0;
>>>>> 
>>>>> out_ok:
>>>>> 
>>>>> 
>>>>> I'm not sure this is best way either.... 
>>>>> 
>>>>> steved.
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
>>>>> the body of a message to majordomo@vger.kernel.org
>>>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>>> 
>> 

-- 
Chuck Lever
chuck[dot]lever[at]oracle[dot]com





^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-27 23:45           ` Chuck Lever
@ 2011-08-29 14:00             ` Steve Dickson
  0 siblings, 0 replies; 13+ messages in thread
From: Steve Dickson @ 2011-08-29 14:00 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Luk Claes, linux-nfs

On 08/27/2011 07:45 PM, Chuck Lever wrote:
> 
> On Aug 27, 2011, at 8:56 AM, Steve Dickson wrote:
> 
>> Hey,
>>
>> On 08/26/2011 09:58 AM, Chuck Lever wrote:
>>>
>>> On Aug 25, 2011, at 8:49 PM, Steve Dickson wrote:
>>>
>>>> On 08/25/2011 04:46 PM, Chuck Lever wrote:
>>>>>
>>>>> On Aug 25, 2011, at 4:25 PM, Steve Dickson wrote:
>>>>>
>>>>>> First of all let me apologize for taking so long
>>>>>> to get to this... I did take some time off.... 
>>>>>>
>>>>>> On 08/06/2011 06:11 AM, Luk Claes wrote:
>>>>>>> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
>>>>>>>
>>>>>>> Signed-off-by: Luk Claes <luk@debian.org>
>>>>>>> ---
>>>>>>> utils/mount/stropts.c |    4 ++--
>>>>>>> 1 files changed, 2 insertions(+), 2 deletions(-)
>>>>>>>
>>>>>>> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
>>>>>>> index f1aa503..8b2799c 100644
>>>>>>> --- a/utils/mount/stropts.c
>>>>>>> +++ b/utils/mount/stropts.c
>>>>>>> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>>>>>>> 	if (po_append(options, new_option) == PO_FAILED)
>>>>>>> 		return 0;
>>>>>>>
>>>>>>> -	po_remove_all(options, "port");
>>>>>>> -	if (nfs_pmap->pm_port != NFS_PORT) {
>>>>>>> +	if(po_remove_all(options, "port") == PO_FOUND ||
>>>>>>> +	   nfs_pmap->pm_port != NFS_PORT) {
>>>>>>> 		snprintf(new_option, sizeof(new_option) - 1,
>>>>>>> 			 "port=%lu", nfs_pmap->pm_port);
>>>>>>> 		if (po_append(options, new_option) == PO_FAILED)
>>>>>> Now I like the idea of not sending the pmap inquire for the 
>>>>>> port when the port is specified on the command because its
>>>>>> a TCP connection. During automount storms, wasting TCP connections
>>>>>> is not a good thing... 
>>>>>>
>>>>>> But your patch does not seem to do that since all the port
>>>>>> negotiation is done well before this part of the code.
>>>>>
>>>>> I thought the idea was to eliminate the port query during REnegotiation
>>>>> if "port=" was specified.  That seems like exactly what the patch does.  
>>>> Ah, I did miss the renegotiation aspect... Its been a long day... ;-)
>>>>
>>>>> Does the initial port negotiation also have this problem?
>>>> Well I was thinking why even do the initial port negotiation when
>>>> the port= is set... 
>>>
>>> An rpcbind query is still needed if port= is specified but transport or 
>>> version options were not. Simply specifying port= does not shut off 
>>> negotiation. 
>> You are correct. Not only is the port specified but the version is also
>> specified as well due to the fact we are in this part of the code. 
>>
>>> All three NFS parameters have to be specified to shut off the rpcbind query.
>> Why is this such a hard and fast rule?
> 
> If we change mount.nfs to go straight to TCP, then it will break mounting servers that support only UDP, when default mount options are used.
First of all, this part of the code is not even used with
the default mount options.

Secondly, mounts don't work now with UDP only servers. Since ECONNREFUSED 
is deemed a temporary error, so the mount just spins in the v4 code. 
So a -o v3 has to be used with these types of servers.

And as far as my patch breaking mount to UDP only servers,
that not accurate either. The first TCP connection is refused
then the normal negotiation kicks in. 

> 
>> Maybe in the past, when we moved from v2 to v3 and from UDP to TCP, all 
>> three were needed but not in day in aged. TCP is now a mandated protocol,
>> which almost guarantees it will be support, in present day servers.
>>
>> So at this point if have we two of the three, the port and version, why
>> not just use the default protocol (TCP) and do the NFS ping?
> 
> If a user has already gone to the trouble of specifying vers=3 and port=2049, why can't she simply add proto=tcp,mountproto=udp as well?  
Remember v3 can be specified from the /etc/nfsmount.conf file as well.

> 
>> The chances of the ping working are very high plus what is going to break?
> 
> What's going to break is users who have servers that listen only on UDP.  Suppose a user requests an NFS mount but specifies no mount options.  Our client will try to connect to those servers via TCP, and such servers will reply with RST.  Our client will then keep trying to connect via TCP, because it will think "RST" means "I'm still booting."  The mount request will eventually fail.  See the recent thread from Shehjar.
Again this is not accurate... Please see above. 

> 
>>> Doing the MNT request also performs an rpcbind query, but by default both 
>>> of those are done via UDP.
>> No. The query for the port were going over TCP. That's what caught
>> my eye.
> 
> Sure, and I agree that bears some investigation.
> 
> NFSv2 and NFSv3 perform a MNT request first.  The associated rpcbind query and the MNT request should be done over UDP by default.  If these are not going over UDP by default, then we should change that (and that would be allowed because I believe that's the documented default behavior (he said, without checking)).  What exactly are the mount options used when an extra TCP connection appears?
> 
> From memory, with a text-based mount, by default the kernel should do an rpcbind over UDP, then a MNT request over UDP, then an rpcbind over TCP, and finally a TCP connection to the NFS server; the first operation on the kernel's NFS socket should be NULL (ie, an NFS ping).  We can get rid of that second rpcbind right now by telling afflicted users to specify the NFS version, the transport protocols, and the NFS server port on the mount command line.
> 
> Does mount.nfs then also need to do an NFS ping?  That would simply add another TCP connection, which we are trying to avoid.  Plus... I think the change you proposed is for code that is nowadays only invoked during REnegotiation (ie the kernel mount request failed, and kicked it back to user space).  Does that help the automounter storm case?
> 
>>> The issue of keeping TCP port usage at a minimum is real and related to 
>>> negotiation behavior, but is IMO separate.  My sense is that rpcbind 
>>> queries are probably not really a big problem (and of course we would 
>>> be wise to quantify this problem before making aggressive changes).
>> I don't see this as an aggressive change. I see it as adapting the
>> code to present day circumstances.
>>
>>> mount.nfs's rpcbind queries should always come from an ephemeral port, 
>>> which is a larger resource pool than privileged ports and thus more 
>>> difficult to exhaust.  Using NFSv4 more, just by itself, should improve 
>>> matters since it skips the rpcbind step by default and doesn't use MNT at all.
>> All the above is true. But look at it from the server point of view. 
>> During an automount storm, thousands of clients doing v3 mounts. This
>> type of short cut will eliminate thousands of TCP the server will have
>> to deal with.
> 
> The same effect is achieved if we have automounter users add "proto=tcp,mountproto=udp" to their mount command lines.  No code change is needed, and it's backwards compatible with our current negotiation strategy.
> 
> Negotiation is the common case, as mount.nfs should "just work" in as many cases as possible.  Automounter in large enterprises is a less frequent case, and one where it is entirely reasonable to tell folks to use more specific mount options to get the behavior they desire.  Changing mount.nfs's negotiation strategy at this point will just make some users (and possibly your test team) angry.
This is getting a bit blown out of portion... IMHO... This is just
a small tweak that will save the need for one TCP connection by
making an assumption that TCP is default protocol... Not a 
big deal... 

I have to move on...


steved.



^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH] mount.nfs: Preserve any explicit port=2049 option
  2011-08-06 10:11 [PATCH] mount.nfs: Preserve any explicit port=2049 option Luk Claes
  2011-08-06 17:01 ` Chuck Lever
  2011-08-25 20:25 ` Steve Dickson
@ 2011-09-14 18:26 ` Steve Dickson
  2 siblings, 0 replies; 13+ messages in thread
From: Steve Dickson @ 2011-09-14 18:26 UTC (permalink / raw)
  To: Luk Claes; +Cc: linux-nfs



On 08/06/2011 06:11 AM, Luk Claes wrote:
> If NFS port (2049) is supplied explicitly, don't ignore this setting by requesting it to portmapper again. Thanks to Ben Hutchings <ben@decadent.org.uk> for the patch.
> 
> Signed-off-by: Luk Claes <luk@debian.org>
Committed....

steved.

> ---
>  utils/mount/stropts.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
> index f1aa503..8b2799c 100644
> --- a/utils/mount/stropts.c
> +++ b/utils/mount/stropts.c
> @@ -437,8 +437,8 @@ static int nfs_construct_new_options(struct mount_options *options,
>  	if (po_append(options, new_option) == PO_FAILED)
>  		return 0;
>  
> -	po_remove_all(options, "port");
> -	if (nfs_pmap->pm_port != NFS_PORT) {
> +	if(po_remove_all(options, "port") == PO_FOUND ||
> +	   nfs_pmap->pm_port != NFS_PORT) {
>  		snprintf(new_option, sizeof(new_option) - 1,
>  			 "port=%lu", nfs_pmap->pm_port);
>  		if (po_append(options, new_option) == PO_FAILED)

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2011-09-14 18:26 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-06 10:11 [PATCH] mount.nfs: Preserve any explicit port=2049 option Luk Claes
2011-08-06 17:01 ` Chuck Lever
2011-08-06 17:06   ` Luk Claes
2011-08-07 14:51     ` Chuck Lever
2011-08-25 20:25 ` Steve Dickson
2011-08-25 20:46   ` Chuck Lever
2011-08-25 22:32     ` Jim Rees
2011-08-26  0:49     ` Steve Dickson
2011-08-26 13:58       ` Chuck Lever
2011-08-27 12:56         ` Steve Dickson
2011-08-27 23:45           ` Chuck Lever
2011-08-29 14:00             ` Steve Dickson
2011-09-14 18:26 ` Steve Dickson

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.