blob: eef76a1f1dd63c15d1f1c7bac080bc5ae6e7be85 [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 if ((ops = auth_flavors[flavor]) == NULL)
87 request_module("rpc-auth-%u", flavor);
Trond Myklebustfc1b3562007-06-09 16:15:46 -040088 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);
Olaf Kirchf344f6d2006-03-20 13:44:08 -050092 goto out;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040093 }
94 spin_unlock(&rpc_authflavor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 auth = ops->create(clnt, pseudoflavor);
Trond Myklebustfc1b3562007-06-09 16:15:46 -040096 module_put(ops->owner);
J. Bruce Fields6a192752005-06-22 17:16:23 +000097 if (IS_ERR(auth))
98 return auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (clnt->cl_auth)
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400100 rpcauth_release(clnt->cl_auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 clnt->cl_auth = auth;
Olaf Kirchf344f6d2006-03-20 13:44:08 -0500102
103out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return auth;
105}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400106EXPORT_SYMBOL_GPL(rpcauth_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108void
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400109rpcauth_release(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 if (!atomic_dec_and_test(&auth->au_count))
112 return;
113 auth->au_ops->destroy(auth);
114}
115
116static DEFINE_SPINLOCK(rpc_credcache_lock);
117
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400118static void
119rpcauth_unhash_cred_locked(struct rpc_cred *cred)
120{
121 hlist_del_rcu(&cred->cr_hash);
122 smp_mb__before_clear_bit();
123 clear_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
124}
125
Trond Myklebustf0380f32009-12-03 08:10:17 -0500126static int
Trond Myklebust9499b432007-06-24 15:57:57 -0400127rpcauth_unhash_cred(struct rpc_cred *cred)
128{
129 spinlock_t *cache_lock;
Trond Myklebustf0380f32009-12-03 08:10:17 -0500130 int ret;
Trond Myklebust9499b432007-06-24 15:57:57 -0400131
132 cache_lock = &cred->cr_auth->au_credcache->lock;
133 spin_lock(cache_lock);
Trond Myklebustf0380f32009-12-03 08:10:17 -0500134 ret = atomic_read(&cred->cr_count) == 0;
135 if (ret)
Trond Myklebust9499b432007-06-24 15:57:57 -0400136 rpcauth_unhash_cred_locked(cred);
137 spin_unlock(cache_lock);
Trond Myklebustf0380f32009-12-03 08:10:17 -0500138 return ret;
Trond Myklebust9499b432007-06-24 15:57:57 -0400139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*
142 * Initialize RPC credential cache
143 */
144int
Trond Myklebustf5c21872007-06-25 17:11:20 -0400145rpcauth_init_credcache(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct rpc_cred_cache *new;
Trond Myklebust988664a2010-07-31 14:29:07 -0400148 unsigned int hashsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int i;
150
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800151 new = kmalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 if (!new)
153 return -ENOMEM;
Trond Myklebust988664a2010-07-31 14:29:07 -0400154 new->hashbits = RPC_CREDCACHE_HASHBITS;
155 hashsize = 1U << new->hashbits;
156 for (i = 0; i < hashsize; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 INIT_HLIST_HEAD(&new->hashtable[i]);
Trond Myklebust9499b432007-06-24 15:57:57 -0400158 spin_lock_init(&new->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 auth->au_credcache = new;
160 return 0;
161}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400162EXPORT_SYMBOL_GPL(rpcauth_init_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164/*
165 * Destroy a list of credentials
166 */
167static inline
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400168void rpcauth_destroy_credlist(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct rpc_cred *cred;
171
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400172 while (!list_empty(head)) {
173 cred = list_entry(head->next, struct rpc_cred, cr_lru);
174 list_del_init(&cred->cr_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 put_rpccred(cred);
176 }
177}
178
179/*
180 * Clear the RPC credential cache, and delete those credentials
181 * that are not referenced.
182 */
183void
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400184rpcauth_clear_credcache(struct rpc_cred_cache *cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400186 LIST_HEAD(free);
187 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct rpc_cred *cred;
Trond Myklebust988664a2010-07-31 14:29:07 -0400189 unsigned int hashsize = 1U << cache->hashbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int i;
191
192 spin_lock(&rpc_credcache_lock);
Trond Myklebust9499b432007-06-24 15:57:57 -0400193 spin_lock(&cache->lock);
Trond Myklebust988664a2010-07-31 14:29:07 -0400194 for (i = 0; i < hashsize; i++) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400195 head = &cache->hashtable[i];
196 while (!hlist_empty(head)) {
197 cred = hlist_entry(head->first, struct rpc_cred, cr_hash);
198 get_rpccred(cred);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400199 if (!list_empty(&cred->cr_lru)) {
200 list_del(&cred->cr_lru);
201 number_cred_unused--;
202 }
203 list_add_tail(&cred->cr_lru, &free);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400204 rpcauth_unhash_cred_locked(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
206 }
Trond Myklebust9499b432007-06-24 15:57:57 -0400207 spin_unlock(&cache->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 spin_unlock(&rpc_credcache_lock);
209 rpcauth_destroy_credlist(&free);
210}
211
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400212/*
213 * Destroy the RPC credential cache
214 */
215void
216rpcauth_destroy_credcache(struct rpc_auth *auth)
217{
218 struct rpc_cred_cache *cache = auth->au_credcache;
219
220 if (cache) {
221 auth->au_credcache = NULL;
222 rpcauth_clear_credcache(cache);
223 kfree(cache);
224 }
225}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400226EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache);
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400227
Trond Myklebustd2b83142008-04-14 18:13:37 -0400228
229#define RPC_AUTH_EXPIRY_MORATORIUM (60 * HZ)
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231/*
232 * Remove stale credentials. Avoid sleeping inside the loop.
233 */
Trond Myklebustf5c21872007-06-25 17:11:20 -0400234static int
235rpcauth_prune_expired(struct list_head *free, int nr_to_scan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Trond Myklebust9499b432007-06-24 15:57:57 -0400237 spinlock_t *cache_lock;
Trond Myklebusteac0d182008-10-28 15:21:41 -0400238 struct rpc_cred *cred, *next;
Trond Myklebustd2b83142008-04-14 18:13:37 -0400239 unsigned long expired = jiffies - RPC_AUTH_EXPIRY_MORATORIUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Trond Myklebusteac0d182008-10-28 15:21:41 -0400241 list_for_each_entry_safe(cred, next, &cred_unused, cr_lru) {
242
Trond Myklebust20673402010-05-13 12:51:06 -0400243 if (nr_to_scan-- == 0)
244 break;
Trond Myklebust93a05e62010-05-13 12:51:06 -0400245 /*
246 * Enforce a 60 second garbage collection moratorium
247 * Note that the cred_unused list must be time-ordered.
248 */
Trond Myklebust3d7b0892010-04-22 15:35:55 -0400249 if (time_in_range(cred->cr_expire, expired, jiffies) &&
Trond Myklebusteac0d182008-10-28 15:21:41 -0400250 test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0)
Trond Myklebust93a05e62010-05-13 12:51:06 -0400251 return 0;
Trond Myklebusteac0d182008-10-28 15:21:41 -0400252
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400253 list_del_init(&cred->cr_lru);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400254 number_cred_unused--;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400255 if (atomic_read(&cred->cr_count) != 0)
256 continue;
Trond Myklebusteac0d182008-10-28 15:21:41 -0400257
Trond Myklebust9499b432007-06-24 15:57:57 -0400258 cache_lock = &cred->cr_auth->au_credcache->lock;
259 spin_lock(cache_lock);
260 if (atomic_read(&cred->cr_count) == 0) {
261 get_rpccred(cred);
262 list_add_tail(&cred->cr_lru, free);
263 rpcauth_unhash_cred_locked(cred);
264 }
265 spin_unlock(cache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
Trond Myklebust93a05e62010-05-13 12:51:06 -0400267 return (number_cred_unused / 100) * sysctl_vfs_cache_pressure;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400268}
269
270/*
Trond Myklebustf5c21872007-06-25 17:11:20 -0400271 * Run memory cache shrinker.
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400272 */
Trond Myklebustf5c21872007-06-25 17:11:20 -0400273static int
274rpcauth_cache_shrinker(int nr_to_scan, gfp_t gfp_mask)
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400275{
Trond Myklebustf5c21872007-06-25 17:11:20 -0400276 LIST_HEAD(free);
277 int res;
278
Trond Myklebustd300a412010-05-13 12:51:03 -0400279 if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL)
280 return (nr_to_scan == 0) ? 0 : -1;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400281 if (list_empty(&cred_unused))
282 return 0;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400283 spin_lock(&rpc_credcache_lock);
Trond Myklebust93a05e62010-05-13 12:51:06 -0400284 res = rpcauth_prune_expired(&free, nr_to_scan);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400285 spin_unlock(&rpc_credcache_lock);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400286 rpcauth_destroy_credlist(&free);
287 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290/*
291 * Look up a process' credentials in the authentication cache
292 */
293struct rpc_cred *
294rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
Trond Myklebust8a317762006-02-01 12:18:36 -0500295 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400297 LIST_HEAD(free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct rpc_cred_cache *cache = auth->au_credcache;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400299 struct hlist_node *pos;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400300 struct rpc_cred *cred = NULL,
301 *entry, *new;
Trond Myklebust25337fd2008-03-12 14:40:14 -0400302 unsigned int nr;
303
Trond Myklebust988664a2010-07-31 14:29:07 -0400304 nr = hash_long(acred->uid, cache->hashbits);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400306 rcu_read_lock();
307 hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) {
308 if (!entry->cr_ops->crmatch(acred, entry, flags))
309 continue;
Trond Myklebust9499b432007-06-24 15:57:57 -0400310 spin_lock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400311 if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) {
Trond Myklebust9499b432007-06-24 15:57:57 -0400312 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400313 continue;
314 }
315 cred = get_rpccred(entry);
Trond Myklebust9499b432007-06-24 15:57:57 -0400316 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400317 break;
318 }
319 rcu_read_unlock();
320
Trond Myklebust9499b432007-06-24 15:57:57 -0400321 if (cred != NULL)
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400322 goto found;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400323
324 new = auth->au_ops->crcreate(auth, acred, flags);
325 if (IS_ERR(new)) {
326 cred = new;
327 goto out;
328 }
329
Trond Myklebust9499b432007-06-24 15:57:57 -0400330 spin_lock(&cache->lock);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400331 hlist_for_each_entry(entry, pos, &cache->hashtable[nr], cr_hash) {
332 if (!entry->cr_ops->crmatch(acred, entry, flags))
333 continue;
334 cred = get_rpccred(entry);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400335 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400337 if (cred == NULL) {
Trond Myklebust5fe47552007-06-23 19:55:31 -0400338 cred = new;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400339 set_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
340 hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]);
341 } else
342 list_add_tail(&new->cr_lru, &free);
Trond Myklebust9499b432007-06-24 15:57:57 -0400343 spin_unlock(&cache->lock);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400344found:
Joe Perchesf64f9e72009-11-29 16:55:45 -0800345 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) &&
346 cred->cr_ops->cr_init != NULL &&
347 !(flags & RPCAUTH_LOOKUP_NEW)) {
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500348 int res = cred->cr_ops->cr_init(auth, cred);
349 if (res < 0) {
350 put_rpccred(cred);
351 cred = ERR_PTR(res);
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400354 rpcauth_destroy_credlist(&free);
355out:
356 return cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400358EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500361rpcauth_lookupcred(struct rpc_auth *auth, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
David Howells86a264a2008-11-14 10:39:18 +1100363 struct auth_cred acred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct rpc_cred *ret;
David Howells86a264a2008-11-14 10:39:18 +1100365 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Chuck Lever46121cf2007-01-31 12:14:08 -0500367 dprintk("RPC: looking up %s cred\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 auth->au_ops->au_name);
David Howells86a264a2008-11-14 10:39:18 +1100369
370 memset(&acred, 0, sizeof(acred));
371 acred.uid = cred->fsuid;
372 acred.gid = cred->fsgid;
373 acred.group_info = get_group_info(((struct cred *)cred)->group_info);
374
Trond Myklebust8a317762006-02-01 12:18:36 -0500375 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 put_group_info(acred.group_info);
377 return ret;
378}
379
Trond Myklebust5fe47552007-06-23 19:55:31 -0400380void
381rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred,
382 struct rpc_auth *auth, const struct rpc_credops *ops)
383{
384 INIT_HLIST_NODE(&cred->cr_hash);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400385 INIT_LIST_HEAD(&cred->cr_lru);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400386 atomic_set(&cred->cr_count, 1);
387 cred->cr_auth = auth;
388 cred->cr_ops = ops;
389 cred->cr_expire = jiffies;
390#ifdef RPC_DEBUG
391 cred->cr_magic = RPCAUTH_CRED_MAGIC;
392#endif
393 cred->cr_uid = acred->uid;
394}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400395EXPORT_SYMBOL_GPL(rpcauth_init_cred);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400396
Trond Myklebust5c691042008-03-12 16:21:07 -0400397void
Trond Myklebust5d351752009-09-15 13:32:13 -0400398rpcauth_generic_bind_cred(struct rpc_task *task, struct rpc_cred *cred, int lookupflags)
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400399{
400 task->tk_msg.rpc_cred = get_rpccred(cred);
401 dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid,
402 cred->cr_auth->au_ops->au_name, cred);
403}
Trond Myklebust5c691042008-03-12 16:21:07 -0400404EXPORT_SYMBOL_GPL(rpcauth_generic_bind_cred);
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400405
406static void
Trond Myklebust5d351752009-09-15 13:32:13 -0400407rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Trond Myklebust1be27f32007-06-27 14:29:04 -0400409 struct rpc_auth *auth = task->tk_client->cl_auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 struct auth_cred acred = {
Trond Myklebustaf093832008-03-12 12:12:16 -0400411 .uid = 0,
412 .gid = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 };
414 struct rpc_cred *ret;
415
Chuck Lever46121cf2007-01-31 12:14:08 -0500416 dprintk("RPC: %5u looking up %s cred\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400417 task->tk_pid, task->tk_client->cl_auth->au_ops->au_name);
Trond Myklebust5d351752009-09-15 13:32:13 -0400418 ret = auth->au_ops->lookup_cred(auth, &acred, lookupflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (!IS_ERR(ret))
420 task->tk_msg.rpc_cred = ret;
421 else
422 task->tk_status = PTR_ERR(ret);
Trond Myklebustaf093832008-03-12 12:12:16 -0400423}
424
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400425static void
Trond Myklebust5d351752009-09-15 13:32:13 -0400426rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags)
Trond Myklebustaf093832008-03-12 12:12:16 -0400427{
428 struct rpc_auth *auth = task->tk_client->cl_auth;
429 struct rpc_cred *ret;
430
431 dprintk("RPC: %5u looking up %s cred\n",
432 task->tk_pid, auth->au_ops->au_name);
Trond Myklebust5d351752009-09-15 13:32:13 -0400433 ret = rpcauth_lookupcred(auth, lookupflags);
Trond Myklebustaf093832008-03-12 12:12:16 -0400434 if (!IS_ERR(ret))
435 task->tk_msg.rpc_cred = ret;
436 else
437 task->tk_status = PTR_ERR(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440void
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400441rpcauth_bindcred(struct rpc_task *task, struct rpc_cred *cred, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
Trond Myklebust5d351752009-09-15 13:32:13 -0400443 int lookupflags = 0;
444
445 if (flags & RPC_TASK_ASYNC)
446 lookupflags |= RPCAUTH_LOOKUP_NEW;
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400447 if (cred != NULL)
Trond Myklebust5d351752009-09-15 13:32:13 -0400448 cred->cr_ops->crbind(task, cred, lookupflags);
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400449 else if (flags & RPC_TASK_ROOTCREDS)
Trond Myklebust5d351752009-09-15 13:32:13 -0400450 rpcauth_bind_root_cred(task, lookupflags);
Trond Myklebust4ccda2c2008-03-12 16:20:55 -0400451 else
Trond Myklebust5d351752009-09-15 13:32:13 -0400452 rpcauth_bind_new_cred(task, lookupflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455void
456put_rpccred(struct rpc_cred *cred)
457{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400458 /* Fast path for unhashed credentials */
Trond Myklebustf0380f32009-12-03 08:10:17 -0500459 if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) == 0) {
460 if (atomic_dec_and_test(&cred->cr_count))
461 cred->cr_ops->crdestroy(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return;
Trond Myklebustf0380f32009-12-03 08:10:17 -0500463 }
464
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400465 if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock))
466 return;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400467 if (!list_empty(&cred->cr_lru)) {
468 number_cred_unused--;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400469 list_del_init(&cred->cr_lru);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400470 }
Trond Myklebust5f707eb2008-10-28 15:21:42 -0400471 if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) {
Trond Myklebustf0380f32009-12-03 08:10:17 -0500472 if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0) {
473 cred->cr_expire = jiffies;
474 list_add_tail(&cred->cr_lru, &cred_unused);
475 number_cred_unused++;
476 goto out_nodestroy;
477 }
478 if (!rpcauth_unhash_cred(cred)) {
479 /* We were hashed and someone looked us up... */
480 goto out_nodestroy;
481 }
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400482 }
483 spin_unlock(&rpc_credcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 cred->cr_ops->crdestroy(cred);
Trond Myklebustf0380f32009-12-03 08:10:17 -0500485 return;
486out_nodestroy:
487 spin_unlock(&rpc_credcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400489EXPORT_SYMBOL_GPL(put_rpccred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491void
492rpcauth_unbindcred(struct rpc_task *task)
493{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct rpc_cred *cred = task->tk_msg.rpc_cred;
495
Chuck Lever46121cf2007-01-31 12:14:08 -0500496 dprintk("RPC: %5u releasing %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400497 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 put_rpccred(cred);
500 task->tk_msg.rpc_cred = NULL;
501}
502
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700503__be32 *
504rpcauth_marshcred(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct rpc_cred *cred = task->tk_msg.rpc_cred;
507
Chuck Lever46121cf2007-01-31 12:14:08 -0500508 dprintk("RPC: %5u marshaling %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400509 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return cred->cr_ops->crmarshal(task, p);
512}
513
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700514__be32 *
515rpcauth_checkverf(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct rpc_cred *cred = task->tk_msg.rpc_cred;
518
Chuck Lever46121cf2007-01-31 12:14:08 -0500519 dprintk("RPC: %5u validating %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 return cred->cr_ops->crvalidate(task, p);
523}
524
525int
526rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700527 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 struct rpc_cred *cred = task->tk_msg.rpc_cred;
530
Chuck Lever46121cf2007-01-31 12:14:08 -0500531 dprintk("RPC: %5u using %s cred %p to wrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 task->tk_pid, cred->cr_ops->cr_name, cred);
533 if (cred->cr_ops->crwrap_req)
534 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj);
535 /* By default, we encode the arguments normally. */
Trond Myklebust88a9fe82008-12-23 15:21:31 -0500536 return encode(rqstp, data, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539int
540rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700541 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 struct rpc_cred *cred = task->tk_msg.rpc_cred;
544
Chuck Lever46121cf2007-01-31 12:14:08 -0500545 dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 task->tk_pid, cred->cr_ops->cr_name, cred);
547 if (cred->cr_ops->crunwrap_resp)
548 return cred->cr_ops->crunwrap_resp(task, decode, rqstp,
549 data, obj);
550 /* By default, we decode the arguments normally. */
Trond Myklebust88a9fe82008-12-23 15:21:31 -0500551 return decode(rqstp, data, obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554int
555rpcauth_refreshcred(struct rpc_task *task)
556{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct rpc_cred *cred = task->tk_msg.rpc_cred;
558 int err;
559
Chuck Lever46121cf2007-01-31 12:14:08 -0500560 dprintk("RPC: %5u refreshing %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400561 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Chuck Lever0bbacc42005-11-01 16:53:32 -0500562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 err = cred->cr_ops->crrefresh(task);
564 if (err < 0)
565 task->tk_status = err;
566 return err;
567}
568
569void
570rpcauth_invalcred(struct rpc_task *task)
571{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400572 struct rpc_cred *cred = task->tk_msg.rpc_cred;
573
Chuck Lever46121cf2007-01-31 12:14:08 -0500574 dprintk("RPC: %5u invalidating %s cred %p\n",
Trond Myklebust1be27f32007-06-27 14:29:04 -0400575 task->tk_pid, cred->cr_auth->au_ops->au_name, cred);
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400576 if (cred)
577 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
580int
581rpcauth_uptodatecred(struct rpc_task *task)
582{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400583 struct rpc_cred *cred = task->tk_msg.rpc_cred;
584
585 return cred == NULL ||
586 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587}
Trond Myklebustf5c21872007-06-25 17:11:20 -0400588
Rusty Russell8e1f9362007-07-17 04:03:17 -0700589static struct shrinker rpc_cred_shrinker = {
590 .shrink = rpcauth_cache_shrinker,
591 .seeks = DEFAULT_SEEKS,
592};
Trond Myklebustf5c21872007-06-25 17:11:20 -0400593
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400594int __init rpcauth_init_module(void)
Trond Myklebustf5c21872007-06-25 17:11:20 -0400595{
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400596 int err;
597
598 err = rpc_init_authunix();
599 if (err < 0)
600 goto out1;
601 err = rpc_init_generic_auth();
602 if (err < 0)
603 goto out2;
Rusty Russell8e1f9362007-07-17 04:03:17 -0700604 register_shrinker(&rpc_cred_shrinker);
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400605 return 0;
606out2:
607 rpc_destroy_authunix();
608out1:
609 return err;
Trond Myklebustf5c21872007-06-25 17:11:20 -0400610}
611
612void __exit rpcauth_remove_module(void)
613{
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400614 rpc_destroy_authunix();
615 rpc_destroy_generic_auth();
Rusty Russell8e1f9362007-07-17 04:03:17 -0700616 unregister_shrinker(&rpc_cred_shrinker);
Trond Myklebustf5c21872007-06-25 17:11:20 -0400617}