Import 2.3.26pre2
[davej-history.git] / fs / lockd / clntlock.c
blob7a4674d8561f4cb09371dc722c3e049b87fcb81f
1 /*
2 * linux/fs/lockd/clntlock.c
4 * Lock handling for the client side NLM implementation
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
9 #define __KERNEL_SYSCALLS__
11 #include <linux/types.h>
12 #include <linux/sched.h>
13 #include <linux/nfs_fs.h>
14 #include <linux/unistd.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/sunrpc/svc.h>
17 #include <linux/lockd/lockd.h>
18 #include <linux/smp_lock.h>
20 #define NLMDBG_FACILITY NLMDBG_CIENT
23 * Local function prototypes
25 static int reclaimer(void *ptr);
28 * The following functions handle blocking and granting from the
29 * client perspective.
33 * This is the representation of a blocked client lock.
35 struct nlm_wait {
36 struct nlm_wait * b_next; /* linked list */
37 wait_queue_head_t b_wait; /* where to wait on */
38 struct nlm_host * b_host;
39 struct file_lock * b_lock; /* local file lock */
40 unsigned short b_reclaim; /* got to reclaim lock */
41 u32 b_status; /* grant callback status */
44 static struct nlm_wait * nlm_blocked = NULL;
47 * Block on a lock
49 int
50 nlmclnt_block(struct nlm_host *host, struct file_lock *fl, u32 *statp)
52 struct nlm_wait block, **head;
53 int err;
54 u32 pstate;
56 block.b_host = host;
57 block.b_lock = fl;
58 init_waitqueue_head(&block.b_wait);
59 block.b_status = NLM_LCK_BLOCKED;
60 block.b_next = nlm_blocked;
61 nlm_blocked = &block;
63 /* Remember pseudo nsm state */
64 pstate = host->h_state;
66 /* Go to sleep waiting for GRANT callback. Some servers seem
67 * to lose callbacks, however, so we're going to poll from
68 * time to time just to make sure.
70 * For now, the retry frequency is pretty high; normally
71 * a 1 minute timeout would do. See the comment before
72 * nlmclnt_lock for an explanation.
74 sleep_on_timeout(&block.b_wait, 30*HZ);
76 for (head = &nlm_blocked; *head; head = &(*head)->b_next) {
77 if (*head == &block) {
78 *head = block.b_next;
79 break;
83 if (!signalled()) {
84 *statp = block.b_status;
85 return 0;
88 /* Okay, we were interrupted. Cancel the pending request
89 * unless the server has rebooted.
91 if (pstate == host->h_state && (err = nlmclnt_cancel(host, fl)) < 0)
92 printk(KERN_NOTICE
93 "lockd: CANCEL call failed (errno %d)\n", -err);
95 return -ERESTARTSYS;
99 * The server lockd has called us back to tell us the lock was granted
102 nlmclnt_grant(struct nlm_lock *lock)
104 struct nlm_wait *block;
107 * Look up blocked request based on arguments.
108 * Warning: must not use cookie to match it!
110 for (block = nlm_blocked; block; block = block->b_next) {
111 if (nlm_compare_locks(block->b_lock, &lock->fl))
112 break;
115 /* Ooops, no blocked request found. */
116 if (block == NULL)
117 return nlm_lck_denied;
119 /* Alright, we found the lock. Set the return status and
120 * wake up the caller.
122 block->b_status = NLM_LCK_GRANTED;
123 wake_up(&block->b_wait);
125 return nlm_granted;
129 * The following procedures deal with the recovery of locks after a
130 * server crash.
134 * Reclaim all locks on server host. We do this by spawning a separate
135 * reclaimer thread.
136 * FIXME: should bump MOD_USE_COUNT while reclaiming
138 void
139 nlmclnt_recovery(struct nlm_host *host, u32 newstate)
141 if (!host->h_reclaiming++) {
142 if (host->h_nsmstate == newstate)
143 return;
144 printk(KERN_WARNING
145 "lockd: Uh-oh! Interfering reclaims for host %s",
146 host->h_name);
147 host->h_monitored = 0;
148 host->h_nsmstate = newstate;
149 host->h_state++;
150 nlm_release_host(host);
151 } else {
152 host->h_monitored = 0;
153 host->h_nsmstate = newstate;
154 host->h_state++;
155 host->h_count++;
156 kernel_thread(reclaimer, host, 0);
160 static int
161 reclaimer(void *ptr)
163 struct nlm_host *host = (struct nlm_host *) ptr;
164 struct nlm_wait *block;
165 struct file_lock *fl;
166 struct inode *inode;
168 /* This one ensures that our parent doesn't terminate while the
169 * reclaim is in progress */
170 lock_kernel();
171 lockd_up();
173 /* First, reclaim all locks that have been granted previously. */
174 do {
175 for (fl = file_lock_table; fl; fl = fl->fl_nextlink) {
176 inode = fl->fl_file->f_dentry->d_inode;
177 if (inode->i_sb->s_magic == NFS_SUPER_MAGIC
178 && nlm_cmp_addr(NFS_ADDR(inode), &host->h_addr)
179 && fl->fl_u.nfs_fl.state != host->h_state
180 && (fl->fl_u.nfs_fl.flags & NFS_LCK_GRANTED)) {
181 fl->fl_u.nfs_fl.flags &= ~ NFS_LCK_GRANTED;
182 nlmclnt_reclaim(host, fl);
183 break;
186 } while (fl);
188 host->h_reclaiming = 0;
189 wake_up(&host->h_gracewait);
191 /* Now, wake up all processes that sleep on a blocked lock */
192 for (block = nlm_blocked; block; block = block->b_next) {
193 if (block->b_host == host) {
194 block->b_status = NLM_LCK_DENIED_GRACE_PERIOD;
195 wake_up(&block->b_wait);
199 /* Release host handle after use */
200 nlm_release_host(host);
201 lockd_down();
202 unlock_kernel();
204 return 0;