4 * Copyright (c) International Business Machines Corp., 2003, 2007
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.
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.
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
23 #include <linux/posix_acl_xattr.h>
24 #include <linux/slab.h>
25 #include <linux/xattr.h>
29 #include "cifsproto.h"
30 #include "cifs_debug.h"
32 #define MAX_EA_VALUE_SIZE 65535
33 #define CIFS_XATTR_DOS_ATTRIB "user.DosAttrib"
34 #define CIFS_XATTR_CIFS_ACL "system.cifs_acl"
36 /* BB need to add server (Samba e.g) support for security and trusted prefix */
38 int cifs_removexattr(struct dentry *direntry, const char *ea_name)
41 #ifdef CONFIG_CIFS_XATTR
43 struct cifs_sb_info *cifs_sb;
44 struct tcon_link *tlink;
45 struct cifs_tcon *pTcon;
46 struct super_block *sb;
47 char *full_path = NULL;
51 if (direntry->d_inode == NULL)
53 sb = direntry->d_inode->i_sb;
57 cifs_sb = CIFS_SB(sb);
58 tlink = cifs_sb_tlink(cifs_sb);
60 return PTR_ERR(tlink);
61 pTcon = tlink_tcon(tlink);
65 full_path = build_path_from_dentry(direntry);
66 if (full_path == NULL) {
70 if (ea_name == NULL) {
71 cifs_dbg(FYI, "Null xattr names not supported\n");
72 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)
73 && (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN))) {
75 "illegal xattr request %s (only user namespace supported)\n",
77 /* BB what if no namespace prefix? */
78 /* Should we just pass them to server, except for
79 system and perhaps security prefixes? */
81 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
84 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */
85 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, NULL,
86 (__u16)0, cifs_sb->local_nls,
87 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
92 cifs_put_tlink(tlink);
97 int cifs_setxattr(struct dentry *direntry, const char *ea_name,
98 const void *ea_value, size_t value_size, int flags)
100 int rc = -EOPNOTSUPP;
101 #ifdef CONFIG_CIFS_XATTR
103 struct cifs_sb_info *cifs_sb;
104 struct tcon_link *tlink;
105 struct cifs_tcon *pTcon;
106 struct super_block *sb;
109 if (direntry == NULL)
111 if (direntry->d_inode == NULL)
113 sb = direntry->d_inode->i_sb;
117 cifs_sb = CIFS_SB(sb);
118 tlink = cifs_sb_tlink(cifs_sb);
120 return PTR_ERR(tlink);
121 pTcon = tlink_tcon(tlink);
125 full_path = build_path_from_dentry(direntry);
126 if (full_path == NULL) {
130 /* return dos attributes as pseudo xattr */
131 /* return alt name if available as pseudo attr */
133 /* if proc/fs/cifs/streamstoxattr is set then
134 search server for EAs or streams to
136 if (value_size > MAX_EA_VALUE_SIZE) {
137 cifs_dbg(FYI, "size of EA value too large\n");
142 if (ea_name == NULL) {
143 cifs_dbg(FYI, "Null xattr names not supported\n");
144 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)
146 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
148 if (strncmp(ea_name, CIFS_XATTR_DOS_ATTRIB, 14) == 0)
149 cifs_dbg(FYI, "attempt to set cifs inode metadata\n");
151 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */
152 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, ea_value,
153 (__u16)value_size, cifs_sb->local_nls,
154 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
155 } else if (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN)
157 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
160 ea_name += XATTR_OS2_PREFIX_LEN; /* skip past os2. prefix */
161 rc = CIFSSMBSetEA(xid, pTcon, full_path, ea_name, ea_value,
162 (__u16)value_size, cifs_sb->local_nls,
163 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
164 } else if (strncmp(ea_name, CIFS_XATTR_CIFS_ACL,
165 strlen(CIFS_XATTR_CIFS_ACL)) == 0) {
166 #ifdef CONFIG_CIFS_ACL
167 struct cifs_ntsd *pacl;
168 pacl = kmalloc(value_size, GFP_KERNEL);
172 memcpy(pacl, ea_value, value_size);
173 rc = set_cifs_acl(pacl, value_size,
174 direntry->d_inode, full_path, CIFS_ACL_DACL);
175 if (rc == 0) /* force revalidate of the inode */
176 CIFS_I(direntry->d_inode)->time = 0;
180 cifs_dbg(FYI, "Set CIFS ACL not supported yet\n");
181 #endif /* CONFIG_CIFS_ACL */
184 temp = strncmp(ea_name, POSIX_ACL_XATTR_ACCESS,
185 strlen(POSIX_ACL_XATTR_ACCESS));
187 #ifdef CONFIG_CIFS_POSIX
188 if (sb->s_flags & MS_POSIXACL)
189 rc = CIFSSMBSetPosixACL(xid, pTcon, full_path,
190 ea_value, (const int)value_size,
191 ACL_TYPE_ACCESS, cifs_sb->local_nls,
192 cifs_sb->mnt_cifs_flags &
193 CIFS_MOUNT_MAP_SPECIAL_CHR);
194 cifs_dbg(FYI, "set POSIX ACL rc %d\n", rc);
196 cifs_dbg(FYI, "set POSIX ACL not supported\n");
198 } else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT,
199 strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) {
200 #ifdef CONFIG_CIFS_POSIX
201 if (sb->s_flags & MS_POSIXACL)
202 rc = CIFSSMBSetPosixACL(xid, pTcon, full_path,
203 ea_value, (const int)value_size,
204 ACL_TYPE_DEFAULT, cifs_sb->local_nls,
205 cifs_sb->mnt_cifs_flags &
206 CIFS_MOUNT_MAP_SPECIAL_CHR);
207 cifs_dbg(FYI, "set POSIX default ACL rc %d\n", rc);
209 cifs_dbg(FYI, "set default POSIX ACL not supported\n");
212 cifs_dbg(FYI, "illegal xattr request %s (only user namespace supported)\n",
214 /* BB what if no namespace prefix? */
215 /* Should we just pass them to server, except for
216 system and perhaps security prefixes? */
223 cifs_put_tlink(tlink);
228 ssize_t cifs_getxattr(struct dentry *direntry, const char *ea_name,
229 void *ea_value, size_t buf_size)
231 ssize_t rc = -EOPNOTSUPP;
232 #ifdef CONFIG_CIFS_XATTR
234 struct cifs_sb_info *cifs_sb;
235 struct tcon_link *tlink;
236 struct cifs_tcon *pTcon;
237 struct super_block *sb;
240 if (direntry == NULL)
242 if (direntry->d_inode == NULL)
244 sb = direntry->d_inode->i_sb;
248 cifs_sb = CIFS_SB(sb);
249 tlink = cifs_sb_tlink(cifs_sb);
251 return PTR_ERR(tlink);
252 pTcon = tlink_tcon(tlink);
256 full_path = build_path_from_dentry(direntry);
257 if (full_path == NULL) {
261 /* return dos attributes as pseudo xattr */
262 /* return alt name if available as pseudo attr */
263 if (ea_name == NULL) {
264 cifs_dbg(FYI, "Null xattr names not supported\n");
265 } else if (strncmp(ea_name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)
267 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
270 if (strncmp(ea_name, CIFS_XATTR_DOS_ATTRIB, 14) == 0) {
271 cifs_dbg(FYI, "attempt to query cifs inode metadata\n");
272 /* revalidate/getattr then populate from inode */
273 } /* BB add else when above is implemented */
274 ea_name += XATTR_USER_PREFIX_LEN; /* skip past user. prefix */
275 rc = CIFSSMBQAllEAs(xid, pTcon, full_path, ea_name, ea_value,
276 buf_size, cifs_sb->local_nls,
277 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
278 } else if (strncmp(ea_name, XATTR_OS2_PREFIX, XATTR_OS2_PREFIX_LEN) == 0) {
279 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
282 ea_name += XATTR_OS2_PREFIX_LEN; /* skip past os2. prefix */
283 rc = CIFSSMBQAllEAs(xid, pTcon, full_path, ea_name, ea_value,
284 buf_size, cifs_sb->local_nls,
285 cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR);
286 } else if (strncmp(ea_name, POSIX_ACL_XATTR_ACCESS,
287 strlen(POSIX_ACL_XATTR_ACCESS)) == 0) {
288 #ifdef CONFIG_CIFS_POSIX
289 if (sb->s_flags & MS_POSIXACL)
290 rc = CIFSSMBGetPosixACL(xid, pTcon, full_path,
291 ea_value, buf_size, ACL_TYPE_ACCESS,
293 cifs_sb->mnt_cifs_flags &
294 CIFS_MOUNT_MAP_SPECIAL_CHR);
296 cifs_dbg(FYI, "Query POSIX ACL not supported yet\n");
297 #endif /* CONFIG_CIFS_POSIX */
298 } else if (strncmp(ea_name, POSIX_ACL_XATTR_DEFAULT,
299 strlen(POSIX_ACL_XATTR_DEFAULT)) == 0) {
300 #ifdef CONFIG_CIFS_POSIX
301 if (sb->s_flags & MS_POSIXACL)
302 rc = CIFSSMBGetPosixACL(xid, pTcon, full_path,
303 ea_value, buf_size, ACL_TYPE_DEFAULT,
305 cifs_sb->mnt_cifs_flags &
306 CIFS_MOUNT_MAP_SPECIAL_CHR);
308 cifs_dbg(FYI, "Query POSIX default ACL not supported yet\n");
309 #endif /* CONFIG_CIFS_POSIX */
310 } else if (strncmp(ea_name, CIFS_XATTR_CIFS_ACL,
311 strlen(CIFS_XATTR_CIFS_ACL)) == 0) {
312 #ifdef CONFIG_CIFS_ACL
314 struct cifs_ntsd *pacl;
316 pacl = get_cifs_acl(cifs_sb, direntry->d_inode,
320 cifs_dbg(VFS, "%s: error %zd getting sec desc\n",
324 if (acllen > buf_size)
327 memcpy(ea_value, pacl, acllen);
333 cifs_dbg(FYI, "Query CIFS ACL not supported yet\n");
334 #endif /* CONFIG_CIFS_ACL */
335 } else if (strncmp(ea_name,
336 XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN) == 0) {
337 cifs_dbg(FYI, "Trusted xattr namespace not supported yet\n");
338 } else if (strncmp(ea_name,
339 XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) == 0) {
340 cifs_dbg(FYI, "Security xattr namespace not supported yet\n");
343 "illegal xattr request %s (only user namespace supported)\n",
346 /* We could add an additional check for streams ie
347 if proc/fs/cifs/streamstoxattr is set then
348 search server for EAs or streams to
357 cifs_put_tlink(tlink);
362 ssize_t cifs_listxattr(struct dentry *direntry, char *data, size_t buf_size)
364 ssize_t rc = -EOPNOTSUPP;
365 #ifdef CONFIG_CIFS_XATTR
367 struct cifs_sb_info *cifs_sb;
368 struct tcon_link *tlink;
369 struct cifs_tcon *pTcon;
370 struct super_block *sb;
373 if (direntry == NULL)
375 if (direntry->d_inode == NULL)
377 sb = direntry->d_inode->i_sb;
381 cifs_sb = CIFS_SB(sb);
382 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
385 tlink = cifs_sb_tlink(cifs_sb);
387 return PTR_ERR(tlink);
388 pTcon = tlink_tcon(tlink);
392 full_path = build_path_from_dentry(direntry);
393 if (full_path == NULL) {
397 /* return dos attributes as pseudo xattr */
398 /* return alt name if available as pseudo attr */
400 /* if proc/fs/cifs/streamstoxattr is set then
401 search server for EAs or streams to
403 rc = CIFSSMBQAllEAs(xid, pTcon, full_path, NULL, data,
404 buf_size, cifs_sb->local_nls,
405 cifs_sb->mnt_cifs_flags &
406 CIFS_MOUNT_MAP_SPECIAL_CHR);
411 cifs_put_tlink(tlink);