GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / cifs / ioctl.c
blob9d38a71c8e1449561f625d5762c2337714d31563
1 /*
2 * fs/cifs/ioctl.c
4 * vfs operations that deal with io control
6 * Copyright (C) International Business Machines Corp., 2005,2007
7 * Author(s): Steve French (sfrench@us.ibm.com)
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.
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.
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
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"
31 #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2)
33 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg)
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 __u64 ExtAttrBits = 0;
41 __u64 ExtAttrMask = 0;
42 __u64 caps;
43 struct cifsTconInfo *tcon;
44 struct cifsFileInfo *pSMBFile = filep->private_data;
45 #endif /* CONFIG_CIFS_POSIX */
47 xid = GetXid();
49 cFYI(1, "ioctl file %p cmd %u arg %lu", filep, command, arg);
51 cifs_sb = CIFS_SB(inode->i_sb);
53 #ifdef CONFIG_CIFS_POSIX
54 tcon = cifs_sb->tcon;
55 if (tcon)
56 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
57 else {
58 rc = -EIO;
59 FreeXid(xid);
60 return -EIO;
62 #endif /* CONFIG_CIFS_POSIX */
64 switch (command) {
65 case CIFS_IOC_CHECKUMOUNT:
66 cFYI(1, "User unmount attempted");
67 if (cifs_sb->mnt_uid == current_uid())
68 rc = 0;
69 else {
70 rc = -EACCES;
71 cFYI(1, "uids do not match");
73 break;
74 #ifdef CONFIG_CIFS_POSIX
75 case FS_IOC_GETFLAGS:
76 if (CIFS_UNIX_EXTATTR_CAP & caps) {
77 if (pSMBFile == NULL)
78 break;
79 rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
80 &ExtAttrBits, &ExtAttrMask);
81 if (rc == 0)
82 rc = put_user(ExtAttrBits &
83 FS_FL_USER_VISIBLE,
84 (int __user *)arg);
86 break;
88 case FS_IOC_SETFLAGS:
89 if (CIFS_UNIX_EXTATTR_CAP & caps) {
90 if (get_user(ExtAttrBits, (int __user *)arg)) {
91 rc = -EFAULT;
92 break;
94 if (pSMBFile == NULL)
95 break;
96 /* rc= CIFSGetExtAttr(xid,tcon,pSMBFile->netfid,
97 extAttrBits, &ExtAttrMask);*/
99 cFYI(1, "set flags not implemented yet");
100 break;
101 #endif /* CONFIG_CIFS_POSIX */
102 default:
103 cFYI(1, "unsupported ioctl");
104 break;
107 FreeXid(xid);
108 return rc;