Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
[pandora-kernel.git] / fs / cifs / ioctl.c
1 /*
2  *   fs/cifs/ioctl.c
3  *
4  *   vfs operations that deal with io control
5  *
6  *   Copyright (C) International Business Machines  Corp., 2005,2007
7  *   Author(s): Steve French (sfrench@us.ibm.com)
8  *
9  *   This library is free software; you can redistribute it and/or modify
10  *   it under the terms of the GNU Lesser General Public License as published
11  *   by the Free Software Foundation; either version 2.1 of the License, or
12  *   (at your option) any later version.
13  *
14  *   This library is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
17  *   the GNU Lesser General Public License for more details.
18  *
19  *   You should have received a copy of the GNU Lesser General Public License
20  *   along with this library; if not, write to the Free Software
21  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  */
23
24 #include <linux/fs.h>
25 #include "cifspdu.h"
26 #include "cifsglob.h"
27 #include "cifsproto.h"
28 #include "cifs_debug.h"
29 #include "cifsfs.h"
30
31 #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2)
32
33 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
34 {
35         struct inode *inode = filep->f_dentry->d_inode;
36         int rc = -ENOTTY; /* strange error - but the precedent */
37         int xid;
38         struct cifs_sb_info *cifs_sb;
39 #ifdef CONFIG_CIFS_POSIX
40         struct cifsFileInfo *pSMBFile = filep->private_data;
41         struct cifsTconInfo *tcon = tlink_tcon(pSMBFile->tlink);
42         __u64   ExtAttrBits = 0;
43         __u64   ExtAttrMask = 0;
44         __u64   caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
45 #endif /* CONFIG_CIFS_POSIX */
46
47         xid = GetXid();
48
49         cFYI(1, "ioctl file %p  cmd %u  arg %lu", filep, command, arg);
50
51         cifs_sb = CIFS_SB(inode->i_sb);
52
53         switch (command) {
54                 case CIFS_IOC_CHECKUMOUNT:
55                         cFYI(1, "User unmount attempted");
56                         if (cifs_sb->mnt_uid == current_uid())
57                                 rc = 0;
58                         else {
59                                 rc = -EACCES;
60                                 cFYI(1, "uids do not match");
61                         }
62                         break;
63 #ifdef CONFIG_CIFS_POSIX
64                 case FS_IOC_GETFLAGS:
65                         if (CIFS_UNIX_EXTATTR_CAP & caps) {
66                                 if (pSMBFile == NULL)
67                                         break;
68                                 rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
69                                         &ExtAttrBits, &ExtAttrMask);
70                                 if (rc == 0)
71                                         rc = put_user(ExtAttrBits &
72                                                 FS_FL_USER_VISIBLE,
73                                                 (int __user *)arg);
74                         }
75                         break;
76
77                 case FS_IOC_SETFLAGS:
78                         if (CIFS_UNIX_EXTATTR_CAP & caps) {
79                                 if (get_user(ExtAttrBits, (int __user *)arg)) {
80                                         rc = -EFAULT;
81                                         break;
82                                 }
83                                 if (pSMBFile == NULL)
84                                         break;
85                                 /* rc= CIFSGetExtAttr(xid,tcon,pSMBFile->netfid,
86                                         extAttrBits, &ExtAttrMask);*/
87                         }
88                         cFYI(1, "set flags not implemented yet");
89                         break;
90 #endif /* CONFIG_CIFS_POSIX */
91                 default:
92                         cFYI(1, "unsupported ioctl");
93                         break;
94         }
95
96         FreeXid(xid);
97         return rc;
98 }