blob: 775b8c94265bc329e3a36bf8b3010e53f054c1e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/svcauth.c
3 *
4 * The generic interface for RPC authentication on the server side.
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 *
8 * CHANGES
9 * 19-Apr-2000 Chris Evans - Security fix
10 */
11
12#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/sunrpc/types.h>
15#include <linux/sunrpc/xdr.h>
16#include <linux/sunrpc/svcsock.h>
17#include <linux/sunrpc/svcauth.h>
18#include <linux/err.h>
19#include <linux/hash.h>
20
21#define RPCDBG_FACILITY RPCDBG_AUTH
22
23
24/*
25 * Table of authenticators
26 */
27extern struct auth_ops svcauth_null;
28extern struct auth_ops svcauth_unix;
29
Trond Myklebust30382d62018-10-01 10:41:43 -040030static struct auth_ops __rcu *authtab[RPC_AUTH_MAXFLAVOR] = {
31 [RPC_AUTH_NULL] = (struct auth_ops __force __rcu *)&svcauth_null,
32 [RPC_AUTH_UNIX] = (struct auth_ops __force __rcu *)&svcauth_unix,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Trond Myklebust30382d62018-10-01 10:41:43 -040035static struct auth_ops *
36svc_get_auth_ops(rpc_authflavor_t flavor)
37{
38 struct auth_ops *aops;
39
40 if (flavor >= RPC_AUTH_MAXFLAVOR)
41 return NULL;
42 rcu_read_lock();
43 aops = rcu_dereference(authtab[flavor]);
44 if (aops != NULL && !try_module_get(aops->owner))
45 aops = NULL;
46 rcu_read_unlock();
47 return aops;
48}
49
50static void
51svc_put_auth_ops(struct auth_ops *aops)
52{
53 module_put(aops->owner);
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056int
Alexey Dobriyand8ed0292006-09-26 22:29:38 -070057svc_authenticate(struct svc_rqst *rqstp, __be32 *authp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 rpc_authflavor_t flavor;
60 struct auth_ops *aops;
61
62 *authp = rpc_auth_ok;
63
Alexey Dobriyan76994312006-09-26 22:28:46 -070064 flavor = svc_getnl(&rqstp->rq_arg.head[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66 dprintk("svc: svc_authenticate (%d)\n", flavor);
67
Trond Myklebust30382d62018-10-01 10:41:43 -040068 aops = svc_get_auth_ops(flavor);
69 if (aops == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 *authp = rpc_autherr_badcred;
71 return SVC_DENIED;
72 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -040074 rqstp->rq_auth_slack = 0;
J. Bruce Fields6496500c2015-11-20 15:45:35 -050075 init_svc_cred(&rqstp->rq_cred);
J. Bruce Fieldsa5cddc82014-05-12 18:10:58 -040076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 rqstp->rq_authop = aops;
78 return aops->accept(rqstp, authp);
79}
Trond Myklebust24c37672008-12-23 16:30:12 -050080EXPORT_SYMBOL_GPL(svc_authenticate);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82int svc_set_client(struct svc_rqst *rqstp)
83{
J. Bruce Fields6496500c2015-11-20 15:45:35 -050084 rqstp->rq_client = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 return rqstp->rq_authop->set_client(rqstp);
86}
Trond Myklebust24c37672008-12-23 16:30:12 -050087EXPORT_SYMBOL_GPL(svc_set_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/* A request, which was authenticated, has now executed.
Michael Opdenacker59c51592007-05-09 08:57:56 +020090 * Time to finalise the credentials and verifier
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * and release and resources
92 */
93int svc_authorise(struct svc_rqst *rqstp)
94{
95 struct auth_ops *aops = rqstp->rq_authop;
96 int rv = 0;
97
98 rqstp->rq_authop = NULL;
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -080099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (aops) {
101 rv = aops->release(rqstp);
Trond Myklebust30382d62018-10-01 10:41:43 -0400102 svc_put_auth_ops(aops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 }
104 return rv;
105}
106
107int
108svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops)
109{
Trond Myklebust30382d62018-10-01 10:41:43 -0400110 struct auth_ops *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int rv = -EINVAL;
Trond Myklebust30382d62018-10-01 10:41:43 -0400112
113 if (flavor < RPC_AUTH_MAXFLAVOR) {
114 old = cmpxchg((struct auth_ops ** __force)&authtab[flavor], NULL, aops);
115 if (old == NULL || old == aops)
116 rv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return rv;
119}
Trond Myklebust24c37672008-12-23 16:30:12 -0500120EXPORT_SYMBOL_GPL(svc_auth_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122void
123svc_auth_unregister(rpc_authflavor_t flavor)
124{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (flavor < RPC_AUTH_MAXFLAVOR)
Trond Myklebust30382d62018-10-01 10:41:43 -0400126 rcu_assign_pointer(authtab[flavor], NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
Trond Myklebust24c37672008-12-23 16:30:12 -0500128EXPORT_SYMBOL_GPL(svc_auth_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/**************************************************
NeilBrownefc36aa2006-03-27 01:14:59 -0800131 * 'auth_domains' are stored in a hash table indexed by name.
132 * When the last reference to an 'auth_domain' is dropped,
133 * the object is unhashed and freed.
134 * If auth_domain_lookup fails to find an entry, it will return
135 * it's second argument 'new'. If this is non-null, it will
136 * have been atomically linked into the table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139#define DN_HASHBITS 6
140#define DN_HASHMAX (1<<DN_HASHBITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
NeilBrownefc36aa2006-03-27 01:14:59 -0800142static struct hlist_head auth_domain_table[DN_HASHMAX];
Fabian Frederick3eb15f22016-12-04 13:45:28 +0100143static DEFINE_SPINLOCK(auth_domain_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Peter Zijlstra0a13cd12016-11-14 18:03:11 +0100145static void auth_domain_release(struct kref *kref)
Trond Myklebust608a0ab2018-10-01 10:41:44 -0400146 __releases(&auth_domain_lock)
Peter Zijlstra0a13cd12016-11-14 18:03:11 +0100147{
148 struct auth_domain *dom = container_of(kref, struct auth_domain, ref);
149
Trond Myklebust608a0ab2018-10-01 10:41:44 -0400150 hlist_del_rcu(&dom->hash);
Peter Zijlstra0a13cd12016-11-14 18:03:11 +0100151 dom->flavour->domain_release(dom);
152 spin_unlock(&auth_domain_lock);
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155void auth_domain_put(struct auth_domain *dom)
156{
Peter Zijlstra0a13cd12016-11-14 18:03:11 +0100157 kref_put_lock(&dom->ref, auth_domain_release, &auth_domain_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
Trond Myklebust24c37672008-12-23 16:30:12 -0500159EXPORT_SYMBOL_GPL(auth_domain_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161struct auth_domain *
NeilBrownefc36aa2006-03-27 01:14:59 -0800162auth_domain_lookup(char *name, struct auth_domain *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
NeilBrownefc36aa2006-03-27 01:14:59 -0800164 struct auth_domain *hp;
165 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
NeilBrownefc36aa2006-03-27 01:14:59 -0800167 head = &auth_domain_table[hash_str(name, DN_HASHBITS)];
168
169 spin_lock(&auth_domain_lock);
170
Sasha Levinb67bfe02013-02-27 17:06:00 -0800171 hlist_for_each_entry(hp, head, hash) {
NeilBrownefc36aa2006-03-27 01:14:59 -0800172 if (strcmp(hp->name, name)==0) {
173 kref_get(&hp->ref);
174 spin_unlock(&auth_domain_lock);
175 return hp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Neil Brownd6740df2006-10-29 22:46:45 -0800178 if (new)
Trond Myklebust608a0ab2018-10-01 10:41:44 -0400179 hlist_add_head_rcu(&new->hash, head);
NeilBrownefc36aa2006-03-27 01:14:59 -0800180 spin_unlock(&auth_domain_lock);
181 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
Trond Myklebust24c37672008-12-23 16:30:12 -0500183EXPORT_SYMBOL_GPL(auth_domain_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185struct auth_domain *auth_domain_find(char *name)
186{
Trond Myklebust608a0ab2018-10-01 10:41:44 -0400187 struct auth_domain *hp;
188 struct hlist_head *head;
189
190 head = &auth_domain_table[hash_str(name, DN_HASHBITS)];
191
192 rcu_read_lock();
193 hlist_for_each_entry_rcu(hp, head, hash) {
194 if (strcmp(hp->name, name)==0) {
195 if (!kref_get_unless_zero(&hp->ref))
196 hp = NULL;
197 rcu_read_unlock();
198 return hp;
199 }
200 }
201 rcu_read_unlock();
202 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
Trond Myklebust24c37672008-12-23 16:30:12 -0500204EXPORT_SYMBOL_GPL(auth_domain_find);