aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/ioctl.c
diff options
context:
space:
mode:
authorSteve French <smfrench@austin.rr.com>2005-04-29 01:41:04 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-29 01:41:04 -0400
commitf654bac2227adc5c6956405290eeb4f81f09e9ff (patch)
tree9391321485e530375cb5ce1fced0ece2acc02a67 /fs/cifs/ioctl.c
parent1da0c78b32abe122a959d2a57ba3d41563d8e39f (diff)
[PATCH] cifs: add support for chattr/lsattr in new CIFS POSIX extensions
Signed-off-by: Steve French (sfrench@us.ibm.com) Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/cifs/ioctl.c')
-rw-r--r--fs/cifs/ioctl.c52
1 files changed, 49 insertions, 3 deletions
diff --git a/fs/cifs/ioctl.c b/fs/cifs/ioctl.c
index b4b8e201d428..7b84b2bb8c4a 100644
--- a/fs/cifs/ioctl.c
+++ b/fs/cifs/ioctl.c
@@ -20,6 +20,7 @@
20 * along with this library; if not, write to the Free Software 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 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */ 22 */
23
23#include <linux/fs.h> 24#include <linux/fs.h>
24#include <linux/ext2_fs.h> 25#include <linux/ext2_fs.h>
25#include "cifspdu.h" 26#include "cifspdu.h"
@@ -32,18 +33,63 @@ int cifs_ioctl (struct inode * inode, struct file * filep,
32{ 33{
33 int rc = -ENOTTY; /* strange error - but the precedent */ 34 int rc = -ENOTTY; /* strange error - but the precedent */
34#ifdef CONFIG_CIFS_POSIX 35#ifdef CONFIG_CIFS_POSIX
36 __u64 ExtAttrBits = 0;
37 __u64 ExtAttrMask = 0;
38 __u64 caps;
39#endif /* CONFIG_CIFS_POSIX */
40 int xid;
41 struct cifs_sb_info *cifs_sb;
42 struct cifsTconInfo *tcon;
43 struct cifsFileInfo *pSMBFile =
44 (struct cifsFileInfo *)filep->private_data;
45
46 xid = GetXid();
47
48 cifs_sb = CIFS_SB(inode->i_sb);
49 tcon = cifs_sb->tcon;
50 if (pSMBFile == NULL)
51 goto cifs_ioctl_out;
52
53#ifdef CONFIG_CIFS_POSIX
54 if(tcon)
55 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
56 else {
57 rc = -EIO;
58 goto cifs_ioctl_out;
59 }
60
35 cFYI(1,("ioctl file %p cmd %u arg %lu",filep,command,arg)); 61 cFYI(1,("ioctl file %p cmd %u arg %lu",filep,command,arg));
36 switch(command) { 62 switch(command) {
37 case EXT2_IOC_GETFLAGS: 63 case EXT2_IOC_GETFLAGS:
38 cFYI(1,("get flags not implemented yet")); 64 if(CIFS_UNIX_EXTATTR_CAP & caps) {
39 return -EOPNOTSUPP; 65 rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
66 &ExtAttrBits, &ExtAttrMask);
67 if(rc == 0)
68 rc = put_user(ExtAttrBits &
69 EXT2_FL_USER_VISIBLE,
70 (int __user *)arg);
71 }
72 break;
73
40 case EXT2_IOC_SETFLAGS: 74 case EXT2_IOC_SETFLAGS:
75 if(CIFS_UNIX_EXTATTR_CAP & caps) {
76 if(get_user(ExtAttrBits,(int __user *)arg)) {
77 rc = -EFAULT;
78 goto cifs_ioctl_out;
79 }
80 /* rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
81 extAttrBits, &ExtAttrMask);*/
82
83 }
41 cFYI(1,("set flags not implemented yet")); 84 cFYI(1,("set flags not implemented yet"));
42 return -EOPNOTSUPP; 85 break;
43 default: 86 default:
44 cFYI(1,("unsupported ioctl")); 87 cFYI(1,("unsupported ioctl"));
45 return rc; 88 return rc;
46 } 89 }
47#endif /* CONFIG_CIFS_POSIX */ 90#endif /* CONFIG_CIFS_POSIX */
91
92cifs_ioctl_out:
93 FreeXid(xid);
48 return rc; 94 return rc;
49} 95}