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