psdev.c 10.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *      	An implementation of a loadable kernel mode driver providing
 *		multiple kernel/user space bidirectional communications links.
 *
A
Alan Cox 已提交
5
 * 		Author: 	Alan Cox <alan@lxorguk.ukuu.org.uk>
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 *
 *		This program is free software; you can redistribute it and/or
 *		modify it under the terms of the GNU General Public License
 *		as published by the Free Software Foundation; either version
 *		2 of the License, or (at your option) any later version.
 * 
 *              Adapted to become the Linux 2.0 Coda pseudo device
 *              Peter  Braam  <braam@maths.ox.ac.uk> 
 *              Michael Callahan <mjc@emmy.smith.edu>           
 *
 *              Changes for Linux 2.1
 *              Copyright (c) 1997 Carnegie-Mellon University
 */

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/major.h>
#include <linux/time.h>
25
#include <linux/sched/signal.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37
#include <linux/slab.h>
#include <linux/ioport.h>
#include <linux/fcntl.h>
#include <linux/delay.h>
#include <linux/skbuff.h>
#include <linux/proc_fs.h>
#include <linux/vmalloc.h>
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/poll.h>
#include <linux/init.h>
#include <linux/list.h>
Y
Yoshihisa Abe 已提交
38
#include <linux/mutex.h>
L
Linus Torvalds 已提交
39
#include <linux/device.h>
40
#include <linux/pid_namespace.h>
L
Linus Torvalds 已提交
41
#include <asm/io.h>
A
Al Viro 已提交
42
#include <linux/poll.h>
F
Fabian Frederick 已提交
43
#include <linux/uaccess.h>
L
Linus Torvalds 已提交
44 45 46 47

#include <linux/coda.h>
#include <linux/coda_psdev.h>

48 49
#include "coda_linux.h"

50
#include "coda_int.h"
L
Linus Torvalds 已提交
51 52 53 54 55 56 57

/* statistics */
int           coda_hard;         /* allows signals during upcalls */
unsigned long coda_timeout = 30; /* .. secs, then signals will dequeue */


struct venus_comm coda_comms[MAX_CODADEVS];
58
static struct class *coda_psdev_class;
L
Linus Torvalds 已提交
59 60 61 62 63

/*
 * Device operations
 */

A
Al Viro 已提交
64
static __poll_t coda_psdev_poll(struct file *file, poll_table * wait)
L
Linus Torvalds 已提交
65 66
{
        struct venus_comm *vcp = (struct venus_comm *) file->private_data;
A
Al Viro 已提交
67
	__poll_t mask = POLLOUT | POLLWRNORM;
L
Linus Torvalds 已提交
68 69

	poll_wait(file, &vcp->vc_waitq, wait);
Y
Yoshihisa Abe 已提交
70
	mutex_lock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
71 72
	if (!list_empty(&vcp->vc_pending))
                mask |= POLLIN | POLLRDNORM;
Y
Yoshihisa Abe 已提交
73
	mutex_unlock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
74 75 76 77

	return mask;
}

78
static long coda_psdev_ioctl(struct file * filp, unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
{
	unsigned int data;

	switch(cmd) {
	case CIOC_KERNEL_VERSION:
		data = CODA_KERNEL_VERSION;
		return put_user(data, (int __user *) arg);
	default:
		return -ENOTTY;
	}

	return 0;
}

/*
 *	Receive a message written by Venus to the psdev
 */
 
static ssize_t coda_psdev_write(struct file *file, const char __user *buf, 
				size_t nbytes, loff_t *off)
{
        struct venus_comm *vcp = (struct venus_comm *) file->private_data;
        struct upc_req *req = NULL;
        struct upc_req *tmp;
	struct list_head *lh;
	struct coda_in_hdr hdr;
	ssize_t retval = 0, count = 0;
	int error;

        /* Peek at the opcode, uniquefier */
	if (copy_from_user(&hdr, buf, 2 * sizeof(u_long)))
	        return -EFAULT;

        if (DOWNCALL(hdr.opcode)) {
113
		union outputArgs *dcbuf;
L
Linus Torvalds 已提交
114 115 116
		int size = sizeof(*dcbuf);

		if  ( nbytes < sizeof(struct coda_out_hdr) ) {
117 118
			pr_warn("coda_downcall opc %d uniq %d, not enough!\n",
				hdr.opcode, hdr.unique);
L
Linus Torvalds 已提交
119 120 121 122
			count = nbytes;
			goto out;
		}
		if ( nbytes > size ) {
123
			pr_warn("downcall opc %d, uniq %d, too much!",
124
				hdr.opcode, hdr.unique);
L
Linus Torvalds 已提交
125 126 127 128 129 130 131 132 133 134
		        nbytes = size;
		}
		CODA_ALLOC(dcbuf, union outputArgs *, nbytes);
		if (copy_from_user(dcbuf, buf, nbytes)) {
			CODA_FREE(dcbuf, nbytes);
			retval = -EFAULT;
			goto out;
		}

		/* what downcall errors does Venus handle ? */
135
		error = coda_downcall(vcp, hdr.opcode, dcbuf);
L
Linus Torvalds 已提交
136 137 138

		CODA_FREE(dcbuf, nbytes);
		if (error) {
F
Fabian Frederick 已提交
139 140
			pr_warn("%s: coda_downcall error: %d\n",
				__func__, error);
L
Linus Torvalds 已提交
141 142 143 144 145 146 147 148
			retval = error;
			goto out;
		}
		count = nbytes;
		goto out;
	}
        
	/* Look for the message on the processing queue. */
Y
Yoshihisa Abe 已提交
149
	mutex_lock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157
	list_for_each(lh, &vcp->vc_processing) {
		tmp = list_entry(lh, struct upc_req , uc_chain);
		if (tmp->uc_unique == hdr.unique) {
			req = tmp;
			list_del(&req->uc_chain);
			break;
		}
	}
Y
Yoshihisa Abe 已提交
158
	mutex_unlock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
159 160

	if (!req) {
F
Fabian Frederick 已提交
161 162
		pr_warn("%s: msg (%d, %d) not found\n",
			__func__, hdr.opcode, hdr.unique);
L
Linus Torvalds 已提交
163 164 165 166 167 168
		retval = -ESRCH;
		goto out;
	}

        /* move data into response buffer. */
	if (req->uc_outSize < nbytes) {
F
Fabian Frederick 已提交
169 170 171
		pr_warn("%s: too much cnt: %d, cnt: %ld, opc: %d, uniq: %d.\n",
			__func__, req->uc_outSize, (long)nbytes,
			hdr.opcode, hdr.unique);
L
Linus Torvalds 已提交
172 173 174
		nbytes = req->uc_outSize; /* don't have more space! */
	}
        if (copy_from_user(req->uc_data, buf, nbytes)) {
175
		req->uc_flags |= CODA_REQ_ABORT;
L
Linus Torvalds 已提交
176 177 178 179 180 181
		wake_up(&req->uc_sleep);
		retval = -EFAULT;
		goto out;
	}

	/* adjust outsize. is this useful ?? */
182 183
	req->uc_outSize = nbytes;
	req->uc_flags |= CODA_REQ_WRITE;
L
Linus Torvalds 已提交
184 185 186 187 188 189
	count = nbytes;

	/* Convert filedescriptor into a file handle */
	if (req->uc_opcode == CODA_OPEN_BY_FD) {
		struct coda_open_by_fd_out *outp =
			(struct coda_open_by_fd_out *)req->uc_data;
190 191
		if (!outp->oh.result)
			outp->fh = fget(outp->fd);
L
Linus Torvalds 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
	}

        wake_up(&req->uc_sleep);
out:
        return(count ? count : retval);  
}

/*
 *	Read a message from the kernel to Venus
 */

static ssize_t coda_psdev_read(struct file * file, char __user * buf, 
			       size_t nbytes, loff_t *off)
{
	DECLARE_WAITQUEUE(wait, current);
        struct venus_comm *vcp = (struct venus_comm *) file->private_data;
        struct upc_req *req;
	ssize_t retval = 0, count = 0;

	if (nbytes == 0)
		return 0;

Y
Yoshihisa Abe 已提交
214
	mutex_lock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227

	add_wait_queue(&vcp->vc_waitq, &wait);
	set_current_state(TASK_INTERRUPTIBLE);

	while (list_empty(&vcp->vc_pending)) {
		if (file->f_flags & O_NONBLOCK) {
			retval = -EAGAIN;
			break;
		}
		if (signal_pending(current)) {
			retval = -ERESTARTSYS;
			break;
		}
Y
Yoshihisa Abe 已提交
228
		mutex_unlock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
229
		schedule();
Y
Yoshihisa Abe 已提交
230
		mutex_lock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244
	}

	set_current_state(TASK_RUNNING);
	remove_wait_queue(&vcp->vc_waitq, &wait);

	if (retval)
		goto out;

	req = list_entry(vcp->vc_pending.next, struct upc_req,uc_chain);
	list_del(&req->uc_chain);

	/* Move the input args into userspace */
	count = req->uc_inSize;
	if (nbytes < req->uc_inSize) {
F
Fabian Frederick 已提交
245 246
		pr_warn("%s: Venus read %ld bytes of %d in message\n",
			__func__, (long)nbytes, req->uc_inSize);
L
Linus Torvalds 已提交
247 248 249 250 251 252 253
		count = nbytes;
        }

	if (copy_to_user(buf, req->uc_data, count))
	        retval = -EFAULT;
        
	/* If request was not a signal, enqueue and don't free */
254 255
	if (!(req->uc_flags & CODA_REQ_ASYNC)) {
		req->uc_flags |= CODA_REQ_READ;
256
		list_add_tail(&(req->uc_chain), &vcp->vc_processing);
L
Linus Torvalds 已提交
257 258 259 260
		goto out;
	}

	CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr));
261
	kfree(req);
L
Linus Torvalds 已提交
262
out:
Y
Yoshihisa Abe 已提交
263
	mutex_unlock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
264 265 266 267 268
	return (count ? count : retval);
}

static int coda_psdev_open(struct inode * inode, struct file * file)
{
269 270
	struct venus_comm *vcp;
	int idx, err;
L
Linus Torvalds 已提交
271

272 273 274
	if (task_active_pid_ns(current) != &init_pid_ns)
		return -EINVAL;

275 276 277
	if (current_user_ns() != &init_user_ns)
		return -EINVAL;

L
Linus Torvalds 已提交
278
	idx = iminor(inode);
279
	if (idx < 0 || idx >= MAX_CODADEVS)
L
Linus Torvalds 已提交
280 281
		return -ENODEV;

282
	err = -EBUSY;
L
Linus Torvalds 已提交
283
	vcp = &coda_comms[idx];
Y
Yoshihisa Abe 已提交
284 285
	mutex_lock(&vcp->vc_mutex);

286 287 288
	if (!vcp->vc_inuse) {
		vcp->vc_inuse++;

L
Linus Torvalds 已提交
289 290 291 292 293
		INIT_LIST_HEAD(&vcp->vc_pending);
		INIT_LIST_HEAD(&vcp->vc_processing);
		init_waitqueue_head(&vcp->vc_waitq);
		vcp->vc_sb = NULL;
		vcp->vc_seq = 0;
294 295 296

		file->private_data = vcp;
		err = 0;
L
Linus Torvalds 已提交
297 298
	}

Y
Yoshihisa Abe 已提交
299
	mutex_unlock(&vcp->vc_mutex);
300
	return err;
L
Linus Torvalds 已提交
301 302 303 304 305
}


static int coda_psdev_release(struct inode * inode, struct file * file)
{
306 307
	struct venus_comm *vcp = (struct venus_comm *) file->private_data;
	struct upc_req *req, *tmp;
L
Linus Torvalds 已提交
308

309
	if (!vcp || !vcp->vc_inuse ) {
F
Fabian Frederick 已提交
310
		pr_warn("%s: Not open.\n", __func__);
L
Linus Torvalds 已提交
311 312 313
		return -1;
	}

Y
Yoshihisa Abe 已提交
314
	mutex_lock(&vcp->vc_mutex);
315 316

	/* Wakeup clients so they can return. */
L
Linus Torvalds 已提交
317
	list_for_each_entry_safe(req, tmp, &vcp->vc_pending, uc_chain) {
318 319
		list_del(&req->uc_chain);

L
Linus Torvalds 已提交
320
		/* Async requests need to be freed here */
321
		if (req->uc_flags & CODA_REQ_ASYNC) {
L
Linus Torvalds 已提交
322
			CODA_FREE(req->uc_data, sizeof(struct coda_in_hdr));
323
			kfree(req);
L
Linus Torvalds 已提交
324 325
			continue;
		}
326
		req->uc_flags |= CODA_REQ_ABORT;
L
Linus Torvalds 已提交
327
		wake_up(&req->uc_sleep);
328 329 330 331 332
	}

	list_for_each_entry_safe(req, tmp, &vcp->vc_processing, uc_chain) {
		list_del(&req->uc_chain);

333
		req->uc_flags |= CODA_REQ_ABORT;
334 335
		wake_up(&req->uc_sleep);
	}
L
Linus Torvalds 已提交
336

337 338
	file->private_data = NULL;
	vcp->vc_inuse--;
Y
Yoshihisa Abe 已提交
339
	mutex_unlock(&vcp->vc_mutex);
L
Linus Torvalds 已提交
340 341 342 343
	return 0;
}


344
static const struct file_operations coda_psdev_fops = {
L
Linus Torvalds 已提交
345 346 347 348
	.owner		= THIS_MODULE,
	.read		= coda_psdev_read,
	.write		= coda_psdev_write,
	.poll		= coda_psdev_poll,
349
	.unlocked_ioctl	= coda_psdev_ioctl,
L
Linus Torvalds 已提交
350 351
	.open		= coda_psdev_open,
	.release	= coda_psdev_release,
352
	.llseek		= noop_llseek,
L
Linus Torvalds 已提交
353 354 355 356 357 358
};

static int init_coda_psdev(void)
{
	int i, err = 0;
	if (register_chrdev(CODA_PSDEV_MAJOR, "coda", &coda_psdev_fops)) {
F
Fabian Frederick 已提交
359 360
		pr_err("%s: unable to get major %d\n",
		       __func__, CODA_PSDEV_MAJOR);
L
Linus Torvalds 已提交
361 362
              return -EIO;
	}
363
	coda_psdev_class = class_create(THIS_MODULE, "coda");
L
Linus Torvalds 已提交
364 365 366 367
	if (IS_ERR(coda_psdev_class)) {
		err = PTR_ERR(coda_psdev_class);
		goto out_chrdev;
	}		
Y
Yoshihisa Abe 已提交
368 369
	for (i = 0; i < MAX_CODADEVS; i++) {
		mutex_init(&(&coda_comms[i])->vc_mutex);
370 371
		device_create(coda_psdev_class, NULL,
			      MKDEV(CODA_PSDEV_MAJOR, i), NULL, "cfs%d", i);
Y
Yoshihisa Abe 已提交
372
	}
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381
	coda_sysctl_init();
	goto out;

out_chrdev:
	unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
out:
	return err;
}

J
Jan Harkes 已提交
382 383 384
MODULE_AUTHOR("Jan Harkes, Peter J. Braam");
MODULE_DESCRIPTION("Coda Distributed File System VFS interface");
MODULE_ALIAS_CHARDEV_MAJOR(CODA_PSDEV_MAJOR);
L
Linus Torvalds 已提交
385
MODULE_LICENSE("GPL");
J
Jan Harkes 已提交
386
MODULE_VERSION("6.6");
L
Linus Torvalds 已提交
387 388 389 390 391 392 393 394 395 396 397

static int __init init_coda(void)
{
	int status;
	int i;

	status = coda_init_inodecache();
	if (status)
		goto out2;
	status = init_coda_psdev();
	if ( status ) {
398
		pr_warn("Problem (%d) in init_coda_psdev\n", status);
L
Linus Torvalds 已提交
399 400 401 402 403
		goto out1;
	}
	
	status = register_filesystem(&coda_fs_type);
	if (status) {
404
		pr_warn("failed to register filesystem!\n");
L
Linus Torvalds 已提交
405 406 407 408
		goto out;
	}
	return 0;
out:
409
	for (i = 0; i < MAX_CODADEVS; i++)
410
		device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i));
411
	class_destroy(coda_psdev_class);
L
Linus Torvalds 已提交
412 413 414 415 416 417 418 419 420 421 422 423 424
	unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
	coda_sysctl_clean();
out1:
	coda_destroy_inodecache();
out2:
	return status;
}

static void __exit exit_coda(void)
{
        int err, i;

	err = unregister_filesystem(&coda_fs_type);
425
	if (err != 0)
426
		pr_warn("failed to unregister filesystem\n");
427
	for (i = 0; i < MAX_CODADEVS; i++)
428
		device_destroy(coda_psdev_class, MKDEV(CODA_PSDEV_MAJOR, i));
429
	class_destroy(coda_psdev_class);
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437
	unregister_chrdev(CODA_PSDEV_MAJOR, "coda");
	coda_sysctl_clean();
	coda_destroy_inodecache();
}

module_init(init_coda);
module_exit(exit_coda);