2 * linux/net/sunrpc/auth.c
4 * Generic RPC client authentication API.
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
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>
14 #include <linux/hash.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/spinlock.h>
19 # define RPCDBG_FACILITY RPCDBG_AUTH
22 static DEFINE_SPINLOCK(rpc_authflavor_lock
);
23 static const struct rpc_authops
*auth_flavors
[RPC_AUTH_MAXFLAVOR
] = {
24 &authnull_ops
, /* AUTH_NULL */
25 &authunix_ops
, /* AUTH_UNIX */
26 NULL
, /* others can be loadable modules */
29 static LIST_HEAD(cred_unused
);
30 static unsigned long number_cred_unused
;
33 pseudoflavor_to_flavor(u32 flavor
) {
34 if (flavor
>= RPC_AUTH_MAXFLAVOR
)
40 rpcauth_register(const struct rpc_authops
*ops
)
42 rpc_authflavor_t flavor
;
45 if ((flavor
= ops
->au_flavor
) >= RPC_AUTH_MAXFLAVOR
)
47 spin_lock(&rpc_authflavor_lock
);
48 if (auth_flavors
[flavor
] == NULL
) {
49 auth_flavors
[flavor
] = ops
;
52 spin_unlock(&rpc_authflavor_lock
);
55 EXPORT_SYMBOL_GPL(rpcauth_register
);
58 rpcauth_unregister(const struct rpc_authops
*ops
)
60 rpc_authflavor_t flavor
;
63 if ((flavor
= ops
->au_flavor
) >= RPC_AUTH_MAXFLAVOR
)
65 spin_lock(&rpc_authflavor_lock
);
66 if (auth_flavors
[flavor
] == ops
) {
67 auth_flavors
[flavor
] = NULL
;
70 spin_unlock(&rpc_authflavor_lock
);
73 EXPORT_SYMBOL_GPL(rpcauth_unregister
);
76 rpcauth_create(rpc_authflavor_t pseudoflavor
, struct rpc_clnt
*clnt
)
78 struct rpc_auth
*auth
;
79 const struct rpc_authops
*ops
;
80 u32 flavor
= pseudoflavor_to_flavor(pseudoflavor
);
82 auth
= ERR_PTR(-EINVAL
);
83 if (flavor
>= RPC_AUTH_MAXFLAVOR
)
86 if ((ops
= auth_flavors
[flavor
]) == NULL
)
87 request_module("rpc-auth-%u", flavor
);
88 spin_lock(&rpc_authflavor_lock
);
89 ops
= auth_flavors
[flavor
];
90 if (ops
== NULL
|| !try_module_get(ops
->owner
)) {
91 spin_unlock(&rpc_authflavor_lock
);
94 spin_unlock(&rpc_authflavor_lock
);
95 auth
= ops
->create(clnt
, pseudoflavor
);
96 module_put(ops
->owner
);
100 rpcauth_release(clnt
->cl_auth
);
101 clnt
->cl_auth
= auth
;
106 EXPORT_SYMBOL_GPL(rpcauth_create
);
109 rpcauth_release(struct rpc_auth
*auth
)
111 if (!atomic_dec_and_test(&auth
->au_count
))
113 auth
->au_ops
->destroy(auth
);
116 static DEFINE_SPINLOCK(rpc_credcache_lock
);
119 rpcauth_unhash_cred_locked(struct rpc_cred
*cred
)
121 hlist_del_rcu(&cred
->cr_hash
);
122 smp_mb__before_clear_bit();
123 clear_bit(RPCAUTH_CRED_HASHED
, &cred
->cr_flags
);
127 rpcauth_unhash_cred(struct rpc_cred
*cred
)
129 spinlock_t
*cache_lock
;
131 cache_lock
= &cred
->cr_auth
->au_credcache
->lock
;
132 spin_lock(cache_lock
);
133 if (atomic_read(&cred
->cr_count
) == 0)
134 rpcauth_unhash_cred_locked(cred
);
135 spin_unlock(cache_lock
);
139 * Initialize RPC credential cache
142 rpcauth_init_credcache(struct rpc_auth
*auth
)
144 struct rpc_cred_cache
*new;
147 new = kmalloc(sizeof(*new), GFP_KERNEL
);
150 for (i
= 0; i
< RPC_CREDCACHE_NR
; i
++)
151 INIT_HLIST_HEAD(&new->hashtable
[i
]);
152 spin_lock_init(&new->lock
);
153 auth
->au_credcache
= new;
156 EXPORT_SYMBOL_GPL(rpcauth_init_credcache
);
159 * Destroy a list of credentials
162 void rpcauth_destroy_credlist(struct list_head
*head
)
164 struct rpc_cred
*cred
;
166 while (!list_empty(head
)) {
167 cred
= list_entry(head
->next
, struct rpc_cred
, cr_lru
);
168 list_del_init(&cred
->cr_lru
);
174 * Clear the RPC credential cache, and delete those credentials
175 * that are not referenced.
178 rpcauth_clear_credcache(struct rpc_cred_cache
*cache
)
181 struct hlist_head
*head
;
182 struct rpc_cred
*cred
;
185 spin_lock(&rpc_credcache_lock
);
186 spin_lock(&cache
->lock
);
187 for (i
= 0; i
< RPC_CREDCACHE_NR
; i
++) {
188 head
= &cache
->hashtable
[i
];
189 while (!hlist_empty(head
)) {
190 cred
= hlist_entry(head
->first
, struct rpc_cred
, cr_hash
);
192 if (!list_empty(&cred
->cr_lru
)) {
193 list_del(&cred
->cr_lru
);
194 number_cred_unused
--;
196 list_add_tail(&cred
->cr_lru
, &free
);
197 rpcauth_unhash_cred_locked(cred
);
200 spin_unlock(&cache
->lock
);
201 spin_unlock(&rpc_credcache_lock
);
202 rpcauth_destroy_credlist(&free
);
206 * Destroy the RPC credential cache
209 rpcauth_destroy_credcache(struct rpc_auth
*auth
)
211 struct rpc_cred_cache
*cache
= auth
->au_credcache
;
214 auth
->au_credcache
= NULL
;
215 rpcauth_clear_credcache(cache
);
219 EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache
);
222 #define RPC_AUTH_EXPIRY_MORATORIUM (60 * HZ)
225 * Remove stale credentials. Avoid sleeping inside the loop.
228 rpcauth_prune_expired(struct list_head
*free
, int nr_to_scan
)
230 spinlock_t
*cache_lock
;
231 struct rpc_cred
*cred
, *next
;
232 unsigned long expired
= jiffies
- RPC_AUTH_EXPIRY_MORATORIUM
;
234 list_for_each_entry_safe(cred
, next
, &cred_unused
, cr_lru
) {
236 /* Enforce a 60 second garbage collection moratorium */
237 if (time_in_range_open(cred
->cr_expire
, expired
, jiffies
) &&
238 test_bit(RPCAUTH_CRED_HASHED
, &cred
->cr_flags
) != 0)
241 list_del_init(&cred
->cr_lru
);
242 number_cred_unused
--;
243 if (atomic_read(&cred
->cr_count
) != 0)
246 cache_lock
= &cred
->cr_auth
->au_credcache
->lock
;
247 spin_lock(cache_lock
);
248 if (atomic_read(&cred
->cr_count
) == 0) {
250 list_add_tail(&cred
->cr_lru
, free
);
251 rpcauth_unhash_cred_locked(cred
);
254 spin_unlock(cache_lock
);
262 * Run memory cache shrinker.
265 rpcauth_cache_shrinker(int nr_to_scan
, gfp_t gfp_mask
)
270 if (list_empty(&cred_unused
))
272 spin_lock(&rpc_credcache_lock
);
273 nr_to_scan
= rpcauth_prune_expired(&free
, nr_to_scan
);
274 res
= (number_cred_unused
/ 100) * sysctl_vfs_cache_pressure
;
275 spin_unlock(&rpc_credcache_lock
);
276 rpcauth_destroy_credlist(&free
);
281 * Look up a process' credentials in the authentication cache
284 rpcauth_lookup_credcache(struct rpc_auth
*auth
, struct auth_cred
* acred
,
288 struct rpc_cred_cache
*cache
= auth
->au_credcache
;
289 struct hlist_node
*pos
;
290 struct rpc_cred
*cred
= NULL
,
294 nr
= hash_long(acred
->uid
, RPC_CREDCACHE_HASHBITS
);
297 hlist_for_each_entry_rcu(entry
, pos
, &cache
->hashtable
[nr
], cr_hash
) {
298 if (!entry
->cr_ops
->crmatch(acred
, entry
, flags
))
300 spin_lock(&cache
->lock
);
301 if (test_bit(RPCAUTH_CRED_HASHED
, &entry
->cr_flags
) == 0) {
302 spin_unlock(&cache
->lock
);
305 cred
= get_rpccred(entry
);
306 spin_unlock(&cache
->lock
);
314 new = auth
->au_ops
->crcreate(auth
, acred
, flags
);
320 spin_lock(&cache
->lock
);
321 hlist_for_each_entry(entry
, pos
, &cache
->hashtable
[nr
], cr_hash
) {
322 if (!entry
->cr_ops
->crmatch(acred
, entry
, flags
))
324 cred
= get_rpccred(entry
);
329 set_bit(RPCAUTH_CRED_HASHED
, &cred
->cr_flags
);
330 hlist_add_head_rcu(&cred
->cr_hash
, &cache
->hashtable
[nr
]);
332 list_add_tail(&new->cr_lru
, &free
);
333 spin_unlock(&cache
->lock
);
335 if (test_bit(RPCAUTH_CRED_NEW
, &cred
->cr_flags
)
336 && cred
->cr_ops
->cr_init
!= NULL
337 && !(flags
& RPCAUTH_LOOKUP_NEW
)) {
338 int res
= cred
->cr_ops
->cr_init(auth
, cred
);
344 rpcauth_destroy_credlist(&free
);
348 EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache
);
351 rpcauth_lookupcred(struct rpc_auth
*auth
, int flags
)
353 struct auth_cred acred
;
354 struct rpc_cred
*ret
;
355 const struct cred
*cred
= current_cred();
357 dprintk("RPC: looking up %s cred\n",
358 auth
->au_ops
->au_name
);
360 memset(&acred
, 0, sizeof(acred
));
361 acred
.uid
= cred
->fsuid
;
362 acred
.gid
= cred
->fsgid
;
363 acred
.group_info
= get_group_info(((struct cred
*)cred
)->group_info
);
365 ret
= auth
->au_ops
->lookup_cred(auth
, &acred
, flags
);
366 put_group_info(acred
.group_info
);
371 rpcauth_init_cred(struct rpc_cred
*cred
, const struct auth_cred
*acred
,
372 struct rpc_auth
*auth
, const struct rpc_credops
*ops
)
374 INIT_HLIST_NODE(&cred
->cr_hash
);
375 INIT_LIST_HEAD(&cred
->cr_lru
);
376 atomic_set(&cred
->cr_count
, 1);
377 cred
->cr_auth
= auth
;
379 cred
->cr_expire
= jiffies
;
381 cred
->cr_magic
= RPCAUTH_CRED_MAGIC
;
383 cred
->cr_uid
= acred
->uid
;
385 EXPORT_SYMBOL_GPL(rpcauth_init_cred
);
388 rpcauth_generic_bind_cred(struct rpc_task
*task
, struct rpc_cred
*cred
, int lookupflags
)
390 task
->tk_msg
.rpc_cred
= get_rpccred(cred
);
391 dprintk("RPC: %5u holding %s cred %p\n", task
->tk_pid
,
392 cred
->cr_auth
->au_ops
->au_name
, cred
);
394 EXPORT_SYMBOL_GPL(rpcauth_generic_bind_cred
);
397 rpcauth_bind_root_cred(struct rpc_task
*task
, int lookupflags
)
399 struct rpc_auth
*auth
= task
->tk_client
->cl_auth
;
400 struct auth_cred acred
= {
404 struct rpc_cred
*ret
;
406 dprintk("RPC: %5u looking up %s cred\n",
407 task
->tk_pid
, task
->tk_client
->cl_auth
->au_ops
->au_name
);
408 ret
= auth
->au_ops
->lookup_cred(auth
, &acred
, lookupflags
);
410 task
->tk_msg
.rpc_cred
= ret
;
412 task
->tk_status
= PTR_ERR(ret
);
416 rpcauth_bind_new_cred(struct rpc_task
*task
, int lookupflags
)
418 struct rpc_auth
*auth
= task
->tk_client
->cl_auth
;
419 struct rpc_cred
*ret
;
421 dprintk("RPC: %5u looking up %s cred\n",
422 task
->tk_pid
, auth
->au_ops
->au_name
);
423 ret
= rpcauth_lookupcred(auth
, lookupflags
);
425 task
->tk_msg
.rpc_cred
= ret
;
427 task
->tk_status
= PTR_ERR(ret
);
431 rpcauth_bindcred(struct rpc_task
*task
, struct rpc_cred
*cred
, int flags
)
435 if (flags
& RPC_TASK_ASYNC
)
436 lookupflags
|= RPCAUTH_LOOKUP_NEW
;
438 cred
->cr_ops
->crbind(task
, cred
, lookupflags
);
439 else if (flags
& RPC_TASK_ROOTCREDS
)
440 rpcauth_bind_root_cred(task
, lookupflags
);
442 rpcauth_bind_new_cred(task
, lookupflags
);
446 put_rpccred(struct rpc_cred
*cred
)
448 /* Fast path for unhashed credentials */
449 if (test_bit(RPCAUTH_CRED_HASHED
, &cred
->cr_flags
) != 0)
452 if (!atomic_dec_and_test(&cred
->cr_count
))
456 if (!atomic_dec_and_lock(&cred
->cr_count
, &rpc_credcache_lock
))
458 if (!list_empty(&cred
->cr_lru
)) {
459 number_cred_unused
--;
460 list_del_init(&cred
->cr_lru
);
462 if (test_bit(RPCAUTH_CRED_UPTODATE
, &cred
->cr_flags
) == 0)
463 rpcauth_unhash_cred(cred
);
464 if (test_bit(RPCAUTH_CRED_HASHED
, &cred
->cr_flags
) != 0) {
465 cred
->cr_expire
= jiffies
;
466 list_add_tail(&cred
->cr_lru
, &cred_unused
);
467 number_cred_unused
++;
468 spin_unlock(&rpc_credcache_lock
);
471 spin_unlock(&rpc_credcache_lock
);
473 cred
->cr_ops
->crdestroy(cred
);
475 EXPORT_SYMBOL_GPL(put_rpccred
);
478 rpcauth_unbindcred(struct rpc_task
*task
)
480 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
482 dprintk("RPC: %5u releasing %s cred %p\n",
483 task
->tk_pid
, cred
->cr_auth
->au_ops
->au_name
, cred
);
486 task
->tk_msg
.rpc_cred
= NULL
;
490 rpcauth_marshcred(struct rpc_task
*task
, __be32
*p
)
492 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
494 dprintk("RPC: %5u marshaling %s cred %p\n",
495 task
->tk_pid
, cred
->cr_auth
->au_ops
->au_name
, cred
);
497 return cred
->cr_ops
->crmarshal(task
, p
);
501 rpcauth_checkverf(struct rpc_task
*task
, __be32
*p
)
503 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
505 dprintk("RPC: %5u validating %s cred %p\n",
506 task
->tk_pid
, cred
->cr_auth
->au_ops
->au_name
, cred
);
508 return cred
->cr_ops
->crvalidate(task
, p
);
512 rpcauth_wrap_req(struct rpc_task
*task
, kxdrproc_t encode
, void *rqstp
,
513 __be32
*data
, void *obj
)
515 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
517 dprintk("RPC: %5u using %s cred %p to wrap rpc data\n",
518 task
->tk_pid
, cred
->cr_ops
->cr_name
, cred
);
519 if (cred
->cr_ops
->crwrap_req
)
520 return cred
->cr_ops
->crwrap_req(task
, encode
, rqstp
, data
, obj
);
521 /* By default, we encode the arguments normally. */
522 return encode(rqstp
, data
, obj
);
526 rpcauth_unwrap_resp(struct rpc_task
*task
, kxdrproc_t decode
, void *rqstp
,
527 __be32
*data
, void *obj
)
529 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
531 dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n",
532 task
->tk_pid
, cred
->cr_ops
->cr_name
, cred
);
533 if (cred
->cr_ops
->crunwrap_resp
)
534 return cred
->cr_ops
->crunwrap_resp(task
, decode
, rqstp
,
536 /* By default, we decode the arguments normally. */
537 return decode(rqstp
, data
, obj
);
541 rpcauth_refreshcred(struct rpc_task
*task
)
543 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
546 dprintk("RPC: %5u refreshing %s cred %p\n",
547 task
->tk_pid
, cred
->cr_auth
->au_ops
->au_name
, cred
);
549 err
= cred
->cr_ops
->crrefresh(task
);
551 task
->tk_status
= err
;
556 rpcauth_invalcred(struct rpc_task
*task
)
558 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
560 dprintk("RPC: %5u invalidating %s cred %p\n",
561 task
->tk_pid
, cred
->cr_auth
->au_ops
->au_name
, cred
);
563 clear_bit(RPCAUTH_CRED_UPTODATE
, &cred
->cr_flags
);
567 rpcauth_uptodatecred(struct rpc_task
*task
)
569 struct rpc_cred
*cred
= task
->tk_msg
.rpc_cred
;
571 return cred
== NULL
||
572 test_bit(RPCAUTH_CRED_UPTODATE
, &cred
->cr_flags
) != 0;
575 static struct shrinker rpc_cred_shrinker
= {
576 .shrink
= rpcauth_cache_shrinker
,
577 .seeks
= DEFAULT_SEEKS
,
580 void __init
rpcauth_init_module(void)
583 rpc_init_generic_auth();
584 register_shrinker(&rpc_cred_shrinker
);
587 void __exit
rpcauth_remove_module(void)
589 unregister_shrinker(&rpc_cred_shrinker
);