Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Myklebust | 25337fd | 2008-03-12 14:40:14 -0400 | [diff] [blame] | 14 | #include <linux/hash.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #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 Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 22 | static DEFINE_SPINLOCK(rpc_authflavor_lock); |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 23 | static const struct rpc_authops *auth_flavors[RPC_AUTH_MAXFLAVOR] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | &authnull_ops, /* AUTH_NULL */ |
| 25 | &authunix_ops, /* AUTH_UNIX */ |
| 26 | NULL, /* others can be loadable modules */ |
| 27 | }; |
| 28 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 29 | static LIST_HEAD(cred_unused); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 30 | static unsigned long number_cred_unused; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | static u32 |
| 33 | pseudoflavor_to_flavor(u32 flavor) { |
| 34 | if (flavor >= RPC_AUTH_MAXFLAVOR) |
| 35 | return RPC_AUTH_GSS; |
| 36 | return flavor; |
| 37 | } |
| 38 | |
| 39 | int |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 40 | rpcauth_register(const struct rpc_authops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
| 42 | rpc_authflavor_t flavor; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 43 | int ret = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) |
| 46 | return -EINVAL; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 47 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 55 | EXPORT_SYMBOL_GPL(rpcauth_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | int |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 58 | rpcauth_unregister(const struct rpc_authops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
| 60 | rpc_authflavor_t flavor; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 61 | int ret = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) |
| 64 | return -EINVAL; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 65 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 73 | EXPORT_SYMBOL_GPL(rpcauth_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | struct rpc_auth * |
| 76 | rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) |
| 77 | { |
| 78 | struct rpc_auth *auth; |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 79 | const struct rpc_authops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | u32 flavor = pseudoflavor_to_flavor(pseudoflavor); |
| 81 | |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 82 | auth = ERR_PTR(-EINVAL); |
| 83 | if (flavor >= RPC_AUTH_MAXFLAVOR) |
| 84 | goto out; |
| 85 | |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 86 | if ((ops = auth_flavors[flavor]) == NULL) |
| 87 | request_module("rpc-auth-%u", flavor); |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 88 | spin_lock(&rpc_authflavor_lock); |
| 89 | ops = auth_flavors[flavor]; |
| 90 | if (ops == NULL || !try_module_get(ops->owner)) { |
| 91 | spin_unlock(&rpc_authflavor_lock); |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 92 | goto out; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 93 | } |
| 94 | spin_unlock(&rpc_authflavor_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | auth = ops->create(clnt, pseudoflavor); |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 96 | module_put(ops->owner); |
J. Bruce Fields | 6a19275 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 97 | if (IS_ERR(auth)) |
| 98 | return auth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | if (clnt->cl_auth) |
Trond Myklebust | de7a8ce | 2007-06-23 10:46:47 -0400 | [diff] [blame] | 100 | rpcauth_release(clnt->cl_auth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | clnt->cl_auth = auth; |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 102 | |
| 103 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | return auth; |
| 105 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 106 | EXPORT_SYMBOL_GPL(rpcauth_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | void |
Trond Myklebust | de7a8ce | 2007-06-23 10:46:47 -0400 | [diff] [blame] | 109 | rpcauth_release(struct rpc_auth *auth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
| 111 | if (!atomic_dec_and_test(&auth->au_count)) |
| 112 | return; |
| 113 | auth->au_ops->destroy(auth); |
| 114 | } |
| 115 | |
| 116 | static DEFINE_SPINLOCK(rpc_credcache_lock); |
| 117 | |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 118 | static void |
| 119 | rpcauth_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 Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 126 | static int |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 127 | rpcauth_unhash_cred(struct rpc_cred *cred) |
| 128 | { |
| 129 | spinlock_t *cache_lock; |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 130 | int ret; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 131 | |
| 132 | cache_lock = &cred->cr_auth->au_credcache->lock; |
| 133 | spin_lock(cache_lock); |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 134 | ret = atomic_read(&cred->cr_count) == 0; |
| 135 | if (ret) |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 136 | rpcauth_unhash_cred_locked(cred); |
| 137 | spin_unlock(cache_lock); |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 138 | return ret; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 139 | } |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | /* |
| 142 | * Initialize RPC credential cache |
| 143 | */ |
| 144 | int |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 145 | rpcauth_init_credcache(struct rpc_auth *auth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
| 147 | struct rpc_cred_cache *new; |
| 148 | int i; |
| 149 | |
Kris Katterjohn | 8b3a700 | 2006-01-11 15:56:43 -0800 | [diff] [blame] | 150 | new = kmalloc(sizeof(*new), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | if (!new) |
| 152 | return -ENOMEM; |
| 153 | for (i = 0; i < RPC_CREDCACHE_NR; i++) |
| 154 | INIT_HLIST_HEAD(&new->hashtable[i]); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 155 | spin_lock_init(&new->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | auth->au_credcache = new; |
| 157 | return 0; |
| 158 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 159 | EXPORT_SYMBOL_GPL(rpcauth_init_credcache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | /* |
| 162 | * Destroy a list of credentials |
| 163 | */ |
| 164 | static inline |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 165 | void rpcauth_destroy_credlist(struct list_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { |
| 167 | struct rpc_cred *cred; |
| 168 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 169 | while (!list_empty(head)) { |
| 170 | cred = list_entry(head->next, struct rpc_cred, cr_lru); |
| 171 | list_del_init(&cred->cr_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | put_rpccred(cred); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | /* |
| 177 | * Clear the RPC credential cache, and delete those credentials |
| 178 | * that are not referenced. |
| 179 | */ |
| 180 | void |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 181 | rpcauth_clear_credcache(struct rpc_cred_cache *cache) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 183 | LIST_HEAD(free); |
| 184 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | struct rpc_cred *cred; |
| 186 | int i; |
| 187 | |
| 188 | spin_lock(&rpc_credcache_lock); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 189 | spin_lock(&cache->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | for (i = 0; i < RPC_CREDCACHE_NR; i++) { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 191 | head = &cache->hashtable[i]; |
| 192 | while (!hlist_empty(head)) { |
| 193 | cred = hlist_entry(head->first, struct rpc_cred, cr_hash); |
| 194 | get_rpccred(cred); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 195 | if (!list_empty(&cred->cr_lru)) { |
| 196 | list_del(&cred->cr_lru); |
| 197 | number_cred_unused--; |
| 198 | } |
| 199 | list_add_tail(&cred->cr_lru, &free); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 200 | rpcauth_unhash_cred_locked(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | } |
| 202 | } |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 203 | spin_unlock(&cache->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | spin_unlock(&rpc_credcache_lock); |
| 205 | rpcauth_destroy_credlist(&free); |
| 206 | } |
| 207 | |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 208 | /* |
| 209 | * Destroy the RPC credential cache |
| 210 | */ |
| 211 | void |
| 212 | rpcauth_destroy_credcache(struct rpc_auth *auth) |
| 213 | { |
| 214 | struct rpc_cred_cache *cache = auth->au_credcache; |
| 215 | |
| 216 | if (cache) { |
| 217 | auth->au_credcache = NULL; |
| 218 | rpcauth_clear_credcache(cache); |
| 219 | kfree(cache); |
| 220 | } |
| 221 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 222 | EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache); |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 223 | |
Trond Myklebust | d2b8314 | 2008-04-14 18:13:37 -0400 | [diff] [blame] | 224 | |
| 225 | #define RPC_AUTH_EXPIRY_MORATORIUM (60 * HZ) |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /* |
| 228 | * Remove stale credentials. Avoid sleeping inside the loop. |
| 229 | */ |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 230 | static int |
| 231 | rpcauth_prune_expired(struct list_head *free, int nr_to_scan) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 233 | spinlock_t *cache_lock; |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 234 | struct rpc_cred *cred, *next; |
Trond Myklebust | d2b8314 | 2008-04-14 18:13:37 -0400 | [diff] [blame] | 235 | unsigned long expired = jiffies - RPC_AUTH_EXPIRY_MORATORIUM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 237 | list_for_each_entry_safe(cred, next, &cred_unused, cr_lru) { |
| 238 | |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame^] | 239 | /* |
| 240 | * Enforce a 60 second garbage collection moratorium |
| 241 | * Note that the cred_unused list must be time-ordered. |
| 242 | */ |
Trond Myklebust | 3d7b089 | 2010-04-22 15:35:55 -0400 | [diff] [blame] | 243 | if (time_in_range(cred->cr_expire, expired, jiffies) && |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 244 | test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame^] | 245 | return 0; |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 246 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 247 | list_del_init(&cred->cr_lru); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 248 | number_cred_unused--; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 249 | if (atomic_read(&cred->cr_count) != 0) |
| 250 | continue; |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 251 | |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 252 | cache_lock = &cred->cr_auth->au_credcache->lock; |
| 253 | spin_lock(cache_lock); |
| 254 | if (atomic_read(&cred->cr_count) == 0) { |
| 255 | get_rpccred(cred); |
| 256 | list_add_tail(&cred->cr_lru, free); |
| 257 | rpcauth_unhash_cred_locked(cred); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 258 | nr_to_scan--; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 259 | } |
| 260 | spin_unlock(cache_lock); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 261 | if (nr_to_scan == 0) |
| 262 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame^] | 264 | return (number_cred_unused / 100) * sysctl_vfs_cache_pressure; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | /* |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 268 | * Run memory cache shrinker. |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 269 | */ |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 270 | static int |
| 271 | rpcauth_cache_shrinker(int nr_to_scan, gfp_t gfp_mask) |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 272 | { |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 273 | LIST_HEAD(free); |
| 274 | int res; |
| 275 | |
Trond Myklebust | d300a41 | 2010-05-13 12:51:03 -0400 | [diff] [blame] | 276 | if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL) |
| 277 | return (nr_to_scan == 0) ? 0 : -1; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 278 | if (list_empty(&cred_unused)) |
| 279 | return 0; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 280 | spin_lock(&rpc_credcache_lock); |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame^] | 281 | res = rpcauth_prune_expired(&free, nr_to_scan); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 282 | spin_unlock(&rpc_credcache_lock); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 283 | rpcauth_destroy_credlist(&free); |
| 284 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | } |
| 286 | |
| 287 | /* |
| 288 | * Look up a process' credentials in the authentication cache |
| 289 | */ |
| 290 | struct rpc_cred * |
| 291 | rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred, |
Trond Myklebust | 8a31776 | 2006-02-01 12:18:36 -0500 | [diff] [blame] | 292 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 294 | LIST_HEAD(free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | struct rpc_cred_cache *cache = auth->au_credcache; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 296 | struct hlist_node *pos; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 297 | struct rpc_cred *cred = NULL, |
| 298 | *entry, *new; |
Trond Myklebust | 25337fd | 2008-03-12 14:40:14 -0400 | [diff] [blame] | 299 | unsigned int nr; |
| 300 | |
| 301 | nr = hash_long(acred->uid, RPC_CREDCACHE_HASHBITS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 303 | rcu_read_lock(); |
| 304 | hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) { |
| 305 | if (!entry->cr_ops->crmatch(acred, entry, flags)) |
| 306 | continue; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 307 | spin_lock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 308 | if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) { |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 309 | spin_unlock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 310 | continue; |
| 311 | } |
| 312 | cred = get_rpccred(entry); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 313 | spin_unlock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 314 | break; |
| 315 | } |
| 316 | rcu_read_unlock(); |
| 317 | |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 318 | if (cred != NULL) |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 319 | goto found; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 320 | |
| 321 | new = auth->au_ops->crcreate(auth, acred, flags); |
| 322 | if (IS_ERR(new)) { |
| 323 | cred = new; |
| 324 | goto out; |
| 325 | } |
| 326 | |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 327 | spin_lock(&cache->lock); |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 328 | hlist_for_each_entry(entry, pos, &cache->hashtable[nr], cr_hash) { |
| 329 | if (!entry->cr_ops->crmatch(acred, entry, flags)) |
| 330 | continue; |
| 331 | cred = get_rpccred(entry); |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 332 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | } |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 334 | if (cred == NULL) { |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 335 | cred = new; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 336 | set_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags); |
| 337 | hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]); |
| 338 | } else |
| 339 | list_add_tail(&new->cr_lru, &free); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 340 | spin_unlock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 341 | found: |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 342 | if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) && |
| 343 | cred->cr_ops->cr_init != NULL && |
| 344 | !(flags & RPCAUTH_LOOKUP_NEW)) { |
Trond Myklebust | fba3bad | 2006-02-01 12:19:27 -0500 | [diff] [blame] | 345 | int res = cred->cr_ops->cr_init(auth, cred); |
| 346 | if (res < 0) { |
| 347 | put_rpccred(cred); |
| 348 | cred = ERR_PTR(res); |
| 349 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 351 | rpcauth_destroy_credlist(&free); |
| 352 | out: |
| 353 | return cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 355 | EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
| 357 | struct rpc_cred * |
Trond Myklebust | 8a31776 | 2006-02-01 12:18:36 -0500 | [diff] [blame] | 358 | rpcauth_lookupcred(struct rpc_auth *auth, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 360 | struct auth_cred acred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | struct rpc_cred *ret; |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 362 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 364 | dprintk("RPC: looking up %s cred\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | auth->au_ops->au_name); |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 366 | |
| 367 | memset(&acred, 0, sizeof(acred)); |
| 368 | acred.uid = cred->fsuid; |
| 369 | acred.gid = cred->fsgid; |
| 370 | acred.group_info = get_group_info(((struct cred *)cred)->group_info); |
| 371 | |
Trond Myklebust | 8a31776 | 2006-02-01 12:18:36 -0500 | [diff] [blame] | 372 | ret = auth->au_ops->lookup_cred(auth, &acred, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | put_group_info(acred.group_info); |
| 374 | return ret; |
| 375 | } |
| 376 | |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 377 | void |
| 378 | rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred, |
| 379 | struct rpc_auth *auth, const struct rpc_credops *ops) |
| 380 | { |
| 381 | INIT_HLIST_NODE(&cred->cr_hash); |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 382 | INIT_LIST_HEAD(&cred->cr_lru); |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 383 | atomic_set(&cred->cr_count, 1); |
| 384 | cred->cr_auth = auth; |
| 385 | cred->cr_ops = ops; |
| 386 | cred->cr_expire = jiffies; |
| 387 | #ifdef RPC_DEBUG |
| 388 | cred->cr_magic = RPCAUTH_CRED_MAGIC; |
| 389 | #endif |
| 390 | cred->cr_uid = acred->uid; |
| 391 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 392 | EXPORT_SYMBOL_GPL(rpcauth_init_cred); |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 393 | |
Trond Myklebust | 5c69104 | 2008-03-12 16:21:07 -0400 | [diff] [blame] | 394 | void |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 395 | rpcauth_generic_bind_cred(struct rpc_task *task, struct rpc_cred *cred, int lookupflags) |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 396 | { |
| 397 | task->tk_msg.rpc_cred = get_rpccred(cred); |
| 398 | dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid, |
| 399 | cred->cr_auth->au_ops->au_name, cred); |
| 400 | } |
Trond Myklebust | 5c69104 | 2008-03-12 16:21:07 -0400 | [diff] [blame] | 401 | EXPORT_SYMBOL_GPL(rpcauth_generic_bind_cred); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 402 | |
| 403 | static void |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 404 | rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | { |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 406 | struct rpc_auth *auth = task->tk_client->cl_auth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | struct auth_cred acred = { |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 408 | .uid = 0, |
| 409 | .gid = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | }; |
| 411 | struct rpc_cred *ret; |
| 412 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 413 | dprintk("RPC: %5u looking up %s cred\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 414 | task->tk_pid, task->tk_client->cl_auth->au_ops->au_name); |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 415 | ret = auth->au_ops->lookup_cred(auth, &acred, lookupflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | if (!IS_ERR(ret)) |
| 417 | task->tk_msg.rpc_cred = ret; |
| 418 | else |
| 419 | task->tk_status = PTR_ERR(ret); |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 420 | } |
| 421 | |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 422 | static void |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 423 | rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags) |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 424 | { |
| 425 | struct rpc_auth *auth = task->tk_client->cl_auth; |
| 426 | struct rpc_cred *ret; |
| 427 | |
| 428 | dprintk("RPC: %5u looking up %s cred\n", |
| 429 | task->tk_pid, auth->au_ops->au_name); |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 430 | ret = rpcauth_lookupcred(auth, lookupflags); |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 431 | if (!IS_ERR(ret)) |
| 432 | task->tk_msg.rpc_cred = ret; |
| 433 | else |
| 434 | task->tk_status = PTR_ERR(ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | } |
| 436 | |
| 437 | void |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 438 | rpcauth_bindcred(struct rpc_task *task, struct rpc_cred *cred, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | { |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 440 | int lookupflags = 0; |
| 441 | |
| 442 | if (flags & RPC_TASK_ASYNC) |
| 443 | lookupflags |= RPCAUTH_LOOKUP_NEW; |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 444 | if (cred != NULL) |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 445 | cred->cr_ops->crbind(task, cred, lookupflags); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 446 | else if (flags & RPC_TASK_ROOTCREDS) |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 447 | rpcauth_bind_root_cred(task, lookupflags); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 448 | else |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 449 | rpcauth_bind_new_cred(task, lookupflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | void |
| 453 | put_rpccred(struct rpc_cred *cred) |
| 454 | { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 455 | /* Fast path for unhashed credentials */ |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 456 | if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) == 0) { |
| 457 | if (atomic_dec_and_test(&cred->cr_count)) |
| 458 | cred->cr_ops->crdestroy(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | return; |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 460 | } |
| 461 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 462 | if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock)) |
| 463 | return; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 464 | if (!list_empty(&cred->cr_lru)) { |
| 465 | number_cred_unused--; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 466 | list_del_init(&cred->cr_lru); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 467 | } |
Trond Myklebust | 5f707eb | 2008-10-28 15:21:42 -0400 | [diff] [blame] | 468 | if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) { |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 469 | if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0) { |
| 470 | cred->cr_expire = jiffies; |
| 471 | list_add_tail(&cred->cr_lru, &cred_unused); |
| 472 | number_cred_unused++; |
| 473 | goto out_nodestroy; |
| 474 | } |
| 475 | if (!rpcauth_unhash_cred(cred)) { |
| 476 | /* We were hashed and someone looked us up... */ |
| 477 | goto out_nodestroy; |
| 478 | } |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 479 | } |
| 480 | spin_unlock(&rpc_credcache_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | cred->cr_ops->crdestroy(cred); |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 482 | return; |
| 483 | out_nodestroy: |
| 484 | spin_unlock(&rpc_credcache_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 486 | EXPORT_SYMBOL_GPL(put_rpccred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
| 488 | void |
| 489 | rpcauth_unbindcred(struct rpc_task *task) |
| 490 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 492 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 493 | dprintk("RPC: %5u releasing %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 494 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | put_rpccred(cred); |
| 497 | task->tk_msg.rpc_cred = NULL; |
| 498 | } |
| 499 | |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 500 | __be32 * |
| 501 | rpcauth_marshcred(struct rpc_task *task, __be32 *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 504 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 505 | dprintk("RPC: %5u marshaling %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 506 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | return cred->cr_ops->crmarshal(task, p); |
| 509 | } |
| 510 | |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 511 | __be32 * |
| 512 | rpcauth_checkverf(struct rpc_task *task, __be32 *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 515 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 516 | dprintk("RPC: %5u validating %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 517 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | return cred->cr_ops->crvalidate(task, p); |
| 520 | } |
| 521 | |
| 522 | int |
| 523 | rpcauth_wrap_req(struct rpc_task *task, kxdrproc_t encode, void *rqstp, |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 524 | __be32 *data, void *obj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | { |
| 526 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 527 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 528 | dprintk("RPC: %5u using %s cred %p to wrap rpc data\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | task->tk_pid, cred->cr_ops->cr_name, cred); |
| 530 | if (cred->cr_ops->crwrap_req) |
| 531 | return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj); |
| 532 | /* By default, we encode the arguments normally. */ |
Trond Myklebust | 88a9fe8 | 2008-12-23 15:21:31 -0500 | [diff] [blame] | 533 | return encode(rqstp, data, obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | } |
| 535 | |
| 536 | int |
| 537 | rpcauth_unwrap_resp(struct rpc_task *task, kxdrproc_t decode, void *rqstp, |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 538 | __be32 *data, void *obj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | { |
| 540 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 541 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 542 | dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | task->tk_pid, cred->cr_ops->cr_name, cred); |
| 544 | if (cred->cr_ops->crunwrap_resp) |
| 545 | return cred->cr_ops->crunwrap_resp(task, decode, rqstp, |
| 546 | data, obj); |
| 547 | /* By default, we decode the arguments normally. */ |
Trond Myklebust | 88a9fe8 | 2008-12-23 15:21:31 -0500 | [diff] [blame] | 548 | return decode(rqstp, data, obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | int |
| 552 | rpcauth_refreshcred(struct rpc_task *task) |
| 553 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 555 | int err; |
| 556 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 557 | dprintk("RPC: %5u refreshing %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 558 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | err = cred->cr_ops->crrefresh(task); |
| 561 | if (err < 0) |
| 562 | task->tk_status = err; |
| 563 | return err; |
| 564 | } |
| 565 | |
| 566 | void |
| 567 | rpcauth_invalcred(struct rpc_task *task) |
| 568 | { |
Trond Myklebust | fc432dd | 2007-06-25 10:15:15 -0400 | [diff] [blame] | 569 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 570 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 571 | dprintk("RPC: %5u invalidating %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 572 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Trond Myklebust | fc432dd | 2007-06-25 10:15:15 -0400 | [diff] [blame] | 573 | if (cred) |
| 574 | clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | int |
| 578 | rpcauth_uptodatecred(struct rpc_task *task) |
| 579 | { |
Trond Myklebust | fc432dd | 2007-06-25 10:15:15 -0400 | [diff] [blame] | 580 | struct rpc_cred *cred = task->tk_msg.rpc_cred; |
| 581 | |
| 582 | return cred == NULL || |
| 583 | test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 585 | |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 586 | static struct shrinker rpc_cred_shrinker = { |
| 587 | .shrink = rpcauth_cache_shrinker, |
| 588 | .seeks = DEFAULT_SEEKS, |
| 589 | }; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 590 | |
| 591 | void __init rpcauth_init_module(void) |
| 592 | { |
| 593 | rpc_init_authunix(); |
Trond Myklebust | 9a559ef | 2008-03-12 12:24:49 -0400 | [diff] [blame] | 594 | rpc_init_generic_auth(); |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 595 | register_shrinker(&rpc_cred_shrinker); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 596 | } |
| 597 | |
| 598 | void __exit rpcauth_remove_module(void) |
| 599 | { |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 600 | unregister_shrinker(&rpc_cred_shrinker); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 601 | } |