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> |
Chuck Lever | 6a1a1e3 | 2012-07-11 16:31:08 -0400 | [diff] [blame] | 16 | #include <linux/sunrpc/gss_api.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/spinlock.h> |
| 18 | |
| 19 | #ifdef RPC_DEBUG |
| 20 | # define RPCDBG_FACILITY RPCDBG_AUTH |
| 21 | #endif |
| 22 | |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 23 | #define RPC_CREDCACHE_DEFAULT_HASHBITS (4) |
| 24 | struct rpc_cred_cache { |
| 25 | struct hlist_head *hashtable; |
| 26 | unsigned int hashbits; |
| 27 | spinlock_t lock; |
| 28 | }; |
| 29 | |
| 30 | static unsigned int auth_hashbits = RPC_CREDCACHE_DEFAULT_HASHBITS; |
| 31 | |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 32 | static DEFINE_SPINLOCK(rpc_authflavor_lock); |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 33 | static const struct rpc_authops *auth_flavors[RPC_AUTH_MAXFLAVOR] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | &authnull_ops, /* AUTH_NULL */ |
| 35 | &authunix_ops, /* AUTH_UNIX */ |
| 36 | NULL, /* others can be loadable modules */ |
| 37 | }; |
| 38 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 39 | static LIST_HEAD(cred_unused); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 40 | static unsigned long number_cred_unused; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 41 | |
Miquel van Smoorenburg | db5fe26 | 2010-09-12 19:55:26 -0400 | [diff] [blame] | 42 | #define MAX_HASHTABLE_BITS (14) |
Stephen Rothwell | 8e4e15d | 2010-08-04 12:11:22 +1000 | [diff] [blame] | 43 | static int param_set_hashtbl_sz(const char *val, const struct kernel_param *kp) |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 44 | { |
| 45 | unsigned long num; |
| 46 | unsigned int nbits; |
| 47 | int ret; |
| 48 | |
| 49 | if (!val) |
| 50 | goto out_inval; |
| 51 | ret = strict_strtoul(val, 0, &num); |
| 52 | if (ret == -EINVAL) |
| 53 | goto out_inval; |
| 54 | nbits = fls(num); |
| 55 | if (num > (1U << nbits)) |
| 56 | nbits++; |
| 57 | if (nbits > MAX_HASHTABLE_BITS || nbits < 2) |
| 58 | goto out_inval; |
| 59 | *(unsigned int *)kp->arg = nbits; |
| 60 | return 0; |
| 61 | out_inval: |
| 62 | return -EINVAL; |
| 63 | } |
| 64 | |
Stephen Rothwell | 8e4e15d | 2010-08-04 12:11:22 +1000 | [diff] [blame] | 65 | static int param_get_hashtbl_sz(char *buffer, const struct kernel_param *kp) |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 66 | { |
| 67 | unsigned int nbits; |
| 68 | |
| 69 | nbits = *(unsigned int *)kp->arg; |
| 70 | return sprintf(buffer, "%u", 1U << nbits); |
| 71 | } |
| 72 | |
| 73 | #define param_check_hashtbl_sz(name, p) __param_check(name, p, unsigned int); |
| 74 | |
Stephen Rothwell | 8e4e15d | 2010-08-04 12:11:22 +1000 | [diff] [blame] | 75 | static struct kernel_param_ops param_ops_hashtbl_sz = { |
| 76 | .set = param_set_hashtbl_sz, |
| 77 | .get = param_get_hashtbl_sz, |
| 78 | }; |
| 79 | |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 80 | module_param_named(auth_hashtable_size, auth_hashbits, hashtbl_sz, 0644); |
| 81 | MODULE_PARM_DESC(auth_hashtable_size, "RPC credential cache hashtable size"); |
| 82 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | static u32 |
| 84 | pseudoflavor_to_flavor(u32 flavor) { |
| 85 | if (flavor >= RPC_AUTH_MAXFLAVOR) |
| 86 | return RPC_AUTH_GSS; |
| 87 | return flavor; |
| 88 | } |
| 89 | |
| 90 | int |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 91 | rpcauth_register(const struct rpc_authops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | rpc_authflavor_t flavor; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 94 | int ret = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
| 96 | if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) |
| 97 | return -EINVAL; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 98 | spin_lock(&rpc_authflavor_lock); |
| 99 | if (auth_flavors[flavor] == NULL) { |
| 100 | auth_flavors[flavor] = ops; |
| 101 | ret = 0; |
| 102 | } |
| 103 | spin_unlock(&rpc_authflavor_lock); |
| 104 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 106 | EXPORT_SYMBOL_GPL(rpcauth_register); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | int |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 109 | rpcauth_unregister(const struct rpc_authops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
| 111 | rpc_authflavor_t flavor; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 112 | int ret = -EPERM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | if ((flavor = ops->au_flavor) >= RPC_AUTH_MAXFLAVOR) |
| 115 | return -EINVAL; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 116 | spin_lock(&rpc_authflavor_lock); |
| 117 | if (auth_flavors[flavor] == ops) { |
| 118 | auth_flavors[flavor] = NULL; |
| 119 | ret = 0; |
| 120 | } |
| 121 | spin_unlock(&rpc_authflavor_lock); |
| 122 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 124 | EXPORT_SYMBOL_GPL(rpcauth_unregister); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
Chuck Lever | 6a1a1e3 | 2012-07-11 16:31:08 -0400 | [diff] [blame] | 126 | /** |
| 127 | * rpcauth_list_flavors - discover registered flavors and pseudoflavors |
| 128 | * @array: array to fill in |
| 129 | * @size: size of "array" |
| 130 | * |
| 131 | * Returns the number of array items filled in, or a negative errno. |
| 132 | * |
| 133 | * The returned array is not sorted by any policy. Callers should not |
| 134 | * rely on the order of the items in the returned array. |
| 135 | */ |
| 136 | int |
| 137 | rpcauth_list_flavors(rpc_authflavor_t *array, int size) |
| 138 | { |
| 139 | rpc_authflavor_t flavor; |
| 140 | int result = 0; |
| 141 | |
| 142 | spin_lock(&rpc_authflavor_lock); |
| 143 | for (flavor = 0; flavor < RPC_AUTH_MAXFLAVOR; flavor++) { |
| 144 | const struct rpc_authops *ops = auth_flavors[flavor]; |
| 145 | rpc_authflavor_t pseudos[4]; |
| 146 | int i, len; |
| 147 | |
| 148 | if (result >= size) { |
| 149 | result = -ENOMEM; |
| 150 | break; |
| 151 | } |
| 152 | |
| 153 | if (ops == NULL) |
| 154 | continue; |
| 155 | if (ops->list_pseudoflavors == NULL) { |
| 156 | array[result++] = ops->au_flavor; |
| 157 | continue; |
| 158 | } |
| 159 | len = ops->list_pseudoflavors(pseudos, ARRAY_SIZE(pseudos)); |
| 160 | if (len < 0) { |
| 161 | result = len; |
| 162 | break; |
| 163 | } |
| 164 | for (i = 0; i < len; i++) { |
| 165 | if (result >= size) { |
| 166 | result = -ENOMEM; |
| 167 | break; |
| 168 | } |
| 169 | array[result++] = pseudos[i]; |
| 170 | } |
| 171 | } |
| 172 | spin_unlock(&rpc_authflavor_lock); |
| 173 | |
| 174 | dprintk("RPC: %s returns %d\n", __func__, result); |
| 175 | return result; |
| 176 | } |
| 177 | EXPORT_SYMBOL_GPL(rpcauth_list_flavors); |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | struct rpc_auth * |
| 180 | rpcauth_create(rpc_authflavor_t pseudoflavor, struct rpc_clnt *clnt) |
| 181 | { |
| 182 | struct rpc_auth *auth; |
Trond Myklebust | f1c0a86 | 2007-06-23 20:17:58 -0400 | [diff] [blame] | 183 | const struct rpc_authops *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | u32 flavor = pseudoflavor_to_flavor(pseudoflavor); |
| 185 | |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 186 | auth = ERR_PTR(-EINVAL); |
| 187 | if (flavor >= RPC_AUTH_MAXFLAVOR) |
| 188 | goto out; |
| 189 | |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 190 | if ((ops = auth_flavors[flavor]) == NULL) |
| 191 | request_module("rpc-auth-%u", flavor); |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 192 | spin_lock(&rpc_authflavor_lock); |
| 193 | ops = auth_flavors[flavor]; |
| 194 | if (ops == NULL || !try_module_get(ops->owner)) { |
| 195 | spin_unlock(&rpc_authflavor_lock); |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 196 | goto out; |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 197 | } |
| 198 | spin_unlock(&rpc_authflavor_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | auth = ops->create(clnt, pseudoflavor); |
Trond Myklebust | fc1b356 | 2007-06-09 16:15:46 -0400 | [diff] [blame] | 200 | module_put(ops->owner); |
J. Bruce Fields | 6a19275 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 201 | if (IS_ERR(auth)) |
| 202 | return auth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | if (clnt->cl_auth) |
Trond Myklebust | de7a8ce | 2007-06-23 10:46:47 -0400 | [diff] [blame] | 204 | rpcauth_release(clnt->cl_auth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | clnt->cl_auth = auth; |
Olaf Kirch | f344f6d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 206 | |
| 207 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return auth; |
| 209 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 210 | EXPORT_SYMBOL_GPL(rpcauth_create); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | void |
Trond Myklebust | de7a8ce | 2007-06-23 10:46:47 -0400 | [diff] [blame] | 213 | rpcauth_release(struct rpc_auth *auth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | { |
| 215 | if (!atomic_dec_and_test(&auth->au_count)) |
| 216 | return; |
| 217 | auth->au_ops->destroy(auth); |
| 218 | } |
| 219 | |
| 220 | static DEFINE_SPINLOCK(rpc_credcache_lock); |
| 221 | |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 222 | static void |
| 223 | rpcauth_unhash_cred_locked(struct rpc_cred *cred) |
| 224 | { |
| 225 | hlist_del_rcu(&cred->cr_hash); |
| 226 | smp_mb__before_clear_bit(); |
| 227 | clear_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags); |
| 228 | } |
| 229 | |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 230 | static int |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 231 | rpcauth_unhash_cred(struct rpc_cred *cred) |
| 232 | { |
| 233 | spinlock_t *cache_lock; |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 234 | int ret; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 235 | |
| 236 | cache_lock = &cred->cr_auth->au_credcache->lock; |
| 237 | spin_lock(cache_lock); |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 238 | ret = atomic_read(&cred->cr_count) == 0; |
| 239 | if (ret) |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 240 | rpcauth_unhash_cred_locked(cred); |
| 241 | spin_unlock(cache_lock); |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 242 | return ret; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 243 | } |
| 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* |
| 246 | * Initialize RPC credential cache |
| 247 | */ |
| 248 | int |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 249 | rpcauth_init_credcache(struct rpc_auth *auth) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | { |
| 251 | struct rpc_cred_cache *new; |
Trond Myklebust | 988664a | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 252 | unsigned int hashsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
Kris Katterjohn | 8b3a700 | 2006-01-11 15:56:43 -0800 | [diff] [blame] | 254 | new = kmalloc(sizeof(*new), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | if (!new) |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 256 | goto out_nocache; |
| 257 | new->hashbits = auth_hashbits; |
Trond Myklebust | 988664a | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 258 | hashsize = 1U << new->hashbits; |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 259 | new->hashtable = kcalloc(hashsize, sizeof(new->hashtable[0]), GFP_KERNEL); |
| 260 | if (!new->hashtable) |
| 261 | goto out_nohashtbl; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 262 | spin_lock_init(&new->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | auth->au_credcache = new; |
| 264 | return 0; |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 265 | out_nohashtbl: |
| 266 | kfree(new); |
| 267 | out_nocache: |
| 268 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 270 | EXPORT_SYMBOL_GPL(rpcauth_init_credcache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | /* |
| 273 | * Destroy a list of credentials |
| 274 | */ |
| 275 | static inline |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 276 | void rpcauth_destroy_credlist(struct list_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | { |
| 278 | struct rpc_cred *cred; |
| 279 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 280 | while (!list_empty(head)) { |
| 281 | cred = list_entry(head->next, struct rpc_cred, cr_lru); |
| 282 | list_del_init(&cred->cr_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | put_rpccred(cred); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * Clear the RPC credential cache, and delete those credentials |
| 289 | * that are not referenced. |
| 290 | */ |
| 291 | void |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 292 | rpcauth_clear_credcache(struct rpc_cred_cache *cache) |
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); |
| 295 | struct hlist_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | struct rpc_cred *cred; |
Trond Myklebust | 988664a | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 297 | unsigned int hashsize = 1U << cache->hashbits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | int i; |
| 299 | |
| 300 | spin_lock(&rpc_credcache_lock); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 301 | spin_lock(&cache->lock); |
Trond Myklebust | 988664a | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 302 | for (i = 0; i < hashsize; i++) { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 303 | head = &cache->hashtable[i]; |
| 304 | while (!hlist_empty(head)) { |
| 305 | cred = hlist_entry(head->first, struct rpc_cred, cr_hash); |
| 306 | get_rpccred(cred); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 307 | if (!list_empty(&cred->cr_lru)) { |
| 308 | list_del(&cred->cr_lru); |
| 309 | number_cred_unused--; |
| 310 | } |
| 311 | list_add_tail(&cred->cr_lru, &free); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 312 | rpcauth_unhash_cred_locked(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | } |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 315 | spin_unlock(&cache->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | spin_unlock(&rpc_credcache_lock); |
| 317 | rpcauth_destroy_credlist(&free); |
| 318 | } |
| 319 | |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 320 | /* |
| 321 | * Destroy the RPC credential cache |
| 322 | */ |
| 323 | void |
| 324 | rpcauth_destroy_credcache(struct rpc_auth *auth) |
| 325 | { |
| 326 | struct rpc_cred_cache *cache = auth->au_credcache; |
| 327 | |
| 328 | if (cache) { |
| 329 | auth->au_credcache = NULL; |
| 330 | rpcauth_clear_credcache(cache); |
Trond Myklebust | 241269b | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 331 | kfree(cache->hashtable); |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 332 | kfree(cache); |
| 333 | } |
| 334 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 335 | EXPORT_SYMBOL_GPL(rpcauth_destroy_credcache); |
Trond Myklebust | 3ab9bb7 | 2007-06-09 15:41:42 -0400 | [diff] [blame] | 336 | |
Trond Myklebust | d2b8314 | 2008-04-14 18:13:37 -0400 | [diff] [blame] | 337 | |
| 338 | #define RPC_AUTH_EXPIRY_MORATORIUM (60 * HZ) |
| 339 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | /* |
| 341 | * Remove stale credentials. Avoid sleeping inside the loop. |
| 342 | */ |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 343 | static int |
| 344 | rpcauth_prune_expired(struct list_head *free, int nr_to_scan) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 346 | spinlock_t *cache_lock; |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 347 | struct rpc_cred *cred, *next; |
Trond Myklebust | d2b8314 | 2008-04-14 18:13:37 -0400 | [diff] [blame] | 348 | unsigned long expired = jiffies - RPC_AUTH_EXPIRY_MORATORIUM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 350 | list_for_each_entry_safe(cred, next, &cred_unused, cr_lru) { |
| 351 | |
Trond Myklebust | 2067340 | 2010-05-13 12:51:06 -0400 | [diff] [blame] | 352 | if (nr_to_scan-- == 0) |
| 353 | break; |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame] | 354 | /* |
| 355 | * Enforce a 60 second garbage collection moratorium |
| 356 | * Note that the cred_unused list must be time-ordered. |
| 357 | */ |
Trond Myklebust | 3d7b089 | 2010-04-22 15:35:55 -0400 | [diff] [blame] | 358 | if (time_in_range(cred->cr_expire, expired, jiffies) && |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 359 | test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame] | 360 | return 0; |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 361 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 362 | list_del_init(&cred->cr_lru); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 363 | number_cred_unused--; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 364 | if (atomic_read(&cred->cr_count) != 0) |
| 365 | continue; |
Trond Myklebust | eac0d18 | 2008-10-28 15:21:41 -0400 | [diff] [blame] | 366 | |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 367 | cache_lock = &cred->cr_auth->au_credcache->lock; |
| 368 | spin_lock(cache_lock); |
| 369 | if (atomic_read(&cred->cr_count) == 0) { |
| 370 | get_rpccred(cred); |
| 371 | list_add_tail(&cred->cr_lru, free); |
| 372 | rpcauth_unhash_cred_locked(cred); |
| 373 | } |
| 374 | spin_unlock(cache_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame] | 376 | return (number_cred_unused / 100) * sysctl_vfs_cache_pressure; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | /* |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 380 | * Run memory cache shrinker. |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 381 | */ |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 382 | static int |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 383 | rpcauth_cache_shrinker(struct shrinker *shrink, struct shrink_control *sc) |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 384 | { |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 385 | LIST_HEAD(free); |
| 386 | int res; |
Ying Han | 1495f23 | 2011-05-24 17:12:27 -0700 | [diff] [blame] | 387 | int nr_to_scan = sc->nr_to_scan; |
| 388 | gfp_t gfp_mask = sc->gfp_mask; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 389 | |
Trond Myklebust | d300a41 | 2010-05-13 12:51:03 -0400 | [diff] [blame] | 390 | if ((gfp_mask & GFP_KERNEL) != GFP_KERNEL) |
| 391 | return (nr_to_scan == 0) ? 0 : -1; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 392 | if (list_empty(&cred_unused)) |
| 393 | return 0; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 394 | spin_lock(&rpc_credcache_lock); |
Trond Myklebust | 93a05e6 | 2010-05-13 12:51:06 -0400 | [diff] [blame] | 395 | res = rpcauth_prune_expired(&free, nr_to_scan); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 396 | spin_unlock(&rpc_credcache_lock); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 397 | rpcauth_destroy_credlist(&free); |
| 398 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | /* |
| 402 | * Look up a process' credentials in the authentication cache |
| 403 | */ |
| 404 | struct rpc_cred * |
| 405 | rpcauth_lookup_credcache(struct rpc_auth *auth, struct auth_cred * acred, |
Trond Myklebust | 8a31776 | 2006-02-01 12:18:36 -0500 | [diff] [blame] | 406 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 408 | LIST_HEAD(free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | struct rpc_cred_cache *cache = auth->au_credcache; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 410 | struct hlist_node *pos; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 411 | struct rpc_cred *cred = NULL, |
| 412 | *entry, *new; |
Trond Myklebust | 25337fd | 2008-03-12 14:40:14 -0400 | [diff] [blame] | 413 | unsigned int nr; |
| 414 | |
Trond Myklebust | 988664a | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 415 | nr = hash_long(acred->uid, cache->hashbits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 417 | rcu_read_lock(); |
| 418 | hlist_for_each_entry_rcu(entry, pos, &cache->hashtable[nr], cr_hash) { |
| 419 | if (!entry->cr_ops->crmatch(acred, entry, flags)) |
| 420 | continue; |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 421 | spin_lock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 422 | if (test_bit(RPCAUTH_CRED_HASHED, &entry->cr_flags) == 0) { |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 423 | spin_unlock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 424 | continue; |
| 425 | } |
| 426 | cred = get_rpccred(entry); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 427 | spin_unlock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 428 | break; |
| 429 | } |
| 430 | rcu_read_unlock(); |
| 431 | |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 432 | if (cred != NULL) |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 433 | goto found; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 434 | |
| 435 | new = auth->au_ops->crcreate(auth, acred, flags); |
| 436 | if (IS_ERR(new)) { |
| 437 | cred = new; |
| 438 | goto out; |
| 439 | } |
| 440 | |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 441 | spin_lock(&cache->lock); |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 442 | hlist_for_each_entry(entry, pos, &cache->hashtable[nr], cr_hash) { |
| 443 | if (!entry->cr_ops->crmatch(acred, entry, flags)) |
| 444 | continue; |
| 445 | cred = get_rpccred(entry); |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 446 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 448 | if (cred == NULL) { |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 449 | cred = new; |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 450 | set_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags); |
| 451 | hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]); |
| 452 | } else |
| 453 | list_add_tail(&new->cr_lru, &free); |
Trond Myklebust | 9499b43 | 2007-06-24 15:57:57 -0400 | [diff] [blame] | 454 | spin_unlock(&cache->lock); |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 455 | found: |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 456 | if (test_bit(RPCAUTH_CRED_NEW, &cred->cr_flags) && |
| 457 | cred->cr_ops->cr_init != NULL && |
| 458 | !(flags & RPCAUTH_LOOKUP_NEW)) { |
Trond Myklebust | fba3bad | 2006-02-01 12:19:27 -0500 | [diff] [blame] | 459 | int res = cred->cr_ops->cr_init(auth, cred); |
| 460 | if (res < 0) { |
| 461 | put_rpccred(cred); |
| 462 | cred = ERR_PTR(res); |
| 463 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
Trond Myklebust | 31be5bf | 2007-06-24 15:55:26 -0400 | [diff] [blame] | 465 | rpcauth_destroy_credlist(&free); |
| 466 | out: |
| 467 | return cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 469 | EXPORT_SYMBOL_GPL(rpcauth_lookup_credcache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
| 471 | struct rpc_cred * |
Trond Myklebust | 8a31776 | 2006-02-01 12:18:36 -0500 | [diff] [blame] | 472 | rpcauth_lookupcred(struct rpc_auth *auth, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | { |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 474 | struct auth_cred acred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | struct rpc_cred *ret; |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 476 | const struct cred *cred = current_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 478 | dprintk("RPC: looking up %s cred\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | auth->au_ops->au_name); |
David Howells | 86a264a | 2008-11-14 10:39:18 +1100 | [diff] [blame] | 480 | |
| 481 | memset(&acred, 0, sizeof(acred)); |
| 482 | acred.uid = cred->fsuid; |
| 483 | acred.gid = cred->fsgid; |
| 484 | acred.group_info = get_group_info(((struct cred *)cred)->group_info); |
| 485 | |
Trond Myklebust | 8a31776 | 2006-02-01 12:18:36 -0500 | [diff] [blame] | 486 | ret = auth->au_ops->lookup_cred(auth, &acred, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | put_group_info(acred.group_info); |
| 488 | return ret; |
| 489 | } |
| 490 | |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 491 | void |
| 492 | rpcauth_init_cred(struct rpc_cred *cred, const struct auth_cred *acred, |
| 493 | struct rpc_auth *auth, const struct rpc_credops *ops) |
| 494 | { |
| 495 | INIT_HLIST_NODE(&cred->cr_hash); |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 496 | INIT_LIST_HEAD(&cred->cr_lru); |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 497 | atomic_set(&cred->cr_count, 1); |
| 498 | cred->cr_auth = auth; |
| 499 | cred->cr_ops = ops; |
| 500 | cred->cr_expire = jiffies; |
| 501 | #ifdef RPC_DEBUG |
| 502 | cred->cr_magic = RPCAUTH_CRED_MAGIC; |
| 503 | #endif |
| 504 | cred->cr_uid = acred->uid; |
| 505 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 506 | EXPORT_SYMBOL_GPL(rpcauth_init_cred); |
Trond Myklebust | 5fe4755 | 2007-06-23 19:55:31 -0400 | [diff] [blame] | 507 | |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 508 | struct rpc_cred * |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 509 | 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] | 510 | { |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 511 | dprintk("RPC: %5u holding %s cred %p\n", task->tk_pid, |
| 512 | cred->cr_auth->au_ops->au_name, cred); |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 513 | return get_rpccred(cred); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 514 | } |
Trond Myklebust | 5c69104 | 2008-03-12 16:21:07 -0400 | [diff] [blame] | 515 | EXPORT_SYMBOL_GPL(rpcauth_generic_bind_cred); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 516 | |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 517 | static struct rpc_cred * |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 518 | rpcauth_bind_root_cred(struct rpc_task *task, int lookupflags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | { |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 520 | struct rpc_auth *auth = task->tk_client->cl_auth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | struct auth_cred acred = { |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 522 | .uid = 0, |
| 523 | .gid = 0, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 526 | dprintk("RPC: %5u looking up %s cred\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 527 | task->tk_pid, task->tk_client->cl_auth->au_ops->au_name); |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 528 | return auth->au_ops->lookup_cred(auth, &acred, lookupflags); |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 529 | } |
| 530 | |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 531 | static struct rpc_cred * |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 532 | rpcauth_bind_new_cred(struct rpc_task *task, int lookupflags) |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 533 | { |
| 534 | struct rpc_auth *auth = task->tk_client->cl_auth; |
Trond Myklebust | af09383 | 2008-03-12 12:12:16 -0400 | [diff] [blame] | 535 | |
| 536 | dprintk("RPC: %5u looking up %s cred\n", |
| 537 | task->tk_pid, auth->au_ops->au_name); |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 538 | return rpcauth_lookupcred(auth, lookupflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | } |
| 540 | |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 541 | static int |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 542 | rpcauth_bindcred(struct rpc_task *task, struct rpc_cred *cred, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 544 | struct rpc_rqst *req = task->tk_rqstp; |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 545 | struct rpc_cred *new; |
Trond Myklebust | 5d35175 | 2009-09-15 13:32:13 -0400 | [diff] [blame] | 546 | int lookupflags = 0; |
| 547 | |
| 548 | if (flags & RPC_TASK_ASYNC) |
| 549 | lookupflags |= RPCAUTH_LOOKUP_NEW; |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 550 | if (cred != NULL) |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 551 | new = cred->cr_ops->crbind(task, cred, lookupflags); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 552 | else if (flags & RPC_TASK_ROOTCREDS) |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 553 | new = rpcauth_bind_root_cred(task, lookupflags); |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 554 | else |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 555 | new = rpcauth_bind_new_cred(task, lookupflags); |
| 556 | if (IS_ERR(new)) |
| 557 | return PTR_ERR(new); |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 558 | if (req->rq_cred != NULL) |
| 559 | put_rpccred(req->rq_cred); |
| 560 | req->rq_cred = new; |
Trond Myklebust | 8572b8e | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 561 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | void |
| 565 | put_rpccred(struct rpc_cred *cred) |
| 566 | { |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 567 | /* Fast path for unhashed credentials */ |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 568 | if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) == 0) { |
| 569 | if (atomic_dec_and_test(&cred->cr_count)) |
| 570 | cred->cr_ops->crdestroy(cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | return; |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 572 | } |
| 573 | |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 574 | if (!atomic_dec_and_lock(&cred->cr_count, &rpc_credcache_lock)) |
| 575 | return; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 576 | if (!list_empty(&cred->cr_lru)) { |
| 577 | number_cred_unused--; |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 578 | list_del_init(&cred->cr_lru); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 579 | } |
Trond Myklebust | 5f707eb | 2008-10-28 15:21:42 -0400 | [diff] [blame] | 580 | if (test_bit(RPCAUTH_CRED_HASHED, &cred->cr_flags) != 0) { |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 581 | if (test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0) { |
| 582 | cred->cr_expire = jiffies; |
| 583 | list_add_tail(&cred->cr_lru, &cred_unused); |
| 584 | number_cred_unused++; |
| 585 | goto out_nodestroy; |
| 586 | } |
| 587 | if (!rpcauth_unhash_cred(cred)) { |
| 588 | /* We were hashed and someone looked us up... */ |
| 589 | goto out_nodestroy; |
| 590 | } |
Trond Myklebust | e092bdc | 2007-06-23 19:45:36 -0400 | [diff] [blame] | 591 | } |
| 592 | spin_unlock(&rpc_credcache_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | cred->cr_ops->crdestroy(cred); |
Trond Myklebust | f0380f3 | 2009-12-03 08:10:17 -0500 | [diff] [blame] | 594 | return; |
| 595 | out_nodestroy: |
| 596 | spin_unlock(&rpc_credcache_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 598 | EXPORT_SYMBOL_GPL(put_rpccred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 600 | __be32 * |
| 601 | rpcauth_marshcred(struct rpc_task *task, __be32 *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 603 | struct rpc_cred *cred = task->tk_rqstp->rq_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 605 | dprintk("RPC: %5u marshaling %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 606 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | return cred->cr_ops->crmarshal(task, p); |
| 609 | } |
| 610 | |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 611 | __be32 * |
| 612 | rpcauth_checkverf(struct rpc_task *task, __be32 *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 614 | struct rpc_cred *cred = task->tk_rqstp->rq_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 616 | dprintk("RPC: %5u validating %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 617 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | return cred->cr_ops->crvalidate(task, p); |
| 620 | } |
| 621 | |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 622 | static void rpcauth_wrap_req_encode(kxdreproc_t encode, struct rpc_rqst *rqstp, |
| 623 | __be32 *data, void *obj) |
| 624 | { |
| 625 | struct xdr_stream xdr; |
| 626 | |
| 627 | xdr_init_encode(&xdr, &rqstp->rq_snd_buf, data); |
| 628 | encode(rqstp, &xdr, obj); |
| 629 | } |
| 630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | int |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 632 | rpcauth_wrap_req(struct rpc_task *task, kxdreproc_t encode, void *rqstp, |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 633 | __be32 *data, void *obj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 635 | struct rpc_cred *cred = task->tk_rqstp->rq_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 637 | dprintk("RPC: %5u using %s cred %p to wrap rpc data\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | task->tk_pid, cred->cr_ops->cr_name, cred); |
| 639 | if (cred->cr_ops->crwrap_req) |
| 640 | return cred->cr_ops->crwrap_req(task, encode, rqstp, data, obj); |
| 641 | /* By default, we encode the arguments normally. */ |
Chuck Lever | 9f06c71 | 2010-12-14 14:59:18 +0000 | [diff] [blame] | 642 | rpcauth_wrap_req_encode(encode, rqstp, data, obj); |
| 643 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } |
| 645 | |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 646 | static int |
| 647 | rpcauth_unwrap_req_decode(kxdrdproc_t decode, struct rpc_rqst *rqstp, |
| 648 | __be32 *data, void *obj) |
| 649 | { |
| 650 | struct xdr_stream xdr; |
| 651 | |
| 652 | xdr_init_decode(&xdr, &rqstp->rq_rcv_buf, data); |
| 653 | return decode(rqstp, &xdr, obj); |
| 654 | } |
| 655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | int |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 657 | rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, |
Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 658 | __be32 *data, void *obj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 660 | struct rpc_cred *cred = task->tk_rqstp->rq_cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 662 | dprintk("RPC: %5u using %s cred %p to unwrap rpc data\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | task->tk_pid, cred->cr_ops->cr_name, cred); |
| 664 | if (cred->cr_ops->crunwrap_resp) |
| 665 | return cred->cr_ops->crunwrap_resp(task, decode, rqstp, |
| 666 | data, obj); |
| 667 | /* By default, we decode the arguments normally. */ |
Chuck Lever | bf26955 | 2010-12-14 14:59:29 +0000 | [diff] [blame] | 668 | return rpcauth_unwrap_req_decode(decode, rqstp, data, obj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | } |
| 670 | |
| 671 | int |
| 672 | rpcauth_refreshcred(struct rpc_task *task) |
| 673 | { |
Trond Myklebust | 9a84d38 | 2010-10-24 18:00:46 -0400 | [diff] [blame] | 674 | struct rpc_cred *cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | int err; |
| 676 | |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 677 | cred = task->tk_rqstp->rq_cred; |
| 678 | if (cred == NULL) { |
| 679 | err = rpcauth_bindcred(task, task->tk_msg.rpc_cred, task->tk_flags); |
| 680 | if (err < 0) |
| 681 | goto out; |
| 682 | cred = task->tk_rqstp->rq_cred; |
Joe Perches | f81c622 | 2011-06-03 11:51:19 +0000 | [diff] [blame] | 683 | } |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 684 | dprintk("RPC: %5u refreshing %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 685 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Chuck Lever | 0bbacc4 | 2005-11-01 16:53:32 -0500 | [diff] [blame] | 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | err = cred->cr_ops->crrefresh(task); |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 688 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | if (err < 0) |
| 690 | task->tk_status = err; |
| 691 | return err; |
| 692 | } |
| 693 | |
| 694 | void |
| 695 | rpcauth_invalcred(struct rpc_task *task) |
| 696 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 697 | struct rpc_cred *cred = task->tk_rqstp->rq_cred; |
Trond Myklebust | fc432dd | 2007-06-25 10:15:15 -0400 | [diff] [blame] | 698 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 699 | dprintk("RPC: %5u invalidating %s cred %p\n", |
Trond Myklebust | 1be27f3 | 2007-06-27 14:29:04 -0400 | [diff] [blame] | 700 | task->tk_pid, cred->cr_auth->au_ops->au_name, cred); |
Trond Myklebust | fc432dd | 2007-06-25 10:15:15 -0400 | [diff] [blame] | 701 | if (cred) |
| 702 | clear_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | int |
| 706 | rpcauth_uptodatecred(struct rpc_task *task) |
| 707 | { |
Trond Myklebust | a17c215 | 2010-07-31 14:29:08 -0400 | [diff] [blame] | 708 | struct rpc_cred *cred = task->tk_rqstp->rq_cred; |
Trond Myklebust | fc432dd | 2007-06-25 10:15:15 -0400 | [diff] [blame] | 709 | |
| 710 | return cred == NULL || |
| 711 | test_bit(RPCAUTH_CRED_UPTODATE, &cred->cr_flags) != 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 713 | |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 714 | static struct shrinker rpc_cred_shrinker = { |
| 715 | .shrink = rpcauth_cache_shrinker, |
| 716 | .seeks = DEFAULT_SEEKS, |
| 717 | }; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 718 | |
Trond Myklebust | 5d8d9a4 | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 719 | int __init rpcauth_init_module(void) |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 720 | { |
Trond Myklebust | 5d8d9a4 | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 721 | int err; |
| 722 | |
| 723 | err = rpc_init_authunix(); |
| 724 | if (err < 0) |
| 725 | goto out1; |
| 726 | err = rpc_init_generic_auth(); |
| 727 | if (err < 0) |
| 728 | goto out2; |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 729 | register_shrinker(&rpc_cred_shrinker); |
Trond Myklebust | 5d8d9a4 | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 730 | return 0; |
| 731 | out2: |
| 732 | rpc_destroy_authunix(); |
| 733 | out1: |
| 734 | return err; |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 735 | } |
| 736 | |
Stephen Rothwell | c135e84 | 2010-09-29 14:16:57 +1000 | [diff] [blame] | 737 | void rpcauth_remove_module(void) |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 738 | { |
Trond Myklebust | 5d8d9a4 | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 739 | rpc_destroy_authunix(); |
| 740 | rpc_destroy_generic_auth(); |
Rusty Russell | 8e1f936 | 2007-07-17 04:03:17 -0700 | [diff] [blame] | 741 | unregister_shrinker(&rpc_cred_shrinker); |
Trond Myklebust | f5c2187 | 2007-06-25 17:11:20 -0400 | [diff] [blame] | 742 | } |