diff mbox

[1/1] NFS: try RPC_AUTH_GSS_KRB5 after RPC_AUTH_GSS_KRB5I for cl_rpcclient

Message ID 1418842043-15074-2-git-send-email-andros@netapp.com (mailing list archive)
State New, archived
Headers show

Commit Message

Andy Adamson Dec. 17, 2014, 6:47 p.m. UTC
From: Andy Adamson <andros@netapp.com>

Some servers implement KRB5 but not KRB5I. With out this patch, said servers
will use AUTH_UNIX for state creation, even when exporting a volume with krb5.

Signed-off-by: Andy Adamson <andros@netapp.com>
---
 fs/nfs/nfs4state.c | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
diff mbox

Patch

diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
index 5194933..a56ad3f 100644
--- a/fs/nfs/nfs4state.c
+++ b/fs/nfs/nfs4state.c
@@ -2063,6 +2063,21 @@  again:
 			nfs4_root_machine_cred(clp);
 			goto again;
 		}
+		if (clnt->cl_auth->au_flavor == RPC_AUTH_GSS_KRB5I) {
+			clnt = rpc_clone_client_set_auth(clnt, RPC_AUTH_GSS_KRB5);
+			if (IS_ERR(clnt)) {
+				status = PTR_ERR(clnt);
+				break;
+			}
+			/* Note: this is safe because we haven't yet marked the
+			 * client as ready, so we are the only user of
+			 * clp->cl_rpcclient
+			 */
+			clnt = xchg(&clp->cl_rpcclient, clnt);
+			rpc_shutdown_client(clnt);
+			clnt = clp->cl_rpcclient;
+			goto again;
+		}
 		if (clnt->cl_auth->au_flavor == RPC_AUTH_UNIX)
 			break;
 	case -NFS4ERR_CLID_INUSE: