Commit 78ea323b authored by Trond Myklebust's avatar Trond Myklebust

NFSv4: Don't use cred->cr_ops->cr_name in nfs4_proc_setclientid()

With the recent change to generic creds, we can no longer use
cred->cr_ops->cr_name to distinguish between RPCSEC_GSS principals and
AUTH_SYS/AUTH_NULL identities. Replace it with the rpc_authops->au_name
instead...
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 44109241
...@@ -2885,7 +2885,7 @@ int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short po ...@@ -2885,7 +2885,7 @@ int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, unsigned short po
RPC_DISPLAY_ADDR), RPC_DISPLAY_ADDR),
rpc_peeraddr2str(clp->cl_rpcclient, rpc_peeraddr2str(clp->cl_rpcclient,
RPC_DISPLAY_PROTO), RPC_DISPLAY_PROTO),
cred->cr_ops->cr_name, clp->cl_rpcclient->cl_auth->au_ops->au_name,
clp->cl_id_uniquifier); clp->cl_id_uniquifier);
setclientid.sc_netid_len = scnprintf(setclientid.sc_netid, setclientid.sc_netid_len = scnprintf(setclientid.sc_netid,
sizeof(setclientid.sc_netid), sizeof(setclientid.sc_netid),
......
...@@ -96,9 +96,7 @@ struct rpc_auth { ...@@ -96,9 +96,7 @@ struct rpc_auth {
struct rpc_authops { struct rpc_authops {
struct module *owner; struct module *owner;
rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */ rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
#ifdef RPC_DEBUG
char * au_name; char * au_name;
#endif
struct rpc_auth * (*create)(struct rpc_clnt *, rpc_authflavor_t); struct rpc_auth * (*create)(struct rpc_clnt *, rpc_authflavor_t);
void (*destroy)(struct rpc_auth *); void (*destroy)(struct rpc_auth *);
......
...@@ -136,9 +136,7 @@ static struct rpc_cred_cache generic_cred_cache = { ...@@ -136,9 +136,7 @@ static struct rpc_cred_cache generic_cred_cache = {
static const struct rpc_authops generic_auth_ops = { static const struct rpc_authops generic_auth_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
#ifdef RPC_DEBUG
.au_name = "Generic", .au_name = "Generic",
#endif
.lookup_cred = generic_lookup_cred, .lookup_cred = generic_lookup_cred,
.crcreate = generic_create_cred, .crcreate = generic_create_cred,
}; };
......
...@@ -1287,9 +1287,7 @@ gss_unwrap_resp(struct rpc_task *task, ...@@ -1287,9 +1287,7 @@ gss_unwrap_resp(struct rpc_task *task,
static const struct rpc_authops authgss_ops = { static const struct rpc_authops authgss_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.au_flavor = RPC_AUTH_GSS, .au_flavor = RPC_AUTH_GSS,
#ifdef RPC_DEBUG
.au_name = "RPCSEC_GSS", .au_name = "RPCSEC_GSS",
#endif
.create = gss_create, .create = gss_create,
.destroy = gss_destroy, .destroy = gss_destroy,
.lookup_cred = gss_lookup_cred, .lookup_cred = gss_lookup_cred,
......
...@@ -104,9 +104,7 @@ nul_validate(struct rpc_task *task, __be32 *p) ...@@ -104,9 +104,7 @@ nul_validate(struct rpc_task *task, __be32 *p)
const struct rpc_authops authnull_ops = { const struct rpc_authops authnull_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.au_flavor = RPC_AUTH_NULL, .au_flavor = RPC_AUTH_NULL,
#ifdef RPC_DEBUG
.au_name = "NULL", .au_name = "NULL",
#endif
.create = nul_create, .create = nul_create,
.destroy = nul_destroy, .destroy = nul_destroy,
.lookup_cred = nul_lookup_cred, .lookup_cred = nul_lookup_cred,
......
...@@ -210,9 +210,7 @@ void __init rpc_init_authunix(void) ...@@ -210,9 +210,7 @@ void __init rpc_init_authunix(void)
const struct rpc_authops authunix_ops = { const struct rpc_authops authunix_ops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.au_flavor = RPC_AUTH_UNIX, .au_flavor = RPC_AUTH_UNIX,
#ifdef RPC_DEBUG
.au_name = "UNIX", .au_name = "UNIX",
#endif
.create = unx_create, .create = unx_create,
.destroy = unx_destroy, .destroy = unx_destroy,
.lookup_cred = unx_lookup_cred, .lookup_cred = unx_lookup_cred,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment