blob: 1ca89c36da7abaa629e5485b0b04ca25afe42a69 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/auth.c
3 *
4 * Generic RPC client authentication API.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#include <linux/types.h>
10#include <linux/sched.h>
11#include <linux/module.h>
12#include <linux/slab.h>
13#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/sunrpc/clnt.h>
15#include <linux/spinlock.h>
16
17#ifdef RPC_DEBUG
18# define RPCDBG_FACILITY RPCDBG_AUTH
19#endif
20
21static struct rpc_authops * auth_flavors[RPC_AUTH_MAXFLAVOR] = {
22 &authnull_ops, /* AUTH_NULL */
23 &authunix_ops, /* AUTH_UNIX */
24 NULL, /* others can be loadable modules */
25};
26
27static u32
28pseudoflavor_to_flavor(u32 flavor) {
29 if (flavor >= RPC_AUTH_MAXFLAVOR)
30 return RPC_AUTH_GSS;
31 return flavor;
32}
33
34int
35rpcauth_register(struct rpc_authops *ops)
36{
37 rpc_authflavor_t flavor;
38
39 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
40 return -EINVAL;
41 if (auth_flavors[flavor] != NULL)
42 return -EPERM; /* what else? */
43 auth_flavors[flavor] = ops;
44 return 0;
45}
46
47int
48rpcauth_unregister(struct rpc_authops *ops)
49{
50 rpc_authflavor_t flavor;
51
52 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
53 return -EINVAL;
54 if (auth_flavors[flavor] != ops)
55 return -EPERM; /* what else? */
56 auth_flavors[flavor] = NULL;
57 return 0;
58}
59
60struct rpc_auth *
61rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
62{
63 struct rpc_auth *auth;
64 struct rpc_authops *ops;
65 u32 flavor = pseudoflavor_to_flavor(pseudoflavor);
66
67 if (flavor >= RPC_AUTH_MAXFLAVOR || !(ops = auth_flavors[flavor]))
J. Bruce Fields6a192752005-06-22 17:16:23 +000068 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 auth = ops->create(clnt, pseudoflavor);
J. Bruce Fields6a192752005-06-22 17:16:23 +000070 if (IS_ERR(auth))
71 return auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (clnt->cl_auth)
73 rpcauth_destroy(clnt->cl_auth);
74 clnt->cl_auth = auth;
75 return auth;
76}
77
78void
79rpcauth_destroy(struct rpc_auth *auth)
80{
81 if (!atomic_dec_and_test(&auth->au_count))
82 return;
83 auth->au_ops->destroy(auth);
84}
85
86static DEFINE_SPINLOCK(rpc_credcache_lock);
87
88/*
89 * Initialize RPC credential cache
90 */
91int
92rpcauth_init_credcache(struct rpc_auth *auth, unsigned long expire)
93{
94 struct rpc_cred_cache *new;
95 int i;
96
Kris Katterjohn8b3a7002006-01-11 15:56:43 -080097 new = kmalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (!new)
99 return -ENOMEM;
100 for (i = 0; i < RPC_CREDCACHE_NR; i++)
101 INIT_HLIST_HEAD(&new->hashtable[i]);
102 new->expire = expire;
103 new->nextgc = jiffies + (expire >> 1);
104 auth->au_credcache = new;
105 return 0;
106}
107
108/*
109 * Destroy a list of credentials
110 */
111static inline
112void rpcauth_destroy_credlist(struct hlist_head *head)
113{
114 struct rpc_cred *cred;
115
116 while (!hlist_empty(head)) {
117 cred = hlist_entry(head->first, struct rpc_cred, cr_hash);
118 hlist_del_init(&cred->cr_hash);
119 put_rpccred(cred);
120 }
121}
122
123/*
124 * Clear the RPC credential cache, and delete those credentials
125 * that are not referenced.
126 */
127void
128rpcauth_free_credcache(struct rpc_auth *auth)
129{
130 struct rpc_cred_cache *cache = auth->au_credcache;
131 HLIST_HEAD(free);
132 struct hlist_node *pos, *next;
133 struct rpc_cred *cred;
134 int i;
135
136 spin_lock(&rpc_credcache_lock);
137 for (i = 0; i < RPC_CREDCACHE_NR; i++) {
138 hlist_for_each_safe(pos, next, &cache->hashtable[i]) {
139 cred = hlist_entry(pos, struct rpc_cred, cr_hash);
140 __hlist_del(&cred->cr_hash);
141 hlist_add_head(&cred->cr_hash, &free);
142 }
143 }
144 spin_unlock(&rpc_credcache_lock);
145 rpcauth_destroy_credlist(&free);
146}
147
148static void
149rpcauth_prune_expired(struct rpc_auth *auth, struct rpc_cred *cred, struct hlist_head *free)
150{
151 if (atomic_read(&cred->cr_count) != 1)
152 return;
153 if (time_after(jiffies, cred->cr_expire + auth->au_credcache->expire))
154 cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
155 if (!(cred->cr_flags & RPCAUTH_CRED_UPTODATE)) {
156 __hlist_del(&cred->cr_hash);
157 hlist_add_head(&cred->cr_hash, free);
158 }
159}
160
161/*
162 * Remove stale credentials. Avoid sleeping inside the loop.
163 */
164static void
165rpcauth_gc_credcache(struct rpc_auth *auth, struct hlist_head *free)
166{
167 struct rpc_cred_cache *cache = auth->au_credcache;
168 struct hlist_node *pos, *next;
169 struct rpc_cred *cred;
170 int i;
171
172 dprintk("RPC: gc'ing RPC credentials for auth %p\n", auth);
173 for (i = 0; i < RPC_CREDCACHE_NR; i++) {
174 hlist_for_each_safe(pos, next, &cache->hashtable[i]) {
175 cred = hlist_entry(pos, struct rpc_cred, cr_hash);
176 rpcauth_prune_expired(auth, cred, free);
177 }
178 }
179 cache->nextgc = jiffies + cache->expire;
180}
181
182/*
183 * Look up a process' credentials in the authentication cache
184 */
185struct rpc_cred *
186rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
Trond Myklebust8a317762006-02-01 12:18:36 -0500187 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 struct rpc_cred_cache *cache = auth->au_credcache;
190 HLIST_HEAD(free);
191 struct hlist_node *pos, *next;
192 struct rpc_cred *new = NULL,
193 *cred = NULL;
194 int nr = 0;
195
Trond Myklebust8a317762006-02-01 12:18:36 -0500196 if (!(flags & RPCAUTH_LOOKUP_ROOTCREDS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 nr = acred->uid & RPC_CREDCACHE_MASK;
198retry:
199 spin_lock(&rpc_credcache_lock);
200 if (time_before(cache->nextgc, jiffies))
201 rpcauth_gc_credcache(auth, &free);
202 hlist_for_each_safe(pos, next, &cache->hashtable[nr]) {
203 struct rpc_cred *entry;
204 entry = hlist_entry(pos, struct rpc_cred, cr_hash);
Trond Myklebust8a317762006-02-01 12:18:36 -0500205 if (entry->cr_ops->crmatch(acred, entry, flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 hlist_del(&entry->cr_hash);
207 cred = entry;
208 break;
209 }
210 rpcauth_prune_expired(auth, entry, &free);
211 }
212 if (new) {
213 if (cred)
214 hlist_add_head(&new->cr_hash, &free);
215 else
216 cred = new;
217 }
218 if (cred) {
219 hlist_add_head(&cred->cr_hash, &cache->hashtable[nr]);
220 get_rpccred(cred);
221 }
222 spin_unlock(&rpc_credcache_lock);
223
224 rpcauth_destroy_credlist(&free);
225
226 if (!cred) {
Trond Myklebust8a317762006-02-01 12:18:36 -0500227 new = auth->au_ops->crcreate(auth, acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (!IS_ERR(new)) {
229#ifdef RPC_DEBUG
230 new->cr_magic = RPCAUTH_CRED_MAGIC;
231#endif
232 goto retry;
233 } else
234 cred = new;
235 }
236
237 return (struct rpc_cred *) cred;
238}
239
240struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500241rpcauth_lookupcred(struct rpc_auth *auth, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 struct auth_cred acred = {
244 .uid = current->fsuid,
245 .gid = current->fsgid,
246 .group_info = current->group_info,
247 };
248 struct rpc_cred *ret;
249
250 dprintk("RPC: looking up %s cred\n",
251 auth->au_ops->au_name);
252 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500253 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 put_group_info(acred.group_info);
255 return ret;
256}
257
258struct rpc_cred *
259rpcauth_bindcred(struct rpc_task *task)
260{
261 struct rpc_auth *auth = task->tk_auth;
262 struct auth_cred acred = {
263 .uid = current->fsuid,
264 .gid = current->fsgid,
265 .group_info = current->group_info,
266 };
267 struct rpc_cred *ret;
Trond Myklebust8a317762006-02-01 12:18:36 -0500268 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 dprintk("RPC: %4d looking up %s cred\n",
271 task->tk_pid, task->tk_auth->au_ops->au_name);
272 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500273 if (task->tk_flags & RPC_TASK_ROOTCREDS)
274 flags |= RPCAUTH_LOOKUP_ROOTCREDS;
275 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (!IS_ERR(ret))
277 task->tk_msg.rpc_cred = ret;
278 else
279 task->tk_status = PTR_ERR(ret);
280 put_group_info(acred.group_info);
281 return ret;
282}
283
284void
285rpcauth_holdcred(struct rpc_task *task)
286{
287 dprintk("RPC: %4d holding %s cred %p\n",
288 task->tk_pid, task->tk_auth->au_ops->au_name, task->tk_msg.rpc_cred);
289 if (task->tk_msg.rpc_cred)
290 get_rpccred(task->tk_msg.rpc_cred);
291}
292
293void
294put_rpccred(struct rpc_cred *cred)
295{
296 cred->cr_expire = jiffies;
297 if (!atomic_dec_and_test(&cred->cr_count))
298 return;
299 cred->cr_ops->crdestroy(cred);
300}
301
302void
303rpcauth_unbindcred(struct rpc_task *task)
304{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct rpc_cred *cred = task->tk_msg.rpc_cred;
306
307 dprintk("RPC: %4d releasing %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500308 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 put_rpccred(cred);
311 task->tk_msg.rpc_cred = NULL;
312}
313
314u32 *
315rpcauth_marshcred(struct rpc_task *task, u32 *p)
316{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct rpc_cred *cred = task->tk_msg.rpc_cred;
318
319 dprintk("RPC: %4d marshaling %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500320 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return cred->cr_ops->crmarshal(task, p);
323}
324
325u32 *
326rpcauth_checkverf(struct rpc_task *task, u32 *p)
327{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct rpc_cred *cred = task->tk_msg.rpc_cred;
329
330 dprintk("RPC: %4d validating %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500331 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return cred->cr_ops->crvalidate(task, p);
334}
335
336int
337rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp,
338 u32 *data, void *obj)
339{
340 struct rpc_cred *cred = task->tk_msg.rpc_cred;
341
342 dprintk("RPC: %4d using %s cred %p to wrap rpc data\n",
343 task->tk_pid, cred->cr_ops->cr_name, cred);
344 if (cred->cr_ops->crwrap_req)
345 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj);
346 /* By default, we encode the arguments normally. */
347 return encode(rqstp, data, obj);
348}
349
350int
351rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp,
352 u32 *data, void *obj)
353{
354 struct rpc_cred *cred = task->tk_msg.rpc_cred;
355
356 dprintk("RPC: %4d using %s cred %p to unwrap rpc data\n",
357 task->tk_pid, cred->cr_ops->cr_name, cred);
358 if (cred->cr_ops->crunwrap_resp)
359 return cred->cr_ops->crunwrap_resp(task, decode, rqstp,
360 data, obj);
361 /* By default, we decode the arguments normally. */
362 return decode(rqstp, data, obj);
363}
364
365int
366rpcauth_refreshcred(struct rpc_task *task)
367{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 struct rpc_cred *cred = task->tk_msg.rpc_cred;
369 int err;
370
371 dprintk("RPC: %4d refreshing %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500372 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 err = cred->cr_ops->crrefresh(task);
375 if (err < 0)
376 task->tk_status = err;
377 return err;
378}
379
380void
381rpcauth_invalcred(struct rpc_task *task)
382{
383 dprintk("RPC: %4d invalidating %s cred %p\n",
384 task->tk_pid, task->tk_auth->au_ops->au_name, task->tk_msg.rpc_cred);
385 spin_lock(&rpc_credcache_lock);
386 if (task->tk_msg.rpc_cred)
387 task->tk_msg.rpc_cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
388 spin_unlock(&rpc_credcache_lock);
389}
390
391int
392rpcauth_uptodatecred(struct rpc_task *task)
393{
394 return !(task->tk_msg.rpc_cred) ||
395 (task->tk_msg.rpc_cred->cr_flags & RPCAUTH_CRED_UPTODATE);
396}