blob: ad7bde2c437e7577bea01e9f7791800f6f69e595 [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);
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static u32
31pseudoflavor_to_flavor(u32 flavor) {
32 if (flavor >= RPC_AUTH_MAXFLAVOR)
33 return RPC_AUTH_GSS;
34 return flavor;
35}
36
37int
Trond Myklebustf1c0a862007-06-23 20:17:58 -040038rpcauth_register(const struct rpc_authops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 rpc_authflavor_t flavor;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040041 int ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
44 return -EINVAL;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040045 spin_lock(&rpc_authflavor_lock);
46 if (auth_flavors[flavor] == NULL) {
47 auth_flavors[flavor] = ops;
48 ret = 0;
49 }
50 spin_unlock(&rpc_authflavor_lock);
51 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54int
Trond Myklebustf1c0a862007-06-23 20:17:58 -040055rpcauth_unregister(const struct rpc_authops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 rpc_authflavor_t flavor;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040058 int ret = -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR)
61 return -EINVAL;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040062 spin_lock(&rpc_authflavor_lock);
63 if (auth_flavors[flavor] == ops) {
64 auth_flavors[flavor] = NULL;
65 ret = 0;
66 }
67 spin_unlock(&rpc_authflavor_lock);
68 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71struct rpc_auth *
72rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt)
73{
74 struct rpc_auth *auth;
Trond Myklebustf1c0a862007-06-23 20:17:58 -040075 const struct rpc_authops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 u32 flavor = pseudoflavor_to_flavor(pseudoflavor);
77
Olaf Kirchf344f6d2006-03-20 13:44:08 -050078 auth = ERR_PTR(-EINVAL);
79 if (flavor >= RPC_AUTH_MAXFLAVOR)
80 goto out;
81
Olaf Kirchf344f6d2006-03-20 13:44:08 -050082#ifdef CONFIG_KMOD
83 if ((ops = auth_flavors[flavor]) == NULL)
84 request_module("rpc-auth-%u", flavor);
85#endif
Trond Myklebustfc1b3562007-06-09 16:15:46 -040086 spin_lock(&rpc_authflavor_lock);
87 ops = auth_flavors[flavor];
88 if (ops == NULL || !try_module_get(ops->owner)) {
89 spin_unlock(&rpc_authflavor_lock);
Olaf Kirchf344f6d2006-03-20 13:44:08 -050090 goto out;
Trond Myklebustfc1b3562007-06-09 16:15:46 -040091 }
92 spin_unlock(&rpc_authflavor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 auth = ops->create(clnt, pseudoflavor);
Trond Myklebustfc1b3562007-06-09 16:15:46 -040094 module_put(ops->owner);
J. Bruce Fields6a192752005-06-22 17:16:23 +000095 if (IS_ERR(auth))
96 return auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (clnt->cl_auth)
Trond Myklebustde7a8ce2007-06-23 10:46:47 -040098 rpcauth_release(clnt->cl_auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 clnt->cl_auth = auth;
Olaf Kirchf344f6d2006-03-20 13:44:08 -0500100
101out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return auth;
103}
104
105void
Trond Myklebustde7a8ce2007-06-23 10:46:47 -0400106rpcauth_release(struct rpc_auth *auth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 if (!atomic_dec_and_test(&auth->au_count))
109 return;
110 auth->au_ops->destroy(auth);
111}
112
113static DEFINE_SPINLOCK(rpc_credcache_lock);
114
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400115static void
116rpcauth_unhash_cred_locked(struct rpc_cred *cred)
117{
118 hlist_del_rcu(&cred->cr_hash);
119 smp_mb__before_clear_bit();
120 clear_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * Initialize RPC credential cache
125 */
126int
127rpcauth_init_credcache(struct rpc_auth *auth, unsigned long expire)
128{
129 struct rpc_cred_cache *new;
130 int i;
131
Kris Katterjohn8b3a7002006-01-11 15:56:43 -0800132 new = kmalloc(sizeof(*new), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (!new)
134 return -ENOMEM;
135 for (i = 0; i < RPC_CREDCACHE_NR; i++)
136 INIT_HLIST_HEAD(&new->hashtable[i]);
137 new->expire = expire;
138 new->nextgc = jiffies + (expire >> 1);
139 auth->au_credcache = new;
140 return 0;
141}
142
143/*
144 * Destroy a list of credentials
145 */
146static inline
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400147void rpcauth_destroy_credlist(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 struct rpc_cred *cred;
150
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400151 while (!list_empty(head)) {
152 cred = list_entry(head->next, struct rpc_cred, cr_lru);
153 list_del_init(&cred->cr_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 put_rpccred(cred);
155 }
156}
157
158/*
159 * Clear the RPC credential cache, and delete those credentials
160 * that are not referenced.
161 */
162void
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400163rpcauth_clear_credcache(struct rpc_cred_cache *cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400165 LIST_HEAD(free);
166 struct hlist_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct rpc_cred *cred;
168 int i;
169
170 spin_lock(&rpc_credcache_lock);
171 for (i = 0; i < RPC_CREDCACHE_NR; i++) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400172 head = &cache->hashtable[i];
173 while (!hlist_empty(head)) {
174 cred = hlist_entry(head->first, struct rpc_cred, cr_hash);
175 get_rpccred(cred);
176 list_move_tail(&cred->cr_lru, &free);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400177 rpcauth_unhash_cred_locked(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179 }
180 spin_unlock(&rpc_credcache_lock);
181 rpcauth_destroy_credlist(&free);
182}
183
Trond Myklebust3ab9bb72007-06-09 15:41:42 -0400184/*
185 * Destroy the RPC credential cache
186 */
187void
188rpcauth_destroy_credcache(struct rpc_auth *auth)
189{
190 struct rpc_cred_cache *cache = auth->au_credcache;
191
192 if (cache) {
193 auth->au_credcache = NULL;
194 rpcauth_clear_credcache(cache);
195 kfree(cache);
196 }
197}
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
200 * Remove stale credentials. Avoid sleeping inside the loop.
201 */
202static void
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400203rpcauth_prune_expired(struct list_head *free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400205 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400207 while (!list_empty(&cred_unused)) {
208 cred = list_entry(cred_unused.next, struct rpc_cred, cr_lru);
209 if (time_after(jiffies, cred->cr_expire +
210 cred->cr_auth->au_credcache->expire))
211 break;
212 list_del_init(&cred->cr_lru);
213 if (atomic_read(&cred->cr_count) != 0)
214 continue;
215 get_rpccred(cred);
216 list_add_tail(&cred->cr_lru, free);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400217 rpcauth_unhash_cred_locked(cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400219}
220
221/*
222 * Run garbage collector.
223 */
224static void
225rpcauth_gc_credcache(struct rpc_cred_cache *cache, struct list_head *free)
226{
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400227 if (list_empty(&cred_unused) || time_before(jiffies, cache->nextgc))
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400228 return;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400229 spin_lock(&rpc_credcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 cache->nextgc = jiffies + cache->expire;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400231 rpcauth_prune_expired(free);
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400232 spin_unlock(&rpc_credcache_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
235/*
236 * Look up a process' credentials in the authentication cache
237 */
238struct rpc_cred *
239rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred,
Trond Myklebust8a317762006-02-01 12:18:36 -0500240 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400242 LIST_HEAD(free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 struct rpc_cred_cache *cache = auth->au_credcache;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400244 struct hlist_node *pos;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400245 struct rpc_cred *cred = NULL,
246 *entry, *new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 int nr = 0;
248
Trond Myklebust8a317762006-02-01 12:18:36 -0500249 if (!(flags & RPCAUTH_LOOKUP_ROOTCREDS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 nr = acred->uid & RPC_CREDCACHE_MASK;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400251
252 rcu_read_lock();
253 hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) {
254 if (!entry->cr_ops->crmatch(acred, entry, flags))
255 continue;
256 spin_lock(&rpc_credcache_lock);
257 if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) {
258 spin_unlock(&rpc_credcache_lock);
259 continue;
260 }
261 cred = get_rpccred(entry);
262 spin_unlock(&rpc_credcache_lock);
263 break;
264 }
265 rcu_read_unlock();
266
267 if (cred != NULL) {
268 rpcauth_gc_credcache(cache, &free);
269 goto found;
270 }
271
272 new = auth->au_ops->crcreate(auth, acred, flags);
273 if (IS_ERR(new)) {
274 cred = new;
275 goto out;
276 }
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 spin_lock(&rpc_credcache_lock);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400279 hlist_for_each_entry(entry, pos, &cache->hashtable[nr], cr_hash) {
280 if (!entry->cr_ops->crmatch(acred, entry, flags))
281 continue;
282 cred = get_rpccred(entry);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400283 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400285 if (cred == NULL) {
Trond Myklebust5fe47552007-06-23 19:55:31 -0400286 cred = new;
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400287 set_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags);
288 hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]);
289 } else
290 list_add_tail(&new->cr_lru, &free);
291 rpcauth_prune_expired(&free);
292 cache->nextgc = jiffies + cache->expire;
293 spin_unlock(&rpc_credcache_lock);
294found:
295 if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags)
Trond Myklebustfba3bad2006-02-01 12:19:27 -0500296 && cred->cr_ops->cr_init != NULL
297 && !(flags & RPCAUTH_LOOKUP_NEW)) {
298 int res = cred->cr_ops->cr_init(auth, cred);
299 if (res < 0) {
300 put_rpccred(cred);
301 cred = ERR_PTR(res);
302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400304 rpcauth_destroy_credlist(&free);
305out:
306 return cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309struct rpc_cred *
Trond Myklebust8a317762006-02-01 12:18:36 -0500310rpcauth_lookupcred(struct rpc_auth *auth, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 struct auth_cred acred = {
313 .uid = current->fsuid,
314 .gid = current->fsgid,
315 .group_info = current->group_info,
316 };
317 struct rpc_cred *ret;
318
Chuck Lever46121cf2007-01-31 12:14:08 -0500319 dprintk("RPC: looking up %s cred\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 auth->au_ops->au_name);
321 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500322 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 put_group_info(acred.group_info);
324 return ret;
325}
326
Trond Myklebust5fe47552007-06-23 19:55:31 -0400327void
328rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred,
329 struct rpc_auth *auth, const struct rpc_credops *ops)
330{
331 INIT_HLIST_NODE(&cred->cr_hash);
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400332 INIT_LIST_HEAD(&cred->cr_lru);
Trond Myklebust5fe47552007-06-23 19:55:31 -0400333 atomic_set(&cred->cr_count, 1);
334 cred->cr_auth = auth;
335 cred->cr_ops = ops;
336 cred->cr_expire = jiffies;
337#ifdef RPC_DEBUG
338 cred->cr_magic = RPCAUTH_CRED_MAGIC;
339#endif
340 cred->cr_uid = acred->uid;
341}
342EXPORT_SYMBOL(rpcauth_init_cred);
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344struct rpc_cred *
345rpcauth_bindcred(struct rpc_task *task)
346{
347 struct rpc_auth *auth = task->tk_auth;
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;
Trond Myklebust8a317762006-02-01 12:18:36 -0500354 int flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Chuck Lever46121cf2007-01-31 12:14:08 -0500356 dprintk("RPC: %5u looking up %s cred\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 task->tk_pid, task->tk_auth->au_ops->au_name);
358 get_group_info(acred.group_info);
Trond Myklebust8a317762006-02-01 12:18:36 -0500359 if (task->tk_flags & RPC_TASK_ROOTCREDS)
360 flags |= RPCAUTH_LOOKUP_ROOTCREDS;
361 ret = auth->au_ops->lookup_cred(auth, &acred, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!IS_ERR(ret))
363 task->tk_msg.rpc_cred = ret;
364 else
365 task->tk_status = PTR_ERR(ret);
366 put_group_info(acred.group_info);
367 return ret;
368}
369
370void
371rpcauth_holdcred(struct rpc_task *task)
372{
Chuck Lever46121cf2007-01-31 12:14:08 -0500373 dprintk("RPC: %5u holding %s cred %p\n",
374 task->tk_pid, task->tk_auth->au_ops->au_name,
375 task->tk_msg.rpc_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (task->tk_msg.rpc_cred)
377 get_rpccred(task->tk_msg.rpc_cred);
378}
379
380void
381put_rpccred(struct rpc_cred *cred)
382{
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400383 /* Fast path for unhashed credentials */
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400384 if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0)
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400385 goto need_lock;
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!atomic_dec_and_test(&cred->cr_count))
388 return;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400389 goto out_destroy;
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400390need_lock:
391 if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock))
392 return;
393 if (!list_empty(&cred->cr_lru))
394 list_del_init(&cred->cr_lru);
395 if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) == 0)
Trond Myklebust31be5bf2007-06-24 15:55:26 -0400396 rpcauth_unhash_cred_locked(cred);
397 else if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) {
Trond Myklebuste092bdc2007-06-23 19:45:36 -0400398 cred->cr_expire = jiffies;
399 list_add_tail(&cred->cr_lru, &cred_unused);
400 spin_unlock(&rpc_credcache_lock);
401 return;
402 }
403 spin_unlock(&rpc_credcache_lock);
404out_destroy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 cred->cr_ops->crdestroy(cred);
406}
407
408void
409rpcauth_unbindcred(struct rpc_task *task)
410{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct rpc_cred *cred = task->tk_msg.rpc_cred;
412
Chuck Lever46121cf2007-01-31 12:14:08 -0500413 dprintk("RPC: %5u releasing %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500414 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 put_rpccred(cred);
417 task->tk_msg.rpc_cred = NULL;
418}
419
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700420__be32 *
421rpcauth_marshcred(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct rpc_cred *cred = task->tk_msg.rpc_cred;
424
Chuck Lever46121cf2007-01-31 12:14:08 -0500425 dprintk("RPC: %5u marshaling %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500426 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return cred->cr_ops->crmarshal(task, p);
429}
430
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700431__be32 *
432rpcauth_checkverf(struct rpc_task *task, __be32 *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct rpc_cred *cred = task->tk_msg.rpc_cred;
435
Chuck Lever46121cf2007-01-31 12:14:08 -0500436 dprintk("RPC: %5u validating %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500437 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return cred->cr_ops->crvalidate(task, p);
440}
441
442int
443rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700444 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct rpc_cred *cred = task->tk_msg.rpc_cred;
447
Chuck Lever46121cf2007-01-31 12:14:08 -0500448 dprintk("RPC: %5u using %s cred %p to wrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 task->tk_pid, cred->cr_ops->cr_name, cred);
450 if (cred->cr_ops->crwrap_req)
451 return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj);
452 /* By default, we encode the arguments normally. */
453 return encode(rqstp, data, obj);
454}
455
456int
457rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp,
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700458 __be32 *data, void *obj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 struct rpc_cred *cred = task->tk_msg.rpc_cred;
461
Chuck Lever46121cf2007-01-31 12:14:08 -0500462 dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 task->tk_pid, cred->cr_ops->cr_name, cred);
464 if (cred->cr_ops->crunwrap_resp)
465 return cred->cr_ops->crunwrap_resp(task, decode, rqstp,
466 data, obj);
467 /* By default, we decode the arguments normally. */
468 return decode(rqstp, data, obj);
469}
470
471int
472rpcauth_refreshcred(struct rpc_task *task)
473{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct rpc_cred *cred = task->tk_msg.rpc_cred;
475 int err;
476
Chuck Lever46121cf2007-01-31 12:14:08 -0500477 dprintk("RPC: %5u refreshing %s cred %p\n",
Chuck Lever0bbacc42005-11-01 16:53:32 -0500478 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 err = cred->cr_ops->crrefresh(task);
481 if (err < 0)
482 task->tk_status = err;
483 return err;
484}
485
486void
487rpcauth_invalcred(struct rpc_task *task)
488{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400489 struct rpc_cred *cred = task->tk_msg.rpc_cred;
490
Chuck Lever46121cf2007-01-31 12:14:08 -0500491 dprintk("RPC: %5u invalidating %s cred %p\n",
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400492 task->tk_pid, task->tk_auth->au_ops->au_name, cred);
493 if (cred)
494 clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
497int
498rpcauth_uptodatecred(struct rpc_task *task)
499{
Trond Myklebustfc432dd2007-06-25 10:15:15 -0400500 struct rpc_cred *cred = task->tk_msg.rpc_cred;
501
502 return cred == NULL ||
503 test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}