blob: 41e491b8e5d7e40164e0e51d90534c9d8660a94e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/lockd/clntlock.c
3 *
4 * Lock handling for the client side NLM implementation
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#include <linux/module.h>
10#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/time.h>
13#include <linux/nfs_fs.h>
Jeff Layton59766872013-02-04 12:50:00 -050014#include <linux/sunrpc/addr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/svc.h>
16#include <linux/lockd/lockd.h>
Jeff Laytondf94f002008-12-23 15:21:33 -050017#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#define NLMDBG_FACILITY NLMDBG_CLIENT
20
21/*
22 * Local function prototypes
23 */
24static int reclaimer(void *ptr);
25
26/*
27 * The following functions handle blocking and granting from the
28 * client perspective.
29 */
30
31/*
32 * This is the representation of a blocked client lock.
33 */
34struct nlm_wait {
Trond Myklebust4f15e2b2005-06-22 17:16:31 +000035 struct list_head b_list; /* linked list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 wait_queue_head_t b_wait; /* where to wait on */
37 struct nlm_host * b_host;
38 struct file_lock * b_lock; /* local file lock */
39 unsigned short b_reclaim; /* got to reclaim lock */
Al Viroe8c5c042006-12-13 00:35:03 -080040 __be32 b_status; /* grant callback status */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041};
42
Trond Myklebust4f15e2b2005-06-22 17:16:31 +000043static LIST_HEAD(nlm_blocked);
Bryan Schumaker63185942010-09-22 09:50:35 -040044static DEFINE_SPINLOCK(nlm_blocked_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Chuck Lever52c40442008-01-11 17:09:44 -050046/**
47 * nlmclnt_init - Set up per-NFS mount point lockd data structures
Chuck Lever883bb162008-01-15 16:04:20 -050048 * @nlm_init: pointer to arguments structure
Chuck Lever52c40442008-01-11 17:09:44 -050049 *
50 * Returns pointer to an appropriate nlm_host struct,
51 * or an ERR_PTR value.
52 */
Chuck Lever883bb162008-01-15 16:04:20 -050053struct nlm_host *nlmclnt_init(const struct nlmclnt_initdata *nlm_init)
Chuck Lever52c40442008-01-11 17:09:44 -050054{
55 struct nlm_host *host;
Chuck Lever883bb162008-01-15 16:04:20 -050056 u32 nlm_version = (nlm_init->nfs_version == 2) ? 1 : 4;
Chuck Lever52c40442008-01-11 17:09:44 -050057 int status;
58
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +040059 status = lockd_up(nlm_init->net);
Chuck Lever52c40442008-01-11 17:09:44 -050060 if (status < 0)
61 return ERR_PTR(status);
62
Chuck Leverd7d20442008-10-03 12:50:21 -040063 host = nlmclnt_lookup_host(nlm_init->address, nlm_init->addrlen,
Chuck Lever883bb162008-01-15 16:04:20 -050064 nlm_init->protocol, nlm_version,
Stanislav Kinsbursky66697bf2012-01-31 15:08:13 +040065 nlm_init->hostname, nlm_init->noresvport,
66 nlm_init->net);
Trond Myklebust9a1b6bf2013-08-05 12:06:12 -040067 if (host == NULL)
68 goto out_nohost;
69 if (host->h_rpcclnt == NULL && nlm_bind_host(host) == NULL)
70 goto out_nobind;
Chuck Lever52c40442008-01-11 17:09:44 -050071
72 return host;
Trond Myklebust9a1b6bf2013-08-05 12:06:12 -040073out_nobind:
74 nlmclnt_release_host(host);
75out_nohost:
76 lockd_down(nlm_init->net);
77 return ERR_PTR(-ENOLCK);
Chuck Lever52c40442008-01-11 17:09:44 -050078}
79EXPORT_SYMBOL_GPL(nlmclnt_init);
80
81/**
82 * nlmclnt_done - Release resources allocated by nlmclnt_init()
83 * @host: nlm_host structure reserved by nlmclnt_init()
84 *
85 */
86void nlmclnt_done(struct nlm_host *host)
87{
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +040088 struct net *net = host->net;
89
Chuck Lever8ea6ecc2010-12-14 15:05:52 +000090 nlmclnt_release_host(host);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +040091 lockd_down(net);
Chuck Lever52c40442008-01-11 17:09:44 -050092}
93EXPORT_SYMBOL_GPL(nlmclnt_done);
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095/*
Trond Myklebustecdbf762005-06-22 17:16:31 +000096 * Queue up a lock for blocking so that the GRANTED request can see it
97 */
Trond Myklebust3a649b82006-03-20 13:44:44 -050098struct nlm_wait *nlmclnt_prepare_block(struct nlm_host *host, struct file_lock *fl)
Trond Myklebustecdbf762005-06-22 17:16:31 +000099{
100 struct nlm_wait *block;
101
Trond Myklebustecdbf762005-06-22 17:16:31 +0000102 block = kmalloc(sizeof(*block), GFP_KERNEL);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500103 if (block != NULL) {
104 block->b_host = host;
105 block->b_lock = fl;
106 init_waitqueue_head(&block->b_wait);
Al Viroe8c5c042006-12-13 00:35:03 -0800107 block->b_status = nlm_lck_blocked;
Bryan Schumaker63185942010-09-22 09:50:35 -0400108
109 spin_lock(&nlm_blocked_lock);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500110 list_add(&block->b_list, &nlm_blocked);
Bryan Schumaker63185942010-09-22 09:50:35 -0400111 spin_unlock(&nlm_blocked_lock);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500112 }
113 return block;
Trond Myklebustecdbf762005-06-22 17:16:31 +0000114}
115
Trond Myklebust3a649b82006-03-20 13:44:44 -0500116void nlmclnt_finish_block(struct nlm_wait *block)
Trond Myklebustecdbf762005-06-22 17:16:31 +0000117{
Trond Myklebustecdbf762005-06-22 17:16:31 +0000118 if (block == NULL)
119 return;
Bryan Schumaker63185942010-09-22 09:50:35 -0400120 spin_lock(&nlm_blocked_lock);
Trond Myklebustecdbf762005-06-22 17:16:31 +0000121 list_del(&block->b_list);
Bryan Schumaker63185942010-09-22 09:50:35 -0400122 spin_unlock(&nlm_blocked_lock);
Trond Myklebustecdbf762005-06-22 17:16:31 +0000123 kfree(block);
124}
125
126/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * Block on a lock
128 */
Trond Myklebust3a649b82006-03-20 13:44:44 -0500129int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Trond Myklebustecdbf762005-06-22 17:16:31 +0000131 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Trond Myklebustecdbf762005-06-22 17:16:31 +0000133 /* A borken server might ask us to block even if we didn't
134 * request it. Just say no!
135 */
Trond Myklebust3a649b82006-03-20 13:44:44 -0500136 if (block == NULL)
Trond Myklebustecdbf762005-06-22 17:16:31 +0000137 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* Go to sleep waiting for GRANT callback. Some servers seem
140 * to lose callbacks, however, so we're going to poll from
141 * time to time just to make sure.
142 *
143 * For now, the retry frequency is pretty high; normally
144 * a 1 minute timeout would do. See the comment before
145 * nlmclnt_lock for an explanation.
146 */
Trond Myklebustecdbf762005-06-22 17:16:31 +0000147 ret = wait_event_interruptible_timeout(block->b_wait,
Al Viroe8c5c042006-12-13 00:35:03 -0800148 block->b_status != nlm_lck_blocked,
Trond Myklebustecdbf762005-06-22 17:16:31 +0000149 timeout);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500150 if (ret < 0)
151 return -ERESTARTSYS;
Trond Myklebust1dfd89a2013-04-21 18:01:06 -0400152 /* Reset the lock status after a server reboot so we resend */
153 if (block->b_status == nlm_lck_denied_grace_period)
154 block->b_status = nlm_lck_blocked;
Trond Myklebust3a649b82006-03-20 13:44:44 -0500155 req->a_res.status = block->b_status;
156 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
160 * The server lockd has called us back to tell us the lock was granted
161 */
Chuck Leverdcff09f2008-10-03 12:50:36 -0400162__be32 nlmclnt_grant(const struct sockaddr *addr, const struct nlm_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800164 const struct file_lock *fl = &lock->fl;
165 const struct nfs_fh *fh = &lock->fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 struct nlm_wait *block;
Al Viro52921e02006-10-19 23:28:46 -0700167 __be32 res = nlm_lck_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 /*
170 * Look up blocked request based on arguments.
171 * Warning: must not use cookie to match it!
172 */
Bryan Schumaker63185942010-09-22 09:50:35 -0400173 spin_lock(&nlm_blocked_lock);
Trond Myklebust4f15e2b2005-06-22 17:16:31 +0000174 list_for_each_entry(block, &nlm_blocked, b_list) {
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800175 struct file_lock *fl_blocked = block->b_lock;
176
Trond Myklebust7bab3772006-03-20 13:44:06 -0500177 if (fl_blocked->fl_start != fl->fl_start)
178 continue;
179 if (fl_blocked->fl_end != fl->fl_end)
180 continue;
181 /*
182 * Careful! The NLM server will return the 32-bit "pid" that
183 * we put on the wire: in this case the lockowner "pid".
184 */
185 if (fl_blocked->fl_u.nfs_fl.owner->pid != lock->svid)
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800186 continue;
Jeff Layton4516fc02009-08-14 12:57:54 -0400187 if (!rpc_cmp_addr(nlm_addr(block->b_host), addr))
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800188 continue;
Al Viro496ad9a2013-01-23 17:07:38 -0500189 if (nfs_compare_fh(NFS_FH(file_inode(fl_blocked->fl_file)) ,fh) != 0)
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800190 continue;
191 /* Alright, we found a lock. Set the return status
192 * and wake up the caller
193 */
Al Viroe8c5c042006-12-13 00:35:03 -0800194 block->b_status = nlm_granted;
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800195 wake_up(&block->b_wait);
196 res = nlm_granted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Bryan Schumaker63185942010-09-22 09:50:35 -0400198 spin_unlock(&nlm_blocked_lock);
Trond Myklebustecdbf762005-06-22 17:16:31 +0000199 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202/*
203 * The following procedures deal with the recovery of locks after a
204 * server crash.
205 */
206
207/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * Reclaim all locks on server host. We do this by spawning a separate
209 * reclaimer thread.
210 */
211void
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700212nlmclnt_recovery(struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Jeff Laytondf94f002008-12-23 15:21:33 -0500214 struct task_struct *task;
215
Trond Myklebust28df9552006-06-09 09:40:27 -0400216 if (!host->h_reclaiming++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 nlm_get_host(host);
Jeff Laytondf94f002008-12-23 15:21:33 -0500218 task = kthread_run(reclaimer, host, "%s-reclaim", host->h_name);
219 if (IS_ERR(task))
220 printk(KERN_ERR "lockd: unable to spawn reclaimer "
221 "thread. Locks for %s won't be reclaimed! "
222 "(%ld)\n", host->h_name, PTR_ERR(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 }
224}
225
226static int
227reclaimer(void *ptr)
228{
229 struct nlm_host *host = (struct nlm_host *) ptr;
230 struct nlm_wait *block;
Tim Gardnerf25cc712013-02-13 08:40:16 -0700231 struct nlm_rqst *req;
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500232 struct file_lock *fl, *next;
Trond Myklebust28df9552006-06-09 09:40:27 -0400233 u32 nsmstate;
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400234 struct net *net = host->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Tim Gardnerf25cc712013-02-13 08:40:16 -0700236 req = kmalloc(sizeof(*req), GFP_KERNEL);
237 if (!req) {
238 printk(KERN_ERR "lockd: reclaimer unable to alloc memory."
239 " Locks for %s won't be reclaimed!\n",
240 host->h_name);
241 return 0;
242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 allow_signal(SIGKILL);
245
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700246 down_write(&host->h_rwsem);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400247 lockd_up(net); /* note: this cannot fail as lockd is already running */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Adrian Bunkd019bcf2007-01-29 13:19:51 -0800249 dprintk("lockd: reclaiming locks for host %s\n", host->h_name);
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251restart:
Trond Myklebust28df9552006-06-09 09:40:27 -0400252 nsmstate = host->h_nsmstate;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700253
254 /* Force a portmap getport - the peer's lockd will
255 * most likely end up on a different port.
256 */
Olaf Kirch0ade0602006-10-04 02:16:04 -0700257 host->h_nextrebind = jiffies;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700258 nlm_rebind_host(host);
259
260 /* First, reclaim all locks that have been granted. */
261 list_splice_init(&host->h_granted, &host->h_reclaim);
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500262 list_for_each_entry_safe(fl, next, &host->h_reclaim, fl_u.nfs_fl.list) {
Trond Myklebust4c060b52006-03-20 13:44:41 -0500263 list_del_init(&fl->fl_u.nfs_fl.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Jeff Laytondf94f002008-12-23 15:21:33 -0500265 /*
266 * sending this thread a SIGKILL will result in any unreclaimed
267 * locks being removed from the h_granted list. This means that
268 * the kernel will not attempt to reclaim them again if a new
269 * reclaimer thread is spawned for this host.
270 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 if (signalled())
Trond Myklebust4c060b52006-03-20 13:44:41 -0500272 continue;
Tim Gardnerf25cc712013-02-13 08:40:16 -0700273 if (nlmclnt_reclaim(host, fl, req) != 0)
Trond Myklebust28df9552006-06-09 09:40:27 -0400274 continue;
275 list_add_tail(&fl->fl_u.nfs_fl.list, &host->h_granted);
276 if (host->h_nsmstate != nsmstate) {
277 /* Argh! The server rebooted again! */
Trond Myklebust28df9552006-06-09 09:40:27 -0400278 goto restart;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700281
282 host->h_reclaiming = 0;
283 up_write(&host->h_rwsem);
Adrian Bunkd019bcf2007-01-29 13:19:51 -0800284 dprintk("NLM: done reclaiming locks for host %s\n", host->h_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* Now, wake up all processes that sleep on a blocked lock */
Bryan Schumaker63185942010-09-22 09:50:35 -0400287 spin_lock(&nlm_blocked_lock);
Trond Myklebust4f15e2b2005-06-22 17:16:31 +0000288 list_for_each_entry(block, &nlm_blocked, b_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (block->b_host == host) {
Al Viroe8c5c042006-12-13 00:35:03 -0800290 block->b_status = nlm_lck_denied_grace_period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 wake_up(&block->b_wait);
292 }
293 }
Bryan Schumaker63185942010-09-22 09:50:35 -0400294 spin_unlock(&nlm_blocked_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* Release host handle after use */
Chuck Lever8ea6ecc2010-12-14 15:05:52 +0000297 nlmclnt_release_host(host);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400298 lockd_down(net);
Tim Gardnerf25cc712013-02-13 08:40:16 -0700299 kfree(req);
Jeff Laytondf94f002008-12-23 15:21:33 -0500300 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}