blob: 0ceef32e6fae0c986bb4921799f1256ccfb12e96 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * An implementation of a loadable kernel mode driver providing
4 * multiple kernel/user space bidirectional communications links.
5 *
Alan Cox526719b2008-10-27 15:19:48 +00006 * Author: Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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 Molnar174cd4b2017-02-02 19:15:33 +010021#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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 Torvalds1da177e2005-04-16 15:20:36 -070028#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 Abeda47c192010-10-25 02:03:46 -040034#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/device.h>
Eric W. Biederman9fd973e2013-01-30 18:50:54 -080036#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
Fabian Frederick834b46c2014-08-08 14:20:33 -070038#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include <linux/coda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/coda_psdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Al Viro31a203d2011-01-12 16:36:09 -050043#include "coda_linux.h"
44
Adrian Bunkc98d8cf2006-03-24 03:15:53 -080045#include "coda_int.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/* statistics */
48int coda_hard; /* allows signals during upcalls */
49unsigned long coda_timeout = 30; /* .. secs, then signals will dequeue */
50
51
52struct venus_comm coda_comms[MAX_CODADEVS];
gregkh@suse.de1db560a2005-03-23 10:02:26 -080053static struct class *coda_psdev_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
56 * Device operations
57 */
58
Al Viro076ccb72017-07-03 01:02:18 -040059static __poll_t coda_psdev_poll(struct file *file, poll_table * wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
Linus Torvaldsa9a08842018-02-11 14:34:03 -080062 __poll_t mask = EPOLLOUT | EPOLLWRNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 poll_wait(file, &vcp->vc_waitq, wait);
Yoshihisa Abeda47c192010-10-25 02:03:46 -040065 mutex_lock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (!list_empty(&vcp->vc_pending))
Linus Torvaldsa9a08842018-02-11 14:34:03 -080067 mask |= EPOLLIN | EPOLLRDNORM;
Yoshihisa Abeda47c192010-10-25 02:03:46 -040068 mutex_unlock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 return mask;
71}
72
Arnd Bergmann97718392010-04-27 16:24:24 +020073static long coda_psdev_ioctl(struct file * filp, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 unsigned int data;
76
77 switch(cmd) {
78 case CIOC_KERNEL_VERSION:
79 data = CODA_KERNEL_VERSION;
80 return put_user(data, (int __user *) arg);
81 default:
82 return -ENOTTY;
83 }
84
85 return 0;
86}
87
88/*
89 * Receive a message written by Venus to the psdev
90 */
91
92static ssize_t coda_psdev_write(struct file *file, const char __user *buf,
93 size_t nbytes, loff_t *off)
94{
95 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
96 struct upc_req *req = NULL;
97 struct upc_req *tmp;
98 struct list_head *lh;
99 struct coda_in_hdr hdr;
100 ssize_t retval = 0, count = 0;
101 int error;
102
103 /* Peek at the opcode, uniquefier */
104 if (copy_from_user(&hdr, buf, 2 * sizeof(u_long)))
105 return -EFAULT;
106
107 if (DOWNCALL(hdr.opcode)) {
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -0400108 union outputArgs *dcbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 int size = sizeof(*dcbuf);
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 if ( nbytes < sizeof(struct coda_out_hdr) ) {
Fabian Frederickd9b4b312014-06-06 14:36:18 -0700112 pr_warn("coda_downcall opc %d uniq %d, not enough!\n",
113 hdr.opcode, hdr.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 count = nbytes;
115 goto out;
116 }
117 if ( nbytes > size ) {
Fabian Frederickf38cfb252014-06-06 14:36:19 -0700118 pr_warn("downcall opc %d, uniq %d, too much!",
Fabian Frederickd9b4b312014-06-06 14:36:18 -0700119 hdr.opcode, hdr.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 nbytes = size;
121 }
122 CODA_ALLOC(dcbuf, union outputArgs *, nbytes);
123 if (copy_from_user(dcbuf, buf, nbytes)) {
124 CODA_FREE(dcbuf, nbytes);
125 retval = -EFAULT;
126 goto out;
127 }
128
129 /* what downcall errors does Venus handle ? */
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -0400130 error = coda_downcall(vcp, hdr.opcode, dcbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 CODA_FREE(dcbuf, nbytes);
133 if (error) {
Fabian Frederick6d6bd942014-06-06 14:36:20 -0700134 pr_warn("%s: coda_downcall error: %d\n",
135 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 retval = error;
137 goto out;
138 }
139 count = nbytes;
140 goto out;
141 }
142
143 /* Look for the message on the processing queue. */
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400144 mutex_lock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 list_for_each(lh, &vcp->vc_processing) {
146 tmp = list_entry(lh, struct upc_req , uc_chain);
147 if (tmp->uc_unique == hdr.unique) {
148 req = tmp;
149 list_del(&req->uc_chain);
150 break;
151 }
152 }
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400153 mutex_unlock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 if (!req) {
Fabian Frederick6d6bd942014-06-06 14:36:20 -0700156 pr_warn("%s: msg (%d, %d) not found\n",
157 __func__, hdr.opcode, hdr.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 retval = -ESRCH;
159 goto out;
160 }
161
162 /* move data into response buffer. */
163 if (req->uc_outSize < nbytes) {
Fabian Frederick6d6bd942014-06-06 14:36:20 -0700164 pr_warn("%s: too much cnt: %d, cnt: %ld, opc: %d, uniq: %d.\n",
165 __func__, req->uc_outSize, (long)nbytes,
166 hdr.opcode, hdr.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 nbytes = req->uc_outSize; /* don't have more space! */
168 }
169 if (copy_from_user(req->uc_data, buf, nbytes)) {
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200170 req->uc_flags |= CODA_REQ_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 wake_up(&req->uc_sleep);
172 retval = -EFAULT;
173 goto out;
174 }
175
176 /* adjust outsize. is this useful ?? */
Jan Harkes112d4212010-09-17 23:26:01 -0400177 req->uc_outSize = nbytes;
178 req->uc_flags |= CODA_REQ_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 count = nbytes;
180
181 /* Convert filedescriptor into a file handle */
182 if (req->uc_opcode == CODA_OPEN_BY_FD) {
183 struct coda_open_by_fd_out *outp =
184 (struct coda_open_by_fd_out *)req->uc_data;
Jan Harkes38c2e432007-07-19 01:48:41 -0700185 if (!outp->oh.result)
186 outp->fh = fget(outp->fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
189 wake_up(&req->uc_sleep);
190out:
191 return(count ? count : retval);
192}
193
194/*
195 * Read a message from the kernel to Venus
196 */
197
198static ssize_t coda_psdev_read(struct file * file, char __user * buf,
199 size_t nbytes, loff_t *off)
200{
201 DECLARE_WAITQUEUE(wait, current);
202 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
203 struct upc_req *req;
204 ssize_t retval = 0, count = 0;
205
206 if (nbytes == 0)
207 return 0;
208
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400209 mutex_lock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 add_wait_queue(&vcp->vc_waitq, &wait);
212 set_current_state(TASK_INTERRUPTIBLE);
213
214 while (list_empty(&vcp->vc_pending)) {
215 if (file->f_flags & O_NONBLOCK) {
216 retval = -EAGAIN;
217 break;
218 }
219 if (signal_pending(current)) {
220 retval = -ERESTARTSYS;
221 break;
222 }
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400223 mutex_unlock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 schedule();
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400225 mutex_lock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 set_current_state(TASK_RUNNING);
229 remove_wait_queue(&vcp->vc_waitq, &wait);
230
231 if (retval)
232 goto out;
233
234 req = list_entry(vcp->vc_pending.next, struct upc_req,uc_chain);
235 list_del(&req->uc_chain);
236
237 /* Move the input args into userspace */
238 count = req->uc_inSize;
239 if (nbytes < req->uc_inSize) {
Fabian Frederick6d6bd942014-06-06 14:36:20 -0700240 pr_warn("%s: Venus read %ld bytes of %d in message\n",
241 __func__, (long)nbytes, req->uc_inSize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 count = nbytes;
243 }
244
245 if (copy_to_user(buf, req->uc_data, count))
246 retval = -EFAULT;
247
248 /* If request was not a signal, enqueue and don't free */
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200249 if (!(req->uc_flags & CODA_REQ_ASYNC)) {
250 req->uc_flags |= CODA_REQ_READ;
Akinobu Mita8e130592006-06-26 00:24:37 -0700251 list_add_tail(&(req->uc_chain), &vcp->vc_processing);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 goto out;
253 }
254
255 CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr));
Jan Harkes37461e12007-07-19 01:48:48 -0700256 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257out:
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400258 mutex_unlock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return (count ? count : retval);
260}
261
262static int coda_psdev_open(struct inode * inode, struct file * file)
263{
Jan Harkes87065512007-07-19 01:48:45 -0700264 struct venus_comm *vcp;
265 int idx, err;
266
Eric W. Biederman9fd973e2013-01-30 18:50:54 -0800267 if (task_active_pid_ns(current) != &init_pid_ns)
268 return -EINVAL;
269
Eric W. Biedermand83f5902013-01-30 19:21:14 -0800270 if (current_user_ns() != &init_user_ns)
271 return -EINVAL;
272
Jan Harkes87065512007-07-19 01:48:45 -0700273 idx = iminor(inode);
274 if (idx < 0 || idx >= MAX_CODADEVS)
275 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Jan Harkes87065512007-07-19 01:48:45 -0700277 err = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 vcp = &coda_comms[idx];
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400279 mutex_lock(&vcp->vc_mutex);
280
Jan Harkes87065512007-07-19 01:48:45 -0700281 if (!vcp->vc_inuse) {
282 vcp->vc_inuse++;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 INIT_LIST_HEAD(&vcp->vc_pending);
285 INIT_LIST_HEAD(&vcp->vc_processing);
286 init_waitqueue_head(&vcp->vc_waitq);
287 vcp->vc_sb = NULL;
288 vcp->vc_seq = 0;
Jan Harkes87065512007-07-19 01:48:45 -0700289
290 file->private_data = vcp;
291 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400294 mutex_unlock(&vcp->vc_mutex);
Jan Harkes87065512007-07-19 01:48:45 -0700295 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298
299static int coda_psdev_release(struct inode * inode, struct file * file)
300{
Jan Harkes87065512007-07-19 01:48:45 -0700301 struct venus_comm *vcp = (struct venus_comm *) file->private_data;
302 struct upc_req *req, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Jan Harkes87065512007-07-19 01:48:45 -0700304 if (!vcp || !vcp->vc_inuse ) {
Fabian Frederick6d6bd942014-06-06 14:36:20 -0700305 pr_warn("%s: Not open.\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return -1;
307 }
308
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400309 mutex_lock(&vcp->vc_mutex);
Jan Harkes87065512007-07-19 01:48:45 -0700310
311 /* Wakeup clients so they can return. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 list_for_each_entry_safe(req, tmp, &vcp->vc_pending, uc_chain) {
Jan Harkes87065512007-07-19 01:48:45 -0700313 list_del(&req->uc_chain);
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* Async requests need to be freed here */
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200316 if (req->uc_flags & CODA_REQ_ASYNC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr));
Jan Harkes37461e12007-07-19 01:48:48 -0700318 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 continue;
320 }
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200321 req->uc_flags |= CODA_REQ_ABORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 wake_up(&req->uc_sleep);
Jan Harkes87065512007-07-19 01:48:45 -0700323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Jan Harkes87065512007-07-19 01:48:45 -0700325 list_for_each_entry_safe(req, tmp, &vcp->vc_processing, uc_chain) {
326 list_del(&req->uc_chain);
327
Jens Axboe4aeefdc2010-08-03 13:22:51 +0200328 req->uc_flags |= CODA_REQ_ABORT;
Jan Harkes87065512007-07-19 01:48:45 -0700329 wake_up(&req->uc_sleep);
330 }
331
332 file->private_data = NULL;
333 vcp->vc_inuse--;
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400334 mutex_unlock(&vcp->vc_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336}
337
338
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800339static const struct file_operations coda_psdev_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 .owner = THIS_MODULE,
341 .read = coda_psdev_read,
342 .write = coda_psdev_write,
343 .poll = coda_psdev_poll,
Arnd Bergmann97718392010-04-27 16:24:24 +0200344 .unlocked_ioctl = coda_psdev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 .open = coda_psdev_open,
346 .release = coda_psdev_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200347 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348};
349
350static int init_coda_psdev(void)
351{
352 int i, err = 0;
353 if (register_chrdev(CODA_PSDEV_MAJOR, "coda", &coda_psdev_fops)) {
Fabian Frederick6d6bd942014-06-06 14:36:20 -0700354 pr_err("%s: unable to get major %d\n",
355 __func__, CODA_PSDEV_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return -EIO;
357 }
gregkh@suse.de1db560a2005-03-23 10:02:26 -0800358 coda_psdev_class = class_create(THIS_MODULE, "coda");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (IS_ERR(coda_psdev_class)) {
360 err = PTR_ERR(coda_psdev_class);
361 goto out_chrdev;
362 }
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400363 for (i = 0; i < MAX_CODADEVS; i++) {
364 mutex_init(&(&coda_comms[i])->vc_mutex);
Greg Kroah-Hartmana9b12612008-07-21 20:03:34 -0700365 device_create(coda_psdev_class, NULL,
366 MKDEV(CODA_PSDEV_MAJOR, i), NULL, "cfs%d", i);
Yoshihisa Abeda47c192010-10-25 02:03:46 -0400367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 coda_sysctl_init();
369 goto out;
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371out_chrdev:
372 unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
373out:
374 return err;
375}
376
Jan Harkes5b7f13b2007-07-19 01:48:52 -0700377MODULE_AUTHOR("Jan Harkes, Peter J. Braam");
378MODULE_DESCRIPTION("Coda Distributed File System VFS interface");
379MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380MODULE_LICENSE("GPL");
Jan Harkes5b7f13b2007-07-19 01:48:52 -0700381MODULE_VERSION("6.6");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383static int __init init_coda(void)
384{
385 int status;
386 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 status = coda_init_inodecache();
389 if (status)
390 goto out2;
391 status = init_coda_psdev();
392 if ( status ) {
Fabian Frederickd9b4b312014-06-06 14:36:18 -0700393 pr_warn("Problem (%d) in init_coda_psdev\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 goto out1;
395 }
396
397 status = register_filesystem(&coda_fs_type);
398 if (status) {
Fabian Frederickf38cfb252014-06-06 14:36:19 -0700399 pr_warn("failed to register filesystem!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 goto out;
401 }
402 return 0;
403out:
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -0700404 for (i = 0; i < MAX_CODADEVS; i++)
Kay Sievers62ca8792007-09-25 02:03:03 +0200405 device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i));
gregkh@suse.de1db560a2005-03-23 10:02:26 -0800406 class_destroy(coda_psdev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
408 coda_sysctl_clean();
409out1:
410 coda_destroy_inodecache();
411out2:
412 return status;
413}
414
415static void __exit exit_coda(void)
416{
417 int err, i;
418
419 err = unregister_filesystem(&coda_fs_type);
Fabian Frederickd9b4b312014-06-06 14:36:18 -0700420 if (err != 0)
Fabian Frederickf38cfb252014-06-06 14:36:19 -0700421 pr_warn("failed to unregister filesystem\n");
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -0700422 for (i = 0; i < MAX_CODADEVS; i++)
Kay Sievers62ca8792007-09-25 02:03:03 +0200423 device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i));
gregkh@suse.de1db560a2005-03-23 10:02:26 -0800424 class_destroy(coda_psdev_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
426 coda_sysctl_clean();
427 coda_destroy_inodecache();
428}
429
430module_init(init_coda);
431module_exit(exit_coda);
432