Disable attempts to establish a callback connection from the
experimental NFSv4 server to a NFSv4 client when delegations are not being issued, even if the client advertises a callback path. This avoids a problem where a Linux client advertises a callback path that doesn't work, due to a firewall, and then times out an Open attempt before the FreeBSD server gives up its callback connection attempt. (Suggested by drb at karlov.mff.cuni.cz to fix the Linux client problem that he reported on the fs-stable mailing list.) The server should probably have a 1sec timeout on callback connection attempts when there are no delegations issued to the client, but that patch will require changes to the krpc and this serves as a work around until then. Tested by: drb at karlov.mff.cuni.cz MFC after: 5 days
This commit is contained in:
parent
96417c3f8c
commit
b4a8d95279
@ -147,12 +147,20 @@ nfsrv_setclient(struct nfsrv_descript *nd, struct nfsclient **new_clpp,
|
||||
if (nfsrv_openpluslock > NFSRV_V4STATELIMIT)
|
||||
return (NFSERR_RESOURCE);
|
||||
|
||||
if ((nd->nd_flag & ND_GSS) && nfsrv_nogsscallback)
|
||||
if (nfsrv_issuedelegs == 0 ||
|
||||
((nd->nd_flag & ND_GSS) != 0 && nfsrv_nogsscallback != 0))
|
||||
/*
|
||||
* Don't do callbacks for AUTH_GSS.
|
||||
* (Since these aren't yet debugged, they might cause the
|
||||
* server to crap out, if they get past the Init call to
|
||||
* the client.)
|
||||
* Don't do callbacks when delegations are disabled or
|
||||
* for AUTH_GSS unless enabled via nfsrv_nogsscallback.
|
||||
* If establishing a callback connection is attempted
|
||||
* when a firewall is blocking the callback path, the
|
||||
* server may wait too long for the connect attempt to
|
||||
* succeed during the Open. Some clients, such as Linux,
|
||||
* may timeout and give up on the Open before the server
|
||||
* replies. Also, since AUTH_GSS callbacks are not
|
||||
* yet interoperability tested, they might cause the
|
||||
* server to crap out, if they get past the Init call to
|
||||
* the client.
|
||||
*/
|
||||
new_clp->lc_program = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user