blob: eca941ce298b6465507c2f672dc5bf44350fffe6 [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
Trond Myklebustfc1b3562007-06-09 16:15:46 -040021static DEFINE_SPINLOCK(rpc_authflavor_lock);
Trond Myklebustf1c0a862007-06-23 20:17:58 -040022static const struct rpc_authops *auth_flavors[RPC_AUTH_MAXFLAVOR] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 &authnull_ops, /* AUTH_NULL */
24 &authunix_ops, /* AUTH_UNIX */
25 NULL, /* others can be loadable modules */
26};
27
Trond Myklebuste092bdc2007-06-23 19:45:36 -040028static LIST_HEAD(cred_unused);
Trond Myklebustf5c21872007-06-25 17:11:20 -040029static unsigned long number_cred_unused;
Trond Myklebuste092bdc2007-06-23 19:45:36 -040030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static u32
32pseudoflavor_to_flavor(u32 flavor) {
33 if (flavor >= RPC_AUTH_MAXFLAVOR)
34 return RPC_AUTH_GSS;
35 return flavor;
36}
37
38int
Trond Myklebustf1c0a862007-06-23 20:17:58 -040039rpcauth_register(const struct rpc_authops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 rpc_authflavor_t flavor;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040042 int ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
45 return -EINVAL;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040046 spin_lock(&rpc_authflavor_lock);
47 if (auth_flavors[flavor] == NULL) {
48 auth_flavors[flavor] = ops;
49 ret = 0;
50 }
51 spin_unlock(&rpc_authflavor_lock);
52 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
Trond Myklebuste8914c62007-07-14 15:39:59 -040054EXPORT_SYMBOL_GPL(rpcauth_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56int
Trond Myklebustf1c0a862007-06-23 20:17:58 -040057rpcauth_unregister(const struct rpc_authops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 rpc_authflavor_t flavor;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040060 int ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
63 return -EINVAL;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040064 spin_lock(&rpc_authflavor_lock);
65 if (auth_flavors[flavor] == ops) {
66 auth_flavors[flavor] = NULL;
67 ret = 0;
68 }
69 spin_unlock(&rpc_authflavor_lock);
70 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
Trond Myklebuste8914c62007-07-14 15:39:59 -040072EXPORT_SYMBOL_GPL(rpcauth_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74struct rpc_auth *
75rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
76{
77 struct rpc_auth *auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040078 const struct rpc_authops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 u32 flavor = pseudoflavor_to_flavor(pseudoflavor);
80
Olaf Kirchf344f6d2006-03-20 13:44:08 -050081 auth = ERR_PTR(-EINVAL);
82 if (flavor >= RPC_AUTH_MAXFLAVOR)
83 goto out;
84
Olaf Kirchf344f6d2006-03-20 13:44:08 -050085#ifdef CONFIG_KMOD
86 if ((ops = auth_flavors[flavor]) == NULL)
87 request_module("rpc-auth-%u", flavor);
88#endif
Trond Myklebustfc1b3562007-06-09 16:15:46 -040089 spin_lock(&rpc_authflavor_lock);
90 ops = auth_flavors[flavor];
91 if (ops == NULL || !try_module_get(ops->owner)) {
92 spin_unlock(&rpc_authflavor_lock);
Olaf Kirchf344f6d2006-03-20 13:44:08 -050093 goto out;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040094 }
95 spin_unlock(&rpc_authflavor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 auth = ops->create(clnt, pseudoflavor);
Trond Myklebustfc1b3562007-06-09 16:15:46 -040097 module_put(ops->owner);
J. Bruce Fields6a192752005-06-22 17:16:23 +000098 if (IS_ERR(auth))
99 return auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (clnt->cl_auth)
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400101 rpcauth_release(clnt->cl_auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 clnt->cl_auth = auth;
Olaf Kirchf344f6d2006-03-20 13:44:08 -0500103
104out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return auth;
106}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400107EXPORT_SYMBOL_GPL(rpcauth_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109void
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400110rpcauth_release(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 if (!atomic_dec_and_test(&auth->au_count))
113 return;
114 auth->au_ops->destroy(auth);
115}
116
117static DEFINE_SPINLOCK(rpc_credcache_lock);
118
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400119static void
120rpcauth_unhash_cred_locked(struct rpc_cred *cred)
121{
122 hlist_del_rcu(&cred->cr_hash);
123 smp_mb__before_clear_bit();
124 clear_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
125}
126
Trond Myklebust9499b432007-06-24 15:57:57 -0400127static void
128rpcauth_unhash_cred(struct rpc_cred *cred)
129{
130 spinlock_t *cache_lock;
131
132 cache_lock = &cred->cr_auth->au_credcache->lock;
133 spin_lock(cache_lock);
134 if (atomic_read(&cred->cr_count) == 0)
135 rpcauth_unhash_cred_locked(cred);
136 spin_unlock(cache_lock);
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * Initialize RPC credential cache
141 */
142int
Trond Myklebustf5c21872007-06-25 17:11:20 -0400143rpcauth_init_credcache(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 struct rpc_cred_cache *new;
146 int i;
147
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800148 new = kmalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (!new)
150 return -ENOMEM;
151 for (i = 0; i < RPC_CREDCACHE_NR; i++)
152 INIT_HLIST_HEAD(&new->hashtable[i]);
Trond Myklebust9499b432007-06-24 15:57:57 -0400153 spin_lock_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 auth->au_credcache = new;
155 return 0;
156}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400157EXPORT_SYMBOL_GPL(rpcauth_init_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159/*
160 * Destroy a list of credentials
161 */
162static inline
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400163void rpcauth_destroy_credlist(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 struct rpc_cred *cred;
166
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400167 while (!list_empty(head)) {
168 cred = list_entry(head->next, struct rpc_cred, cr_lru);
169 list_del_init(&cred->cr_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 put_rpccred(cred);
171 }
172}
173
174/*
175 * Clear the RPC credential cache, and delete those credentials
176 * that are not referenced.
177 */
178void
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400179rpcauth_clear_credcache(struct rpc_cred_cache *cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400181 LIST_HEAD(free);
182 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 struct rpc_cred *cred;
184 int i;
185
186 spin_lock(&rpc_credcache_lock);
Trond Myklebust9499b432007-06-24 15:57:57 -0400187 spin_lock(&cache->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 for (i = 0; i < RPC_CREDCACHE_NR; i++) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400189 head = &cache->hashtable[i];
190 while (!hlist_empty(head)) {
191 cred = hlist_entry(head->first, struct rpc_cred, cr_hash);
192 get_rpccred(cred);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400193 if (!list_empty(&cred->cr_lru)) {
194 list_del(&cred->cr_lru);
195 number_cred_unused--;
196 }
197 list_add_tail(&cred->cr_lru, &free);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400198 rpcauth_unhash_cred_locked(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200 }
Trond Myklebust9499b432007-06-24 15:57:57 -0400201 spin_unlock(&cache->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 spin_unlock(&rpc_credcache_lock);
203 rpcauth_destroy_credlist(&free);
204}
205
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400206/*
207 * Destroy the RPC credential cache
208 */
209void
210rpcauth_destroy_credcache(struct rpc_auth *auth)
211{
212 struct rpc_cred_cache *cache = auth->au_credcache;
213
214 if (cache) {
215 auth->au_credcache = NULL;
216 rpcauth_clear_credcache(cache);
217 kfree(cache);
218 }
219}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400220EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/*
223 * Remove stale credentials. Avoid sleeping inside the loop.
224 */
Trond Myklebustf5c21872007-06-25 17:11:20 -0400225static int
226rpcauth_prune_expired(struct list_head *free, int nr_to_scan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Trond Myklebust9499b432007-06-24 15:57:57 -0400228 spinlock_t *cache_lock;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400229 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400231 while (!list_empty(&cred_unused)) {
232 cred = list_entry(cred_unused.next, struct rpc_cred, cr_lru);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400233 list_del_init(&cred->cr_lru);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400234 number_cred_unused--;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400235 if (atomic_read(&cred->cr_count) != 0)
236 continue;
Trond Myklebust9499b432007-06-24 15:57:57 -0400237 cache_lock = &cred->cr_auth->au_credcache->lock;
238 spin_lock(cache_lock);
239 if (atomic_read(&cred->cr_count) == 0) {
240 get_rpccred(cred);
241 list_add_tail(&cred->cr_lru, free);
242 rpcauth_unhash_cred_locked(cred);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400243 nr_to_scan--;
Trond Myklebust9499b432007-06-24 15:57:57 -0400244 }
245 spin_unlock(cache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400246 if (nr_to_scan == 0)
247 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Trond Myklebustf5c21872007-06-25 17:11:20 -0400249 return nr_to_scan;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400250}
251
252/*
Trond Myklebustf5c21872007-06-25 17:11:20 -0400253 * Run memory cache shrinker.
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400254 */
Trond Myklebustf5c21872007-06-25 17:11:20 -0400255static int
256rpcauth_cache_shrinker(int nr_to_scan, gfp_t gfp_mask)
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400257{
Trond Myklebustf5c21872007-06-25 17:11:20 -0400258 LIST_HEAD(free);
259 int res;
260
261 if (list_empty(&cred_unused))
262 return 0;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400263 spin_lock(&rpc_credcache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400264 nr_to_scan = rpcauth_prune_expired(&free, nr_to_scan);
265 res = (number_cred_unused / 100) * sysctl_vfs_cache_pressure;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400266 spin_unlock(&rpc_credcache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400267 rpcauth_destroy_credlist(&free);
268 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/*
272 * Look up a process' credentials in the authentication cache
273 */
274struct rpc_cred *
275rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
Trond Myklebust8a317762006-02-01 12:18:36 -0500276 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400278 LIST_HEAD(free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct rpc_cred_cache *cache = auth->au_credcache;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400280 struct hlist_node *pos;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400281 struct rpc_cred *cred = NULL,
282 *entry, *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 int nr = 0;
284
Trond Myklebust8a317762006-02-01 12:18:36 -0500285 if (!(flags & RPCAUTH_LOOKUP_ROOTCREDS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 nr = acred->uid & RPC_CREDCACHE_MASK;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400287
288 rcu_read_lock();
289 hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) {
290 if (!entry->cr_ops->crmatch(acred, entry, flags))
291 continue;
Trond Myklebust9499b432007-06-24 15:57:57 -0400292 spin_lock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400293 if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) {
Trond Myklebust9499b432007-06-24 15:57:57 -0400294 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400295 continue;
296 }
297 cred = get_rpccred(entry);
Trond Myklebust9499b432007-06-24 15:57:57 -0400298 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400299 break;
300 }
301 rcu_read_unlock();
302
Trond Myklebust9499b432007-06-24 15:57:57 -0400303 if (cred != NULL)
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400304 goto found;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400305
306 new = auth->au_ops->crcreate(auth, acred, flags);
307 if (IS_ERR(new)) {
308 cred = new;
309 goto out;
310 }
311
Trond Myklebust9499b432007-06-24 15:57:57 -0400312 spin_lock(&cache->lock);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400313 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);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400317 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400319 if (cred == NULL) {
Trond Myklebust5fe47552007-06-23 19:55:31 -0400320 cred = new;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400321 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);
Trond Myklebust9499b432007-06-24 15:57:57 -0400325 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400326found:
327 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags)
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500328 && 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400336 rpcauth_destroy_credlist(&free);
337out:
338 return cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400340EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500343rpcauth_lookupcred(struct rpc_auth *auth, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
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
Chuck Lever46121cf2007-01-31 12:14:08 -0500352 dprintk("RPC: looking up %s cred\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 auth->au_ops->au_name);
354 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500355 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 put_group_info(acred.group_info);
357 return ret;
358}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400359EXPORT_SYMBOL_GPL(rpcauth_lookupcred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Trond Myklebust5fe47552007-06-23 19:55:31 -0400361void
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);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400366 INIT_LIST_HEAD(&cred->cr_lru);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400367 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}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400376EXPORT_SYMBOL_GPL(rpcauth_init_cred);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378struct rpc_cred *
379rpcauth_bindcred(struct rpc_task *task)
380{
Trond Myklebust1be27f32007-06-27 14:29:04 -0400381 struct rpc_auth *auth = task->tk_client->cl_auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct auth_cred acred = {
383 .uid = current->fsuid,
384 .gid = current->fsgid,
385 .group_info = current->group_info,
386 };
387 struct rpc_cred *ret;
Trond Myklebust8a317762006-02-01 12:18:36 -0500388 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Chuck Lever46121cf2007-01-31 12:14:08 -0500390 dprintk("RPC: %5u looking up %s cred\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400391 task->tk_pid, task->tk_client->cl_auth->au_ops->au_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500393 if (task->tk_flags & RPC_TASK_ROOTCREDS)
394 flags |= RPCAUTH_LOOKUP_ROOTCREDS;
395 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (!IS_ERR(ret))
397 task->tk_msg.rpc_cred = ret;
398 else
399 task->tk_status = PTR_ERR(ret);
400 put_group_info(acred.group_info);
401 return ret;
402}
403
404void
405rpcauth_holdcred(struct rpc_task *task)
406{
Trond Myklebust1be27f32007-06-27 14:29:04 -0400407 struct rpc_cred *cred = task->tk_msg.rpc_cred;
408 if (cred != NULL) {
409 get_rpccred(cred);
410 dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid,
411 cred->cr_auth->au_ops->au_name, cred);
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
415void
416put_rpccred(struct rpc_cred *cred)
417{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400418 /* Fast path for unhashed credentials */
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400419 if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0)
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400420 goto need_lock;
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 if (!atomic_dec_and_test(&cred->cr_count))
423 return;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400424 goto out_destroy;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400425need_lock:
426 if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock))
427 return;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400428 if (!list_empty(&cred->cr_lru)) {
429 number_cred_unused--;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400430 list_del_init(&cred->cr_lru);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400431 }
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400432 if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust9499b432007-06-24 15:57:57 -0400433 rpcauth_unhash_cred(cred);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400434 else if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400435 cred->cr_expire = jiffies;
436 list_add_tail(&cred->cr_lru, &cred_unused);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400437 number_cred_unused++;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400438 spin_unlock(&rpc_credcache_lock);
439 return;
440 }
441 spin_unlock(&rpc_credcache_lock);
442out_destroy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 cred->cr_ops->crdestroy(cred);
444}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400445EXPORT_SYMBOL_GPL(put_rpccred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447void
448rpcauth_unbindcred(struct rpc_task *task)
449{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 struct rpc_cred *cred = task->tk_msg.rpc_cred;
451
Chuck Lever46121cf2007-01-31 12:14:08 -0500452 dprintk("RPC: %5u releasing %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400453 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 put_rpccred(cred);
456 task->tk_msg.rpc_cred = NULL;
457}
458
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700459__be32 *
460rpcauth_marshcred(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct rpc_cred *cred = task->tk_msg.rpc_cred;
463
Chuck Lever46121cf2007-01-31 12:14:08 -0500464 dprintk("RPC: %5u marshaling %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400465 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return cred->cr_ops->crmarshal(task, p);
468}
469
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700470__be32 *
471rpcauth_checkverf(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct rpc_cred *cred = task->tk_msg.rpc_cred;
474
Chuck Lever46121cf2007-01-31 12:14:08 -0500475 dprintk("RPC: %5u validating %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400476 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return cred->cr_ops->crvalidate(task, p);
479}
480
481int
482rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700483 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct rpc_cred *cred = task->tk_msg.rpc_cred;
486
Chuck Lever46121cf2007-01-31 12:14:08 -0500487 dprintk("RPC: %5u using %s cred %p to wrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 task->tk_pid, cred->cr_ops->cr_name, cred);
489 if (cred->cr_ops->crwrap_req)
490 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj);
491 /* By default, we encode the arguments normally. */
J. Bruce Fieldsbe879c42007-07-11 18:39:02 -0400492 return rpc_call_xdrproc(encode, rqstp, data, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495int
496rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700497 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 struct rpc_cred *cred = task->tk_msg.rpc_cred;
500
Chuck Lever46121cf2007-01-31 12:14:08 -0500501 dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 task->tk_pid, cred->cr_ops->cr_name, cred);
503 if (cred->cr_ops->crunwrap_resp)
504 return cred->cr_ops->crunwrap_resp(task, decode, rqstp,
505 data, obj);
506 /* By default, we decode the arguments normally. */
J. Bruce Fieldsbe879c42007-07-11 18:39:02 -0400507 return rpc_call_xdrproc(decode, rqstp, data, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510int
511rpcauth_refreshcred(struct rpc_task *task)
512{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 struct rpc_cred *cred = task->tk_msg.rpc_cred;
514 int err;
515
Chuck Lever46121cf2007-01-31 12:14:08 -0500516 dprintk("RPC: %5u refreshing %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400517 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 err = cred->cr_ops->crrefresh(task);
520 if (err < 0)
521 task->tk_status = err;
522 return err;
523}
524
525void
526rpcauth_invalcred(struct rpc_task *task)
527{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400528 struct rpc_cred *cred = task->tk_msg.rpc_cred;
529
Chuck Lever46121cf2007-01-31 12:14:08 -0500530 dprintk("RPC: %5u invalidating %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400531 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400532 if (cred)
533 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536int
537rpcauth_uptodatecred(struct rpc_task *task)
538{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400539 struct rpc_cred *cred = task->tk_msg.rpc_cred;
540
541 return cred == NULL ||
542 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
Trond Myklebustf5c21872007-06-25 17:11:20 -0400544
Rusty Russell8e1f9362007-07-17 04:03:17 -0700545static struct shrinker rpc_cred_shrinker = {
546 .shrink = rpcauth_cache_shrinker,
547 .seeks = DEFAULT_SEEKS,
548};
Trond Myklebustf5c21872007-06-25 17:11:20 -0400549
550void __init rpcauth_init_module(void)
551{
552 rpc_init_authunix();
Rusty Russell8e1f9362007-07-17 04:03:17 -0700553 register_shrinker(&rpc_cred_shrinker);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400554}
555
556void __exit rpcauth_remove_module(void)
557{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700558 unregister_shrinker(&rpc_cred_shrinker);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400559}