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
27 #include "cifsproto.h"
28 #include "cifs_debug.h"
31 long cifs_ioctl(struct file
*filep
, unsigned int command
, unsigned long arg
)
33 struct inode
*inode
= filep
->f_dentry
->d_inode
;
34 int rc
= -ENOTTY
; /* strange error - but the precedent */
36 struct cifs_sb_info
*cifs_sb
;
37 #ifdef CONFIG_CIFS_POSIX
38 struct cifsFileInfo
*pSMBFile
= filep
->private_data
;
39 struct cifs_tcon
*tcon
;
40 __u64 ExtAttrBits
= 0;
41 __u64 ExtAttrMask
= 0;
43 #endif /* CONFIG_CIFS_POSIX */
47 cFYI(1, "ioctl file %p cmd %u arg %lu", filep
, command
, arg
);
49 cifs_sb
= CIFS_SB(inode
->i_sb
);
52 #ifdef CONFIG_CIFS_POSIX
56 tcon
= tlink_tcon(pSMBFile
->tlink
);
57 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
58 if (CIFS_UNIX_EXTATTR_CAP
& caps
) {
59 rc
= CIFSGetExtAttr(xid
, tcon
,
61 &ExtAttrBits
, &ExtAttrMask
);
63 rc
= put_user(ExtAttrBits
&
72 tcon
= tlink_tcon(pSMBFile
->tlink
);
73 caps
= le64_to_cpu(tcon
->fsUnixInfo
.Capability
);
74 if (CIFS_UNIX_EXTATTR_CAP
& caps
) {
75 if (get_user(ExtAttrBits
, (int __user
*)arg
)) {
80 * rc = CIFSGetExtAttr(xid, tcon,
81 * pSMBFile->fid.netfid,
86 cFYI(1, "set flags not implemented yet");
88 #endif /* CONFIG_CIFS_POSIX */
90 cFYI(1, "unsupported ioctl");