1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * An implementation of a loadable kernel mode driver providing
4 * multiple kernel/user space bidirectional communications links.
6 * Author: Alan Cox <alan@lxorguk.ukuu.org.uk>
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>
12 * Changes for Linux 2.1
13 * Copyright (c) 1997 Carnegie-Mellon University
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>
21 #include <linux/sched/signal.h>
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>
28 #include <linux/vmalloc.h>
30 #include <linux/file.h>
31 #include <linux/poll.h>
32 #include <linux/init.h>
33 #include <linux/list.h>
34 #include <linux/mutex.h>
35 #include <linux/device.h>
36 #include <linux/pid_namespace.h>
38 #include <linux/uaccess.h>
40 #include <linux/coda.h>
41 #include "coda_psdev.h"
42 #include "coda_linux.h"
47 int coda_hard
; /* allows signals during upcalls */
48 unsigned long coda_timeout
= 30; /* .. secs, then signals will dequeue */
51 struct venus_comm coda_comms
[MAX_CODADEVS
];
52 static struct class *coda_psdev_class
;
58 static __poll_t
coda_psdev_poll(struct file
*file
, poll_table
* wait
)
60 struct venus_comm
*vcp
= (struct venus_comm
*) file
->private_data
;
61 __poll_t mask
= EPOLLOUT
| EPOLLWRNORM
;
63 poll_wait(file
, &vcp
->vc_waitq
, wait
);
64 mutex_lock(&vcp
->vc_mutex
);
65 if (!list_empty(&vcp
->vc_pending
))
66 mask
|= EPOLLIN
| EPOLLRDNORM
;
67 mutex_unlock(&vcp
->vc_mutex
);
72 static long coda_psdev_ioctl(struct file
* filp
, unsigned int cmd
, unsigned long arg
)
77 case CIOC_KERNEL_VERSION
:
78 data
= CODA_KERNEL_VERSION
;
79 return put_user(data
, (int __user
*) arg
);
88 * Receive a message written by Venus to the psdev
91 static ssize_t
coda_psdev_write(struct file
*file
, const char __user
*buf
,
92 size_t nbytes
, loff_t
*off
)
94 struct venus_comm
*vcp
= (struct venus_comm
*) file
->private_data
;
95 struct upc_req
*req
= NULL
;
98 struct coda_in_hdr hdr
;
99 ssize_t retval
= 0, count
= 0;
102 /* make sure there is enough to copy out the (opcode, unique) values */
103 if (nbytes
< (2 * sizeof(u_int32_t
)))
106 /* Peek at the opcode, uniquefier */
107 if (copy_from_user(&hdr
, buf
, 2 * sizeof(u_int32_t
)))
110 if (DOWNCALL(hdr
.opcode
)) {
111 union outputArgs
*dcbuf
;
112 int size
= sizeof(*dcbuf
);
114 if ( nbytes
< sizeof(struct coda_out_hdr
) ) {
115 pr_warn("coda_downcall opc %d uniq %d, not enough!\n",
116 hdr
.opcode
, hdr
.unique
);
120 if ( nbytes
> size
) {
121 pr_warn("downcall opc %d, uniq %d, too much!",
122 hdr
.opcode
, hdr
.unique
);
126 dcbuf
= vmemdup_user(buf
, nbytes
);
128 retval
= PTR_ERR(dcbuf
);
132 /* what downcall errors does Venus handle ? */
133 error
= coda_downcall(vcp
, hdr
.opcode
, dcbuf
, nbytes
);
137 pr_warn("%s: coda_downcall error: %d\n",
146 /* Look for the message on the processing queue. */
147 mutex_lock(&vcp
->vc_mutex
);
148 list_for_each(lh
, &vcp
->vc_processing
) {
149 tmp
= list_entry(lh
, struct upc_req
, uc_chain
);
150 if (tmp
->uc_unique
== hdr
.unique
) {
152 list_del(&req
->uc_chain
);
156 mutex_unlock(&vcp
->vc_mutex
);
159 pr_warn("%s: msg (%d, %d) not found\n",
160 __func__
, hdr
.opcode
, hdr
.unique
);
165 /* move data into response buffer. */
166 if (req
->uc_outSize
< nbytes
) {
167 pr_warn("%s: too much cnt: %d, cnt: %ld, opc: %d, uniq: %d.\n",
168 __func__
, req
->uc_outSize
, (long)nbytes
,
169 hdr
.opcode
, hdr
.unique
);
170 nbytes
= req
->uc_outSize
; /* don't have more space! */
172 if (copy_from_user(req
->uc_data
, buf
, nbytes
)) {
173 req
->uc_flags
|= CODA_REQ_ABORT
;
174 wake_up(&req
->uc_sleep
);
179 /* adjust outsize. is this useful ?? */
180 req
->uc_outSize
= nbytes
;
181 req
->uc_flags
|= CODA_REQ_WRITE
;
184 /* Convert filedescriptor into a file handle */
185 if (req
->uc_opcode
== CODA_OPEN_BY_FD
) {
186 struct coda_open_by_fd_out
*outp
=
187 (struct coda_open_by_fd_out
*)req
->uc_data
;
188 if (!outp
->oh
.result
) {
189 outp
->fh
= fget(outp
->fd
);
195 wake_up(&req
->uc_sleep
);
197 return(count
? count
: retval
);
201 * Read a message from the kernel to Venus
204 static ssize_t
coda_psdev_read(struct file
* file
, char __user
* buf
,
205 size_t nbytes
, loff_t
*off
)
207 DECLARE_WAITQUEUE(wait
, current
);
208 struct venus_comm
*vcp
= (struct venus_comm
*) file
->private_data
;
210 ssize_t retval
= 0, count
= 0;
215 mutex_lock(&vcp
->vc_mutex
);
217 add_wait_queue(&vcp
->vc_waitq
, &wait
);
218 set_current_state(TASK_INTERRUPTIBLE
);
220 while (list_empty(&vcp
->vc_pending
)) {
221 if (file
->f_flags
& O_NONBLOCK
) {
225 if (signal_pending(current
)) {
226 retval
= -ERESTARTSYS
;
229 mutex_unlock(&vcp
->vc_mutex
);
231 mutex_lock(&vcp
->vc_mutex
);
234 set_current_state(TASK_RUNNING
);
235 remove_wait_queue(&vcp
->vc_waitq
, &wait
);
240 req
= list_entry(vcp
->vc_pending
.next
, struct upc_req
,uc_chain
);
241 list_del(&req
->uc_chain
);
243 /* Move the input args into userspace */
244 count
= req
->uc_inSize
;
245 if (nbytes
< req
->uc_inSize
) {
246 pr_warn("%s: Venus read %ld bytes of %d in message\n",
247 __func__
, (long)nbytes
, req
->uc_inSize
);
251 if (copy_to_user(buf
, req
->uc_data
, count
))
254 /* If request was not a signal, enqueue and don't free */
255 if (!(req
->uc_flags
& CODA_REQ_ASYNC
)) {
256 req
->uc_flags
|= CODA_REQ_READ
;
257 list_add_tail(&(req
->uc_chain
), &vcp
->vc_processing
);
261 kvfree(req
->uc_data
);
264 mutex_unlock(&vcp
->vc_mutex
);
265 return (count
? count
: retval
);
268 static int coda_psdev_open(struct inode
* inode
, struct file
* file
)
270 struct venus_comm
*vcp
;
273 if (task_active_pid_ns(current
) != &init_pid_ns
)
276 if (current_user_ns() != &init_user_ns
)
280 if (idx
< 0 || idx
>= MAX_CODADEVS
)
284 vcp
= &coda_comms
[idx
];
285 mutex_lock(&vcp
->vc_mutex
);
287 if (!vcp
->vc_inuse
) {
290 INIT_LIST_HEAD(&vcp
->vc_pending
);
291 INIT_LIST_HEAD(&vcp
->vc_processing
);
292 init_waitqueue_head(&vcp
->vc_waitq
);
296 file
->private_data
= vcp
;
300 mutex_unlock(&vcp
->vc_mutex
);
305 static int coda_psdev_release(struct inode
* inode
, struct file
* file
)
307 struct venus_comm
*vcp
= (struct venus_comm
*) file
->private_data
;
308 struct upc_req
*req
, *tmp
;
310 if (!vcp
|| !vcp
->vc_inuse
) {
311 pr_warn("%s: Not open.\n", __func__
);
315 mutex_lock(&vcp
->vc_mutex
);
317 /* Wakeup clients so they can return. */
318 list_for_each_entry_safe(req
, tmp
, &vcp
->vc_pending
, uc_chain
) {
319 list_del(&req
->uc_chain
);
321 /* Async requests need to be freed here */
322 if (req
->uc_flags
& CODA_REQ_ASYNC
) {
323 kvfree(req
->uc_data
);
327 req
->uc_flags
|= CODA_REQ_ABORT
;
328 wake_up(&req
->uc_sleep
);
331 list_for_each_entry_safe(req
, tmp
, &vcp
->vc_processing
, uc_chain
) {
332 list_del(&req
->uc_chain
);
334 req
->uc_flags
|= CODA_REQ_ABORT
;
335 wake_up(&req
->uc_sleep
);
338 file
->private_data
= NULL
;
340 mutex_unlock(&vcp
->vc_mutex
);
345 static const struct file_operations coda_psdev_fops
= {
346 .owner
= THIS_MODULE
,
347 .read
= coda_psdev_read
,
348 .write
= coda_psdev_write
,
349 .poll
= coda_psdev_poll
,
350 .unlocked_ioctl
= coda_psdev_ioctl
,
351 .open
= coda_psdev_open
,
352 .release
= coda_psdev_release
,
353 .llseek
= noop_llseek
,
356 static int __init
init_coda_psdev(void)
359 if (register_chrdev(CODA_PSDEV_MAJOR
, "coda", &coda_psdev_fops
)) {
360 pr_err("%s: unable to get major %d\n",
361 __func__
, CODA_PSDEV_MAJOR
);
364 coda_psdev_class
= class_create("coda");
365 if (IS_ERR(coda_psdev_class
)) {
366 err
= PTR_ERR(coda_psdev_class
);
369 for (i
= 0; i
< MAX_CODADEVS
; i
++) {
370 mutex_init(&(&coda_comms
[i
])->vc_mutex
);
371 device_create(coda_psdev_class
, NULL
,
372 MKDEV(CODA_PSDEV_MAJOR
, i
), NULL
, "cfs%d", i
);
378 unregister_chrdev(CODA_PSDEV_MAJOR
, "coda");
383 MODULE_AUTHOR("Jan Harkes, Peter J. Braam");
384 MODULE_DESCRIPTION("Coda Distributed File System VFS interface");
385 MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR
);
386 MODULE_LICENSE("GPL");
387 MODULE_VERSION("7.2");
389 static int __init
init_coda(void)
394 status
= coda_init_inodecache();
397 status
= init_coda_psdev();
399 pr_warn("Problem (%d) in init_coda_psdev\n", status
);
403 status
= register_filesystem(&coda_fs_type
);
405 pr_warn("failed to register filesystem!\n");
410 for (i
= 0; i
< MAX_CODADEVS
; i
++)
411 device_destroy(coda_psdev_class
, MKDEV(CODA_PSDEV_MAJOR
, i
));
412 class_destroy(coda_psdev_class
);
413 unregister_chrdev(CODA_PSDEV_MAJOR
, "coda");
416 coda_destroy_inodecache();
421 static void __exit
exit_coda(void)
425 err
= unregister_filesystem(&coda_fs_type
);
427 pr_warn("failed to unregister filesystem\n");
428 for (i
= 0; i
< MAX_CODADEVS
; i
++)
429 device_destroy(coda_psdev_class
, MKDEV(CODA_PSDEV_MAJOR
, i
));
430 class_destroy(coda_psdev_class
);
431 unregister_chrdev(CODA_PSDEV_MAJOR
, "coda");
433 coda_destroy_inodecache();
436 module_init(init_coda
);
437 module_exit(exit_coda
);