4 * vfs operations that deal with io control
6 * Copyright (C) International Business Machines Corp., 2005
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
25 #include <linux/ext2_fs.h>
28 #include "cifsproto.h"
29 #include "cifs_debug.h"
32 #define CIFS_IOC_CHECKUMOUNT _IO(0xCF, 2)
34 int cifs_ioctl (struct inode
* inode
, struct file
* filep
,
35 unsigned int command
, unsigned long arg
)
37 int rc
= -ENOTTY
; /* strange error - but the precedent */
39 struct cifs_sb_info
*cifs_sb
;
40 #ifdef CONFIG_CIFS_POSIX
41 __u64 ExtAttrBits
= 0;
42 __u64 ExtAttrMask
= 0;
44 struct cifsTconInfo
*tcon
;
45 struct cifsFileInfo
*pSMBFile
=
46 (struct cifsFileInfo
*)filep
->private_data
;
47 #endif /* CONFIG_CIFS_POSIX */
51 cFYI(1,("ioctl file %p cmd %u arg %lu",filep
,command
,arg
));
53 cifs_sb
= CIFS_SB(inode
->i_sb
);
55 #ifdef CONFIG_CIFS_POSIX
58 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
64 #endif /* CONFIG_CIFS_POSIX */
67 case CIFS_IOC_CHECKUMOUNT
:
68 cFYI(1,("User unmount attempted"));
69 if(cifs_sb
->mnt_uid
== current
->uid
)
73 cFYI(1,("uids do not match"));
76 #ifdef CONFIG_CIFS_POSIX
77 case EXT2_IOC_GETFLAGS
:
78 if(CIFS_UNIX_EXTATTR_CAP
& caps
) {
81 rc
= CIFSGetExtAttr(xid
, tcon
, pSMBFile
->netfid
,
82 &ExtAttrBits
, &ExtAttrMask
);
84 rc
= put_user(ExtAttrBits
&
90 case EXT2_IOC_SETFLAGS
:
91 if(CIFS_UNIX_EXTATTR_CAP
& caps
) {
92 if(get_user(ExtAttrBits
,(int __user
*)arg
)) {
98 /* rc= CIFSGetExtAttr(xid,tcon,pSMBFile->netfid,
99 extAttrBits, &ExtAttrMask);*/
102 cFYI(1,("set flags not implemented yet"));
104 #endif /* CONFIG_CIFS_POSIX */
106 cFYI(1,("unsupported ioctl"));