blob: 9a9248e632c69be31911902cc69e974113d39c5f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * An implementation of a loadable kernel mode driver providing
3 * multiple kernel/user space bidirectional communications links.
4 *
Alan Cox526719b2008-10-27 15:19:48 +00005 * Author: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 * Adapted to become the Linux 2.0 Coda pseudo device
13 * Peter Braam <braam@maths.ox.ac.uk>
14 * Michael Callahan <mjc@emmy.smith.edu>
15 *
16 * Changes for Linux 2.1
17 * Copyright (c) 1997 Carnegie-Mellon University
18 */
19
20#include <linux/module.h>
21#include <linux/errno.h>
22#include <linux/kernel.h>
23#include <linux/major.h>
24#include <linux/time.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040025#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/slab.h>
27#include <linux/ioport.h>
28#include <linux/fcntl.h>
29#include <linux/delay.h>
30#include <linux/skbuff.h>
31#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/vmalloc.h>
33#include <linux/fs.h>
34#include <linux/file.h>
35#include <linux/poll.h>
36#include <linux/init.h>
37#include <linux/list.h>
38#include <linux/smp_lock.h>
39#include <linux/device.h>
40#include <asm/io.h>
41#include <asm/system.h>
42#include <asm/poll.h>
43#include <asm/uaccess.h>
44
45#include <linux/coda.h>
46#include <linux/coda_linux.h>
47#include <linux/coda_fs_i.h>
48#include <linux/coda_psdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Adrian Bunkc98d8cf2006-03-24 03:15:53 -080050#include "coda_int.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052/* statistics */
53int coda_hard; /* allows signals during upcalls */
54unsigned long coda_timeout = 30; /* .. secs, then signals will dequeue */
55
56
57struct venus_comm coda_comms[MAX_CODADEVS];
gregkh@suse.de1db560a2005-03-23 10:02:26 -080058static struct class *coda_psdev_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
61 * Device operations
62 */
63
64static unsigned int coda_psdev_poll(struct file *file, poll_table * wait)
65{
66 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
67 unsigned int mask = POLLOUT | POLLWRNORM;
68
69 poll_wait(file, &vcp->vc_waitq, wait);
70 if (!list_empty(&vcp->vc_pending))
71 mask |= POLLIN | POLLRDNORM;
72
73 return mask;
74}
75
Arnd Bergmann97718392010-04-27 16:24:24 +020076static long coda_psdev_ioctl(struct file * filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 unsigned int data;
79
80 switch(cmd) {
81 case CIOC_KERNEL_VERSION:
82 data = CODA_KERNEL_VERSION;
83 return put_user(data, (int __user *) arg);
84 default:
85 return -ENOTTY;
86 }
87
88 return 0;
89}
90
91/*
92 * Receive a message written by Venus to the psdev
93 */
94
95static ssize_t coda_psdev_write(struct file *file, const char __user *buf,
96 size_t nbytes, loff_t *off)
97{
98 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
99 struct upc_req *req = NULL;
100 struct upc_req *tmp;
101 struct list_head *lh;
102 struct coda_in_hdr hdr;
103 ssize_t retval = 0, count = 0;
104 int error;
105
106 /* Peek at the opcode, uniquefier */
107 if (copy_from_user(&hdr, buf, 2 * sizeof(u_long)))
108 return -EFAULT;
109
110 if (DOWNCALL(hdr.opcode)) {
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -0400111 union outputArgs *dcbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 int size = sizeof(*dcbuf);
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if ( nbytes < sizeof(struct coda_out_hdr) ) {
115 printk("coda_downcall opc %d uniq %d, not enough!\n",
116 hdr.opcode, hdr.unique);
117 count = nbytes;
118 goto out;
119 }
120 if ( nbytes > size ) {
121 printk("Coda: downcall opc %d, uniq %d, too much!",
122 hdr.opcode, hdr.unique);
123 nbytes = size;
124 }
125 CODA_ALLOC(dcbuf, union outputArgs *, nbytes);
126 if (copy_from_user(dcbuf, buf, nbytes)) {
127 CODA_FREE(dcbuf, nbytes);
128 retval = -EFAULT;
129 goto out;
130 }
131
132 /* what downcall errors does Venus handle ? */
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -0400133 error = coda_downcall(vcp, hdr.opcode, dcbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 CODA_FREE(dcbuf, nbytes);
136 if (error) {
137 printk("psdev_write: coda_downcall error: %d\n", error);
138 retval = error;
139 goto out;
140 }
141 count = nbytes;
142 goto out;
143 }
144
145 /* Look for the message on the processing queue. */
146 lock_kernel();
147 list_for_each(lh, &vcp->vc_processing) {
148 tmp = list_entry(lh, struct upc_req , uc_chain);
149 if (tmp->uc_unique == hdr.unique) {
150 req = tmp;
151 list_del(&req->uc_chain);
152 break;
153 }
154 }
155 unlock_kernel();
156
157 if (!req) {
158 printk("psdev_write: msg (%d, %d) not found\n",
159 hdr.opcode, hdr.unique);
160 retval = -ESRCH;
161 goto out;
162 }
163
164 /* move data into response buffer. */
165 if (req->uc_outSize < nbytes) {
166 printk("psdev_write: too much cnt: %d, cnt: %ld, opc: %d, uniq: %d.\n",
167 req->uc_outSize, (long)nbytes, hdr.opcode, hdr.unique);
168 nbytes = req->uc_outSize; /* don't have more space! */
169 }
170 if (copy_from_user(req->uc_data, buf, nbytes)) {
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200171 req->uc_flags |= CODA_REQ_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 wake_up(&req->uc_sleep);
173 retval = -EFAULT;
174 goto out;
175 }
176
177 /* adjust outsize. is this useful ?? */
Jan Harkes112d4212010-09-17 23:26:01 -0400178 req->uc_outSize = nbytes;
179 req->uc_flags |= CODA_REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 count = nbytes;
181
182 /* Convert filedescriptor into a file handle */
183 if (req->uc_opcode == CODA_OPEN_BY_FD) {
184 struct coda_open_by_fd_out *outp =
185 (struct coda_open_by_fd_out *)req->uc_data;
Jan Harkes38c2e432007-07-19 01:48:41 -0700186 if (!outp->oh.result)
187 outp->fh = fget(outp->fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 }
189
190 wake_up(&req->uc_sleep);
191out:
192 return(count ? count : retval);
193}
194
195/*
196 * Read a message from the kernel to Venus
197 */
198
199static ssize_t coda_psdev_read(struct file * file, char __user * buf,
200 size_t nbytes, loff_t *off)
201{
202 DECLARE_WAITQUEUE(wait, current);
203 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
204 struct upc_req *req;
205 ssize_t retval = 0, count = 0;
206
207 if (nbytes == 0)
208 return 0;
209
210 lock_kernel();
211
212 add_wait_queue(&vcp->vc_waitq, &wait);
213 set_current_state(TASK_INTERRUPTIBLE);
214
215 while (list_empty(&vcp->vc_pending)) {
216 if (file->f_flags & O_NONBLOCK) {
217 retval = -EAGAIN;
218 break;
219 }
220 if (signal_pending(current)) {
221 retval = -ERESTARTSYS;
222 break;
223 }
224 schedule();
225 }
226
227 set_current_state(TASK_RUNNING);
228 remove_wait_queue(&vcp->vc_waitq, &wait);
229
230 if (retval)
231 goto out;
232
233 req = list_entry(vcp->vc_pending.next, struct upc_req,uc_chain);
234 list_del(&req->uc_chain);
235
236 /* Move the input args into userspace */
237 count = req->uc_inSize;
238 if (nbytes < req->uc_inSize) {
239 printk ("psdev_read: Venus read %ld bytes of %d in message\n",
240 (long)nbytes, req->uc_inSize);
241 count = nbytes;
242 }
243
244 if (copy_to_user(buf, req->uc_data, count))
245 retval = -EFAULT;
246
247 /* If request was not a signal, enqueue and don't free */
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200248 if (!(req->uc_flags & CODA_REQ_ASYNC)) {
249 req->uc_flags |= CODA_REQ_READ;
Akinobu Mita8e130592006-06-26 00:24:37 -0700250 list_add_tail(&(req->uc_chain), &vcp->vc_processing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 goto out;
252 }
253
254 CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr));
Jan Harkes37461e12007-07-19 01:48:48 -0700255 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256out:
257 unlock_kernel();
258 return (count ? count : retval);
259}
260
261static int coda_psdev_open(struct inode * inode, struct file * file)
262{
Jan Harkes87065512007-07-19 01:48:45 -0700263 struct venus_comm *vcp;
264 int idx, err;
265
266 idx = iminor(inode);
267 if (idx < 0 || idx >= MAX_CODADEVS)
268 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Jan Harkes87065512007-07-19 01:48:45 -0700272 err = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 vcp = &coda_comms[idx];
Jan Harkes87065512007-07-19 01:48:45 -0700274 if (!vcp->vc_inuse) {
275 vcp->vc_inuse++;
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 INIT_LIST_HEAD(&vcp->vc_pending);
278 INIT_LIST_HEAD(&vcp->vc_processing);
279 init_waitqueue_head(&vcp->vc_waitq);
280 vcp->vc_sb = NULL;
281 vcp->vc_seq = 0;
Jan Harkes87065512007-07-19 01:48:45 -0700282
283 file->private_data = vcp;
284 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 unlock_kernel();
Jan Harkes87065512007-07-19 01:48:45 -0700288 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291
292static int coda_psdev_release(struct inode * inode, struct file * file)
293{
Jan Harkes87065512007-07-19 01:48:45 -0700294 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
295 struct upc_req *req, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Jan Harkes87065512007-07-19 01:48:45 -0700297 if (!vcp || !vcp->vc_inuse ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 printk("psdev_release: Not open.\n");
299 return -1;
300 }
301
Jan Harkes87065512007-07-19 01:48:45 -0700302 lock_kernel();
303
304 /* Wakeup clients so they can return. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 list_for_each_entry_safe(req, tmp, &vcp->vc_pending, uc_chain) {
Jan Harkes87065512007-07-19 01:48:45 -0700306 list_del(&req->uc_chain);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* Async requests need to be freed here */
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200309 if (req->uc_flags & CODA_REQ_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr));
Jan Harkes37461e12007-07-19 01:48:48 -0700311 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 continue;
313 }
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200314 req->uc_flags |= CODA_REQ_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 wake_up(&req->uc_sleep);
Jan Harkes87065512007-07-19 01:48:45 -0700316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Jan Harkes87065512007-07-19 01:48:45 -0700318 list_for_each_entry_safe(req, tmp, &vcp->vc_processing, uc_chain) {
319 list_del(&req->uc_chain);
320
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200321 req->uc_flags |= CODA_REQ_ABORT;
Jan Harkes87065512007-07-19 01:48:45 -0700322 wake_up(&req->uc_sleep);
323 }
324
325 file->private_data = NULL;
326 vcp->vc_inuse--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 unlock_kernel();
328 return 0;
329}
330
331
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800332static const struct file_operations coda_psdev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 .owner = THIS_MODULE,
334 .read = coda_psdev_read,
335 .write = coda_psdev_write,
336 .poll = coda_psdev_poll,
Arnd Bergmann97718392010-04-27 16:24:24 +0200337 .unlocked_ioctl = coda_psdev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .open = coda_psdev_open,
339 .release = coda_psdev_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200340 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};
342
343static int init_coda_psdev(void)
344{
345 int i, err = 0;
346 if (register_chrdev(CODA_PSDEV_MAJOR, "coda", &coda_psdev_fops)) {
347 printk(KERN_ERR "coda_psdev: unable to get major %d\n",
348 CODA_PSDEV_MAJOR);
349 return -EIO;
350 }
gregkh@suse.de1db560a2005-03-23 10:02:26 -0800351 coda_psdev_class = class_create(THIS_MODULE, "coda");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (IS_ERR(coda_psdev_class)) {
353 err = PTR_ERR(coda_psdev_class);
354 goto out_chrdev;
355 }
Greg Kroah-Hartman7c69ef72005-06-20 21:15:16 -0700356 for (i = 0; i < MAX_CODADEVS; i++)
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700357 device_create(coda_psdev_class, NULL,
358 MKDEV(CODA_PSDEV_MAJOR, i), NULL, "cfs%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 coda_sysctl_init();
360 goto out;
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362out_chrdev:
363 unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
364out:
365 return err;
366}
367
Jan Harkes5b7f13b2007-07-19 01:48:52 -0700368MODULE_AUTHOR("Jan Harkes, Peter J. Braam");
369MODULE_DESCRIPTION("Coda Distributed File System VFS interface");
370MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371MODULE_LICENSE("GPL");
Jan Harkes5b7f13b2007-07-19 01:48:52 -0700372MODULE_VERSION("6.6");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static int __init init_coda(void)
375{
376 int status;
377 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 status = coda_init_inodecache();
380 if (status)
381 goto out2;
382 status = init_coda_psdev();
383 if ( status ) {
384 printk("Problem (%d) in init_coda_psdev\n", status);
385 goto out1;
386 }
387
388 status = register_filesystem(&coda_fs_type);
389 if (status) {
390 printk("coda: failed to register filesystem!\n");
391 goto out;
392 }
393 return 0;
394out:
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -0700395 for (i = 0; i < MAX_CODADEVS; i++)
Kay Sievers62ca8792007-09-25 02:03:03 +0200396 device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i));
gregkh@suse.de1db560a2005-03-23 10:02:26 -0800397 class_destroy(coda_psdev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
399 coda_sysctl_clean();
400out1:
401 coda_destroy_inodecache();
402out2:
403 return status;
404}
405
406static void __exit exit_coda(void)
407{
408 int err, i;
409
410 err = unregister_filesystem(&coda_fs_type);
411 if ( err != 0 ) {
412 printk("coda: failed to unregister filesystem\n");
413 }
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -0700414 for (i = 0; i < MAX_CODADEVS; i++)
Kay Sievers62ca8792007-09-25 02:03:03 +0200415 device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i));
gregkh@suse.de1db560a2005-03-23 10:02:26 -0800416 class_destroy(coda_psdev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
418 coda_sysctl_clean();
419 coda_destroy_inodecache();
420}
421
422module_init(init_coda);
423module_exit(exit_coda);
424