blob: 836c39e7c09a26aa1fac77672abdfcec80a6a1e3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/xattr.c
3 *
Steve French79a58d12007-07-06 22:44:50 +00004 * Copyright (c) International Business Machines Corp., 2003, 2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * This library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published
9 * by the Free Software Foundation; either version 2.1 of the License, or
10 * (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 * the GNU Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/fs.h>
23#include <linux/posix_acl_xattr.h>
24#include "cifsfs.h"
25#include "cifspdu.h"
26#include "cifsglob.h"
27#include "cifsproto.h"
28#include "cifs_debug.h"
29
30#define MAX_EA_VALUE_SIZE 65535
31#define CIFS_XATTR_DOS_ATTRIB "user.DosAttrib"
32#define CIFS_XATTR_USER_PREFIX "user."
33#define CIFS_XATTR_SYSTEM_PREFIX "system."
34#define CIFS_XATTR_OS2_PREFIX "os2."
35#define CIFS_XATTR_SECURITY_PREFIX ".security"
36#define CIFS_XATTR_TRUSTED_PREFIX "trusted."
37#define XATTR_TRUSTED_PREFIX_LEN 8
38#define XATTR_SECURITY_PREFIX_LEN 9
39/* BB need to add server (Samba e.g) support for security and trusted prefix */
Steve French50c2f752007-07-13 00:33:32 +000040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42
Steve French79a58d12007-07-06 22:44:50 +000043int cifs_removexattr(struct dentry *direntry, const char *ea_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 int rc = -EOPNOTSUPP;
46#ifdef CONFIG_CIFS_XATTR
47 int xid;
48 struct cifs_sb_info *cifs_sb;
49 struct cifsTconInfo *pTcon;
Steve French79a58d12007-07-06 22:44:50 +000050 struct super_block *sb;
51 char *full_path;
52
53 if (direntry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return -EIO;
Steve French79a58d12007-07-06 22:44:50 +000055 if (direntry->d_inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 return -EIO;
57 sb = direntry->d_inode->i_sb;
Steve French79a58d12007-07-06 22:44:50 +000058 if (sb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return -EIO;
60 xid = GetXid();
Steve French79a58d12007-07-06 22:44:50 +000061
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 cifs_sb = CIFS_SB(sb);
63 pTcon = cifs_sb->tcon;
Steve French79a58d12007-07-06 22:44:50 +000064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 full_path = build_path_from_dentry(direntry);
Steve French79a58d12007-07-06 22:44:50 +000066 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 FreeXid(xid);
68 return -ENOMEM;
69 }
Steve French79a58d12007-07-06 22:44:50 +000070 if (ea_name == NULL) {
71 cFYI(1, ("Null xattr names not supported"));
72 } else if (strncmp(ea_name, CIFS_XATTR_USER_PREFIX, 5)
73 && (strncmp(ea_name, CIFS_XATTR_OS2_PREFIX, 4))) {
74 cFYI(1,
75 ("illegal xattr request %s (only user namespace supported)",
76 ea_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 /* BB what if no namespace prefix? */
78 /* Should we just pass them to server, except for
79 system and perhaps security prefixes? */
80 } else {
Steve French79a58d12007-07-06 22:44:50 +000081 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 goto remove_ea_exit;
83
Steve French79a58d12007-07-06 22:44:50 +000084 ea_name += 5; /* skip past user. prefix */
85 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, NULL,
Steve French737b7582005-04-28 22:41:06 -070086 (__u16)0, cifs_sb->local_nls,
87 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 }
89remove_ea_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -080090 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 FreeXid(xid);
92#endif
93 return rc;
94}
95
Steve French79a58d12007-07-06 22:44:50 +000096int cifs_setxattr(struct dentry *direntry, const char *ea_name,
97 const void *ea_value, size_t value_size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 int rc = -EOPNOTSUPP;
100#ifdef CONFIG_CIFS_XATTR
101 int xid;
102 struct cifs_sb_info *cifs_sb;
103 struct cifsTconInfo *pTcon;
Steve French79a58d12007-07-06 22:44:50 +0000104 struct super_block *sb;
105 char *full_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Steve French79a58d12007-07-06 22:44:50 +0000107 if (direntry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return -EIO;
Steve French79a58d12007-07-06 22:44:50 +0000109 if (direntry->d_inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return -EIO;
111 sb = direntry->d_inode->i_sb;
Steve French79a58d12007-07-06 22:44:50 +0000112 if (sb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return -EIO;
114 xid = GetXid();
115
116 cifs_sb = CIFS_SB(sb);
117 pTcon = cifs_sb->tcon;
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 full_path = build_path_from_dentry(direntry);
Steve French79a58d12007-07-06 22:44:50 +0000120 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 FreeXid(xid);
122 return -ENOMEM;
123 }
124 /* return dos attributes as pseudo xattr */
125 /* return alt name if available as pseudo attr */
126
127 /* if proc/fs/cifs/streamstoxattr is set then
Steve French79a58d12007-07-06 22:44:50 +0000128 search server for EAs or streams to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 returns as xattrs */
Steve French79a58d12007-07-06 22:44:50 +0000130 if (value_size > MAX_EA_VALUE_SIZE) {
131 cFYI(1, ("size of EA value too large"));
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800132 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 FreeXid(xid);
134 return -EOPNOTSUPP;
135 }
136
Steve French79a58d12007-07-06 22:44:50 +0000137 if (ea_name == NULL) {
138 cFYI(1, ("Null xattr names not supported"));
139 } else if (strncmp(ea_name, CIFS_XATTR_USER_PREFIX, 5) == 0) {
140 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto set_ea_exit;
Steve French79a58d12007-07-06 22:44:50 +0000142 if (strncmp(ea_name, CIFS_XATTR_DOS_ATTRIB, 14) == 0) {
143 cFYI(1, ("attempt to set cifs inode metadata"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 ea_name += 5; /* skip past user. prefix */
Steve French79a58d12007-07-06 22:44:50 +0000146 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, ea_value,
Steve French737b7582005-04-28 22:41:06 -0700147 (__u16)value_size, cifs_sb->local_nls,
148 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French79a58d12007-07-06 22:44:50 +0000149 } else if (strncmp(ea_name, CIFS_XATTR_OS2_PREFIX, 4) == 0) {
150 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 goto set_ea_exit;
152
153 ea_name += 4; /* skip past os2. prefix */
Steve French79a58d12007-07-06 22:44:50 +0000154 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, ea_value,
Steve French737b7582005-04-28 22:41:06 -0700155 (__u16)value_size, cifs_sb->local_nls,
156 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 } else {
Steve French79a58d12007-07-06 22:44:50 +0000158 int temp;
159 temp = strncmp(ea_name, POSIX_ACL_XATTR_ACCESS,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 strlen(POSIX_ACL_XATTR_ACCESS));
161 if (temp == 0) {
162#ifdef CONFIG_CIFS_POSIX
Steve French79a58d12007-07-06 22:44:50 +0000163 if (sb->s_flags & MS_POSIXACL)
164 rc = CIFSSMBSetPosixACL(xid, pTcon, full_path,
165 ea_value, (const int)value_size,
166 ACL_TYPE_ACCESS, cifs_sb->local_nls,
167 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700168 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French79a58d12007-07-06 22:44:50 +0000169 cFYI(1, ("set POSIX ACL rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#else
Steve French79a58d12007-07-06 22:44:50 +0000171 cFYI(1, ("set POSIX ACL not supported"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#endif
Steve French79a58d12007-07-06 22:44:50 +0000173 } else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT,
174 strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#ifdef CONFIG_CIFS_POSIX
Steve French79a58d12007-07-06 22:44:50 +0000176 if (sb->s_flags & MS_POSIXACL)
177 rc = CIFSSMBSetPosixACL(xid, pTcon, full_path,
178 ea_value, (const int)value_size,
Steve French737b7582005-04-28 22:41:06 -0700179 ACL_TYPE_DEFAULT, cifs_sb->local_nls,
Steve French79a58d12007-07-06 22:44:50 +0000180 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700181 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French79a58d12007-07-06 22:44:50 +0000182 cFYI(1, ("set POSIX default ACL rc %d", rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#else
Steve French79a58d12007-07-06 22:44:50 +0000184 cFYI(1, ("set default POSIX ACL not supported"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#endif
186 } else {
Steve French79a58d12007-07-06 22:44:50 +0000187 cFYI(1, ("illegal xattr request %s (only user namespace supported)", ea_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /* BB what if no namespace prefix? */
Steve French79a58d12007-07-06 22:44:50 +0000189 /* Should we just pass them to server, except for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 system and perhaps security prefixes? */
191 }
192 }
193
194set_ea_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800195 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 FreeXid(xid);
197#endif
198 return rc;
199}
200
Steve French79a58d12007-07-06 22:44:50 +0000201ssize_t cifs_getxattr(struct dentry *direntry, const char *ea_name,
202 void *ea_value, size_t buf_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 ssize_t rc = -EOPNOTSUPP;
205#ifdef CONFIG_CIFS_XATTR
206 int xid;
207 struct cifs_sb_info *cifs_sb;
208 struct cifsTconInfo *pTcon;
Steve French79a58d12007-07-06 22:44:50 +0000209 struct super_block *sb;
210 char *full_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Steve French79a58d12007-07-06 22:44:50 +0000212 if (direntry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -EIO;
Steve French79a58d12007-07-06 22:44:50 +0000214 if (direntry->d_inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return -EIO;
216 sb = direntry->d_inode->i_sb;
Steve French79a58d12007-07-06 22:44:50 +0000217 if (sb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return -EIO;
219
220 xid = GetXid();
221
222 cifs_sb = CIFS_SB(sb);
223 pTcon = cifs_sb->tcon;
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 full_path = build_path_from_dentry(direntry);
Steve French79a58d12007-07-06 22:44:50 +0000226 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 FreeXid(xid);
228 return -ENOMEM;
229 }
230 /* return dos attributes as pseudo xattr */
231 /* return alt name if available as pseudo attr */
Steve French79a58d12007-07-06 22:44:50 +0000232 if (ea_name == NULL) {
233 cFYI(1, ("Null xattr names not supported"));
234 } else if (strncmp(ea_name, CIFS_XATTR_USER_PREFIX, 5) == 0) {
235 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 goto get_ea_exit;
237
Steve French79a58d12007-07-06 22:44:50 +0000238 if (strncmp(ea_name, CIFS_XATTR_DOS_ATTRIB, 14) == 0) {
239 cFYI(1, ("attempt to query cifs inode metadata"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /* revalidate/getattr then populate from inode */
241 } /* BB add else when above is implemented */
242 ea_name += 5; /* skip past user. prefix */
Steve French79a58d12007-07-06 22:44:50 +0000243 rc = CIFSSMBQueryEA(xid, pTcon, full_path, ea_name, ea_value,
Steve French737b7582005-04-28 22:41:06 -0700244 buf_size, cifs_sb->local_nls,
245 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French79a58d12007-07-06 22:44:50 +0000246 } else if (strncmp(ea_name, CIFS_XATTR_OS2_PREFIX, 4) == 0) {
247 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 goto get_ea_exit;
249
250 ea_name += 4; /* skip past os2. prefix */
Steve French79a58d12007-07-06 22:44:50 +0000251 rc = CIFSSMBQueryEA(xid, pTcon, full_path, ea_name, ea_value,
Steve French737b7582005-04-28 22:41:06 -0700252 buf_size, cifs_sb->local_nls,
253 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French79a58d12007-07-06 22:44:50 +0000254 } else if (strncmp(ea_name, POSIX_ACL_XATTR_ACCESS,
Steve French0a4b92c2006-01-12 15:44:21 -0800255 strlen(POSIX_ACL_XATTR_ACCESS)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#ifdef CONFIG_CIFS_POSIX
Steve French79a58d12007-07-06 22:44:50 +0000257 if (sb->s_flags & MS_POSIXACL)
Steve French1da0c782005-04-28 22:41:04 -0700258 rc = CIFSSMBGetPosixACL(xid, pTcon, full_path,
Steve French79a58d12007-07-06 22:44:50 +0000259 ea_value, buf_size, ACL_TYPE_ACCESS,
Steve French737b7582005-04-28 22:41:06 -0700260 cifs_sb->local_nls,
Steve French79a58d12007-07-06 22:44:50 +0000261 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700262 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French0a4b92c2006-01-12 15:44:21 -0800263/* else if(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) {
264 __u16 fid;
265 int oplock = FALSE;
266 rc = CIFSSMBOpen(xid, pTcon, full_path,
267 FILE_OPEN, GENERIC_READ, 0, &fid,
268 &oplock, NULL, cifs_sb->local_nls,
269 cifs_sb->mnt_cifs_flags &
270 CIFS_MOUNT_MAP_SPECIAL_CHR);
271 if(rc == 0) {
272 rc = CIFSSMBGetCIFSACL(xid, pTcon, fid,
273 ea_value, buf_size,
274 ACL_TYPE_ACCESS);
Steve French2fe87f02006-09-21 07:02:52 +0000275 CIFSSMBClose(xid, pTcon, fid);
Steve French0a4b92c2006-01-12 15:44:21 -0800276 }
277 } */ /* BB enable after fixing up return data */
Steve French79a58d12007-07-06 22:44:50 +0000278#else
279 cFYI(1, ("query POSIX ACL not supported yet"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280#endif /* CONFIG_CIFS_POSIX */
Steve French79a58d12007-07-06 22:44:50 +0000281 } else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT,
Steve French0a4b92c2006-01-12 15:44:21 -0800282 strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283#ifdef CONFIG_CIFS_POSIX
Steve French79a58d12007-07-06 22:44:50 +0000284 if (sb->s_flags & MS_POSIXACL)
Steve French1da0c782005-04-28 22:41:04 -0700285 rc = CIFSSMBGetPosixACL(xid, pTcon, full_path,
Steve French79a58d12007-07-06 22:44:50 +0000286 ea_value, buf_size, ACL_TYPE_DEFAULT,
Steve French737b7582005-04-28 22:41:06 -0700287 cifs_sb->local_nls,
Steve French79a58d12007-07-06 22:44:50 +0000288 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700289 CIFS_MOUNT_MAP_SPECIAL_CHR);
Steve French79a58d12007-07-06 22:44:50 +0000290#else
291 cFYI(1, ("query POSIX default ACL not supported yet"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#endif
Steve French79a58d12007-07-06 22:44:50 +0000293 } else if (strncmp(ea_name,
294 CIFS_XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) == 0) {
295 cFYI(1, ("Trusted xattr namespace not supported yet"));
296 } else if (strncmp(ea_name,
297 CIFS_XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) == 0) {
298 cFYI(1, ("Security xattr namespace not supported yet"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 } else {
Steve French79a58d12007-07-06 22:44:50 +0000300 cFYI(1,
301 ("illegal xattr request %s (only user namespace supported)",
302 ea_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304
Steve French79a58d12007-07-06 22:44:50 +0000305 /* We could add an additional check for streams ie
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if proc/fs/cifs/streamstoxattr is set then
Steve French79a58d12007-07-06 22:44:50 +0000307 search server for EAs or streams to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 returns as xattrs */
309
Steve French79a58d12007-07-06 22:44:50 +0000310 if (rc == -EINVAL)
311 rc = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313get_ea_exit:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800314 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 FreeXid(xid);
316#endif
317 return rc;
318}
319
Steve French79a58d12007-07-06 22:44:50 +0000320ssize_t cifs_listxattr(struct dentry *direntry, char *data, size_t buf_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 ssize_t rc = -EOPNOTSUPP;
323#ifdef CONFIG_CIFS_XATTR
324 int xid;
325 struct cifs_sb_info *cifs_sb;
326 struct cifsTconInfo *pTcon;
Steve French79a58d12007-07-06 22:44:50 +0000327 struct super_block *sb;
328 char *full_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Steve French79a58d12007-07-06 22:44:50 +0000330 if (direntry == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return -EIO;
Steve French79a58d12007-07-06 22:44:50 +0000332 if (direntry->d_inode == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return -EIO;
334 sb = direntry->d_inode->i_sb;
Steve French79a58d12007-07-06 22:44:50 +0000335 if (sb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 cifs_sb = CIFS_SB(sb);
339 pTcon = cifs_sb->tcon;
340
Steve French79a58d12007-07-06 22:44:50 +0000341 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Steve Frenchea4c07d2006-08-16 19:44:25 +0000342 return -EOPNOTSUPP;
343
344 xid = GetXid();
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 full_path = build_path_from_dentry(direntry);
Steve French79a58d12007-07-06 22:44:50 +0000347 if (full_path == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 FreeXid(xid);
349 return -ENOMEM;
350 }
351 /* return dos attributes as pseudo xattr */
352 /* return alt name if available as pseudo attr */
353
354 /* if proc/fs/cifs/streamstoxattr is set then
Steve French79a58d12007-07-06 22:44:50 +0000355 search server for EAs or streams to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 returns as xattrs */
Steve French79a58d12007-07-06 22:44:50 +0000357 rc = CIFSSMBQAllEAs(xid, pTcon, full_path, data, buf_size,
Steve French737b7582005-04-28 22:41:06 -0700358 cifs_sb->local_nls,
Steve French79a58d12007-07-06 22:44:50 +0000359 cifs_sb->mnt_cifs_flags &
Steve French737b7582005-04-28 22:41:06 -0700360 CIFS_MOUNT_MAP_SPECIAL_CHR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800362 kfree(full_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 FreeXid(xid);
364#endif
365 return rc;
366}