blob: b0b9cda41928087a53212f1085dc268dbfd6f432 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Pioctl operations for Coda.
John Kacur1977bb22010-05-05 15:15:35 +02003 * Original version: (C) 1996 Peter Braam
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Rewritten for Linux 2.1: (C) 1997 Carnegie Mellon University
5 *
6 * Carnegie Mellon encourages users of this code to contribute improvements
7 * to the Coda project. Contact Peter Braam <coda@cs.cmu.edu>.
8 */
9
10#include <linux/types.h>
11#include <linux/kernel.h>
12#include <linux/time.h>
13#include <linux/fs.h>
14#include <linux/stat.h>
15#include <linux/errno.h>
16#include <linux/string.h>
17#include <linux/namei.h>
18#include <linux/module.h>
Fabian Frederick834b46c2014-08-08 14:20:33 -070019#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <linux/coda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/coda_psdev.h>
23
Al Viro31a203d2011-01-12 16:36:09 -050024#include "coda_linux.h"
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* pioctl ops */
Al Viro10556cb2011-06-20 19:28:19 -040027static int coda_ioctl_permission(struct inode *inode, int mask);
John Kacur2ff82f82010-05-05 15:15:34 +020028static long coda_pioctl(struct file *filp, unsigned int cmd,
29 unsigned long user_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/* exported from this file */
John Kacur1977bb22010-05-05 15:15:35 +020032const struct inode_operations coda_ioctl_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 .permission = coda_ioctl_permission,
34 .setattr = coda_setattr,
35};
36
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080037const struct file_operations coda_ioctl_operations = {
John Kacur2ff82f82010-05-05 15:15:34 +020038 .unlocked_ioctl = coda_pioctl,
Arnd Bergmann6038f372010-08-15 18:52:59 +020039 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
42/* the coda pioctl inode ops */
Al Viro10556cb2011-06-20 19:28:19 -040043static int coda_ioctl_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Miklos Szeredif696a362008-07-31 13:41:58 +020045 return (mask & MAY_EXEC) ? -EACCES : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
John Kacur2ff82f82010-05-05 15:15:34 +020048static long coda_pioctl(struct file *filp, unsigned int cmd,
49 unsigned long user_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Al Viro2d8f3032008-07-22 09:59:21 -040051 struct path path;
John Kacur1977bb22010-05-05 15:15:35 +020052 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 struct PioctlData data;
Al Viro496ad9a2013-01-23 17:07:38 -050054 struct inode *inode = file_inode(filp);
John Kacur1977bb22010-05-05 15:15:35 +020055 struct inode *target_inode = NULL;
56 struct coda_inode_info *cnp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
John Kacur1977bb22010-05-05 15:15:35 +020058 /* get the Pioctl data arguments from user space */
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -040059 if (copy_from_user(&data, (void __user *)user_data, sizeof(data)))
60 return -EINVAL;
John Kacur1977bb22010-05-05 15:15:35 +020061
62 /*
63 * Look up the pathname. Note that the pathname is in
64 * user memory, and namei takes care of this
65 */
John Kacur2ff82f82010-05-05 15:15:34 +020066 if (data.follow)
John Kacur1977bb22010-05-05 15:15:35 +020067 error = user_path(data.path, &path);
John Kacur2ff82f82010-05-05 15:15:34 +020068 else
John Kacur1977bb22010-05-05 15:15:35 +020069 error = user_lpath(data.path, &path);
John Kacur2ff82f82010-05-05 15:15:34 +020070
71 if (error)
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -040072 return error;
73
David Howells2b0143b2015-03-17 22:25:59 +000074 target_inode = d_inode(path.dentry);
John Kacur2ff82f82010-05-05 15:15:34 +020075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /* return if it is not a Coda inode */
John Kacur1977bb22010-05-05 15:15:35 +020077 if (target_inode->i_sb != inode->i_sb) {
John Kacur2ff82f82010-05-05 15:15:34 +020078 error = -EINVAL;
79 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 }
81
82 /* now proceed to make the upcall */
John Kacur1977bb22010-05-05 15:15:35 +020083 cnp = ITOC(target_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 error = venus_pioctl(inode->i_sb, &(cnp->c_fid), cmd, &data);
John Kacur2ff82f82010-05-05 15:15:34 +020086out:
Yoshihisa Abef7cc02b82010-10-25 02:03:45 -040087 path_put(&path);
John Kacur1977bb22010-05-05 15:15:35 +020088 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}