blob: 96c1d14c18f12fd6d61e74344c6d28d3e6cf2730 [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
Benjamin Coddingtonb1ece732017-04-11 12:50:11 -040072 host->h_nlmclnt_ops = nlm_init->nlmclnt_ops;
Chuck Lever52c40442008-01-11 17:09:44 -050073 return host;
Trond Myklebust9a1b6bf2013-08-05 12:06:12 -040074out_nobind:
75 nlmclnt_release_host(host);
76out_nohost:
77 lockd_down(nlm_init->net);
78 return ERR_PTR(-ENOLCK);
Chuck Lever52c40442008-01-11 17:09:44 -050079}
80EXPORT_SYMBOL_GPL(nlmclnt_init);
81
82/**
83 * nlmclnt_done - Release resources allocated by nlmclnt_init()
84 * @host: nlm_host structure reserved by nlmclnt_init()
85 *
86 */
87void nlmclnt_done(struct nlm_host *host)
88{
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +040089 struct net *net = host->net;
90
Chuck Lever8ea6ecc2010-12-14 15:05:52 +000091 nlmclnt_release_host(host);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +040092 lockd_down(net);
Chuck Lever52c40442008-01-11 17:09:44 -050093}
94EXPORT_SYMBOL_GPL(nlmclnt_done);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
Trond Myklebustecdbf762005-06-22 17:16:31 +000097 * Queue up a lock for blocking so that the GRANTED request can see it
98 */
Trond Myklebust3a649b82006-03-20 13:44:44 -050099struct nlm_wait *nlmclnt_prepare_block(struct nlm_host *host, struct file_lock *fl)
Trond Myklebustecdbf762005-06-22 17:16:31 +0000100{
101 struct nlm_wait *block;
102
Trond Myklebustecdbf762005-06-22 17:16:31 +0000103 block = kmalloc(sizeof(*block), GFP_KERNEL);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500104 if (block != NULL) {
105 block->b_host = host;
106 block->b_lock = fl;
107 init_waitqueue_head(&block->b_wait);
Al Viroe8c5c042006-12-13 00:35:03 -0800108 block->b_status = nlm_lck_blocked;
Bryan Schumaker63185942010-09-22 09:50:35 -0400109
110 spin_lock(&nlm_blocked_lock);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500111 list_add(&block->b_list, &nlm_blocked);
Bryan Schumaker63185942010-09-22 09:50:35 -0400112 spin_unlock(&nlm_blocked_lock);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500113 }
114 return block;
Trond Myklebustecdbf762005-06-22 17:16:31 +0000115}
116
Trond Myklebust3a649b82006-03-20 13:44:44 -0500117void nlmclnt_finish_block(struct nlm_wait *block)
Trond Myklebustecdbf762005-06-22 17:16:31 +0000118{
Trond Myklebustecdbf762005-06-22 17:16:31 +0000119 if (block == NULL)
120 return;
Bryan Schumaker63185942010-09-22 09:50:35 -0400121 spin_lock(&nlm_blocked_lock);
Trond Myklebustecdbf762005-06-22 17:16:31 +0000122 list_del(&block->b_list);
Bryan Schumaker63185942010-09-22 09:50:35 -0400123 spin_unlock(&nlm_blocked_lock);
Trond Myklebustecdbf762005-06-22 17:16:31 +0000124 kfree(block);
125}
126
127/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * Block on a lock
129 */
Trond Myklebust3a649b82006-03-20 13:44:44 -0500130int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Trond Myklebustecdbf762005-06-22 17:16:31 +0000132 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Trond Myklebustecdbf762005-06-22 17:16:31 +0000134 /* A borken server might ask us to block even if we didn't
135 * request it. Just say no!
136 */
Trond Myklebust3a649b82006-03-20 13:44:44 -0500137 if (block == NULL)
Trond Myklebustecdbf762005-06-22 17:16:31 +0000138 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140 /* Go to sleep waiting for GRANT callback. Some servers seem
141 * to lose callbacks, however, so we're going to poll from
142 * time to time just to make sure.
143 *
144 * For now, the retry frequency is pretty high; normally
145 * a 1 minute timeout would do. See the comment before
146 * nlmclnt_lock for an explanation.
147 */
Trond Myklebustecdbf762005-06-22 17:16:31 +0000148 ret = wait_event_interruptible_timeout(block->b_wait,
Al Viroe8c5c042006-12-13 00:35:03 -0800149 block->b_status != nlm_lck_blocked,
Trond Myklebustecdbf762005-06-22 17:16:31 +0000150 timeout);
Trond Myklebust3a649b82006-03-20 13:44:44 -0500151 if (ret < 0)
152 return -ERESTARTSYS;
Trond Myklebust1dfd89a2013-04-21 18:01:06 -0400153 /* Reset the lock status after a server reboot so we resend */
154 if (block->b_status == nlm_lck_denied_grace_period)
155 block->b_status = nlm_lck_blocked;
Trond Myklebust3a649b82006-03-20 13:44:44 -0500156 req->a_res.status = block->b_status;
157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/*
161 * The server lockd has called us back to tell us the lock was granted
162 */
Chuck Leverdcff09f2008-10-03 12:50:36 -0400163__be32 nlmclnt_grant(const struct sockaddr *addr, const struct nlm_lock *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800165 const struct file_lock *fl = &lock->fl;
166 const struct nfs_fh *fh = &lock->fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct nlm_wait *block;
Al Viro52921e02006-10-19 23:28:46 -0700168 __be32 res = nlm_lck_denied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /*
171 * Look up blocked request based on arguments.
172 * Warning: must not use cookie to match it!
173 */
Bryan Schumaker63185942010-09-22 09:50:35 -0400174 spin_lock(&nlm_blocked_lock);
Trond Myklebust4f15e2b2005-06-22 17:16:31 +0000175 list_for_each_entry(block, &nlm_blocked, b_list) {
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800176 struct file_lock *fl_blocked = block->b_lock;
177
Trond Myklebust7bab3772006-03-20 13:44:06 -0500178 if (fl_blocked->fl_start != fl->fl_start)
179 continue;
180 if (fl_blocked->fl_end != fl->fl_end)
181 continue;
182 /*
183 * Careful! The NLM server will return the 32-bit "pid" that
184 * we put on the wire: in this case the lockowner "pid".
185 */
186 if (fl_blocked->fl_u.nfs_fl.owner->pid != lock->svid)
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800187 continue;
Jeff Layton4516fc02009-08-14 12:57:54 -0400188 if (!rpc_cmp_addr(nlm_addr(block->b_host), addr))
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800189 continue;
Al Viro496ad9a2013-01-23 17:07:38 -0500190 if (nfs_compare_fh(NFS_FH(file_inode(fl_blocked->fl_file)) ,fh) != 0)
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800191 continue;
192 /* Alright, we found a lock. Set the return status
193 * and wake up the caller
194 */
Al Viroe8c5c042006-12-13 00:35:03 -0800195 block->b_status = nlm_granted;
Trond Myklebust5ac5f9d2006-02-14 13:53:04 -0800196 wake_up(&block->b_wait);
197 res = nlm_granted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Bryan Schumaker63185942010-09-22 09:50:35 -0400199 spin_unlock(&nlm_blocked_lock);
Trond Myklebustecdbf762005-06-22 17:16:31 +0000200 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
204 * The following procedures deal with the recovery of locks after a
205 * server crash.
206 */
207
208/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * Reclaim all locks on server host. We do this by spawning a separate
210 * reclaimer thread.
211 */
212void
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700213nlmclnt_recovery(struct nlm_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Jeff Laytondf94f002008-12-23 15:21:33 -0500215 struct task_struct *task;
216
Trond Myklebust28df9552006-06-09 09:40:27 -0400217 if (!host->h_reclaiming++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 nlm_get_host(host);
Jeff Laytondf94f002008-12-23 15:21:33 -0500219 task = kthread_run(reclaimer, host, "%s-reclaim", host->h_name);
220 if (IS_ERR(task))
221 printk(KERN_ERR "lockd: unable to spawn reclaimer "
222 "thread. Locks for %s won't be reclaimed! "
223 "(%ld)\n", host->h_name, PTR_ERR(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 }
225}
226
227static int
228reclaimer(void *ptr)
229{
230 struct nlm_host *host = (struct nlm_host *) ptr;
231 struct nlm_wait *block;
Tim Gardnerf25cc712013-02-13 08:40:16 -0700232 struct nlm_rqst *req;
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500233 struct file_lock *fl, *next;
Trond Myklebust28df9552006-06-09 09:40:27 -0400234 u32 nsmstate;
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400235 struct net *net = host->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Tim Gardnerf25cc712013-02-13 08:40:16 -0700237 req = kmalloc(sizeof(*req), GFP_KERNEL);
Markus Elfring58a69892017-08-16 22:35:24 +0200238 if (!req)
Tim Gardnerf25cc712013-02-13 08:40:16 -0700239 return 0;
Tim Gardnerf25cc712013-02-13 08:40:16 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 allow_signal(SIGKILL);
242
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700243 down_write(&host->h_rwsem);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400244 lockd_up(net); /* note: this cannot fail as lockd is already running */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Adrian Bunkd019bcf2007-01-29 13:19:51 -0800246 dprintk("lockd: reclaiming locks for host %s\n", host->h_name);
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248restart:
Trond Myklebust28df9552006-06-09 09:40:27 -0400249 nsmstate = host->h_nsmstate;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700250
251 /* Force a portmap getport - the peer's lockd will
252 * most likely end up on a different port.
253 */
Olaf Kirch0ade0602006-10-04 02:16:04 -0700254 host->h_nextrebind = jiffies;
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700255 nlm_rebind_host(host);
256
257 /* First, reclaim all locks that have been granted. */
258 list_splice_init(&host->h_granted, &host->h_reclaim);
Christoph Hellwig26bcbf92006-03-20 13:44:40 -0500259 list_for_each_entry_safe(fl, next, &host->h_reclaim, fl_u.nfs_fl.list) {
Trond Myklebust4c060b52006-03-20 13:44:41 -0500260 list_del_init(&fl->fl_u.nfs_fl.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Jeff Laytondf94f002008-12-23 15:21:33 -0500262 /*
263 * sending this thread a SIGKILL will result in any unreclaimed
264 * locks being removed from the h_granted list. This means that
265 * the kernel will not attempt to reclaim them again if a new
266 * reclaimer thread is spawned for this host.
267 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (signalled())
Trond Myklebust4c060b52006-03-20 13:44:41 -0500269 continue;
Tim Gardnerf25cc712013-02-13 08:40:16 -0700270 if (nlmclnt_reclaim(host, fl, req) != 0)
Trond Myklebust28df9552006-06-09 09:40:27 -0400271 continue;
272 list_add_tail(&fl->fl_u.nfs_fl.list, &host->h_granted);
273 if (host->h_nsmstate != nsmstate) {
274 /* Argh! The server rebooted again! */
Trond Myklebust28df9552006-06-09 09:40:27 -0400275 goto restart;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Olaf Kirch5c8dd292006-10-04 02:15:55 -0700278
279 host->h_reclaiming = 0;
280 up_write(&host->h_rwsem);
Adrian Bunkd019bcf2007-01-29 13:19:51 -0800281 dprintk("NLM: done reclaiming locks for host %s\n", host->h_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /* Now, wake up all processes that sleep on a blocked lock */
Bryan Schumaker63185942010-09-22 09:50:35 -0400284 spin_lock(&nlm_blocked_lock);
Trond Myklebust4f15e2b2005-06-22 17:16:31 +0000285 list_for_each_entry(block, &nlm_blocked, b_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (block->b_host == host) {
Al Viroe8c5c042006-12-13 00:35:03 -0800287 block->b_status = nlm_lck_denied_grace_period;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 wake_up(&block->b_wait);
289 }
290 }
Bryan Schumaker63185942010-09-22 09:50:35 -0400291 spin_unlock(&nlm_blocked_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /* Release host handle after use */
Chuck Lever8ea6ecc2010-12-14 15:05:52 +0000294 nlmclnt_release_host(host);
Stanislav Kinsburskye3f70ea2012-03-29 18:54:33 +0400295 lockd_down(net);
Tim Gardnerf25cc712013-02-13 08:40:16 -0700296 kfree(req);
Jeff Laytondf94f002008-12-23 15:21:33 -0500297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}