Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * An implementation of a loadable kernel mode driver providing |
| 3 | * multiple kernel/user space bidirectional communications links. |
| 4 | * |
Alan Cox | 526719b | 2008-10-27 15:19:48 +0000 | [diff] [blame] | 5 | * Author: Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 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 Dobriyan | a99bbaf | 2009-10-04 16:11:37 +0400 | [diff] [blame] | 25 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #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> |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 38 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/device.h> |
Eric W. Biederman | 9fd973e | 2013-01-30 18:50:54 -0800 | [diff] [blame] | 40 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/poll.h> |
Fabian Frederick | 834b46c | 2014-08-08 14:20:33 -0700 | [diff] [blame] | 43 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #include <linux/coda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/coda_psdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Al Viro | 31a203d | 2011-01-12 16:36:09 -0500 | [diff] [blame] | 48 | #include "coda_linux.h" |
| 49 | |
Adrian Bunk | c98d8cf | 2006-03-24 03:15:53 -0800 | [diff] [blame] | 50 | #include "coda_int.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* statistics */ |
| 53 | int coda_hard; /* allows signals during upcalls */ |
| 54 | unsigned long coda_timeout = 30; /* .. secs, then signals will dequeue */ |
| 55 | |
| 56 | |
| 57 | struct venus_comm coda_comms[MAX_CODADEVS]; |
gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 58 | static struct class *coda_psdev_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * Device operations |
| 62 | */ |
| 63 | |
| 64 | static 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); |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 70 | mutex_lock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | if (!list_empty(&vcp->vc_pending)) |
| 72 | mask |= POLLIN | POLLRDNORM; |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 73 | mutex_unlock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | return mask; |
| 76 | } |
| 77 | |
Arnd Bergmann | 9771839 | 2010-04-27 16:24:24 +0200 | [diff] [blame] | 78 | static long coda_psdev_ioctl(struct file * filp, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
| 80 | unsigned int data; |
| 81 | |
| 82 | switch(cmd) { |
| 83 | case CIOC_KERNEL_VERSION: |
| 84 | data = CODA_KERNEL_VERSION; |
| 85 | return put_user(data, (int __user *) arg); |
| 86 | default: |
| 87 | return -ENOTTY; |
| 88 | } |
| 89 | |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * Receive a message written by Venus to the psdev |
| 95 | */ |
| 96 | |
| 97 | static ssize_t coda_psdev_write(struct file *file, const char __user *buf, |
| 98 | size_t nbytes, loff_t *off) |
| 99 | { |
| 100 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; |
| 101 | struct upc_req *req = NULL; |
| 102 | struct upc_req *tmp; |
| 103 | struct list_head *lh; |
| 104 | struct coda_in_hdr hdr; |
| 105 | ssize_t retval = 0, count = 0; |
| 106 | int error; |
| 107 | |
| 108 | /* Peek at the opcode, uniquefier */ |
| 109 | if (copy_from_user(&hdr, buf, 2 * sizeof(u_long))) |
| 110 | return -EFAULT; |
| 111 | |
| 112 | if (DOWNCALL(hdr.opcode)) { |
Yoshihisa Abe | f7cc02b8 | 2010-10-25 02:03:45 -0400 | [diff] [blame] | 113 | union outputArgs *dcbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | int size = sizeof(*dcbuf); |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | if ( nbytes < sizeof(struct coda_out_hdr) ) { |
Fabian Frederick | d9b4b31 | 2014-06-06 14:36:18 -0700 | [diff] [blame] | 117 | pr_warn("coda_downcall opc %d uniq %d, not enough!\n", |
| 118 | hdr.opcode, hdr.unique); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | count = nbytes; |
| 120 | goto out; |
| 121 | } |
| 122 | if ( nbytes > size ) { |
Fabian Frederick | f38cfb2 | 2014-06-06 14:36:19 -0700 | [diff] [blame] | 123 | pr_warn("downcall opc %d, uniq %d, too much!", |
Fabian Frederick | d9b4b31 | 2014-06-06 14:36:18 -0700 | [diff] [blame] | 124 | hdr.opcode, hdr.unique); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | nbytes = size; |
| 126 | } |
| 127 | CODA_ALLOC(dcbuf, union outputArgs *, nbytes); |
| 128 | if (copy_from_user(dcbuf, buf, nbytes)) { |
| 129 | CODA_FREE(dcbuf, nbytes); |
| 130 | retval = -EFAULT; |
| 131 | goto out; |
| 132 | } |
| 133 | |
| 134 | /* what downcall errors does Venus handle ? */ |
Yoshihisa Abe | f7cc02b8 | 2010-10-25 02:03:45 -0400 | [diff] [blame] | 135 | error = coda_downcall(vcp, hdr.opcode, dcbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | CODA_FREE(dcbuf, nbytes); |
| 138 | if (error) { |
Fabian Frederick | 6d6bd94 | 2014-06-06 14:36:20 -0700 | [diff] [blame] | 139 | pr_warn("%s: coda_downcall error: %d\n", |
| 140 | __func__, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | retval = error; |
| 142 | goto out; |
| 143 | } |
| 144 | count = nbytes; |
| 145 | goto out; |
| 146 | } |
| 147 | |
| 148 | /* Look for the message on the processing queue. */ |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 149 | mutex_lock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | list_for_each(lh, &vcp->vc_processing) { |
| 151 | tmp = list_entry(lh, struct upc_req , uc_chain); |
| 152 | if (tmp->uc_unique == hdr.unique) { |
| 153 | req = tmp; |
| 154 | list_del(&req->uc_chain); |
| 155 | break; |
| 156 | } |
| 157 | } |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 158 | mutex_unlock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | if (!req) { |
Fabian Frederick | 6d6bd94 | 2014-06-06 14:36:20 -0700 | [diff] [blame] | 161 | pr_warn("%s: msg (%d, %d) not found\n", |
| 162 | __func__, hdr.opcode, hdr.unique); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | retval = -ESRCH; |
| 164 | goto out; |
| 165 | } |
| 166 | |
| 167 | /* move data into response buffer. */ |
| 168 | if (req->uc_outSize < nbytes) { |
Fabian Frederick | 6d6bd94 | 2014-06-06 14:36:20 -0700 | [diff] [blame] | 169 | pr_warn("%s: too much cnt: %d, cnt: %ld, opc: %d, uniq: %d.\n", |
| 170 | __func__, req->uc_outSize, (long)nbytes, |
| 171 | hdr.opcode, hdr.unique); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | nbytes = req->uc_outSize; /* don't have more space! */ |
| 173 | } |
| 174 | if (copy_from_user(req->uc_data, buf, nbytes)) { |
Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 175 | req->uc_flags |= CODA_REQ_ABORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | wake_up(&req->uc_sleep); |
| 177 | retval = -EFAULT; |
| 178 | goto out; |
| 179 | } |
| 180 | |
| 181 | /* adjust outsize. is this useful ?? */ |
Jan Harkes | 112d421 | 2010-09-17 23:26:01 -0400 | [diff] [blame] | 182 | req->uc_outSize = nbytes; |
| 183 | req->uc_flags |= CODA_REQ_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | count = nbytes; |
| 185 | |
| 186 | /* Convert filedescriptor into a file handle */ |
| 187 | if (req->uc_opcode == CODA_OPEN_BY_FD) { |
| 188 | struct coda_open_by_fd_out *outp = |
| 189 | (struct coda_open_by_fd_out *)req->uc_data; |
Jan Harkes | 38c2e43 | 2007-07-19 01:48:41 -0700 | [diff] [blame] | 190 | if (!outp->oh.result) |
| 191 | outp->fh = fget(outp->fd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | wake_up(&req->uc_sleep); |
| 195 | out: |
| 196 | return(count ? count : retval); |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Read a message from the kernel to Venus |
| 201 | */ |
| 202 | |
| 203 | static ssize_t coda_psdev_read(struct file * file, char __user * buf, |
| 204 | size_t nbytes, loff_t *off) |
| 205 | { |
| 206 | DECLARE_WAITQUEUE(wait, current); |
| 207 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; |
| 208 | struct upc_req *req; |
| 209 | ssize_t retval = 0, count = 0; |
| 210 | |
| 211 | if (nbytes == 0) |
| 212 | return 0; |
| 213 | |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 214 | mutex_lock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | add_wait_queue(&vcp->vc_waitq, &wait); |
| 217 | set_current_state(TASK_INTERRUPTIBLE); |
| 218 | |
| 219 | while (list_empty(&vcp->vc_pending)) { |
| 220 | if (file->f_flags & O_NONBLOCK) { |
| 221 | retval = -EAGAIN; |
| 222 | break; |
| 223 | } |
| 224 | if (signal_pending(current)) { |
| 225 | retval = -ERESTARTSYS; |
| 226 | break; |
| 227 | } |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 228 | mutex_unlock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | schedule(); |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 230 | mutex_lock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | set_current_state(TASK_RUNNING); |
| 234 | remove_wait_queue(&vcp->vc_waitq, &wait); |
| 235 | |
| 236 | if (retval) |
| 237 | goto out; |
| 238 | |
| 239 | req = list_entry(vcp->vc_pending.next, struct upc_req,uc_chain); |
| 240 | list_del(&req->uc_chain); |
| 241 | |
| 242 | /* Move the input args into userspace */ |
| 243 | count = req->uc_inSize; |
| 244 | if (nbytes < req->uc_inSize) { |
Fabian Frederick | 6d6bd94 | 2014-06-06 14:36:20 -0700 | [diff] [blame] | 245 | pr_warn("%s: Venus read %ld bytes of %d in message\n", |
| 246 | __func__, (long)nbytes, req->uc_inSize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | count = nbytes; |
| 248 | } |
| 249 | |
| 250 | if (copy_to_user(buf, req->uc_data, count)) |
| 251 | retval = -EFAULT; |
| 252 | |
| 253 | /* If request was not a signal, enqueue and don't free */ |
Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 254 | if (!(req->uc_flags & CODA_REQ_ASYNC)) { |
| 255 | req->uc_flags |= CODA_REQ_READ; |
Akinobu Mita | 8e13059 | 2006-06-26 00:24:37 -0700 | [diff] [blame] | 256 | list_add_tail(&(req->uc_chain), &vcp->vc_processing); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | goto out; |
| 258 | } |
| 259 | |
| 260 | CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr)); |
Jan Harkes | 37461e1 | 2007-07-19 01:48:48 -0700 | [diff] [blame] | 261 | kfree(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | out: |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 263 | mutex_unlock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | return (count ? count : retval); |
| 265 | } |
| 266 | |
| 267 | static int coda_psdev_open(struct inode * inode, struct file * file) |
| 268 | { |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 269 | struct venus_comm *vcp; |
| 270 | int idx, err; |
| 271 | |
Eric W. Biederman | 9fd973e | 2013-01-30 18:50:54 -0800 | [diff] [blame] | 272 | if (task_active_pid_ns(current) != &init_pid_ns) |
| 273 | return -EINVAL; |
| 274 | |
Eric W. Biederman | d83f590 | 2013-01-30 19:21:14 -0800 | [diff] [blame] | 275 | if (current_user_ns() != &init_user_ns) |
| 276 | return -EINVAL; |
| 277 | |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 278 | idx = iminor(inode); |
| 279 | if (idx < 0 || idx >= MAX_CODADEVS) |
| 280 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 282 | err = -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | vcp = &coda_comms[idx]; |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 284 | mutex_lock(&vcp->vc_mutex); |
| 285 | |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 286 | if (!vcp->vc_inuse) { |
| 287 | vcp->vc_inuse++; |
| 288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | INIT_LIST_HEAD(&vcp->vc_pending); |
| 290 | INIT_LIST_HEAD(&vcp->vc_processing); |
| 291 | init_waitqueue_head(&vcp->vc_waitq); |
| 292 | vcp->vc_sb = NULL; |
| 293 | vcp->vc_seq = 0; |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 294 | |
| 295 | file->private_data = vcp; |
| 296 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 299 | mutex_unlock(&vcp->vc_mutex); |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 300 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | |
| 304 | static int coda_psdev_release(struct inode * inode, struct file * file) |
| 305 | { |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 306 | struct venus_comm *vcp = (struct venus_comm *) file->private_data; |
| 307 | struct upc_req *req, *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 309 | if (!vcp || !vcp->vc_inuse ) { |
Fabian Frederick | 6d6bd94 | 2014-06-06 14:36:20 -0700 | [diff] [blame] | 310 | pr_warn("%s: Not open.\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | return -1; |
| 312 | } |
| 313 | |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 314 | mutex_lock(&vcp->vc_mutex); |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 315 | |
| 316 | /* Wakeup clients so they can return. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | list_for_each_entry_safe(req, tmp, &vcp->vc_pending, uc_chain) { |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 318 | list_del(&req->uc_chain); |
| 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | /* Async requests need to be freed here */ |
Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 321 | if (req->uc_flags & CODA_REQ_ASYNC) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr)); |
Jan Harkes | 37461e1 | 2007-07-19 01:48:48 -0700 | [diff] [blame] | 323 | kfree(req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | continue; |
| 325 | } |
Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 326 | req->uc_flags |= CODA_REQ_ABORT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | wake_up(&req->uc_sleep); |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 328 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 330 | list_for_each_entry_safe(req, tmp, &vcp->vc_processing, uc_chain) { |
| 331 | list_del(&req->uc_chain); |
| 332 | |
Jens Axboe | 4aeefdc | 2010-08-03 13:22:51 +0200 | [diff] [blame] | 333 | req->uc_flags |= CODA_REQ_ABORT; |
Jan Harkes | 8706551 | 2007-07-19 01:48:45 -0700 | [diff] [blame] | 334 | wake_up(&req->uc_sleep); |
| 335 | } |
| 336 | |
| 337 | file->private_data = NULL; |
| 338 | vcp->vc_inuse--; |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 339 | mutex_unlock(&vcp->vc_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | return 0; |
| 341 | } |
| 342 | |
| 343 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 344 | static const struct file_operations coda_psdev_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | .owner = THIS_MODULE, |
| 346 | .read = coda_psdev_read, |
| 347 | .write = coda_psdev_write, |
| 348 | .poll = coda_psdev_poll, |
Arnd Bergmann | 9771839 | 2010-04-27 16:24:24 +0200 | [diff] [blame] | 349 | .unlocked_ioctl = coda_psdev_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | .open = coda_psdev_open, |
| 351 | .release = coda_psdev_release, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 352 | .llseek = noop_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | }; |
| 354 | |
| 355 | static int init_coda_psdev(void) |
| 356 | { |
| 357 | int i, err = 0; |
| 358 | if (register_chrdev(CODA_PSDEV_MAJOR, "coda", &coda_psdev_fops)) { |
Fabian Frederick | 6d6bd94 | 2014-06-06 14:36:20 -0700 | [diff] [blame] | 359 | pr_err("%s: unable to get major %d\n", |
| 360 | __func__, CODA_PSDEV_MAJOR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | return -EIO; |
| 362 | } |
gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 363 | coda_psdev_class = class_create(THIS_MODULE, "coda"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | if (IS_ERR(coda_psdev_class)) { |
| 365 | err = PTR_ERR(coda_psdev_class); |
| 366 | goto out_chrdev; |
| 367 | } |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 368 | for (i = 0; i < MAX_CODADEVS; i++) { |
| 369 | mutex_init(&(&coda_comms[i])->vc_mutex); |
Greg Kroah-Hartman | a9b1261 | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 370 | device_create(coda_psdev_class, NULL, |
| 371 | MKDEV(CODA_PSDEV_MAJOR, i), NULL, "cfs%d", i); |
Yoshihisa Abe | da47c19 | 2010-10-25 02:03:46 -0400 | [diff] [blame] | 372 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | coda_sysctl_init(); |
| 374 | goto out; |
| 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | out_chrdev: |
| 377 | unregister_chrdev(CODA_PSDEV_MAJOR, "coda"); |
| 378 | out: |
| 379 | return err; |
| 380 | } |
| 381 | |
Jan Harkes | 5b7f13b | 2007-07-19 01:48:52 -0700 | [diff] [blame] | 382 | MODULE_AUTHOR("Jan Harkes, Peter J. Braam"); |
| 383 | MODULE_DESCRIPTION("Coda Distributed File System VFS interface"); |
| 384 | MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | MODULE_LICENSE("GPL"); |
Jan Harkes | 5b7f13b | 2007-07-19 01:48:52 -0700 | [diff] [blame] | 386 | MODULE_VERSION("6.6"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | static int __init init_coda(void) |
| 389 | { |
| 390 | int status; |
| 391 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | status = coda_init_inodecache(); |
| 394 | if (status) |
| 395 | goto out2; |
| 396 | status = init_coda_psdev(); |
| 397 | if ( status ) { |
Fabian Frederick | d9b4b31 | 2014-06-06 14:36:18 -0700 | [diff] [blame] | 398 | pr_warn("Problem (%d) in init_coda_psdev\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | goto out1; |
| 400 | } |
| 401 | |
| 402 | status = register_filesystem(&coda_fs_type); |
| 403 | if (status) { |
Fabian Frederick | f38cfb2 | 2014-06-06 14:36:19 -0700 | [diff] [blame] | 404 | pr_warn("failed to register filesystem!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | goto out; |
| 406 | } |
| 407 | return 0; |
| 408 | out: |
Greg Kroah-Hartman | 8ab5e4c | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 409 | for (i = 0; i < MAX_CODADEVS; i++) |
Kay Sievers | 62ca879 | 2007-09-25 02:03:03 +0200 | [diff] [blame] | 410 | device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i)); |
gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 411 | class_destroy(coda_psdev_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | unregister_chrdev(CODA_PSDEV_MAJOR, "coda"); |
| 413 | coda_sysctl_clean(); |
| 414 | out1: |
| 415 | coda_destroy_inodecache(); |
| 416 | out2: |
| 417 | return status; |
| 418 | } |
| 419 | |
| 420 | static void __exit exit_coda(void) |
| 421 | { |
| 422 | int err, i; |
| 423 | |
| 424 | err = unregister_filesystem(&coda_fs_type); |
Fabian Frederick | d9b4b31 | 2014-06-06 14:36:18 -0700 | [diff] [blame] | 425 | if (err != 0) |
Fabian Frederick | f38cfb2 | 2014-06-06 14:36:19 -0700 | [diff] [blame] | 426 | pr_warn("failed to unregister filesystem\n"); |
Greg Kroah-Hartman | 8ab5e4c | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 427 | for (i = 0; i < MAX_CODADEVS; i++) |
Kay Sievers | 62ca879 | 2007-09-25 02:03:03 +0200 | [diff] [blame] | 428 | device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i)); |
gregkh@suse.de | 1db560a | 2005-03-23 10:02:26 -0800 | [diff] [blame] | 429 | class_destroy(coda_psdev_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | unregister_chrdev(CODA_PSDEV_MAJOR, "coda"); |
| 431 | coda_sysctl_clean(); |
| 432 | coda_destroy_inodecache(); |
| 433 | } |
| 434 | |
| 435 | module_init(init_coda); |
| 436 | module_exit(exit_coda); |
| 437 | |