4 * Copyright (c) International Business Machines Corp., 2003, 2007
5 * Author(s): Steve French (sfrench@us.ibm.com)
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 if (pTcon
->ses
->server
->ops
->set_EA
)
86 rc
= pTcon
->ses
->server
->ops
->set_EA(xid
, pTcon
,
87 full_path
, ea_name
, NULL
, (__u16
)0,
88 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
89 CIFS_MOUNT_MAP_SPECIAL_CHR
);
94 cifs_put_tlink(tlink
);
99 int cifs_setxattr(struct dentry
*direntry
, const char *ea_name
,
100 const void *ea_value
, size_t value_size
, int flags
)
102 int rc
= -EOPNOTSUPP
;
103 #ifdef CONFIG_CIFS_XATTR
105 struct cifs_sb_info
*cifs_sb
;
106 struct tcon_link
*tlink
;
107 struct cifs_tcon
*pTcon
;
108 struct super_block
*sb
;
111 if (direntry
== NULL
)
113 if (direntry
->d_inode
== NULL
)
115 sb
= direntry
->d_inode
->i_sb
;
119 cifs_sb
= CIFS_SB(sb
);
120 tlink
= cifs_sb_tlink(cifs_sb
);
122 return PTR_ERR(tlink
);
123 pTcon
= tlink_tcon(tlink
);
127 full_path
= build_path_from_dentry(direntry
);
128 if (full_path
== NULL
) {
132 /* return dos attributes as pseudo xattr */
133 /* return alt name if available as pseudo attr */
135 /* if proc/fs/cifs/streamstoxattr is set then
136 search server for EAs or streams to
138 if (value_size
> MAX_EA_VALUE_SIZE
) {
139 cifs_dbg(FYI
, "size of EA value too large\n");
144 if (ea_name
== NULL
) {
145 cifs_dbg(FYI
, "Null xattr names not supported\n");
146 } else if (strncmp(ea_name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
)
148 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_XATTR
)
150 if (strncmp(ea_name
, CIFS_XATTR_DOS_ATTRIB
, 14) == 0)
151 cifs_dbg(FYI
, "attempt to set cifs inode metadata\n");
153 ea_name
+= XATTR_USER_PREFIX_LEN
; /* skip past user. prefix */
154 if (pTcon
->ses
->server
->ops
->set_EA
)
155 rc
= pTcon
->ses
->server
->ops
->set_EA(xid
, pTcon
,
156 full_path
, ea_name
, ea_value
, (__u16
)value_size
,
157 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
158 CIFS_MOUNT_MAP_SPECIAL_CHR
);
159 } else if (strncmp(ea_name
, XATTR_OS2_PREFIX
, XATTR_OS2_PREFIX_LEN
)
161 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_XATTR
)
164 ea_name
+= XATTR_OS2_PREFIX_LEN
; /* skip past os2. prefix */
165 if (pTcon
->ses
->server
->ops
->set_EA
)
166 rc
= pTcon
->ses
->server
->ops
->set_EA(xid
, pTcon
,
167 full_path
, ea_name
, ea_value
, (__u16
)value_size
,
168 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
169 CIFS_MOUNT_MAP_SPECIAL_CHR
);
170 } else if (strncmp(ea_name
, CIFS_XATTR_CIFS_ACL
,
171 strlen(CIFS_XATTR_CIFS_ACL
)) == 0) {
172 #ifdef CONFIG_CIFS_ACL
173 struct cifs_ntsd
*pacl
;
174 pacl
= kmalloc(value_size
, GFP_KERNEL
);
178 memcpy(pacl
, ea_value
, value_size
);
179 if (pTcon
->ses
->server
->ops
->set_acl
)
180 rc
= pTcon
->ses
->server
->ops
->set_acl(pacl
,
181 value_size
, direntry
->d_inode
,
182 full_path
, CIFS_ACL_DACL
);
185 if (rc
== 0) /* force revalidate of the inode */
186 CIFS_I(direntry
->d_inode
)->time
= 0;
190 cifs_dbg(FYI
, "Set CIFS ACL not supported yet\n");
191 #endif /* CONFIG_CIFS_ACL */
194 temp
= strncmp(ea_name
, POSIX_ACL_XATTR_ACCESS
,
195 strlen(POSIX_ACL_XATTR_ACCESS
));
197 #ifdef CONFIG_CIFS_POSIX
198 if (sb
->s_flags
& MS_POSIXACL
)
199 rc
= CIFSSMBSetPosixACL(xid
, pTcon
, full_path
,
200 ea_value
, (const int)value_size
,
201 ACL_TYPE_ACCESS
, cifs_sb
->local_nls
,
202 cifs_sb
->mnt_cifs_flags
&
203 CIFS_MOUNT_MAP_SPECIAL_CHR
);
204 cifs_dbg(FYI
, "set POSIX ACL rc %d\n", rc
);
206 cifs_dbg(FYI
, "set POSIX ACL not supported\n");
208 } else if (strncmp(ea_name
, POSIX_ACL_XATTR_DEFAULT
,
209 strlen(POSIX_ACL_XATTR_DEFAULT
)) == 0) {
210 #ifdef CONFIG_CIFS_POSIX
211 if (sb
->s_flags
& MS_POSIXACL
)
212 rc
= CIFSSMBSetPosixACL(xid
, pTcon
, full_path
,
213 ea_value
, (const int)value_size
,
214 ACL_TYPE_DEFAULT
, cifs_sb
->local_nls
,
215 cifs_sb
->mnt_cifs_flags
&
216 CIFS_MOUNT_MAP_SPECIAL_CHR
);
217 cifs_dbg(FYI
, "set POSIX default ACL rc %d\n", rc
);
219 cifs_dbg(FYI
, "set default POSIX ACL not supported\n");
222 cifs_dbg(FYI
, "illegal xattr request %s (only user namespace supported)\n",
224 /* BB what if no namespace prefix? */
225 /* Should we just pass them to server, except for
226 system and perhaps security prefixes? */
233 cifs_put_tlink(tlink
);
238 ssize_t
cifs_getxattr(struct dentry
*direntry
, const char *ea_name
,
239 void *ea_value
, size_t buf_size
)
241 ssize_t rc
= -EOPNOTSUPP
;
242 #ifdef CONFIG_CIFS_XATTR
244 struct cifs_sb_info
*cifs_sb
;
245 struct tcon_link
*tlink
;
246 struct cifs_tcon
*pTcon
;
247 struct super_block
*sb
;
250 if (direntry
== NULL
)
252 if (direntry
->d_inode
== NULL
)
254 sb
= direntry
->d_inode
->i_sb
;
258 cifs_sb
= CIFS_SB(sb
);
259 tlink
= cifs_sb_tlink(cifs_sb
);
261 return PTR_ERR(tlink
);
262 pTcon
= tlink_tcon(tlink
);
266 full_path
= build_path_from_dentry(direntry
);
267 if (full_path
== NULL
) {
271 /* return dos attributes as pseudo xattr */
272 /* return alt name if available as pseudo attr */
273 if (ea_name
== NULL
) {
274 cifs_dbg(FYI
, "Null xattr names not supported\n");
275 } else if (strncmp(ea_name
, XATTR_USER_PREFIX
, XATTR_USER_PREFIX_LEN
)
277 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_XATTR
)
280 if (strncmp(ea_name
, CIFS_XATTR_DOS_ATTRIB
, 14) == 0) {
281 cifs_dbg(FYI
, "attempt to query cifs inode metadata\n");
282 /* revalidate/getattr then populate from inode */
283 } /* BB add else when above is implemented */
284 ea_name
+= XATTR_USER_PREFIX_LEN
; /* skip past user. prefix */
285 if (pTcon
->ses
->server
->ops
->query_all_EAs
)
286 rc
= pTcon
->ses
->server
->ops
->query_all_EAs(xid
, pTcon
,
287 full_path
, ea_name
, ea_value
, buf_size
,
288 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
289 CIFS_MOUNT_MAP_SPECIAL_CHR
);
290 } else if (strncmp(ea_name
, XATTR_OS2_PREFIX
, XATTR_OS2_PREFIX_LEN
) == 0) {
291 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_XATTR
)
294 ea_name
+= XATTR_OS2_PREFIX_LEN
; /* skip past os2. prefix */
295 if (pTcon
->ses
->server
->ops
->query_all_EAs
)
296 rc
= pTcon
->ses
->server
->ops
->query_all_EAs(xid
, pTcon
,
297 full_path
, ea_name
, ea_value
, buf_size
,
298 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
299 CIFS_MOUNT_MAP_SPECIAL_CHR
);
300 } else if (strncmp(ea_name
, POSIX_ACL_XATTR_ACCESS
,
301 strlen(POSIX_ACL_XATTR_ACCESS
)) == 0) {
302 #ifdef CONFIG_CIFS_POSIX
303 if (sb
->s_flags
& MS_POSIXACL
)
304 rc
= CIFSSMBGetPosixACL(xid
, pTcon
, full_path
,
305 ea_value
, buf_size
, ACL_TYPE_ACCESS
,
307 cifs_sb
->mnt_cifs_flags
&
308 CIFS_MOUNT_MAP_SPECIAL_CHR
);
310 cifs_dbg(FYI
, "Query POSIX ACL not supported yet\n");
311 #endif /* CONFIG_CIFS_POSIX */
312 } else if (strncmp(ea_name
, POSIX_ACL_XATTR_DEFAULT
,
313 strlen(POSIX_ACL_XATTR_DEFAULT
)) == 0) {
314 #ifdef CONFIG_CIFS_POSIX
315 if (sb
->s_flags
& MS_POSIXACL
)
316 rc
= CIFSSMBGetPosixACL(xid
, pTcon
, full_path
,
317 ea_value
, buf_size
, ACL_TYPE_DEFAULT
,
319 cifs_sb
->mnt_cifs_flags
&
320 CIFS_MOUNT_MAP_SPECIAL_CHR
);
322 cifs_dbg(FYI
, "Query POSIX default ACL not supported yet\n");
323 #endif /* CONFIG_CIFS_POSIX */
324 } else if (strncmp(ea_name
, CIFS_XATTR_CIFS_ACL
,
325 strlen(CIFS_XATTR_CIFS_ACL
)) == 0) {
326 #ifdef CONFIG_CIFS_ACL
328 struct cifs_ntsd
*pacl
;
330 if (pTcon
->ses
->server
->ops
->get_acl
== NULL
)
331 goto get_ea_exit
; /* rc already EOPNOTSUPP */
333 pacl
= pTcon
->ses
->server
->ops
->get_acl(cifs_sb
,
334 direntry
->d_inode
, full_path
, &acllen
);
337 cifs_dbg(VFS
, "%s: error %zd getting sec desc\n",
341 if (acllen
> buf_size
)
344 memcpy(ea_value
, pacl
, acllen
);
350 cifs_dbg(FYI
, "Query CIFS ACL not supported yet\n");
351 #endif /* CONFIG_CIFS_ACL */
352 } else if (strncmp(ea_name
,
353 XATTR_TRUSTED_PREFIX
, XATTR_TRUSTED_PREFIX_LEN
) == 0) {
354 cifs_dbg(FYI
, "Trusted xattr namespace not supported yet\n");
355 } else if (strncmp(ea_name
,
356 XATTR_SECURITY_PREFIX
, XATTR_SECURITY_PREFIX_LEN
) == 0) {
357 cifs_dbg(FYI
, "Security xattr namespace not supported yet\n");
360 "illegal xattr request %s (only user namespace supported)\n",
363 /* We could add an additional check for streams ie
364 if proc/fs/cifs/streamstoxattr is set then
365 search server for EAs or streams to
374 cifs_put_tlink(tlink
);
379 ssize_t
cifs_listxattr(struct dentry
*direntry
, char *data
, size_t buf_size
)
381 ssize_t rc
= -EOPNOTSUPP
;
382 #ifdef CONFIG_CIFS_XATTR
384 struct cifs_sb_info
*cifs_sb
;
385 struct tcon_link
*tlink
;
386 struct cifs_tcon
*pTcon
;
387 struct super_block
*sb
;
390 if (direntry
== NULL
)
392 if (direntry
->d_inode
== NULL
)
394 sb
= direntry
->d_inode
->i_sb
;
398 cifs_sb
= CIFS_SB(sb
);
399 if (cifs_sb
->mnt_cifs_flags
& CIFS_MOUNT_NO_XATTR
)
402 tlink
= cifs_sb_tlink(cifs_sb
);
404 return PTR_ERR(tlink
);
405 pTcon
= tlink_tcon(tlink
);
409 full_path
= build_path_from_dentry(direntry
);
410 if (full_path
== NULL
) {
414 /* return dos attributes as pseudo xattr */
415 /* return alt name if available as pseudo attr */
417 /* if proc/fs/cifs/streamstoxattr is set then
418 search server for EAs or streams to
421 if (pTcon
->ses
->server
->ops
->query_all_EAs
)
422 rc
= pTcon
->ses
->server
->ops
->query_all_EAs(xid
, pTcon
,
423 full_path
, NULL
, data
, buf_size
,
424 cifs_sb
->local_nls
, cifs_sb
->mnt_cifs_flags
&
425 CIFS_MOUNT_MAP_SPECIAL_CHR
);
429 cifs_put_tlink(tlink
);