perf bpf: Move perf_event_output() from stdio.h to bpf.h
[linux/fpc-iii.git] / net / sunrpc / svcauth.c
blob775b8c94265bc329e3a36bf8b3010e53f054c1e2
1 /*
2 * linux/net/sunrpc/svcauth.c
4 * The generic interface for RPC authentication on the server side.
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
8 * CHANGES
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)
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;
50 static void
51 svc_put_auth_ops(struct auth_ops *aops)
53 module_put(aops->owner);
56 int
57 svc_authenticate(struct svc_rqst *rqstp, __be32 *authp)
59 rpc_authflavor_t flavor;
60 struct auth_ops *aops;
62 *authp = rpc_auth_ok;
64 flavor = svc_getnl(&rqstp->rq_arg.head[0]);
66 dprintk("svc: svc_authenticate (%d)\n", flavor);
68 aops = svc_get_auth_ops(flavor);
69 if (aops == NULL) {
70 *authp = rpc_autherr_badcred;
71 return SVC_DENIED;
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;
96 int rv = 0;
98 rqstp->rq_authop = NULL;
100 if (aops) {
101 rv = aops->release(rqstp);
102 svc_put_auth_ops(aops);
104 return rv;
108 svc_auth_register(rpc_authflavor_t flavor, struct auth_ops *aops)
110 struct auth_ops *old;
111 int rv = -EINVAL;
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;
118 return rv;
120 EXPORT_SYMBOL_GPL(svc_auth_register);
122 void
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);
161 struct auth_domain *
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) {
173 kref_get(&hp->ref);
174 spin_unlock(&auth_domain_lock);
175 return hp;
178 if (new)
179 hlist_add_head_rcu(&new->hash, head);
180 spin_unlock(&auth_domain_lock);
181 return new;
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)];
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;
201 rcu_read_unlock();
202 return NULL;
204 EXPORT_SYMBOL_GPL(auth_domain_find);