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