1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
33long 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;
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 =
45 (struct cifsFileInfo *)filep->private_data;
46#endif
47
48 xid = GetXid();
49
50 cFYI(1, ("ioctl file %p cmd %u arg %lu", filep, command, arg));
51
52 cifs_sb = CIFS_SB(inode->i_sb);
53
54#ifdef CONFIG_CIFS_POSIX
55 tcon = cifs_sb->tcon;
56 if (tcon)
57 caps = le64_to_cpu(tcon->fsUnixInfo.Capability);
58 else {
59 rc = -EIO;
60 FreeXid(xid);
61 return -EIO;
62 }
63#endif
64
65 switch (command) {
66 case CIFS_IOC_CHECKUMOUNT:
67 cFYI(1, ("User unmount attempted"));
68 if (cifs_sb->mnt_uid == current_uid())
69 rc = 0;
70 else {
71 rc = -EACCES;
72 cFYI(1, ("uids do not match"));
73 }
74 break;
75#ifdef CONFIG_CIFS_POSIX
76 case FS_IOC_GETFLAGS:
77 if (CIFS_UNIX_EXTATTR_CAP & caps) {
78 if (pSMBFile == NULL)
79 break;
80 rc = CIFSGetExtAttr(xid, tcon, pSMBFile->netfid,
81 &ExtAttrBits, &ExtAttrMask);
82 if (rc == 0)
83 rc = put_user(ExtAttrBits &
84 FS_FL_USER_VISIBLE,
85 (int __user *)arg);
86 }
87 break;
88
89 case FS_IOC_SETFLAGS:
90 if (CIFS_UNIX_EXTATTR_CAP & caps) {
91 if (get_user(ExtAttrBits, (int __user *)arg)) {
92 rc = -EFAULT;
93 break;
94 }
95 if (pSMBFile == NULL)
96 break;
97
98
99 }
100 cFYI(1, ("set flags not implemented yet"));
101 break;
102#endif
103 default:
104 cFYI(1, ("unsupported ioctl"));
105 break;
106 }
107
108 FreeXid(xid);
109 return rc;
110}
111