SUNRPC: Add an rpc_credop callback for binding a credential to an rpc_task
[linux-2.6-block.git] / net / sunrpc / auth.c
CommitLineData
1da177e4
LT
1/*
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>
25337fdc 14#include <linux/hash.h>
1da177e4
LT
15#include <linux/sunrpc/clnt.h>
16#include <linux/spinlock.h>
17
18#ifdef RPC_DEBUG
19# define RPCDBG_FACILITY RPCDBG_AUTH
20#endif
21
fc1b356f 22static DEFINE_SPINLOCK(rpc_authflavor_lock);
f1c0a861 23static const struct rpc_authops *auth_flavors[RPC_AUTH_MAXFLAVOR] = {
1da177e4
LT
24 &authnull_ops, /* AUTH_NULL */
25 &authunix_ops, /* AUTH_UNIX */
26 NULL, /* others can be loadable modules */
27};
28
e092bdcd 29static LIST_HEAD(cred_unused);
f5c2187c 30static unsigned long number_cred_unused;
e092bdcd 31
1da177e4
LT
32static u32
33pseudoflavor_to_flavor(u32 flavor) {
34 if (flavor >= RPC_AUTH_MAXFLAVOR)
35 return RPC_AUTH_GSS;
36 return flavor;
37}
38
39int
f1c0a861 40rpcauth_register(const struct rpc_authops *ops)
1da177e4
LT
41{
42 rpc_authflavor_t flavor;
fc1b356f 43 int ret = -EPERM;
1da177e4
LT
44
45 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
46 return -EINVAL;
fc1b356f
TM
47 spin_lock(&rpc_authflavor_lock);
48 if (auth_flavors[flavor] == NULL) {
49 auth_flavors[flavor] = ops;
50 ret = 0;
51 }
52 spin_unlock(&rpc_authflavor_lock);
53 return ret;
1da177e4 54}
e8914c65 55EXPORT_SYMBOL_GPL(rpcauth_register);
1da177e4
LT
56
57int
f1c0a861 58rpcauth_unregister(const struct rpc_authops *ops)
1da177e4
LT
59{
60 rpc_authflavor_t flavor;
fc1b356f 61 int ret = -EPERM;
1da177e4
LT
62
63 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
64 return -EINVAL;
fc1b356f
TM
65 spin_lock(&rpc_authflavor_lock);
66 if (auth_flavors[flavor] == ops) {
67 auth_flavors[flavor] = NULL;
68 ret = 0;
69 }
70 spin_unlock(&rpc_authflavor_lock);
71 return ret;
1da177e4 72}
e8914c65 73EXPORT_SYMBOL_GPL(rpcauth_unregister);
1da177e4
LT
74
75struct rpc_auth *
76rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
77{
78 struct rpc_auth *auth;
f1c0a861 79 const struct rpc_authops *ops;
1da177e4
LT
80 u32 flavor = pseudoflavor_to_flavor(pseudoflavor);
81
f344f6df
OK
82 auth = ERR_PTR(-EINVAL);
83 if (flavor >= RPC_AUTH_MAXFLAVOR)
84 goto out;
85
f344f6df
OK
86#ifdef CONFIG_KMOD
87 if ((ops = auth_flavors[flavor]) == NULL)
88 request_module("rpc-auth-%u", flavor);
89#endif
fc1b356f
TM
90 spin_lock(&rpc_authflavor_lock);
91 ops = auth_flavors[flavor];
92 if (ops == NULL || !try_module_get(ops->owner)) {
93 spin_unlock(&rpc_authflavor_lock);
f344f6df 94 goto out;
fc1b356f
TM
95 }
96 spin_unlock(&rpc_authflavor_lock);
1da177e4 97 auth = ops->create(clnt, pseudoflavor);
fc1b356f 98 module_put(ops->owner);
6a19275a
BF
99 if (IS_ERR(auth))
100 return auth;
1da177e4 101 if (clnt->cl_auth)
de7a8ce3 102 rpcauth_release(clnt->cl_auth);
1da177e4 103 clnt->cl_auth = auth;
f344f6df
OK
104
105out:
1da177e4
LT
106 return auth;
107}
e8914c65 108EXPORT_SYMBOL_GPL(rpcauth_create);
1da177e4
LT
109
110void
de7a8ce3 111rpcauth_release(struct rpc_auth *auth)
1da177e4
LT
112{
113 if (!atomic_dec_and_test(&auth->au_count))
114 return;
115 auth->au_ops->destroy(auth);
116}
117
118static DEFINE_SPINLOCK(rpc_credcache_lock);
119
31be5bf1
TM
120static void
121rpcauth_unhash_cred_locked(struct rpc_cred *cred)
122{
123 hlist_del_rcu(&cred->cr_hash);
124 smp_mb__before_clear_bit();
125 clear_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
126}
127
9499b434
TM
128static void
129rpcauth_unhash_cred(struct rpc_cred *cred)
130{
131 spinlock_t *cache_lock;
132
133 cache_lock = &cred->cr_auth->au_credcache->lock;
134 spin_lock(cache_lock);
135 if (atomic_read(&cred->cr_count) == 0)
136 rpcauth_unhash_cred_locked(cred);
137 spin_unlock(cache_lock);
138}
139
1da177e4
LT
140/*
141 * Initialize RPC credential cache
142 */
143int
f5c2187c 144rpcauth_init_credcache(struct rpc_auth *auth)
1da177e4
LT
145{
146 struct rpc_cred_cache *new;
147 int i;
148
8b3a7005 149 new = kmalloc(sizeof(*new), GFP_KERNEL);
1da177e4
LT
150 if (!new)
151 return -ENOMEM;
152 for (i = 0; i < RPC_CREDCACHE_NR; i++)
153 INIT_HLIST_HEAD(&new->hashtable[i]);
9499b434 154 spin_lock_init(&new->lock);
1da177e4
LT
155 auth->au_credcache = new;
156 return 0;
157}
e8914c65 158EXPORT_SYMBOL_GPL(rpcauth_init_credcache);
1da177e4
LT
159
160/*
161 * Destroy a list of credentials
162 */
163static inline
e092bdcd 164void rpcauth_destroy_credlist(struct list_head *head)
1da177e4
LT
165{
166 struct rpc_cred *cred;
167
e092bdcd
TM
168 while (!list_empty(head)) {
169 cred = list_entry(head->next, struct rpc_cred, cr_lru);
170 list_del_init(&cred->cr_lru);
1da177e4
LT
171 put_rpccred(cred);
172 }
173}
174
175/*
176 * Clear the RPC credential cache, and delete those credentials
177 * that are not referenced.
178 */
179void
3ab9bb72 180rpcauth_clear_credcache(struct rpc_cred_cache *cache)
1da177e4 181{
e092bdcd
TM
182 LIST_HEAD(free);
183 struct hlist_head *head;
1da177e4
LT
184 struct rpc_cred *cred;
185 int i;
186
187 spin_lock(&rpc_credcache_lock);
9499b434 188 spin_lock(&cache->lock);
1da177e4 189 for (i = 0; i < RPC_CREDCACHE_NR; i++) {
e092bdcd
TM
190 head = &cache->hashtable[i];
191 while (!hlist_empty(head)) {
192 cred = hlist_entry(head->first, struct rpc_cred, cr_hash);
193 get_rpccred(cred);
f5c2187c
TM
194 if (!list_empty(&cred->cr_lru)) {
195 list_del(&cred->cr_lru);
196 number_cred_unused--;
197 }
198 list_add_tail(&cred->cr_lru, &free);
31be5bf1 199 rpcauth_unhash_cred_locked(cred);
1da177e4
LT
200 }
201 }
9499b434 202 spin_unlock(&cache->lock);
1da177e4
LT
203 spin_unlock(&rpc_credcache_lock);
204 rpcauth_destroy_credlist(&free);
205}
206
3ab9bb72
TM
207/*
208 * Destroy the RPC credential cache
209 */
210void
211rpcauth_destroy_credcache(struct rpc_auth *auth)
212{
213 struct rpc_cred_cache *cache = auth->au_credcache;
214
215 if (cache) {
216 auth->au_credcache = NULL;
217 rpcauth_clear_credcache(cache);
218 kfree(cache);
219 }
220}
e8914c65 221EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache);
3ab9bb72 222
e092bdcd
TM
223/*
224 * Remove stale credentials. Avoid sleeping inside the loop.
225 */
f5c2187c
TM
226static int
227rpcauth_prune_expired(struct list_head *free, int nr_to_scan)
1da177e4 228{
9499b434 229 spinlock_t *cache_lock;
e092bdcd
TM
230 struct rpc_cred *cred;
231
232 while (!list_empty(&cred_unused)) {
233 cred = list_entry(cred_unused.next, struct rpc_cred, cr_lru);
e092bdcd 234 list_del_init(&cred->cr_lru);
f5c2187c 235 number_cred_unused--;
e092bdcd
TM
236 if (atomic_read(&cred->cr_count) != 0)
237 continue;
9499b434
TM
238 cache_lock = &cred->cr_auth->au_credcache->lock;
239 spin_lock(cache_lock);
240 if (atomic_read(&cred->cr_count) == 0) {
241 get_rpccred(cred);
242 list_add_tail(&cred->cr_lru, free);
243 rpcauth_unhash_cred_locked(cred);
f5c2187c 244 nr_to_scan--;
9499b434
TM
245 }
246 spin_unlock(cache_lock);
f5c2187c
TM
247 if (nr_to_scan == 0)
248 break;
1da177e4 249 }
f5c2187c 250 return nr_to_scan;
1da177e4
LT
251}
252
253/*
f5c2187c 254 * Run memory cache shrinker.
1da177e4 255 */
f5c2187c
TM
256static int
257rpcauth_cache_shrinker(int nr_to_scan, gfp_t gfp_mask)
1da177e4 258{
f5c2187c
TM
259 LIST_HEAD(free);
260 int res;
261
262 if (list_empty(&cred_unused))
263 return 0;
31be5bf1 264 spin_lock(&rpc_credcache_lock);
f5c2187c
TM
265 nr_to_scan = rpcauth_prune_expired(&free, nr_to_scan);
266 res = (number_cred_unused / 100) * sysctl_vfs_cache_pressure;
31be5bf1 267 spin_unlock(&rpc_credcache_lock);
f5c2187c
TM
268 rpcauth_destroy_credlist(&free);
269 return res;
1da177e4
LT
270}
271
272/*
273 * Look up a process' credentials in the authentication cache
274 */
275struct rpc_cred *
276rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
8a317760 277 int flags)
1da177e4 278{
e092bdcd 279 LIST_HEAD(free);
1da177e4 280 struct rpc_cred_cache *cache = auth->au_credcache;
e092bdcd 281 struct hlist_node *pos;
31be5bf1
TM
282 struct rpc_cred *cred = NULL,
283 *entry, *new;
25337fdc
TM
284 unsigned int nr;
285
286 nr = hash_long(acred->uid, RPC_CREDCACHE_HASHBITS);
1da177e4 287
31be5bf1
TM
288 rcu_read_lock();
289 hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) {
e092bdcd
TM
290 if (!entry->cr_ops->crmatch(acred, entry, flags))
291 continue;
9499b434 292 spin_lock(&cache->lock);
31be5bf1 293 if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) {
9499b434 294 spin_unlock(&cache->lock);
31be5bf1
TM
295 continue;
296 }
e092bdcd 297 cred = get_rpccred(entry);
9499b434 298 spin_unlock(&cache->lock);
e092bdcd 299 break;
1da177e4 300 }
31be5bf1
TM
301 rcu_read_unlock();
302
9499b434 303 if (cred != NULL)
31be5bf1 304 goto found;
1da177e4 305
31be5bf1
TM
306 new = auth->au_ops->crcreate(auth, acred, flags);
307 if (IS_ERR(new)) {
308 cred = new;
309 goto out;
310 }
1da177e4 311
9499b434 312 spin_lock(&cache->lock);
31be5bf1
TM
313 hlist_for_each_entry(entry, pos, &cache->hashtable[nr], cr_hash) {
314 if (!entry->cr_ops->crmatch(acred, entry, flags))
315 continue;
316 cred = get_rpccred(entry);
317 break;
318 }
319 if (cred == NULL) {
5fe4755e 320 cred = new;
31be5bf1
TM
321 set_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
322 hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]);
323 } else
324 list_add_tail(&new->cr_lru, &free);
9499b434 325 spin_unlock(&cache->lock);
31be5bf1
TM
326found:
327 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags)
fba3bad4
TM
328 && cred->cr_ops->cr_init != NULL
329 && !(flags & RPCAUTH_LOOKUP_NEW)) {
330 int res = cred->cr_ops->cr_init(auth, cred);
331 if (res < 0) {
332 put_rpccred(cred);
333 cred = ERR_PTR(res);
334 }
1da177e4 335 }
31be5bf1
TM
336 rpcauth_destroy_credlist(&free);
337out:
338 return cred;
1da177e4 339}
e8914c65 340EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache);
1da177e4
LT
341
342struct rpc_cred *
8a317760 343rpcauth_lookupcred(struct rpc_auth *auth, int flags)
1da177e4
LT
344{
345 struct auth_cred acred = {
346 .uid = current->fsuid,
347 .gid = current->fsgid,
348 .group_info = current->group_info,
349 };
350 struct rpc_cred *ret;
351
46121cf7 352 dprintk("RPC: looking up %s cred\n",
1da177e4
LT
353 auth->au_ops->au_name);
354 get_group_info(acred.group_info);
8a317760 355 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
1da177e4
LT
356 put_group_info(acred.group_info);
357 return ret;
358}
e8914c65 359EXPORT_SYMBOL_GPL(rpcauth_lookupcred);
1da177e4 360
5fe4755e
TM
361void
362rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred,
363 struct rpc_auth *auth, const struct rpc_credops *ops)
364{
365 INIT_HLIST_NODE(&cred->cr_hash);
e092bdcd 366 INIT_LIST_HEAD(&cred->cr_lru);
5fe4755e
TM
367 atomic_set(&cred->cr_count, 1);
368 cred->cr_auth = auth;
369 cred->cr_ops = ops;
370 cred->cr_expire = jiffies;
371#ifdef RPC_DEBUG
372 cred->cr_magic = RPCAUTH_CRED_MAGIC;
373#endif
374 cred->cr_uid = acred->uid;
375}
e8914c65 376EXPORT_SYMBOL_GPL(rpcauth_init_cred);
5fe4755e 377
5c691044 378void
4ccda2cd
TM
379rpcauth_generic_bind_cred(struct rpc_task *task, struct rpc_cred *cred)
380{
381 task->tk_msg.rpc_cred = get_rpccred(cred);
382 dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid,
383 cred->cr_auth->au_ops->au_name, cred);
384}
5c691044 385EXPORT_SYMBOL_GPL(rpcauth_generic_bind_cred);
4ccda2cd
TM
386
387static void
af093835 388rpcauth_bind_root_cred(struct rpc_task *task)
1da177e4 389{
1be27f36 390 struct rpc_auth *auth = task->tk_client->cl_auth;
1da177e4 391 struct auth_cred acred = {
af093835
TM
392 .uid = 0,
393 .gid = 0,
1da177e4
LT
394 };
395 struct rpc_cred *ret;
396
46121cf7 397 dprintk("RPC: %5u looking up %s cred\n",
1be27f36 398 task->tk_pid, task->tk_client->cl_auth->au_ops->au_name);
af093835
TM
399 ret = auth->au_ops->lookup_cred(auth, &acred, 0);
400 if (!IS_ERR(ret))
401 task->tk_msg.rpc_cred = ret;
402 else
403 task->tk_status = PTR_ERR(ret);
404}
405
4ccda2cd
TM
406static void
407rpcauth_bind_new_cred(struct rpc_task *task)
af093835
TM
408{
409 struct rpc_auth *auth = task->tk_client->cl_auth;
410 struct rpc_cred *ret;
411
412 dprintk("RPC: %5u looking up %s cred\n",
413 task->tk_pid, auth->au_ops->au_name);
414 ret = rpcauth_lookupcred(auth, 0);
1da177e4
LT
415 if (!IS_ERR(ret))
416 task->tk_msg.rpc_cred = ret;
417 else
418 task->tk_status = PTR_ERR(ret);
1da177e4
LT
419}
420
421void
4ccda2cd 422rpcauth_bindcred(struct rpc_task *task, struct rpc_cred *cred, int flags)
1da177e4 423{
4ccda2cd 424 if (cred != NULL)
5c691044 425 cred->cr_ops->crbind(task, cred);
4ccda2cd
TM
426 else if (flags & RPC_TASK_ROOTCREDS)
427 rpcauth_bind_root_cred(task);
428 else
429 rpcauth_bind_new_cred(task);
1da177e4
LT
430}
431
432void
433put_rpccred(struct rpc_cred *cred)
434{
e092bdcd 435 /* Fast path for unhashed credentials */
31be5bf1 436 if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0)
e092bdcd
TM
437 goto need_lock;
438
1da177e4
LT
439 if (!atomic_dec_and_test(&cred->cr_count))
440 return;
e092bdcd 441 goto out_destroy;
e092bdcd
TM
442need_lock:
443 if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock))
444 return;
f5c2187c
TM
445 if (!list_empty(&cred->cr_lru)) {
446 number_cred_unused--;
e092bdcd 447 list_del_init(&cred->cr_lru);
f5c2187c 448 }
e092bdcd 449 if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
9499b434 450 rpcauth_unhash_cred(cred);
31be5bf1 451 else if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) {
e092bdcd
TM
452 cred->cr_expire = jiffies;
453 list_add_tail(&cred->cr_lru, &cred_unused);
f5c2187c 454 number_cred_unused++;
e092bdcd
TM
455 spin_unlock(&rpc_credcache_lock);
456 return;
457 }
458 spin_unlock(&rpc_credcache_lock);
459out_destroy:
1da177e4
LT
460 cred->cr_ops->crdestroy(cred);
461}
e8914c65 462EXPORT_SYMBOL_GPL(put_rpccred);
1da177e4
LT
463
464void
465rpcauth_unbindcred(struct rpc_task *task)
466{
1da177e4
LT
467 struct rpc_cred *cred = task->tk_msg.rpc_cred;
468
46121cf7 469 dprintk("RPC: %5u releasing %s cred %p\n",
1be27f36 470 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
1da177e4
LT
471
472 put_rpccred(cred);
473 task->tk_msg.rpc_cred = NULL;
474}
475
d8ed029d
AD
476__be32 *
477rpcauth_marshcred(struct rpc_task *task, __be32 *p)
1da177e4 478{
1da177e4
LT
479 struct rpc_cred *cred = task->tk_msg.rpc_cred;
480
46121cf7 481 dprintk("RPC: %5u marshaling %s cred %p\n",
1be27f36 482 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
0bbacc40 483
1da177e4
LT
484 return cred->cr_ops->crmarshal(task, p);
485}
486
d8ed029d
AD
487__be32 *
488rpcauth_checkverf(struct rpc_task *task, __be32 *p)
1da177e4 489{
1da177e4
LT
490 struct rpc_cred *cred = task->tk_msg.rpc_cred;
491
46121cf7 492 dprintk("RPC: %5u validating %s cred %p\n",
1be27f36 493 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
0bbacc40 494
1da177e4
LT
495 return cred->cr_ops->crvalidate(task, p);
496}
497
498int
499rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp,
d8ed029d 500 __be32 *data, void *obj)
1da177e4
LT
501{
502 struct rpc_cred *cred = task->tk_msg.rpc_cred;
503
46121cf7 504 dprintk("RPC: %5u using %s cred %p to wrap rpc data\n",
1da177e4
LT
505 task->tk_pid, cred->cr_ops->cr_name, cred);
506 if (cred->cr_ops->crwrap_req)
507 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj);
508 /* By default, we encode the arguments normally. */
be879c4e 509 return rpc_call_xdrproc(encode, rqstp, data, obj);
1da177e4
LT
510}
511
512int
513rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp,
d8ed029d 514 __be32 *data, void *obj)
1da177e4
LT
515{
516 struct rpc_cred *cred = task->tk_msg.rpc_cred;
517
46121cf7 518 dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n",
1da177e4
LT
519 task->tk_pid, cred->cr_ops->cr_name, cred);
520 if (cred->cr_ops->crunwrap_resp)
521 return cred->cr_ops->crunwrap_resp(task, decode, rqstp,
522 data, obj);
523 /* By default, we decode the arguments normally. */
be879c4e 524 return rpc_call_xdrproc(decode, rqstp, data, obj);
1da177e4
LT
525}
526
527int
528rpcauth_refreshcred(struct rpc_task *task)
529{
1da177e4
LT
530 struct rpc_cred *cred = task->tk_msg.rpc_cred;
531 int err;
532
46121cf7 533 dprintk("RPC: %5u refreshing %s cred %p\n",
1be27f36 534 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
0bbacc40 535
1da177e4
LT
536 err = cred->cr_ops->crrefresh(task);
537 if (err < 0)
538 task->tk_status = err;
539 return err;
540}
541
542void
543rpcauth_invalcred(struct rpc_task *task)
544{
fc432dd9
TM
545 struct rpc_cred *cred = task->tk_msg.rpc_cred;
546
46121cf7 547 dprintk("RPC: %5u invalidating %s cred %p\n",
1be27f36 548 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
fc432dd9
TM
549 if (cred)
550 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
1da177e4
LT
551}
552
553int
554rpcauth_uptodatecred(struct rpc_task *task)
555{
fc432dd9
TM
556 struct rpc_cred *cred = task->tk_msg.rpc_cred;
557
558 return cred == NULL ||
559 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0;
1da177e4 560}
f5c2187c 561
8e1f936b
RR
562static struct shrinker rpc_cred_shrinker = {
563 .shrink = rpcauth_cache_shrinker,
564 .seeks = DEFAULT_SEEKS,
565};
f5c2187c
TM
566
567void __init rpcauth_init_module(void)
568{
569 rpc_init_authunix();
9a559efd 570 rpc_init_generic_auth();
8e1f936b 571 register_shrinker(&rpc_cred_shrinker);
f5c2187c
TM
572}
573
574void __exit rpcauth_remove_module(void)
575{
8e1f936b 576 unregister_shrinker(&rpc_cred_shrinker);
f5c2187c 577}