blob: 1dd4215b83d02133592033949bced668548102cc [file] [log] [blame]
David Teigland869d81d2006-01-17 08:47:12 +00001/*
2 * Copyright (C) 2005 Red Hat, Inc. All rights reserved.
3 *
4 * This copyrighted material is made available to anyone wishing to use,
5 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04006 * of the GNU General Public License version 2.
David Teigland869d81d2006-01-17 08:47:12 +00007 */
8
9#include <linux/miscdevice.h>
10#include <linux/lock_dlm_plock.h>
Al Virobd01f842006-10-19 17:23:57 -040011#include <linux/poll.h>
David Teigland869d81d2006-01-17 08:47:12 +000012
13#include "lock_dlm.h"
14
15
16static spinlock_t ops_lock;
17static struct list_head send_list;
18static struct list_head recv_list;
19static wait_queue_head_t send_wq;
20static wait_queue_head_t recv_wq;
21
22struct plock_op {
23 struct list_head list;
24 int done;
25 struct gdlm_plock_info info;
26};
27
28static inline void set_version(struct gdlm_plock_info *info)
29{
30 info->version[0] = GDLM_PLOCK_VERSION_MAJOR;
31 info->version[1] = GDLM_PLOCK_VERSION_MINOR;
32 info->version[2] = GDLM_PLOCK_VERSION_PATCH;
33}
34
35static int check_version(struct gdlm_plock_info *info)
36{
37 if ((GDLM_PLOCK_VERSION_MAJOR != info->version[0]) ||
38 (GDLM_PLOCK_VERSION_MINOR < info->version[1])) {
39 log_error("plock device version mismatch: "
40 "kernel (%u.%u.%u), user (%u.%u.%u)",
41 GDLM_PLOCK_VERSION_MAJOR,
42 GDLM_PLOCK_VERSION_MINOR,
43 GDLM_PLOCK_VERSION_PATCH,
44 info->version[0],
45 info->version[1],
46 info->version[2]);
47 return -EINVAL;
48 }
49 return 0;
50}
51
52static void send_op(struct plock_op *op)
53{
54 set_version(&op->info);
55 INIT_LIST_HEAD(&op->list);
56 spin_lock(&ops_lock);
57 list_add_tail(&op->list, &send_list);
58 spin_unlock(&ops_lock);
59 wake_up(&send_wq);
60}
61
Steven Whitehouse9b47c112006-09-08 10:17:58 -040062int gdlm_plock(void *lockspace, struct lm_lockname *name,
David Teigland869d81d2006-01-17 08:47:12 +000063 struct file *file, int cmd, struct file_lock *fl)
64{
Steven Whitehouse9b47c112006-09-08 10:17:58 -040065 struct gdlm_ls *ls = lockspace;
David Teigland869d81d2006-01-17 08:47:12 +000066 struct plock_op *op;
67 int rv;
68
69 op = kzalloc(sizeof(*op), GFP_KERNEL);
70 if (!op)
71 return -ENOMEM;
72
73 op->info.optype = GDLM_PLOCK_OP_LOCK;
David Teigland3a2a9c92006-04-25 15:45:51 -040074 op->info.pid = fl->fl_pid;
David Teigland869d81d2006-01-17 08:47:12 +000075 op->info.ex = (fl->fl_type == F_WRLCK);
76 op->info.wait = IS_SETLKW(cmd);
77 op->info.fsid = ls->id;
78 op->info.number = name->ln_number;
79 op->info.start = fl->fl_start;
80 op->info.end = fl->fl_end;
David Teiglandde9b75d2006-07-28 14:00:20 -050081 op->info.owner = (__u64)(long) fl->fl_owner;
David Teigland869d81d2006-01-17 08:47:12 +000082
83 send_op(op);
84 wait_event(recv_wq, (op->done != 0));
85
86 spin_lock(&ops_lock);
87 if (!list_empty(&op->list)) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -050088 printk(KERN_INFO "plock op on list\n");
David Teigland869d81d2006-01-17 08:47:12 +000089 list_del(&op->list);
90 }
91 spin_unlock(&ops_lock);
92
93 rv = op->info.rv;
94
95 if (!rv) {
96 if (posix_lock_file_wait(file, fl) < 0)
97 log_error("gdlm_plock: vfs lock error %x,%llx",
David Teigland9229f012006-05-24 09:21:30 -040098 name->ln_type,
99 (unsigned long long)name->ln_number);
David Teigland869d81d2006-01-17 08:47:12 +0000100 }
101
102 kfree(op);
103 return rv;
104}
105
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400106int gdlm_punlock(void *lockspace, struct lm_lockname *name,
David Teigland869d81d2006-01-17 08:47:12 +0000107 struct file *file, struct file_lock *fl)
108{
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400109 struct gdlm_ls *ls = lockspace;
David Teigland869d81d2006-01-17 08:47:12 +0000110 struct plock_op *op;
111 int rv;
112
113 op = kzalloc(sizeof(*op), GFP_KERNEL);
114 if (!op)
115 return -ENOMEM;
116
117 if (posix_lock_file_wait(file, fl) < 0)
118 log_error("gdlm_punlock: vfs unlock error %x,%llx",
David Teigland9229f012006-05-24 09:21:30 -0400119 name->ln_type, (unsigned long long)name->ln_number);
David Teigland869d81d2006-01-17 08:47:12 +0000120
121 op->info.optype = GDLM_PLOCK_OP_UNLOCK;
David Teigland3a2a9c92006-04-25 15:45:51 -0400122 op->info.pid = fl->fl_pid;
David Teigland869d81d2006-01-17 08:47:12 +0000123 op->info.fsid = ls->id;
124 op->info.number = name->ln_number;
125 op->info.start = fl->fl_start;
126 op->info.end = fl->fl_end;
David Teiglandde9b75d2006-07-28 14:00:20 -0500127 op->info.owner = (__u64)(long) fl->fl_owner;
David Teigland869d81d2006-01-17 08:47:12 +0000128
129 send_op(op);
130 wait_event(recv_wq, (op->done != 0));
131
132 spin_lock(&ops_lock);
133 if (!list_empty(&op->list)) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500134 printk(KERN_INFO "punlock op on list\n");
David Teigland869d81d2006-01-17 08:47:12 +0000135 list_del(&op->list);
136 }
137 spin_unlock(&ops_lock);
138
139 rv = op->info.rv;
140
141 kfree(op);
142 return rv;
143}
144
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400145int gdlm_plock_get(void *lockspace, struct lm_lockname *name,
David Teigland869d81d2006-01-17 08:47:12 +0000146 struct file *file, struct file_lock *fl)
147{
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400148 struct gdlm_ls *ls = lockspace;
David Teigland869d81d2006-01-17 08:47:12 +0000149 struct plock_op *op;
150 int rv;
151
152 op = kzalloc(sizeof(*op), GFP_KERNEL);
153 if (!op)
154 return -ENOMEM;
155
156 op->info.optype = GDLM_PLOCK_OP_GET;
David Teigland3a2a9c92006-04-25 15:45:51 -0400157 op->info.pid = fl->fl_pid;
David Teigland869d81d2006-01-17 08:47:12 +0000158 op->info.ex = (fl->fl_type == F_WRLCK);
159 op->info.fsid = ls->id;
160 op->info.number = name->ln_number;
161 op->info.start = fl->fl_start;
162 op->info.end = fl->fl_end;
163
164 send_op(op);
165 wait_event(recv_wq, (op->done != 0));
166
167 spin_lock(&ops_lock);
168 if (!list_empty(&op->list)) {
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500169 printk(KERN_INFO "plock_get op on list\n");
David Teigland869d81d2006-01-17 08:47:12 +0000170 list_del(&op->list);
171 }
172 spin_unlock(&ops_lock);
173
174 rv = op->info.rv;
175
176 if (rv == 0)
177 fl->fl_type = F_UNLCK;
178 else if (rv > 0) {
179 fl->fl_type = (op->info.ex) ? F_WRLCK : F_RDLCK;
180 fl->fl_pid = op->info.pid;
181 fl->fl_start = op->info.start;
182 fl->fl_end = op->info.end;
183 }
184
185 kfree(op);
186 return rv;
187}
188
189/* a read copies out one plock request from the send list */
190static ssize_t dev_read(struct file *file, char __user *u, size_t count,
191 loff_t *ppos)
192{
193 struct gdlm_plock_info info;
194 struct plock_op *op = NULL;
195
196 if (count < sizeof(info))
197 return -EINVAL;
198
199 spin_lock(&ops_lock);
200 if (!list_empty(&send_list)) {
201 op = list_entry(send_list.next, struct plock_op, list);
202 list_move(&op->list, &recv_list);
203 memcpy(&info, &op->info, sizeof(info));
204 }
205 spin_unlock(&ops_lock);
206
207 if (!op)
208 return -EAGAIN;
209
210 if (copy_to_user(u, &info, sizeof(info)))
211 return -EFAULT;
212 return sizeof(info);
213}
214
215/* a write copies in one plock result that should match a plock_op
216 on the recv list */
217static ssize_t dev_write(struct file *file, const char __user *u, size_t count,
218 loff_t *ppos)
219{
220 struct gdlm_plock_info info;
221 struct plock_op *op;
222 int found = 0;
223
224 if (count != sizeof(info))
225 return -EINVAL;
226
227 if (copy_from_user(&info, u, sizeof(info)))
228 return -EFAULT;
229
230 if (check_version(&info))
231 return -EINVAL;
232
233 spin_lock(&ops_lock);
234 list_for_each_entry(op, &recv_list, list) {
Steven Whitehouse9b47c112006-09-08 10:17:58 -0400235 if (op->info.fsid == info.fsid && op->info.number == info.number &&
David Teigland08eac932006-08-04 16:19:20 -0500236 op->info.owner == info.owner) {
David Teigland869d81d2006-01-17 08:47:12 +0000237 list_del_init(&op->list);
238 found = 1;
239 op->done = 1;
240 memcpy(&op->info, &info, sizeof(info));
241 break;
242 }
243 }
244 spin_unlock(&ops_lock);
245
246 if (found)
247 wake_up(&recv_wq);
248 else
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500249 printk(KERN_INFO "gdlm dev_write no op %x %llx\n", info.fsid,
David Teigland9229f012006-05-24 09:21:30 -0400250 (unsigned long long)info.number);
David Teigland869d81d2006-01-17 08:47:12 +0000251 return count;
252}
253
254static unsigned int dev_poll(struct file *file, poll_table *wait)
255{
256 poll_wait(file, &send_wq, wait);
257
258 spin_lock(&ops_lock);
259 if (!list_empty(&send_list)) {
260 spin_unlock(&ops_lock);
261 return POLLIN | POLLRDNORM;
262 }
263 spin_unlock(&ops_lock);
264 return 0;
265}
266
Arjan van de Ven00977a52007-02-12 00:55:34 -0800267static const struct file_operations dev_fops = {
David Teigland869d81d2006-01-17 08:47:12 +0000268 .read = dev_read,
269 .write = dev_write,
270 .poll = dev_poll,
271 .owner = THIS_MODULE
272};
273
274static struct miscdevice plock_dev_misc = {
275 .minor = MISC_DYNAMIC_MINOR,
276 .name = GDLM_PLOCK_MISC_NAME,
277 .fops = &dev_fops
278};
279
280int gdlm_plock_init(void)
281{
282 int rv;
283
284 spin_lock_init(&ops_lock);
285 INIT_LIST_HEAD(&send_list);
286 INIT_LIST_HEAD(&recv_list);
287 init_waitqueue_head(&send_wq);
288 init_waitqueue_head(&recv_wq);
289
290 rv = misc_register(&plock_dev_misc);
291 if (rv)
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500292 printk(KERN_INFO "gdlm_plock_init: misc_register failed %d",
293 rv);
David Teigland869d81d2006-01-17 08:47:12 +0000294 return rv;
295}
296
297void gdlm_plock_exit(void)
298{
299 if (misc_deregister(&plock_dev_misc) < 0)
Steven Whitehoused92a8d42006-02-27 10:57:14 -0500300 printk(KERN_INFO "gdlm_plock_exit: misc_deregister failed");
David Teigland869d81d2006-01-17 08:47:12 +0000301}
302