blob: b38f6ee2f5e22499d91a8f7e9d436b78077b9184 [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>
Trond Myklebust25337fd2008-03-12 14:40:14 -040014#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/clnt.h>
16#include <linux/spinlock.h>
17
18#ifdef RPC_DEBUG
19# define RPCDBG_FACILITY RPCDBG_AUTH
20#endif
21
Trond Myklebustfc1b3562007-06-09 16:15:46 -040022static DEFINE_SPINLOCK(rpc_authflavor_lock);
Trond Myklebustf1c0a862007-06-23 20:17:58 -040023static const struct rpc_authops *auth_flavors[RPC_AUTH_MAXFLAVOR] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 &authnull_ops, /* AUTH_NULL */
25 &authunix_ops, /* AUTH_UNIX */
26 NULL, /* others can be loadable modules */
27};
28
Trond Myklebuste092bdc2007-06-23 19:45:36 -040029static LIST_HEAD(cred_unused);
Trond Myklebustf5c21872007-06-25 17:11:20 -040030static unsigned long number_cred_unused;
Trond Myklebuste092bdc2007-06-23 19:45:36 -040031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static u32
33pseudoflavor_to_flavor(u32 flavor) {
34 if (flavor >= RPC_AUTH_MAXFLAVOR)
35 return RPC_AUTH_GSS;
36 return flavor;
37}
38
39int
Trond Myklebustf1c0a862007-06-23 20:17:58 -040040rpcauth_register(const struct rpc_authops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 rpc_authflavor_t flavor;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040043 int ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
46 return -EINVAL;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040047 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
Trond Myklebuste8914c62007-07-14 15:39:59 -040055EXPORT_SYMBOL_GPL(rpcauth_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57int
Trond Myklebustf1c0a862007-06-23 20:17:58 -040058rpcauth_unregister(const struct rpc_authops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 rpc_authflavor_t flavor;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040061 int ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
64 return -EINVAL;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040065 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
Trond Myklebuste8914c62007-07-14 15:39:59 -040073EXPORT_SYMBOL_GPL(rpcauth_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75struct rpc_auth *
76rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
77{
78 struct rpc_auth *auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040079 const struct rpc_authops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 u32 flavor = pseudoflavor_to_flavor(pseudoflavor);
81
Olaf Kirchf344f6d2006-03-20 13:44:08 -050082 auth = ERR_PTR(-EINVAL);
83 if (flavor >= RPC_AUTH_MAXFLAVOR)
84 goto out;
85
Olaf Kirchf344f6d2006-03-20 13:44:08 -050086#ifdef CONFIG_KMOD
87 if ((ops = auth_flavors[flavor]) == NULL)
88 request_module("rpc-auth-%u", flavor);
89#endif
Trond Myklebustfc1b3562007-06-09 16:15:46 -040090 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);
Olaf Kirchf344f6d2006-03-20 13:44:08 -050094 goto out;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040095 }
96 spin_unlock(&rpc_authflavor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 auth = ops->create(clnt, pseudoflavor);
Trond Myklebustfc1b3562007-06-09 16:15:46 -040098 module_put(ops->owner);
J. Bruce Fields6a192752005-06-22 17:16:23 +000099 if (IS_ERR(auth))
100 return auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (clnt->cl_auth)
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400102 rpcauth_release(clnt->cl_auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 clnt->cl_auth = auth;
Olaf Kirchf344f6d2006-03-20 13:44:08 -0500104
105out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return auth;
107}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400108EXPORT_SYMBOL_GPL(rpcauth_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110void
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400111rpcauth_release(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
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
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400120static 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
Trond Myklebust9499b432007-06-24 15:57:57 -0400128static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
141 * Initialize RPC credential cache
142 */
143int
Trond Myklebustf5c21872007-06-25 17:11:20 -0400144rpcauth_init_credcache(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 struct rpc_cred_cache *new;
147 int i;
148
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800149 new = kmalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (!new)
151 return -ENOMEM;
152 for (i = 0; i < RPC_CREDCACHE_NR; i++)
153 INIT_HLIST_HEAD(&new->hashtable[i]);
Trond Myklebust9499b432007-06-24 15:57:57 -0400154 spin_lock_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 auth->au_credcache = new;
156 return 0;
157}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400158EXPORT_SYMBOL_GPL(rpcauth_init_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160/*
161 * Destroy a list of credentials
162 */
163static inline
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400164void rpcauth_destroy_credlist(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 struct rpc_cred *cred;
167
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400168 while (!list_empty(head)) {
169 cred = list_entry(head->next, struct rpc_cred, cr_lru);
170 list_del_init(&cred->cr_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 put_rpccred(cred);
172 }
173}
174
175/*
176 * Clear the RPC credential cache, and delete those credentials
177 * that are not referenced.
178 */
179void
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400180rpcauth_clear_credcache(struct rpc_cred_cache *cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400182 LIST_HEAD(free);
183 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 struct rpc_cred *cred;
185 int i;
186
187 spin_lock(&rpc_credcache_lock);
Trond Myklebust9499b432007-06-24 15:57:57 -0400188 spin_lock(&cache->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 for (i = 0; i < RPC_CREDCACHE_NR; i++) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400190 head = &cache->hashtable[i];
191 while (!hlist_empty(head)) {
192 cred = hlist_entry(head->first, struct rpc_cred, cr_hash);
193 get_rpccred(cred);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400194 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);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400199 rpcauth_unhash_cred_locked(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201 }
Trond Myklebust9499b432007-06-24 15:57:57 -0400202 spin_unlock(&cache->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 spin_unlock(&rpc_credcache_lock);
204 rpcauth_destroy_credlist(&free);
205}
206
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400207/*
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}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400221EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223/*
224 * Remove stale credentials. Avoid sleeping inside the loop.
225 */
Trond Myklebustf5c21872007-06-25 17:11:20 -0400226static int
227rpcauth_prune_expired(struct list_head *free, int nr_to_scan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Trond Myklebust9499b432007-06-24 15:57:57 -0400229 spinlock_t *cache_lock;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400230 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400232 while (!list_empty(&cred_unused)) {
233 cred = list_entry(cred_unused.next, struct rpc_cred, cr_lru);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400234 list_del_init(&cred->cr_lru);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400235 number_cred_unused--;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400236 if (atomic_read(&cred->cr_count) != 0)
237 continue;
Trond Myklebust9499b432007-06-24 15:57:57 -0400238 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);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400244 nr_to_scan--;
Trond Myklebust9499b432007-06-24 15:57:57 -0400245 }
246 spin_unlock(cache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400247 if (nr_to_scan == 0)
248 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 }
Trond Myklebustf5c21872007-06-25 17:11:20 -0400250 return nr_to_scan;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400251}
252
253/*
Trond Myklebustf5c21872007-06-25 17:11:20 -0400254 * Run memory cache shrinker.
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400255 */
Trond Myklebustf5c21872007-06-25 17:11:20 -0400256static int
257rpcauth_cache_shrinker(int nr_to_scan, gfp_t gfp_mask)
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400258{
Trond Myklebustf5c21872007-06-25 17:11:20 -0400259 LIST_HEAD(free);
260 int res;
261
262 if (list_empty(&cred_unused))
263 return 0;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400264 spin_lock(&rpc_credcache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400265 nr_to_scan = rpcauth_prune_expired(&free, nr_to_scan);
266 res = (number_cred_unused / 100) * sysctl_vfs_cache_pressure;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400267 spin_unlock(&rpc_credcache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400268 rpcauth_destroy_credlist(&free);
269 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
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,
Trond Myklebust8a317762006-02-01 12:18:36 -0500277 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400279 LIST_HEAD(free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 struct rpc_cred_cache *cache = auth->au_credcache;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400281 struct hlist_node *pos;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400282 struct rpc_cred *cred = NULL,
283 *entry, *new;
Trond Myklebust25337fd2008-03-12 14:40:14 -0400284 unsigned int nr;
285
286 nr = hash_long(acred->uid, RPC_CREDCACHE_HASHBITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Trond Myklebust8a317762006-02-01 12:18:36 -0500288 if (!(flags & RPCAUTH_LOOKUP_ROOTCREDS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 nr = acred->uid & RPC_CREDCACHE_MASK;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400290
291 rcu_read_lock();
292 hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) {
293 if (!entry->cr_ops->crmatch(acred, entry, flags))
294 continue;
Trond Myklebust9499b432007-06-24 15:57:57 -0400295 spin_lock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400296 if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) {
Trond Myklebust9499b432007-06-24 15:57:57 -0400297 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400298 continue;
299 }
300 cred = get_rpccred(entry);
Trond Myklebust9499b432007-06-24 15:57:57 -0400301 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400302 break;
303 }
304 rcu_read_unlock();
305
Trond Myklebust9499b432007-06-24 15:57:57 -0400306 if (cred != NULL)
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400307 goto found;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400308
309 new = auth->au_ops->crcreate(auth, acred, flags);
310 if (IS_ERR(new)) {
311 cred = new;
312 goto out;
313 }
314
Trond Myklebust9499b432007-06-24 15:57:57 -0400315 spin_lock(&cache->lock);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400316 hlist_for_each_entry(entry, pos, &cache->hashtable[nr], cr_hash) {
317 if (!entry->cr_ops->crmatch(acred, entry, flags))
318 continue;
319 cred = get_rpccred(entry);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400322 if (cred == NULL) {
Trond Myklebust5fe47552007-06-23 19:55:31 -0400323 cred = new;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400324 set_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
325 hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]);
326 } else
327 list_add_tail(&new->cr_lru, &free);
Trond Myklebust9499b432007-06-24 15:57:57 -0400328 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400329found:
330 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags)
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500331 && cred->cr_ops->cr_init != NULL
332 && !(flags & RPCAUTH_LOOKUP_NEW)) {
333 int res = cred->cr_ops->cr_init(auth, cred);
334 if (res < 0) {
335 put_rpccred(cred);
336 cred = ERR_PTR(res);
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400339 rpcauth_destroy_credlist(&free);
340out:
341 return cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400343EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500346rpcauth_lookupcred(struct rpc_auth *auth, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct auth_cred acred = {
349 .uid = current->fsuid,
350 .gid = current->fsgid,
351 .group_info = current->group_info,
352 };
353 struct rpc_cred *ret;
354
Chuck Lever46121cf2007-01-31 12:14:08 -0500355 dprintk("RPC: looking up %s cred\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 auth->au_ops->au_name);
357 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500358 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 put_group_info(acred.group_info);
360 return ret;
361}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400362EXPORT_SYMBOL_GPL(rpcauth_lookupcred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Trond Myklebust5fe47552007-06-23 19:55:31 -0400364void
365rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred,
366 struct rpc_auth *auth, const struct rpc_credops *ops)
367{
368 INIT_HLIST_NODE(&cred->cr_hash);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400369 INIT_LIST_HEAD(&cred->cr_lru);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400370 atomic_set(&cred->cr_count, 1);
371 cred->cr_auth = auth;
372 cred->cr_ops = ops;
373 cred->cr_expire = jiffies;
374#ifdef RPC_DEBUG
375 cred->cr_magic = RPCAUTH_CRED_MAGIC;
376#endif
377 cred->cr_uid = acred->uid;
378}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400379EXPORT_SYMBOL_GPL(rpcauth_init_cred);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381struct rpc_cred *
382rpcauth_bindcred(struct rpc_task *task)
383{
Trond Myklebust1be27f32007-06-27 14:29:04 -0400384 struct rpc_auth *auth = task->tk_client->cl_auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct auth_cred acred = {
386 .uid = current->fsuid,
387 .gid = current->fsgid,
388 .group_info = current->group_info,
389 };
390 struct rpc_cred *ret;
Trond Myklebust8a317762006-02-01 12:18:36 -0500391 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Chuck Lever46121cf2007-01-31 12:14:08 -0500393 dprintk("RPC: %5u looking up %s cred\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400394 task->tk_pid, task->tk_client->cl_auth->au_ops->au_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500396 if (task->tk_flags & RPC_TASK_ROOTCREDS)
397 flags |= RPCAUTH_LOOKUP_ROOTCREDS;
398 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!IS_ERR(ret))
400 task->tk_msg.rpc_cred = ret;
401 else
402 task->tk_status = PTR_ERR(ret);
403 put_group_info(acred.group_info);
404 return ret;
405}
406
407void
408rpcauth_holdcred(struct rpc_task *task)
409{
Trond Myklebust1be27f32007-06-27 14:29:04 -0400410 struct rpc_cred *cred = task->tk_msg.rpc_cred;
411 if (cred != NULL) {
412 get_rpccred(cred);
413 dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid,
414 cred->cr_auth->au_ops->au_name, cred);
415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
418void
419put_rpccred(struct rpc_cred *cred)
420{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400421 /* Fast path for unhashed credentials */
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400422 if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0)
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400423 goto need_lock;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (!atomic_dec_and_test(&cred->cr_count))
426 return;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400427 goto out_destroy;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400428need_lock:
429 if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock))
430 return;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400431 if (!list_empty(&cred->cr_lru)) {
432 number_cred_unused--;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400433 list_del_init(&cred->cr_lru);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400434 }
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400435 if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust9499b432007-06-24 15:57:57 -0400436 rpcauth_unhash_cred(cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400437 else if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400438 cred->cr_expire = jiffies;
439 list_add_tail(&cred->cr_lru, &cred_unused);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400440 number_cred_unused++;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400441 spin_unlock(&rpc_credcache_lock);
442 return;
443 }
444 spin_unlock(&rpc_credcache_lock);
445out_destroy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 cred->cr_ops->crdestroy(cred);
447}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400448EXPORT_SYMBOL_GPL(put_rpccred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450void
451rpcauth_unbindcred(struct rpc_task *task)
452{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct rpc_cred *cred = task->tk_msg.rpc_cred;
454
Chuck Lever46121cf2007-01-31 12:14:08 -0500455 dprintk("RPC: %5u releasing %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400456 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 put_rpccred(cred);
459 task->tk_msg.rpc_cred = NULL;
460}
461
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700462__be32 *
463rpcauth_marshcred(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct rpc_cred *cred = task->tk_msg.rpc_cred;
466
Chuck Lever46121cf2007-01-31 12:14:08 -0500467 dprintk("RPC: %5u marshaling %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400468 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return cred->cr_ops->crmarshal(task, p);
471}
472
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700473__be32 *
474rpcauth_checkverf(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct rpc_cred *cred = task->tk_msg.rpc_cred;
477
Chuck Lever46121cf2007-01-31 12:14:08 -0500478 dprintk("RPC: %5u validating %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400479 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return cred->cr_ops->crvalidate(task, p);
482}
483
484int
485rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700486 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct rpc_cred *cred = task->tk_msg.rpc_cred;
489
Chuck Lever46121cf2007-01-31 12:14:08 -0500490 dprintk("RPC: %5u using %s cred %p to wrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 task->tk_pid, cred->cr_ops->cr_name, cred);
492 if (cred->cr_ops->crwrap_req)
493 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj);
494 /* By default, we encode the arguments normally. */
J. Bruce Fieldsbe879c42007-07-11 18:39:02 -0400495 return rpc_call_xdrproc(encode, rqstp, data, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498int
499rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700500 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct rpc_cred *cred = task->tk_msg.rpc_cred;
503
Chuck Lever46121cf2007-01-31 12:14:08 -0500504 dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 task->tk_pid, cred->cr_ops->cr_name, cred);
506 if (cred->cr_ops->crunwrap_resp)
507 return cred->cr_ops->crunwrap_resp(task, decode, rqstp,
508 data, obj);
509 /* By default, we decode the arguments normally. */
J. Bruce Fieldsbe879c42007-07-11 18:39:02 -0400510 return rpc_call_xdrproc(decode, rqstp, data, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511}
512
513int
514rpcauth_refreshcred(struct rpc_task *task)
515{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct rpc_cred *cred = task->tk_msg.rpc_cred;
517 int err;
518
Chuck Lever46121cf2007-01-31 12:14:08 -0500519 dprintk("RPC: %5u refreshing %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400520 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 err = cred->cr_ops->crrefresh(task);
523 if (err < 0)
524 task->tk_status = err;
525 return err;
526}
527
528void
529rpcauth_invalcred(struct rpc_task *task)
530{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400531 struct rpc_cred *cred = task->tk_msg.rpc_cred;
532
Chuck Lever46121cf2007-01-31 12:14:08 -0500533 dprintk("RPC: %5u invalidating %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400534 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400535 if (cred)
536 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539int
540rpcauth_uptodatecred(struct rpc_task *task)
541{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400542 struct rpc_cred *cred = task->tk_msg.rpc_cred;
543
544 return cred == NULL ||
545 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
Trond Myklebustf5c21872007-06-25 17:11:20 -0400547
Rusty Russell8e1f9362007-07-17 04:03:17 -0700548static struct shrinker rpc_cred_shrinker = {
549 .shrink = rpcauth_cache_shrinker,
550 .seeks = DEFAULT_SEEKS,
551};
Trond Myklebustf5c21872007-06-25 17:11:20 -0400552
553void __init rpcauth_init_module(void)
554{
555 rpc_init_authunix();
Rusty Russell8e1f9362007-07-17 04:03:17 -0700556 register_shrinker(&rpc_cred_shrinker);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400557}
558
559void __exit rpcauth_remove_module(void)
560{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700561 unregister_shrinker(&rpc_cred_shrinker);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400562}