2 * linux/net/sunrpc/svcauth.c
4 * The generic interface for RPC authentication on the server side.
9 * 19-Apr-2000 Chris Evans - Security fix
12 #include <linux/types.h>
13 #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>
21 #define RPCDBG_FACILITY RPCDBG_AUTH
25 * Table of authenticators
27 extern struct auth_ops svcauth_null;
28 extern struct auth_ops svcauth_unix;
30 static 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,
35 static struct auth_ops *
36 svc_get_auth_ops(rpc_authflavor_t flavor)
38 struct auth_ops *aops;
40 if (flavor >= RPC_AUTH_MAXFLAVOR)
43 aops = rcu_dereference(authtab[flavor]);
44 if (aops != NULL && !try_module_get(aops->owner))
51 svc_put_auth_ops(struct auth_ops *aops)
53 module_put(aops->owner);
57 svc_authenticate(struct svc_rqst *rqstp, __be32 *authp)
59 rpc_authflavor_t flavor;
60 struct auth_ops *aops;
64 flavor = svc_getnl(&rqstp->rq_arg.head[0]);
66 dprintk("svc: svc_authenticate (%d)\n", flavor);
68 aops = svc_get_auth_ops(flavor);
70 *authp = rpc_autherr_badcred;
74 rqstp->rq_auth_slack = 0;
75 init_svc_cred(&rqstp->rq_cred);
77 rqstp->rq_authop = aops;
78 return aops->accept(rqstp, authp);
80 EXPORT_SYMBOL_GPL(svc_authenticate);
82 int svc_set_client(struct svc_rqst *rqstp)
84 rqstp->rq_client = NULL;
85 return rqstp->rq_authop->set_client(rqstp);
87 EXPORT_SYMBOL_GPL(svc_set_client);
89 /* A request, which was authenticated, has now executed.
90 * Time to finalise the credentials and verifier
91 * and release and resources
93 int svc_authorise(struct svc_rqst *rqstp)
95 struct auth_ops *aops = rqstp->rq_authop;
98 rqstp->rq_authop = NULL;
101 rv = aops->release(rqstp);
102 svc_put_auth_ops(aops);
108 svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops)
110 struct auth_ops *old;
113 if (flavor < RPC_AUTH_MAXFLAVOR) {
114 old = cmpxchg((struct auth_ops ** __force)&authtab[flavor], NULL, aops);
115 if (old == NULL || old == aops)
120 EXPORT_SYMBOL_GPL(svc_auth_register);
123 svc_auth_unregister(rpc_authflavor_t flavor)
125 if (flavor < RPC_AUTH_MAXFLAVOR)
126 rcu_assign_pointer(authtab[flavor], NULL);
128 EXPORT_SYMBOL_GPL(svc_auth_unregister);
130 /**************************************************
131 * '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.
139 #define DN_HASHBITS 6
140 #define DN_HASHMAX (1<<DN_HASHBITS)
142 static struct hlist_head auth_domain_table[DN_HASHMAX];
143 static DEFINE_SPINLOCK(auth_domain_lock);
145 static void auth_domain_release(struct kref *kref)
146 __releases(&auth_domain_lock)
148 struct auth_domain *dom = container_of(kref, struct auth_domain, ref);
150 hlist_del_rcu(&dom->hash);
151 dom->flavour->domain_release(dom);
152 spin_unlock(&auth_domain_lock);
155 void auth_domain_put(struct auth_domain *dom)
157 kref_put_lock(&dom->ref, auth_domain_release, &auth_domain_lock);
159 EXPORT_SYMBOL_GPL(auth_domain_put);
162 auth_domain_lookup(char *name, struct auth_domain *new)
164 struct auth_domain *hp;
165 struct hlist_head *head;
167 head = &auth_domain_table[hash_str(name, DN_HASHBITS)];
169 spin_lock(&auth_domain_lock);
171 hlist_for_each_entry(hp, head, hash) {
172 if (strcmp(hp->name, name)==0) {
174 spin_unlock(&auth_domain_lock);
179 hlist_add_head_rcu(&new->hash, head);
180 spin_unlock(&auth_domain_lock);
183 EXPORT_SYMBOL_GPL(auth_domain_lookup);
185 struct auth_domain *auth_domain_find(char *name)
187 struct auth_domain *hp;
188 struct hlist_head *head;
190 head = &auth_domain_table[hash_str(name, DN_HASHBITS)];
193 hlist_for_each_entry_rcu(hp, head, hash) {
194 if (strcmp(hp->name, name)==0) {
195 if (!kref_get_unless_zero(&hp->ref))
204 EXPORT_SYMBOL_GPL(auth_domain_find);