Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/lockd/svclock.c |
| 3 | * |
| 4 | * Handling of server-side locks, mostly of the blocked variety. |
| 5 | * This is the ugliest part of lockd because we tread on very thin ice. |
| 6 | * GRANT and CANCEL calls may get stuck, meet in mid-flight, etc. |
| 7 | * IMNSHO introducing the grant callback into the NLM protocol was one |
| 8 | * of the worst ideas Sun ever had. Except maybe for the idea of doing |
| 9 | * NFS file locking at all. |
| 10 | * |
| 11 | * I'm trying hard to avoid race conditions by protecting most accesses |
| 12 | * to a file's list of blocked locks through a semaphore. The global |
| 13 | * list of blocked locks is not protected in this fashion however. |
| 14 | * Therefore, some functions (such as the RPC callback for the async grant |
| 15 | * call) move blocked locks towards the head of the list *while some other |
| 16 | * process might be traversing it*. This should not be a problem in |
| 17 | * practice, because this will only cause functions traversing the list |
| 18 | * to visit some blocks twice. |
| 19 | * |
| 20 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> |
| 21 | */ |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/errno.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/sunrpc/clnt.h> |
| 29 | #include <linux/sunrpc/svc.h> |
| 30 | #include <linux/lockd/nlm.h> |
| 31 | #include <linux/lockd/lockd.h> |
Jeff Layton | d751a7c | 2008-02-07 16:34:55 -0500 | [diff] [blame] | 32 | #include <linux/kthread.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | #define NLMDBG_FACILITY NLMDBG_SVCLOCK |
| 35 | |
| 36 | #ifdef CONFIG_LOCKD_V4 |
| 37 | #define nlm_deadlock nlm4_deadlock |
| 38 | #else |
| 39 | #define nlm_deadlock nlm_lck_denied |
| 40 | #endif |
| 41 | |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 42 | static void nlmsvc_release_block(struct nlm_block *block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | static void nlmsvc_insert_block(struct nlm_block *block, unsigned long); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 44 | static void nlmsvc_remove_block(struct nlm_block *block); |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 45 | |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 46 | static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock); |
| 47 | static void nlmsvc_freegrantargs(struct nlm_rqst *call); |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 48 | static const struct rpc_call_ops nlmsvc_grant_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | /* |
| 51 | * The list of blocked locks to retry |
| 52 | */ |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 53 | static LIST_HEAD(nlm_blocked); |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 54 | static DEFINE_SPINLOCK(nlm_blocked_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /* |
| 57 | * Insert a blocked lock into the global list |
| 58 | */ |
| 59 | static void |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 60 | nlmsvc_insert_block_locked(struct nlm_block *block, unsigned long when) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 62 | struct nlm_block *b; |
| 63 | struct list_head *pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
| 65 | dprintk("lockd: nlmsvc_insert_block(%p, %ld)\n", block, when); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 66 | if (list_empty(&block->b_list)) { |
| 67 | kref_get(&block->b_count); |
| 68 | } else { |
| 69 | list_del_init(&block->b_list); |
| 70 | } |
| 71 | |
| 72 | pos = &nlm_blocked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | if (when != NLM_NEVER) { |
| 74 | if ((when += jiffies) == NLM_NEVER) |
| 75 | when ++; |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 76 | list_for_each(pos, &nlm_blocked) { |
| 77 | b = list_entry(pos, struct nlm_block, b_list); |
| 78 | if (time_after(b->b_when,when) || b->b_when == NLM_NEVER) |
| 79 | break; |
| 80 | } |
| 81 | /* On normal exit from the loop, pos == &nlm_blocked, |
| 82 | * so we will be adding to the end of the list - good |
| 83 | */ |
| 84 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 86 | list_add_tail(&block->b_list, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | block->b_when = when; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 90 | static void nlmsvc_insert_block(struct nlm_block *block, unsigned long when) |
| 91 | { |
| 92 | spin_lock(&nlm_blocked_lock); |
| 93 | nlmsvc_insert_block_locked(block, when); |
| 94 | spin_unlock(&nlm_blocked_lock); |
| 95 | } |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | /* |
| 98 | * Remove a block from the global list |
| 99 | */ |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 100 | static inline void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | nlmsvc_remove_block(struct nlm_block *block) |
| 102 | { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 103 | if (!list_empty(&block->b_list)) { |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 104 | spin_lock(&nlm_blocked_lock); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 105 | list_del_init(&block->b_list); |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 106 | spin_unlock(&nlm_blocked_lock); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 107 | nlmsvc_release_block(block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /* |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 112 | * Find a block for a given lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | */ |
| 114 | static struct nlm_block * |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 115 | nlmsvc_lookup_block(struct nlm_file *file, struct nlm_lock *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 117 | struct nlm_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | struct file_lock *fl; |
| 119 | |
| 120 | dprintk("lockd: nlmsvc_lookup_block f=%p pd=%d %Ld-%Ld ty=%d\n", |
| 121 | file, lock->fl.fl_pid, |
| 122 | (long long)lock->fl.fl_start, |
| 123 | (long long)lock->fl.fl_end, lock->fl.fl_type); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 124 | list_for_each_entry(block, &nlm_blocked, b_list) { |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 125 | fl = &block->b_call->a_args.lock.fl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | dprintk("lockd: check f=%p pd=%d %Ld-%Ld ty=%d cookie=%s\n", |
| 127 | block->b_file, fl->fl_pid, |
| 128 | (long long)fl->fl_start, |
| 129 | (long long)fl->fl_end, fl->fl_type, |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 130 | nlmdbg_cookie2a(&block->b_call->a_args.cookie)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | if (block->b_file == file && nlm_compare_locks(fl, &lock->fl)) { |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 132 | kref_get(&block->b_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | return block; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | static inline int nlm_cookie_match(struct nlm_cookie *a, struct nlm_cookie *b) |
| 141 | { |
J. Bruce Fields | 6d7bbbb | 2008-07-15 14:38:32 -0400 | [diff] [blame] | 142 | if (a->len != b->len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return 0; |
J. Bruce Fields | 6d7bbbb | 2008-07-15 14:38:32 -0400 | [diff] [blame] | 144 | if (memcmp(a->data, b->data, a->len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | return 0; |
| 146 | return 1; |
| 147 | } |
| 148 | |
| 149 | /* |
| 150 | * Find a block with a given NLM cookie. |
| 151 | */ |
| 152 | static inline struct nlm_block * |
Olaf Kirch | 39be450 | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 153 | nlmsvc_find_block(struct nlm_cookie *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
| 155 | struct nlm_block *block; |
| 156 | |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 157 | list_for_each_entry(block, &nlm_blocked, b_list) { |
Olaf Kirch | 39be450 | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 158 | if (nlm_cookie_match(&block->b_call->a_args.cookie,cookie)) |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 159 | goto found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 162 | return NULL; |
| 163 | |
| 164 | found: |
Olaf Kirch | 39be450 | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 165 | dprintk("nlmsvc_find_block(%s): block=%p\n", nlmdbg_cookie2a(cookie), block); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 166 | kref_get(&block->b_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | return block; |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * Create a block and initialize it. |
| 172 | * |
| 173 | * Note: we explicitly set the cookie of the grant reply to that of |
| 174 | * the blocked lock request. The spec explicitly mentions that the client |
| 175 | * should _not_ rely on the callback containing the same cookie as the |
| 176 | * request, but (as I found out later) that's because some implementations |
| 177 | * do just this. Never mind the standards comittees, they support our |
| 178 | * logging industries. |
Olaf Kirch | 39be450 | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 179 | * |
| 180 | * 10 years later: I hope we can safely ignore these old and broken |
| 181 | * clients by now. Let's fix this so we can uniquely identify an incoming |
| 182 | * GRANTED_RES message by cookie, without having to rely on the client's IP |
| 183 | * address. --okir |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | */ |
Trond Myklebust | 255129d | 2007-09-25 15:55:03 -0400 | [diff] [blame] | 185 | static struct nlm_block * |
| 186 | nlmsvc_create_block(struct svc_rqst *rqstp, struct nlm_host *host, |
| 187 | struct nlm_file *file, struct nlm_lock *lock, |
| 188 | struct nlm_cookie *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | { |
| 190 | struct nlm_block *block; |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 191 | struct nlm_rqst *call = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
J. Bruce Fields | 560de0e | 2008-07-15 15:05:45 -0400 | [diff] [blame] | 193 | nlm_get_host(host); |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 194 | call = nlm_alloc_call(host); |
| 195 | if (call == NULL) |
| 196 | return NULL; |
| 197 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | /* Allocate memory for block, and initialize arguments */ |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 199 | block = kzalloc(sizeof(*block), GFP_KERNEL); |
| 200 | if (block == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | goto failed; |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 202 | kref_init(&block->b_count); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 203 | INIT_LIST_HEAD(&block->b_list); |
| 204 | INIT_LIST_HEAD(&block->b_flist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 206 | if (!nlmsvc_setgrantargs(call, lock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | goto failed_free; |
| 208 | |
| 209 | /* Set notifier function for VFS, and init args */ |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 210 | call->a_args.lock.fl.fl_flags |= FL_SLEEP; |
| 211 | call->a_args.lock.fl.fl_lmops = &nlmsvc_lock_operations; |
Olaf Kirch | 39be450 | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 212 | nlmclnt_next_cookie(&call->a_args.cookie); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | |
| 214 | dprintk("lockd: created block %p...\n", block); |
| 215 | |
| 216 | /* Create and initialize the block */ |
| 217 | block->b_daemon = rqstp->rq_server; |
| 218 | block->b_host = host; |
| 219 | block->b_file = file; |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 220 | block->b_fl = NULL; |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 221 | file->f_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | |
| 223 | /* Add to file's list of blocks */ |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 224 | list_add(&block->b_flist, &file->f_blocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
| 226 | /* Set up RPC arguments for callback */ |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 227 | block->b_call = call; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | call->a_flags = RPC_TASK_ASYNC; |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 229 | call->a_block = block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | return block; |
| 232 | |
| 233 | failed_free: |
| 234 | kfree(block); |
| 235 | failed: |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 236 | nlm_release_call(call); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return NULL; |
| 238 | } |
| 239 | |
| 240 | /* |
J. Bruce Fields | 3c61eec | 2008-04-07 13:05:27 -0400 | [diff] [blame] | 241 | * Delete a block. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | * It is the caller's responsibility to check whether the file |
| 243 | * can be closed hereafter. |
| 244 | */ |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 245 | static int nlmsvc_unlink_block(struct nlm_block *block) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | { |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 247 | int status; |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 248 | dprintk("lockd: unlinking block %p...\n", block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | |
| 250 | /* Remove block from list */ |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 251 | status = posix_unblock_lock(block->b_file->f_file, &block->b_call->a_args.lock.fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | nlmsvc_remove_block(block); |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 253 | return status; |
| 254 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 256 | static void nlmsvc_free_block(struct kref *kref) |
| 257 | { |
| 258 | struct nlm_block *block = container_of(kref, struct nlm_block, b_count); |
| 259 | struct nlm_file *file = block->b_file; |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 260 | |
| 261 | dprintk("lockd: freeing block %p...\n", block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
| 263 | /* Remove block from file's list of blocks */ |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 264 | mutex_lock(&file->f_mutex); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 265 | list_del_init(&block->b_flist); |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 266 | mutex_unlock(&file->f_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 268 | nlmsvc_freegrantargs(block->b_call); |
| 269 | nlm_release_call(block->b_call); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 270 | nlm_release_file(block->b_file); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 271 | kfree(block->b_fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | kfree(block); |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 273 | } |
| 274 | |
| 275 | static void nlmsvc_release_block(struct nlm_block *block) |
| 276 | { |
| 277 | if (block != NULL) |
| 278 | kref_put(&block->b_count, nlmsvc_free_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Olaf Kirch | f2af793 | 2006-10-04 02:15:59 -0700 | [diff] [blame] | 281 | /* |
| 282 | * Loop over all blocks and delete blocks held by |
| 283 | * a matching host. |
| 284 | */ |
| 285 | void nlmsvc_traverse_blocks(struct nlm_host *host, |
| 286 | struct nlm_file *file, |
| 287 | nlm_host_match_fn_t match) |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 288 | { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 289 | struct nlm_block *block, *next; |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 290 | |
| 291 | restart: |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 292 | mutex_lock(&file->f_mutex); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 293 | list_for_each_entry_safe(block, next, &file->f_blocks, b_flist) { |
Olaf Kirch | f2af793 | 2006-10-04 02:15:59 -0700 | [diff] [blame] | 294 | if (!match(block->b_host, host)) |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 295 | continue; |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 296 | /* Do not destroy blocks that are not on |
| 297 | * the global retry list - why? */ |
| 298 | if (list_empty(&block->b_list)) |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 299 | continue; |
| 300 | kref_get(&block->b_count); |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 301 | mutex_unlock(&file->f_mutex); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 302 | nlmsvc_unlink_block(block); |
| 303 | nlmsvc_release_block(block); |
| 304 | goto restart; |
| 305 | } |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 306 | mutex_unlock(&file->f_mutex); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 307 | } |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 310 | * Initialize arguments for GRANTED call. The nlm_rqst structure |
| 311 | * has been cleared already. |
| 312 | */ |
| 313 | static int nlmsvc_setgrantargs(struct nlm_rqst *call, struct nlm_lock *lock) |
| 314 | { |
| 315 | locks_copy_lock(&call->a_args.lock.fl, &lock->fl); |
| 316 | memcpy(&call->a_args.lock.fh, &lock->fh, sizeof(call->a_args.lock.fh)); |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 317 | call->a_args.lock.caller = utsname()->nodename; |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 318 | call->a_args.lock.oh.len = lock->oh.len; |
| 319 | |
| 320 | /* set default data area */ |
| 321 | call->a_args.lock.oh.data = call->a_owner; |
| 322 | call->a_args.lock.svid = lock->fl.fl_pid; |
| 323 | |
| 324 | if (lock->oh.len > NLMCLNT_OHSIZE) { |
| 325 | void *data = kmalloc(lock->oh.len, GFP_KERNEL); |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 326 | if (!data) |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 327 | return 0; |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 328 | call->a_args.lock.oh.data = (u8 *) data; |
| 329 | } |
| 330 | |
| 331 | memcpy(call->a_args.lock.oh.data, lock->oh.data, lock->oh.len); |
| 332 | return 1; |
| 333 | } |
| 334 | |
| 335 | static void nlmsvc_freegrantargs(struct nlm_rqst *call) |
| 336 | { |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 337 | if (call->a_args.lock.oh.data != call->a_owner) |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 338 | kfree(call->a_args.lock.oh.data); |
Felix Blyakher | a9e61e2 | 2009-03-31 15:12:56 -0500 | [diff] [blame] | 339 | |
| 340 | locks_release_private(&call->a_args.lock.fl); |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
Marc Eshel | 2b36f41 | 2006-11-28 16:26:47 -0500 | [diff] [blame] | 344 | * Deferred lock request handling for non-blocking lock |
| 345 | */ |
Al Viro | ca5c8cd | 2007-07-26 17:33:49 +0100 | [diff] [blame] | 346 | static __be32 |
Marc Eshel | 2b36f41 | 2006-11-28 16:26:47 -0500 | [diff] [blame] | 347 | nlmsvc_defer_lock_rqst(struct svc_rqst *rqstp, struct nlm_block *block) |
| 348 | { |
Al Viro | ca5c8cd | 2007-07-26 17:33:49 +0100 | [diff] [blame] | 349 | __be32 status = nlm_lck_denied_nolocks; |
Marc Eshel | 2b36f41 | 2006-11-28 16:26:47 -0500 | [diff] [blame] | 350 | |
| 351 | block->b_flags |= B_QUEUED; |
| 352 | |
| 353 | nlmsvc_insert_block(block, NLM_TIMEOUT); |
| 354 | |
| 355 | block->b_cache_req = &rqstp->rq_chandle; |
| 356 | if (rqstp->rq_chandle.defer) { |
| 357 | block->b_deferred_req = |
| 358 | rqstp->rq_chandle.defer(block->b_cache_req); |
| 359 | if (block->b_deferred_req != NULL) |
| 360 | status = nlm_drop_reply; |
| 361 | } |
| 362 | dprintk("lockd: nlmsvc_defer_lock_rqst block %p flags %d status %d\n", |
Al Viro | ca5c8cd | 2007-07-26 17:33:49 +0100 | [diff] [blame] | 363 | block, block->b_flags, ntohl(status)); |
Marc Eshel | 2b36f41 | 2006-11-28 16:26:47 -0500 | [diff] [blame] | 364 | |
| 365 | return status; |
| 366 | } |
| 367 | |
| 368 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | * Attempt to establish a lock, and if it can't be granted, block it |
| 370 | * if required. |
| 371 | */ |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 372 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | nlmsvc_lock(struct svc_rqst *rqstp, struct nlm_file *file, |
Jeff Layton | 6cde4de | 2008-07-15 14:26:17 -0400 | [diff] [blame] | 374 | struct nlm_host *host, struct nlm_lock *lock, int wait, |
J. Bruce Fields | b2b5028 | 2008-02-06 13:59:23 -0500 | [diff] [blame] | 375 | struct nlm_cookie *cookie, int reclaim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | { |
Marc Eshel | f812048 | 2006-12-05 23:48:10 -0500 | [diff] [blame] | 377 | struct nlm_block *block = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | int error; |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 379 | __be32 ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | dprintk("lockd: nlmsvc_lock(%s/%ld, ty=%d, pi=%d, %Ld-%Ld, bl=%d)\n", |
Josef Sipek | 225a719 | 2006-12-08 02:37:18 -0800 | [diff] [blame] | 382 | file->f_file->f_path.dentry->d_inode->i_sb->s_id, |
| 383 | file->f_file->f_path.dentry->d_inode->i_ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | lock->fl.fl_type, lock->fl.fl_pid, |
| 385 | (long long)lock->fl.fl_start, |
| 386 | (long long)lock->fl.fl_end, |
| 387 | wait); |
| 388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | /* Lock file against concurrent access */ |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 390 | mutex_lock(&file->f_mutex); |
Marc Eshel | f812048 | 2006-12-05 23:48:10 -0500 | [diff] [blame] | 391 | /* Get existing block (in case client is busy-waiting) |
| 392 | * or create new block |
| 393 | */ |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 394 | block = nlmsvc_lookup_block(file, lock); |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 395 | if (block == NULL) { |
J. Bruce Fields | 560de0e | 2008-07-15 15:05:45 -0400 | [diff] [blame] | 396 | block = nlmsvc_create_block(rqstp, host, file, lock, cookie); |
Marc Eshel | f812048 | 2006-12-05 23:48:10 -0500 | [diff] [blame] | 397 | ret = nlm_lck_denied_nolocks; |
| 398 | if (block == NULL) |
| 399 | goto out; |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 400 | lock = &block->b_call->a_args.lock; |
Marc Eshel | f812048 | 2006-12-05 23:48:10 -0500 | [diff] [blame] | 401 | } else |
| 402 | lock->fl.fl_flags &= ~FL_SLEEP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 404 | if (block->b_flags & B_QUEUED) { |
| 405 | dprintk("lockd: nlmsvc_lock deferred block %p flags %d\n", |
| 406 | block, block->b_flags); |
| 407 | if (block->b_granted) { |
| 408 | nlmsvc_unlink_block(block); |
| 409 | ret = nlm_granted; |
| 410 | goto out; |
| 411 | } |
| 412 | if (block->b_flags & B_TIMED_OUT) { |
| 413 | nlmsvc_unlink_block(block); |
| 414 | ret = nlm_lck_denied; |
| 415 | goto out; |
| 416 | } |
| 417 | ret = nlm_drop_reply; |
| 418 | goto out; |
| 419 | } |
| 420 | |
J. Bruce Fields | b2b5028 | 2008-02-06 13:59:23 -0500 | [diff] [blame] | 421 | if (locks_in_grace() && !reclaim) { |
| 422 | ret = nlm_lck_denied_grace_period; |
| 423 | goto out; |
| 424 | } |
J. Bruce Fields | d22b1cf | 2008-02-06 15:05:12 -0500 | [diff] [blame] | 425 | if (reclaim && !locks_in_grace()) { |
| 426 | ret = nlm_lck_denied_grace_period; |
| 427 | goto out; |
| 428 | } |
J. Bruce Fields | b2b5028 | 2008-02-06 13:59:23 -0500 | [diff] [blame] | 429 | |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 430 | if (!wait) |
| 431 | lock->fl.fl_flags &= ~FL_SLEEP; |
| 432 | error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL); |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 433 | lock->fl.fl_flags &= ~FL_SLEEP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 435 | dprintk("lockd: vfs_lock_file returned %d\n", error); |
J. Bruce Fields | 6d7bbbb | 2008-07-15 14:38:32 -0400 | [diff] [blame] | 436 | switch (error) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | case 0: |
Andy Adamson | 15dadef | 2006-03-20 13:44:24 -0500 | [diff] [blame] | 438 | ret = nlm_granted; |
| 439 | goto out; |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 440 | case -EAGAIN: |
Miklos Szeredi | e33d1ea | 2009-02-09 12:30:43 -0500 | [diff] [blame] | 441 | /* |
| 442 | * If this is a blocking request for an |
| 443 | * already pending lock request then we need |
| 444 | * to put it back on lockd's block list |
| 445 | */ |
| 446 | if (wait) |
| 447 | break; |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 448 | ret = nlm_lck_denied; |
Miklos Szeredi | e33d1ea | 2009-02-09 12:30:43 -0500 | [diff] [blame] | 449 | goto out; |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 450 | case FILE_LOCK_DEFERRED: |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 451 | if (wait) |
| 452 | break; |
| 453 | /* Filesystem lock operation is in progress |
| 454 | Add it to the queue waiting for callback */ |
| 455 | ret = nlmsvc_defer_lock_rqst(rqstp, block); |
| 456 | goto out; |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 457 | case -EDEADLK: |
Andy Adamson | 15dadef | 2006-03-20 13:44:24 -0500 | [diff] [blame] | 458 | ret = nlm_deadlock; |
| 459 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | default: /* includes ENOLCK */ |
Andy Adamson | 15dadef | 2006-03-20 13:44:24 -0500 | [diff] [blame] | 461 | ret = nlm_lck_denied_nolocks; |
| 462 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | } |
| 464 | |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 465 | ret = nlm_lck_blocked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
| 467 | /* Append to list of blocked */ |
Marc Eshel | f812048 | 2006-12-05 23:48:10 -0500 | [diff] [blame] | 468 | nlmsvc_insert_block(block, NLM_NEVER); |
Andy Adamson | 15dadef | 2006-03-20 13:44:24 -0500 | [diff] [blame] | 469 | out: |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 470 | mutex_unlock(&file->f_mutex); |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 471 | nlmsvc_release_block(block); |
Andy Adamson | 15dadef | 2006-03-20 13:44:24 -0500 | [diff] [blame] | 472 | dprintk("lockd: nlmsvc_lock returned %u\n", ret); |
| 473 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | /* |
| 477 | * Test for presence of a conflicting lock. |
| 478 | */ |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 479 | __be32 |
Marc Eshel | 85f3f1b3 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 480 | nlmsvc_testlock(struct svc_rqst *rqstp, struct nlm_file *file, |
Jeff Layton | 8f920d5 | 2008-07-15 14:06:48 -0400 | [diff] [blame] | 481 | struct nlm_host *host, struct nlm_lock *lock, |
| 482 | struct nlm_lock *conflock, struct nlm_cookie *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | { |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 484 | struct nlm_block *block = NULL; |
| 485 | int error; |
| 486 | __be32 ret; |
| 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | dprintk("lockd: nlmsvc_testlock(%s/%ld, ty=%d, %Ld-%Ld)\n", |
Josef Sipek | 225a719 | 2006-12-08 02:37:18 -0800 | [diff] [blame] | 489 | file->f_file->f_path.dentry->d_inode->i_sb->s_id, |
| 490 | file->f_file->f_path.dentry->d_inode->i_ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | lock->fl.fl_type, |
| 492 | (long long)lock->fl.fl_start, |
| 493 | (long long)lock->fl.fl_end); |
| 494 | |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 495 | /* Get existing block (in case client is busy-waiting) */ |
| 496 | block = nlmsvc_lookup_block(file, lock); |
| 497 | |
| 498 | if (block == NULL) { |
| 499 | struct file_lock *conf = kzalloc(sizeof(*conf), GFP_KERNEL); |
| 500 | |
| 501 | if (conf == NULL) |
| 502 | return nlm_granted; |
Trond Myklebust | 255129d | 2007-09-25 15:55:03 -0400 | [diff] [blame] | 503 | block = nlmsvc_create_block(rqstp, host, file, lock, cookie); |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 504 | if (block == NULL) { |
| 505 | kfree(conf); |
| 506 | return nlm_granted; |
| 507 | } |
| 508 | block->b_fl = conf; |
| 509 | } |
| 510 | if (block->b_flags & B_QUEUED) { |
| 511 | dprintk("lockd: nlmsvc_testlock deferred block %p flags %d fl %p\n", |
| 512 | block, block->b_flags, block->b_fl); |
| 513 | if (block->b_flags & B_TIMED_OUT) { |
| 514 | nlmsvc_unlink_block(block); |
Oleg Drokin | 29dbf54 | 2007-11-29 14:02:21 -0500 | [diff] [blame] | 515 | ret = nlm_lck_denied; |
| 516 | goto out; |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 517 | } |
| 518 | if (block->b_flags & B_GOT_CALLBACK) { |
Oleg Drokin | 54ca95e | 2008-01-11 21:57:35 -0500 | [diff] [blame] | 519 | nlmsvc_unlink_block(block); |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 520 | if (block->b_fl != NULL |
| 521 | && block->b_fl->fl_type != F_UNLCK) { |
| 522 | lock->fl = *block->b_fl; |
| 523 | goto conf_lock; |
Oleg Drokin | 29dbf54 | 2007-11-29 14:02:21 -0500 | [diff] [blame] | 524 | } else { |
Oleg Drokin | 29dbf54 | 2007-11-29 14:02:21 -0500 | [diff] [blame] | 525 | ret = nlm_granted; |
| 526 | goto out; |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 527 | } |
| 528 | } |
Oleg Drokin | 29dbf54 | 2007-11-29 14:02:21 -0500 | [diff] [blame] | 529 | ret = nlm_drop_reply; |
| 530 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
J. Bruce Fields | b2b5028 | 2008-02-06 13:59:23 -0500 | [diff] [blame] | 533 | if (locks_in_grace()) { |
| 534 | ret = nlm_lck_denied_grace_period; |
| 535 | goto out; |
| 536 | } |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 537 | error = vfs_test_lock(file->f_file, &lock->fl); |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 538 | if (error == FILE_LOCK_DEFERRED) { |
Oleg Drokin | 29dbf54 | 2007-11-29 14:02:21 -0500 | [diff] [blame] | 539 | ret = nlmsvc_defer_lock_rqst(rqstp, block); |
| 540 | goto out; |
| 541 | } |
Marc Eshel | 5ea0d75 | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 542 | if (error) { |
| 543 | ret = nlm_lck_denied_nolocks; |
| 544 | goto out; |
| 545 | } |
| 546 | if (lock->fl.fl_type == F_UNLCK) { |
| 547 | ret = nlm_granted; |
| 548 | goto out; |
| 549 | } |
| 550 | |
| 551 | conf_lock: |
| 552 | dprintk("lockd: conflicting lock(ty=%d, %Ld-%Ld)\n", |
| 553 | lock->fl.fl_type, (long long)lock->fl.fl_start, |
| 554 | (long long)lock->fl.fl_end); |
| 555 | conflock->caller = "somehost"; /* FIXME */ |
| 556 | conflock->len = strlen(conflock->caller); |
| 557 | conflock->oh.len = 0; /* don't return OH info */ |
| 558 | conflock->svid = lock->fl.fl_pid; |
| 559 | conflock->fl.fl_type = lock->fl.fl_type; |
| 560 | conflock->fl.fl_start = lock->fl.fl_start; |
| 561 | conflock->fl.fl_end = lock->fl.fl_end; |
| 562 | ret = nlm_lck_denied; |
| 563 | out: |
| 564 | if (block) |
| 565 | nlmsvc_release_block(block); |
| 566 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
| 569 | /* |
| 570 | * Remove a lock. |
| 571 | * This implies a CANCEL call: We send a GRANT_MSG, the client replies |
| 572 | * with a GRANT_RES call which gets lost, and calls UNLOCK immediately |
| 573 | * afterwards. In this case the block will still be there, and hence |
| 574 | * must be removed. |
| 575 | */ |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 576 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | nlmsvc_unlock(struct nlm_file *file, struct nlm_lock *lock) |
| 578 | { |
| 579 | int error; |
| 580 | |
| 581 | dprintk("lockd: nlmsvc_unlock(%s/%ld, pi=%d, %Ld-%Ld)\n", |
Josef Sipek | 225a719 | 2006-12-08 02:37:18 -0800 | [diff] [blame] | 582 | file->f_file->f_path.dentry->d_inode->i_sb->s_id, |
| 583 | file->f_file->f_path.dentry->d_inode->i_ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | lock->fl.fl_pid, |
| 585 | (long long)lock->fl.fl_start, |
| 586 | (long long)lock->fl.fl_end); |
| 587 | |
| 588 | /* First, cancel any lock that might be there */ |
| 589 | nlmsvc_cancel_blocked(file, lock); |
| 590 | |
| 591 | lock->fl.fl_type = F_UNLCK; |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 592 | error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
| 594 | return (error < 0)? nlm_lck_denied_nolocks : nlm_granted; |
| 595 | } |
| 596 | |
| 597 | /* |
| 598 | * Cancel a previously blocked request. |
| 599 | * |
| 600 | * A cancel request always overrides any grant that may currently |
| 601 | * be in progress. |
| 602 | * The calling procedure must check whether the file can be closed. |
| 603 | */ |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 604 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | nlmsvc_cancel_blocked(struct nlm_file *file, struct nlm_lock *lock) |
| 606 | { |
| 607 | struct nlm_block *block; |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 608 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
| 610 | dprintk("lockd: nlmsvc_cancel(%s/%ld, pi=%d, %Ld-%Ld)\n", |
Josef Sipek | 225a719 | 2006-12-08 02:37:18 -0800 | [diff] [blame] | 611 | file->f_file->f_path.dentry->d_inode->i_sb->s_id, |
| 612 | file->f_file->f_path.dentry->d_inode->i_ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | lock->fl.fl_pid, |
| 614 | (long long)lock->fl.fl_start, |
| 615 | (long long)lock->fl.fl_end); |
| 616 | |
J. Bruce Fields | b2b5028 | 2008-02-06 13:59:23 -0500 | [diff] [blame] | 617 | if (locks_in_grace()) |
| 618 | return nlm_lck_denied_grace_period; |
| 619 | |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 620 | mutex_lock(&file->f_mutex); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 621 | block = nlmsvc_lookup_block(file, lock); |
Neil Brown | 89e63ef | 2006-10-04 02:16:06 -0700 | [diff] [blame] | 622 | mutex_unlock(&file->f_mutex); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 623 | if (block != NULL) { |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 624 | vfs_cancel_lock(block->b_file->f_file, |
| 625 | &block->b_call->a_args.lock.fl); |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 626 | status = nlmsvc_unlink_block(block); |
| 627 | nlmsvc_release_block(block); |
| 628 | } |
J. Bruce Fields | 64a318e | 2006-01-03 09:55:46 +0100 | [diff] [blame] | 629 | return status ? nlm_lck_denied : nlm_granted; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | /* |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 633 | * This is a callback from the filesystem for VFS file lock requests. |
| 634 | * It will be used if fl_grant is defined and the filesystem can not |
| 635 | * respond to the request immediately. |
| 636 | * For GETLK request it will copy the reply to the nlm_block. |
| 637 | * For SETLK or SETLKW request it will get the local posix lock. |
| 638 | * In all cases it will move the block to the head of nlm_blocked q where |
| 639 | * nlmsvc_retry_blocked() can send back a reply for SETLKW or revisit the |
| 640 | * deferred rpc for GETLK and SETLK. |
| 641 | */ |
| 642 | static void |
| 643 | nlmsvc_update_deferred_block(struct nlm_block *block, struct file_lock *conf, |
| 644 | int result) |
| 645 | { |
| 646 | block->b_flags |= B_GOT_CALLBACK; |
| 647 | if (result == 0) |
| 648 | block->b_granted = 1; |
| 649 | else |
| 650 | block->b_flags |= B_TIMED_OUT; |
| 651 | if (conf) { |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 652 | if (block->b_fl) |
J. Bruce Fields | 1a747ee | 2008-04-24 10:08:22 -0400 | [diff] [blame] | 653 | __locks_copy_lock(block->b_fl, conf); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 654 | } |
| 655 | } |
| 656 | |
| 657 | static int nlmsvc_grant_deferred(struct file_lock *fl, struct file_lock *conf, |
| 658 | int result) |
| 659 | { |
| 660 | struct nlm_block *block; |
| 661 | int rc = -ENOENT; |
| 662 | |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 663 | spin_lock(&nlm_blocked_lock); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 664 | list_for_each_entry(block, &nlm_blocked, b_list) { |
| 665 | if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) { |
| 666 | dprintk("lockd: nlmsvc_notify_blocked block %p flags %d\n", |
| 667 | block, block->b_flags); |
| 668 | if (block->b_flags & B_QUEUED) { |
| 669 | if (block->b_flags & B_TIMED_OUT) { |
| 670 | rc = -ENOLCK; |
| 671 | break; |
| 672 | } |
| 673 | nlmsvc_update_deferred_block(block, conf, result); |
| 674 | } else if (result == 0) |
| 675 | block->b_granted = 1; |
| 676 | |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 677 | nlmsvc_insert_block_locked(block, 0); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 678 | svc_wake_up(block->b_daemon); |
| 679 | rc = 0; |
| 680 | break; |
| 681 | } |
| 682 | } |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 683 | spin_unlock(&nlm_blocked_lock); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 684 | if (rc == -ENOENT) |
| 685 | printk(KERN_WARNING "lockd: grant for unknown block\n"); |
| 686 | return rc; |
| 687 | } |
| 688 | |
| 689 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | * Unblock a blocked lock request. This is a callback invoked from the |
| 691 | * VFS layer when a lock on which we blocked is removed. |
| 692 | * |
| 693 | * This function doesn't grant the blocked lock instantly, but rather moves |
| 694 | * the block to the head of nlm_blocked where it can be picked up by lockd. |
| 695 | */ |
| 696 | static void |
| 697 | nlmsvc_notify_blocked(struct file_lock *fl) |
| 698 | { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 699 | struct nlm_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
| 701 | dprintk("lockd: VFS unblock notification for block %p\n", fl); |
J. Bruce Fields | a282a1f | 2010-10-26 18:25:30 -0400 | [diff] [blame] | 702 | spin_lock(&nlm_blocked_lock); |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 703 | list_for_each_entry(block, &nlm_blocked, b_list) { |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 704 | if (nlm_compare_locks(&block->b_call->a_args.lock.fl, fl)) { |
J. Bruce Fields | a282a1f | 2010-10-26 18:25:30 -0400 | [diff] [blame] | 705 | nlmsvc_insert_block_locked(block, 0); |
| 706 | spin_unlock(&nlm_blocked_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | svc_wake_up(block->b_daemon); |
| 708 | return; |
| 709 | } |
| 710 | } |
J. Bruce Fields | a282a1f | 2010-10-26 18:25:30 -0400 | [diff] [blame] | 711 | spin_unlock(&nlm_blocked_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | printk(KERN_WARNING "lockd: notification for unknown block!\n"); |
| 713 | } |
| 714 | |
| 715 | static int nlmsvc_same_owner(struct file_lock *fl1, struct file_lock *fl2) |
| 716 | { |
| 717 | return fl1->fl_owner == fl2->fl_owner && fl1->fl_pid == fl2->fl_pid; |
| 718 | } |
| 719 | |
Alexey Dobriyan | 7b02196 | 2009-09-21 17:01:12 -0700 | [diff] [blame] | 720 | const struct lock_manager_operations nlmsvc_lock_operations = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | .fl_compare_owner = nlmsvc_same_owner, |
| 722 | .fl_notify = nlmsvc_notify_blocked, |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 723 | .fl_grant = nlmsvc_grant_deferred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | }; |
| 725 | |
| 726 | /* |
| 727 | * Try to claim a lock that was previously blocked. |
| 728 | * |
| 729 | * Note that we use both the RPC_GRANTED_MSG call _and_ an async |
| 730 | * RPC thread when notifying the client. This seems like overkill... |
| 731 | * Here's why: |
| 732 | * - we don't want to use a synchronous RPC thread, otherwise |
| 733 | * we might find ourselves hanging on a dead portmapper. |
| 734 | * - Some lockd implementations (e.g. HP) don't react to |
| 735 | * RPC_GRANTED calls; they seem to insist on RPC_GRANTED_MSG calls. |
| 736 | */ |
| 737 | static void |
| 738 | nlmsvc_grant_blocked(struct nlm_block *block) |
| 739 | { |
| 740 | struct nlm_file *file = block->b_file; |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 741 | struct nlm_lock *lock = &block->b_call->a_args.lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | int error; |
| 743 | |
| 744 | dprintk("lockd: grant blocked lock %p\n", block); |
| 745 | |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 746 | kref_get(&block->b_count); |
| 747 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | /* Unlink block request from list */ |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 749 | nlmsvc_unlink_block(block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | |
| 751 | /* If b_granted is true this means we've been here before. |
| 752 | * Just retry the grant callback, possibly refreshing the RPC |
| 753 | * binding */ |
| 754 | if (block->b_granted) { |
| 755 | nlm_rebind_host(block->b_host); |
| 756 | goto callback; |
| 757 | } |
| 758 | |
| 759 | /* Try the lock operation again */ |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 760 | lock->fl.fl_flags |= FL_SLEEP; |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 761 | error = vfs_lock_file(file->f_file, F_SETLK, &lock->fl, NULL); |
Trond Myklebust | 09c7938 | 2006-03-20 13:44:38 -0500 | [diff] [blame] | 762 | lock->fl.fl_flags &= ~FL_SLEEP; |
| 763 | |
Andy Adamson | 5de0e50 | 2006-03-20 13:44:25 -0500 | [diff] [blame] | 764 | switch (error) { |
| 765 | case 0: |
| 766 | break; |
Miklos Szeredi | bde74e4 | 2008-07-25 01:48:57 -0700 | [diff] [blame] | 767 | case FILE_LOCK_DEFERRED: |
Marc Eshel | 1a8322b | 2006-11-28 16:27:06 -0500 | [diff] [blame] | 768 | dprintk("lockd: lock still blocked error %d\n", error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | nlmsvc_insert_block(block, NLM_NEVER); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 770 | nlmsvc_release_block(block); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 771 | return; |
Andy Adamson | 5de0e50 | 2006-03-20 13:44:25 -0500 | [diff] [blame] | 772 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | printk(KERN_WARNING "lockd: unexpected error %d in %s!\n", |
Harvey Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 774 | -error, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | nlmsvc_insert_block(block, 10 * HZ); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 776 | nlmsvc_release_block(block); |
Trond Myklebust | d9f6eb7 | 2006-03-20 13:44:47 -0500 | [diff] [blame] | 777 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | callback: |
| 781 | /* Lock was granted by VFS. */ |
| 782 | dprintk("lockd: GRANTing blocked lock.\n"); |
| 783 | block->b_granted = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
Jeff Layton | 9706501 | 2008-02-06 11:34:12 -0500 | [diff] [blame] | 785 | /* keep block on the list, but don't reattempt until the RPC |
| 786 | * completes or the submission fails |
| 787 | */ |
| 788 | nlmsvc_insert_block(block, NLM_NEVER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Jeff Layton | 9706501 | 2008-02-06 11:34:12 -0500 | [diff] [blame] | 790 | /* Call the client -- use a soft RPC task since nlmsvc_retry_blocked |
| 791 | * will queue up a new one if this one times out |
| 792 | */ |
| 793 | error = nlm_async_call(block->b_call, NLMPROC_GRANTED_MSG, |
| 794 | &nlmsvc_grant_ops); |
| 795 | |
| 796 | /* RPC submission failed, wait a bit and retry */ |
| 797 | if (error < 0) |
| 798 | nlmsvc_insert_block(block, 10 * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | /* |
| 802 | * This is the callback from the RPC layer when the NLM_GRANTED_MSG |
| 803 | * RPC call has succeeded or timed out. |
| 804 | * Like all RPC callbacks, it is invoked by the rpciod process, so it |
| 805 | * better not sleep. Therefore, we put the blocked lock on the nlm_blocked |
| 806 | * chain once more in order to have it removed by lockd itself (which can |
| 807 | * then sleep on the file semaphore without disrupting e.g. the nfs client). |
| 808 | */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 809 | static void nlmsvc_grant_callback(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 811 | struct nlm_rqst *call = data; |
Trond Myklebust | 9273723 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 812 | struct nlm_block *block = call->a_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | unsigned long timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
| 815 | dprintk("lockd: GRANT_MSG RPC callback\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 817 | spin_lock(&nlm_blocked_lock); |
Jeff Layton | c64e80d | 2008-02-06 11:34:13 -0500 | [diff] [blame] | 818 | /* if the block is not on a list at this point then it has |
| 819 | * been invalidated. Don't try to requeue it. |
| 820 | * |
| 821 | * FIXME: it's possible that the block is removed from the list |
| 822 | * after this check but before the nlmsvc_insert_block. In that |
| 823 | * case it will be added back. Perhaps we need better locking |
| 824 | * for nlm_blocked? |
| 825 | */ |
| 826 | if (list_empty(&block->b_list)) |
Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 827 | goto out; |
Jeff Layton | c64e80d | 2008-02-06 11:34:13 -0500 | [diff] [blame] | 828 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | /* Technically, we should down the file semaphore here. Since we |
| 830 | * move the block towards the head of the queue only, no harm |
| 831 | * can be done, though. */ |
| 832 | if (task->tk_status < 0) { |
| 833 | /* RPC error: Re-insert for retransmission */ |
| 834 | timeout = 10 * HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | } else { |
| 836 | /* Call was successful, now wait for client callback */ |
| 837 | timeout = 60 * HZ; |
| 838 | } |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 839 | nlmsvc_insert_block_locked(block, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | svc_wake_up(block->b_daemon); |
Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 841 | out: |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 842 | spin_unlock(&nlm_blocked_lock); |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 843 | } |
| 844 | |
Bryan Schumaker | f904be9 | 2010-09-21 16:38:12 -0400 | [diff] [blame] | 845 | /* |
| 846 | * FIXME: nlmsvc_release_block() grabs a mutex. This is not allowed for an |
| 847 | * .rpc_release rpc_call_op |
| 848 | */ |
Adrian Bunk | ec535ce | 2006-04-18 13:21:50 -0400 | [diff] [blame] | 849 | static void nlmsvc_grant_release(void *data) |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 850 | { |
Trond Myklebust | 6041b79 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 851 | struct nlm_rqst *call = data; |
Trond Myklebust | 6041b79 | 2006-03-20 13:44:45 -0500 | [diff] [blame] | 852 | nlmsvc_release_block(call->a_block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } |
| 854 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 855 | static const struct rpc_call_ops nlmsvc_grant_ops = { |
| 856 | .rpc_call_done = nlmsvc_grant_callback, |
Trond Myklebust | 5e1abf8 | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 857 | .rpc_release = nlmsvc_grant_release, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 858 | }; |
| 859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | /* |
| 861 | * We received a GRANT_RES callback. Try to find the corresponding |
| 862 | * block. |
| 863 | */ |
| 864 | void |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 865 | nlmsvc_grant_reply(struct nlm_cookie *cookie, __be32 status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
| 867 | struct nlm_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | |
Olaf Kirch | 39be450 | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 869 | dprintk("grant_reply: looking for cookie %x, s=%d \n", |
| 870 | *(unsigned int *)(cookie->data), status); |
| 871 | if (!(block = nlmsvc_find_block(cookie))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | |
J. Bruce Fields | f232142 | 2006-01-03 09:55:42 +0100 | [diff] [blame] | 874 | if (block) { |
Al Viro | e8c5c04 | 2006-12-13 00:35:03 -0800 | [diff] [blame] | 875 | if (status == nlm_lck_denied_grace_period) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | /* Try again in a couple of seconds */ |
| 877 | nlmsvc_insert_block(block, 10 * HZ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | } else { |
| 879 | /* Lock is now held by client, or has been rejected. |
| 880 | * In both cases, the block should be removed. */ |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 881 | nlmsvc_unlink_block(block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | } |
Trond Myklebust | 6849c0c | 2006-03-20 13:44:39 -0500 | [diff] [blame] | 884 | nlmsvc_release_block(block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } |
| 886 | |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 887 | /* Helper function to handle retry of a deferred block. |
| 888 | * If it is a blocking lock, call grant_blocked. |
| 889 | * For a non-blocking lock or test lock, revisit the request. |
| 890 | */ |
| 891 | static void |
| 892 | retry_deferred_block(struct nlm_block *block) |
| 893 | { |
| 894 | if (!(block->b_flags & B_GOT_CALLBACK)) |
| 895 | block->b_flags |= B_TIMED_OUT; |
| 896 | nlmsvc_insert_block(block, NLM_TIMEOUT); |
| 897 | dprintk("revisit block %p flags %d\n", block, block->b_flags); |
| 898 | if (block->b_deferred_req) { |
| 899 | block->b_deferred_req->revisit(block->b_deferred_req, 0); |
| 900 | block->b_deferred_req = NULL; |
| 901 | } |
| 902 | } |
| 903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | /* |
| 905 | * Retry all blocked locks that have been notified. This is where lockd |
| 906 | * picks up locks that can be granted, or grant notifications that must |
| 907 | * be retransmitted. |
| 908 | */ |
| 909 | unsigned long |
| 910 | nlmsvc_retry_blocked(void) |
| 911 | { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 912 | unsigned long timeout = MAX_SCHEDULE_TIMEOUT; |
| 913 | struct nlm_block *block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | |
Jeff Layton | d751a7c | 2008-02-07 16:34:55 -0500 | [diff] [blame] | 915 | while (!list_empty(&nlm_blocked) && !kthread_should_stop()) { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 916 | block = list_entry(nlm_blocked.next, struct nlm_block, b_list); |
| 917 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | if (block->b_when == NLM_NEVER) |
| 919 | break; |
J. Bruce Fields | 6d7bbbb | 2008-07-15 14:38:32 -0400 | [diff] [blame] | 920 | if (time_after(block->b_when, jiffies)) { |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 921 | timeout = block->b_when - jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | break; |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 923 | } |
| 924 | |
J. Bruce Fields | f3d43c7 | 2006-08-03 15:07:47 -0400 | [diff] [blame] | 925 | dprintk("nlmsvc_retry_blocked(%p, when=%ld)\n", |
| 926 | block, block->b_when); |
Marc Eshel | 0e4ac9d | 2006-11-28 16:26:51 -0500 | [diff] [blame] | 927 | if (block->b_flags & B_QUEUED) { |
| 928 | dprintk("nlmsvc_retry_blocked delete block (%p, granted=%d, flags=%d)\n", |
| 929 | block, block->b_granted, block->b_flags); |
| 930 | retry_deferred_block(block); |
| 931 | } else |
| 932 | nlmsvc_grant_blocked(block); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | } |
| 934 | |
Olaf Kirch | 68a2d76 | 2006-10-04 02:15:57 -0700 | [diff] [blame] | 935 | return timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | } |