WHATSNEW: Add release notes for Samba 4.13.14.
[Samba.git] / source3 / modules / vfs_vxfs.c
blobfbc68d6bec54e3cda523a9753a2e5aff6d31e622
1 /*
2 Unix SMB/CIFS implementation.
3 Wrap VxFS calls in vfs functions.
4 This module is for ACL and XATTR handling.
6 Copyright (C) Symantec Corporation <www.symantec.com> 2014
7 Copyright (C) Veritas Technologies LLC <www.veritas.com> 2016
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program 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 the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "smbd/smbd.h"
25 #include "librpc/gen_ndr/ndr_xattr.h"
26 #include "../libcli/security/security.h"
27 #include "../librpc/gen_ndr/ndr_security.h"
28 #include "system/filesys.h"
29 #include "vfs_vxfs.h"
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_VFS
34 #define MODULE_NAME "vxfs"
37 * WARNING !! WARNING !!
39 * DO NOT CHANGE THIS FROM "system." space to
40 * "user." space unless you are shipping a product
41 * that RESTRICTS access to extended attributes
42 * to smbd-only. "system." space is restricted
43 * to root access only, "user." space is available
44 * to ANY USER.
46 * If this is changed to "user." and access
47 * to extended attributes is available via
48 * local processes or other remote file system
49 * (e.g. NFS) then the security of the system
50 * WILL BE COMPROMISED. i.e. non-root users
51 * WILL be able to overwrite Samba ACLs on
52 * the file system.
54 * If you need to modify this define, do
55 * so using CFLAGS on your build command
56 * line.
57 * e.g. CFLAGS=-DXATTR_USER_NTACL="user.NTACL"
59 * Added by: <jra@samba.org> 17 Sept. 2014.
63 #ifndef XATTR_USER_NTACL
64 #define XATTR_USER_NTACL "system.NTACL"
65 #endif
67 /* type values */
68 #define VXFS_ACL_UNDEFINED_TYPE 0
69 #define VXFS_ACL_USER_OBJ 1
70 #define VXFS_ACL_GROUP_OBJ 2
71 #define VXFS_ACL_USER 3
72 #define VXFS_ACL_GROUP 4
73 #define VXFS_ACL_OTHER 5
74 #define VXFS_ACL_MASK 6
78 * Compare aces
79 * This will compare two ace entries for sorting
80 * each entry contains: type, perms and id
81 * Sort by type first, if type is same sort by id.
83 static int vxfs_ace_cmp(const void *ace1, const void *ace2)
85 int ret = 0;
86 uint16_t type_a1, type_a2;
87 uint32_t id_a1, id_a2;
89 /* Type must be compared first */
90 type_a1 = SVAL(ace1, 0);
91 type_a2 = SVAL(ace2, 0);
93 ret = (type_a1 - type_a2);
94 if (!ret) {
95 /* Compare ID under type */
96 /* skip perm thus take offset as 4*/
97 id_a1 = IVAL(ace1, 4);
98 id_a2 = IVAL(ace2, 4);
99 ret = id_a1 - id_a2;
102 return ret;
105 static void vxfs_print_ace_buf(char *buf, int count) {
107 int i, offset = 0;
108 uint16_t type, perm;
109 uint32_t id;
111 DEBUG(10, ("vfs_vxfs: Printing aces:\n"));
112 for (i = 0; i < count; i++) {
113 type = SVAL(buf, offset);
114 offset += 2;
115 perm = SVAL(buf, offset);
116 offset += 2;
117 id = IVAL(buf, offset);
118 offset += 4;
120 DEBUG(10, ("vfs_vxfs: type = %u, perm = %u, id = %u\n",
121 (unsigned int)type, (unsigned int)perm,
122 (unsigned int)id));
127 * Sort aces so that comparing 2 ACLs will be straight forward.
128 * This function will fill buffer as follows:
129 * For each ace:
130 * 1. ace->a_type will be filled as first 2 bytes in buf.
131 * 2. ace->a_perm will be filled as next 2 bytes.
132 * 3. ace->xid will be filled as next 4 bytes.
133 * Thus each ace entry in buf is equal to 8 bytes.
134 * Also a_type is mapped to VXFS_ACL_* so that ordering aces
135 * becomes easy.
137 static char * vxfs_sort_acl(SMB_ACL_T theacl, TALLOC_CTX *mem_ctx,
138 uint32_t o_uid,
139 uint32_t o_gid) {
141 struct smb_acl_entry *smb_ace;
142 int i, count;
143 uint16_t type, perm;
144 uint32_t id;
145 int offset = 0;
146 char *buf = NULL;
148 count = theacl->count;
150 buf = talloc_zero_size(mem_ctx, count * 8);
151 if (!buf) {
152 return NULL;
155 smb_ace = theacl->acl;
157 for (i = 0; i < count; i++) {
158 /* Calculate type */
159 /* Map type to SMB_ACL_* to VXFS_ACL_* */
160 switch(smb_ace->a_type) {
161 case SMB_ACL_USER:
162 type = VXFS_ACL_USER;
163 break;
164 case SMB_ACL_USER_OBJ:
165 type = VXFS_ACL_USER_OBJ;
166 break;
167 case SMB_ACL_GROUP:
168 type = VXFS_ACL_GROUP;
169 break;
170 case SMB_ACL_GROUP_OBJ:
171 type = VXFS_ACL_GROUP_OBJ;
172 break;
173 case SMB_ACL_OTHER:
174 type = VXFS_ACL_OTHER;
175 break;
176 case SMB_ACL_MASK:
177 type = VXFS_ACL_MASK;
178 break;
179 default:
180 type = -1;
181 talloc_free(buf);
182 return NULL;
185 type = type & 0xff;
187 /* Calculate id:
188 * We get owner uid and owner group gid in o_uid and o_gid
189 * Put these ids instead of -1
191 switch(smb_ace->a_type) {
192 case SMB_ACL_USER:
193 id = smb_ace->info.user.uid;
194 break;
195 case SMB_ACL_GROUP:
196 id = smb_ace->info.group.gid;
197 break;
198 case SMB_ACL_USER_OBJ:
199 id = o_uid;
200 break;
201 case SMB_ACL_GROUP_OBJ:
202 id = o_gid;
203 break;
204 case SMB_ACL_MASK:
205 case SMB_ACL_OTHER:
206 id = -1;
207 break;
208 default:
209 /* Can't happen.. */
210 id = -1;
211 break;
214 /* Calculate perm */
215 perm = smb_ace->a_perm & 0xff;
217 /* TYPE is the first 2 bytes of an entry */
218 SSVAL(buf, offset, type);
219 offset += 2;
221 /* PERM is the next 2 bytes of an entry */
222 SSVAL(buf, offset, perm);
223 offset += 2;
225 /* ID is the last 4 bytes of an entry */
226 SIVAL(buf, offset, id);
227 offset += 4;
229 smb_ace++;
232 qsort(buf, count, 8, vxfs_ace_cmp);
234 DEBUG(10, ("vfs_vxfs: Print sorted aces:\n"));
235 vxfs_print_ace_buf(buf, count);
237 return buf;
240 /* This function gets e_buf as an arg which is sorted and created out of
241 * existing ACL. This function will compact this e_buf to c_buf where USER
242 * and GROUP aces matching with USER_OBJ and GROUP_OBJ will be merged
243 * respectively.
244 * This is similar to what posix_acls.c does. This will make sure existing
245 * acls are converted much similar to what posix_acls calculates.
248 static char * vxfs_compact_buf(char *e_buf, int *new_count, int count,
249 TALLOC_CTX *mem_ctx)
251 int i, e_offset = 0, c_offset = 0;
252 uint16_t type, perm, o_perm;
253 uint32_t id, owner_id, group_id;
254 char *c_buf = NULL;
257 if (count < 2) {
258 return NULL;
261 c_buf = talloc_zero_size(mem_ctx, count * 8);
262 if (!c_buf) {
263 return NULL;
266 /*Copy first two enries from e_buf to c_buf
267 *These are USER_OBJ and GROUP_OBJ
270 memcpy(c_buf, e_buf, 16);
272 (*new_count) = 2;
274 owner_id = IVAL(e_buf, 4);
275 group_id = IVAL(e_buf, 12);
277 c_offset = e_offset = 16;
279 /* Start comparing other entries */
280 for (i = 2; i < count; i++) {
282 type = SVAL(e_buf, e_offset);
283 e_offset += 2;
284 perm = SVAL(e_buf, e_offset);
285 e_offset += 2;
286 id = IVAL(e_buf, e_offset);
287 e_offset += 4;
289 switch(type) {
290 case VXFS_ACL_USER:
291 if (id == owner_id) {
292 o_perm = SVAL(c_buf, 2);
293 o_perm |= perm;
294 SSVAL(c_buf, 2, o_perm);
295 DEBUG(10, ("vfs_vxfs: merging with owner"
296 "e_type = %u,"
297 "e_perm = %u,"
298 "e_id = %u\n", (unsigned int)type,
299 (unsigned int)perm,
300 (unsigned int)id));
301 continue;
303 break;
304 case VXFS_ACL_GROUP:
305 if (id == group_id) {
306 o_perm = SVAL(c_buf, 10);
307 o_perm |= perm;
308 SSVAL(c_buf, 10, o_perm);
309 DEBUG(10, ("vfs_vxfs: merging with owner group"
310 "e_type = %u,"
311 "e_perm = %u,"
312 "e_id = %u\n", (unsigned int)type,
313 (unsigned int)perm,
314 (unsigned int)id));
315 continue;
317 break;
320 SSVAL(c_buf, c_offset, type);
321 c_offset += 2;
323 SSVAL(c_buf, c_offset, perm);
324 c_offset += 2;
326 SIVAL(c_buf, c_offset, id);
327 c_offset += 4;
329 (*new_count)++;
331 DEBUG(10, ("vfs_vxfs: new_count is %d\n", *new_count));
332 return c_buf;
335 /* Actually compare New ACL and existing ACL buf */
336 static bool vxfs_compare_acls(char *e_buf, char *n_buf, int n_count,
337 int e_count) {
339 uint16_t e_type, n_type, e_perm, n_perm;
340 uint32_t e_id, n_id;
341 int i, offset = 0;
343 if (!e_buf && !n_buf) {
344 DEBUG(10, ("vfs_vxfs: Empty buffers!\n"));
345 return false;
348 if ((e_count < 2) || (n_count < 2)) {
349 return false;
351 /*Get type from last entry from both buffers.
352 * It may or may not be ACL_MASK
354 n_type = SVAL(n_buf, offset + (8 * (n_count-1)));
355 e_type = SVAL(e_buf, offset + (8 * (e_count-1)));
357 /* Check for ACL_MASK entry properly. Handle all 4 cases*/
359 /* If ACL_MASK entry is present in any of the buffers,
360 * it will be always the last one. Calculate count to compare
361 * based on if ACL_MASK is present on new and existing ACL
363 if ((n_type != VXFS_ACL_MASK) && (e_type == VXFS_ACL_MASK)){
364 DEBUG(10, ("vfs_vxfs: New ACL does not have mask entry,"
365 "reduce count by 1 and compare\n"));
366 e_count = e_count -1;
368 if ((n_type == VXFS_ACL_MASK) && (e_type != VXFS_ACL_MASK)){
369 DEBUG(10, ("vfs_vxfs: new ACL to be set contains mask"
370 "existing ACL does not have mask entry\n"
371 "Need to set New ACL\n"));
372 return false;
375 if (memcmp(e_buf, n_buf, (e_count * 8)) != 0) {
376 DEBUG(10, ("vfs_vxfs: Compare with memcmp,"
377 "buffers not same!\n"));
378 return false;
381 return true;
384 /* In VxFS, POSIX ACLs are pointed by separate inode for each file/dir.
385 * However, files/dir share same POSIX ACL inode if ACLs are inherited
386 * from parent.
387 * To retain this behaviour, below function avoids ACL set call if
388 * underlying ACLs are already same and thus saves creating extra inode.
390 * This function will execute following steps:
391 * 1. Get existing ACL
392 * 2. Sort New ACL and existing ACL into buffers
393 * 3. Compact existing ACL buf
394 * 4. Finally compare New ACL buf and Compact buf
395 * 5. If same, return true
396 * 6. Else need to set New ACL
399 static bool vxfs_compare(connection_struct *conn,
400 const struct smb_filename *smb_fname,
401 SMB_ACL_T the_acl,
402 SMB_ACL_TYPE_T the_acl_type)
404 char *name = smb_fname->base_name;
405 SMB_ACL_T existing_acl = NULL;
406 bool ret = false;
407 int i, count = 0;
408 TALLOC_CTX *mem_ctx = talloc_tos();
409 char *existing_buf = NULL, *new_buf = NULL, *compact_buf = NULL;
410 struct smb_filename *smb_fname = NULL;
411 int status;
413 DEBUG(10, ("vfs_vxfs: Getting existing ACL for %s\n", name));
415 existing_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, smb_fname, the_acl_type,
416 mem_ctx);
417 if (existing_acl == NULL) {
418 DEBUG(10, ("vfs_vxfs: Failed to get ACL\n"));
419 goto out;
422 DEBUG(10, ("vfs_vxfs: Existing ACL count=%d\n", existing_acl->count));
423 DEBUG(10, ("vfs_vxfs: New ACL count=%d\n", the_acl->count));
425 if (existing_acl->count == 0) {
426 DEBUG(10, ("vfs_vxfs: ACL count is 0, Need to set\n"));
427 goto out;
430 status = SMB_VFS_STAT(conn, smb_fname);
431 if (status == -1) {
432 DEBUG(10, ("vfs_vxfs: stat failed!\n"));
433 goto out;
436 DEBUG(10, ("vfs_vxfs: Sorting existing ACL\n"));
437 existing_buf = vxfs_sort_acl(existing_acl, mem_ctx,
438 smb_fname->st.st_ex_uid,
439 smb_fname->st.st_ex_gid);
440 if (!existing_buf)
441 goto out;
443 DEBUG(10, ("vfs_vxfs: Sorting new ACL\n"));
444 new_buf = vxfs_sort_acl(the_acl, mem_ctx, smb_fname->st.st_ex_uid,
445 smb_fname->st.st_ex_gid);
446 if (!new_buf) {
447 goto out;
450 DEBUG(10, ("vfs_vxfs: Compact existing buf\n"));
451 compact_buf = vxfs_compact_buf(existing_buf, &count,
452 existing_acl->count,
453 mem_ctx);
454 if (!compact_buf) {
455 goto out;
458 vxfs_print_ace_buf(compact_buf, count);
460 /* COmpare ACLs only if count is same or mismatch by 1 */
461 if ((count == the_acl->count) ||
462 (count == the_acl->count + 1) ||
463 (count+1 == the_acl->count)) {
465 if (vxfs_compare_acls(compact_buf, new_buf, the_acl->count,
466 count)) {
467 DEBUG(10, ("vfs_vxfs: ACLs matched. Not setting.\n"));
468 ret = true;
469 goto out;
470 } else
471 DEBUG(10, ("vfs_vxfs: ACLs NOT matched. Setting\n"));
472 } else {
473 DEBUG(10, ("vfs_vxfs: ACLs count does not match. Setting\n"));
476 out:
478 TALLOC_FREE(existing_acl);
479 TALLOC_FREE(existing_buf);
480 TALLOC_FREE(compact_buf);
481 TALLOC_FREE(new_buf);
483 return ret;
486 static int vxfs_sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp,
487 SMB_ACL_T theacl)
490 if (vxfs_compare(fsp->conn, fsp->fsp_name, theacl,
491 SMB_ACL_TYPE_ACCESS)) {
492 return 0;
495 return SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, theacl);
498 static int vxfs_sys_acl_set_file(vfs_handle_struct *handle,
499 const struct smb_filename *smb_fname,
500 SMB_ACL_TYPE_T acltype,
501 SMB_ACL_T theacl)
503 if (vxfs_compare(handle->conn, smb_fname,
504 theacl, acltype)) {
505 return 0;
508 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle, smb_fname,
509 acltype, theacl);
512 static int vxfs_set_xattr(struct vfs_handle_struct *handle,
513 const struct smb_filename *smb_fname_in,
514 const char *name,
515 const void *value,
516 size_t size,
517 int flags)
519 struct smb_filename *smb_fname = NULL;
520 bool is_dir = false;
521 int ret = 0;
522 int saved_errno = 0;
524 DEBUG(10, ("In vxfs_set_xattr\n"));
526 smb_fname = cp_smb_filename_nostream(talloc_tos(), smb_fname_in);
527 if (smb_fname == NULL) {
528 errno = ENOMEM;
529 return -1;
532 if (SMB_VFS_NEXT_STAT(handle, smb_fname) != 0) {
533 TALLOC_FREE(smb_fname);
534 return -1;
537 is_dir = S_ISDIR(smb_fname->st.st_ex_mode);
539 ret = vxfs_setxattr_path(smb_fname_in->base_name, name, value, size,
540 flags, is_dir);
541 if ((ret == 0) ||
542 ((ret == -1) && (errno != ENOTSUP) && (errno != ENOSYS))) {
544 * Now remve old style xattr if it exists
546 SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname, name);
548 * Do not bother about return value
550 if (ret != 0) {
551 saved_errno = errno;
553 goto fail;
556 DEBUG(10, ("Fallback to xattr\n"));
557 if (strcmp(name, XATTR_NTACL_NAME) == 0) {
558 ret = SMB_VFS_NEXT_SETXATTR(handle, smb_fname,
559 XATTR_USER_NTACL,
560 value, size, flags);
561 if (ret != 0) {
562 saved_errno = errno;
563 goto fail;
565 return 0;
568 /* Clients can't set XATTR_USER_NTACL directly. */
569 if (strcasecmp(name, XATTR_USER_NTACL) == 0) {
570 saved_errno = EACCES;
571 ret = -1;
572 goto fail;
575 ret = SMB_VFS_NEXT_SETXATTR(handle, smb_fname,
576 name, value, size, flags);
577 if (ret != 0) {
578 saved_errno = errno;
579 goto fail;
582 fail:
583 TALLOC_FREE(smb_fname);
584 if (saved_errno != 0) {
585 saved_errno = errno;
587 return ret;
590 static int vxfs_fset_xattr(struct vfs_handle_struct *handle,
591 struct files_struct *fsp, const char *name,
592 const void *value, size_t size, int flags){
593 int ret = 0;
595 DEBUG(10, ("In vxfs_fset_xattr\n"));
597 ret = vxfs_setxattr_fd(fsp->fh->fd, name, value, size, flags);
598 if ((ret == 0) ||
599 ((ret == -1) && (errno != ENOTSUP) && (errno != ENOSYS))) {
600 SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp, name);
601 return ret;
604 DEBUG(10, ("Fallback to xattr"));
605 if (strcmp(name, XATTR_NTACL_NAME) == 0) {
606 return SMB_VFS_NEXT_FSETXATTR(handle, fsp, XATTR_USER_NTACL,
607 value, size, flags);
610 /* Clients can't set XATTR_USER_NTACL directly. */
611 if (strcasecmp(name, XATTR_USER_NTACL) == 0) {
612 errno = EACCES;
613 return -1;
616 return SMB_VFS_NEXT_FSETXATTR(handle, fsp, name, value, size, flags);
619 static ssize_t vxfs_get_xattr(struct vfs_handle_struct *handle,
620 const struct smb_filename *smb_fname,
621 const char *name,
622 void *value,
623 size_t size){
624 int ret;
626 DEBUG(10, ("In vxfs_get_xattr\n"));
627 ret = vxfs_getxattr_path(smb_fname->base_name, name, value, size);
628 if ((ret != -1) || ((errno != ENOTSUP) &&
629 (errno != ENOSYS) && (errno != ENODATA))) {
630 return ret;
633 DEBUG(10, ("Fallback to xattr\n"));
634 if (strcmp(name, XATTR_NTACL_NAME) == 0) {
635 return SMB_VFS_NEXT_GETXATTR(handle, smb_fname,
636 XATTR_USER_NTACL, value, size);
639 /* Clients can't see XATTR_USER_NTACL directly. */
640 if (strcasecmp(name, XATTR_USER_NTACL) == 0) {
641 errno = ENOATTR;
642 return -1;
645 return SMB_VFS_NEXT_GETXATTR(handle, smb_fname, name, value, size);
648 static ssize_t vxfs_fget_xattr(struct vfs_handle_struct *handle,
649 struct files_struct *fsp, const char *name,
650 void *value, size_t size){
651 int ret;
653 DEBUG(10, ("In vxfs_fget_xattr\n"));
655 ret = vxfs_getxattr_fd(fsp->fh->fd, name, value, size);
656 if ((ret != -1) || ((errno != ENOTSUP) &&
657 (errno != ENOSYS) && (errno != ENODATA))) {
658 return ret;
661 DEBUG(10, ("Fallback to xattr\n"));
662 if (strcmp(name, XATTR_NTACL_NAME) == 0) {
663 return SMB_VFS_NEXT_FGETXATTR(handle, fsp, XATTR_USER_NTACL,
664 value, size);
667 /* Clients can't see XATTR_USER_NTACL directly. */
668 if (strcasecmp(name, XATTR_USER_NTACL) == 0) {
669 errno = ENOATTR;
670 return -1;
673 return SMB_VFS_NEXT_FGETXATTR(handle, fsp, name, value, size);
676 static int vxfs_remove_xattr(struct vfs_handle_struct *handle,
677 const struct smb_filename *smb_fname_in,
678 const char *name)
680 bool is_dir = false;
681 int ret = 0, ret_new = 0, old_errno;
682 struct smb_filename *smb_fname = NULL;
684 DEBUG(10, ("In vxfs_remove_xattr\n"));
686 smb_fname = cp_smb_filename_nostream(talloc_tos(), smb_fname_in);
687 if (smb_fname == NULL) {
688 errno = ENOMEM;
689 return -1;
692 /* Remove with old way */
693 if (strcmp(name, XATTR_NTACL_NAME) == 0) {
694 ret = SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname,
695 XATTR_USER_NTACL);
696 } else {
697 if (strcasecmp(name, XATTR_USER_NTACL) != 0) {
698 ret = SMB_VFS_NEXT_REMOVEXATTR(handle, smb_fname,
699 name);
702 /* Remove with new way */
703 old_errno = errno;
705 if (SMB_VFS_NEXT_STAT(handle, smb_fname) != 0) {
706 TALLOC_FREE(smb_fname);
707 return -1;
710 is_dir = S_ISDIR(smb_fname->st.st_ex_mode);
711 TALLOC_FREE(smb_fname);
713 * If both fail, return failuer else return whichever succeeded
715 ret_new = vxfs_removexattr_path(smb_fname_in->base_name, name, is_dir);
716 if (errno == ENOTSUP || errno == ENOSYS) {
717 errno = old_errno;
719 if ((ret_new != -1) && (ret == -1)) {
720 ret = ret_new;
723 return ret;
727 static int vxfs_fremove_xattr(struct vfs_handle_struct *handle,
728 struct files_struct *fsp, const char *name){
729 int ret = 0, ret_new = 0, old_errno;
731 DEBUG(10, ("In vxfs_fremove_xattr\n"));
733 /* Remove with old way */
734 if (strcmp(name, XATTR_NTACL_NAME) == 0) {
735 ret = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp,
736 XATTR_USER_NTACL);
737 } else {
738 /* Clients can't remove XATTR_USER_NTACL directly. */
739 if (strcasecmp(name, XATTR_USER_NTACL) != 0) {
740 ret = SMB_VFS_NEXT_FREMOVEXATTR(handle, fsp,
741 name);
744 old_errno = errno;
746 /* Remove with new way */
747 ret_new = vxfs_removexattr_fd(fsp->fh->fd, name);
749 * If both fail, return failuer else return whichever succeeded
751 if (errno == ENOTSUP || errno == ENOSYS) {
752 errno = old_errno;
754 if ((ret_new != -1) && (ret == -1)) {
755 ret = ret_new;
758 return ret;
762 static size_t vxfs_filter_list(char *list, size_t size)
764 char *str = list;
766 while (str - list < size) {
767 size_t element_len = strlen(str) + 1;
768 if (strcasecmp(str, XATTR_USER_NTACL) == 0) {
769 memmove(str,
770 str + element_len,
771 size - (str - list) - element_len);
772 size -= element_len;
773 continue;
775 str += element_len;
777 return size;
780 static ssize_t vxfs_listxattr(vfs_handle_struct *handle,
781 const struct smb_filename *smb_fname,
782 char *list,
783 size_t size)
785 ssize_t result;
787 result = vxfs_listxattr_path(smb_fname->base_name, list, size);
788 if (result >= 0 || ((errno != ENOTSUP) && (errno != ENOSYS))) {
789 return result;
792 result = SMB_VFS_NEXT_LISTXATTR(handle, smb_fname, list, size);
794 if (result <= 0) {
795 return result;
798 /* Remove any XATTR_USER_NTACL elements from the returned list. */
799 result = vxfs_filter_list(list, result);
801 return result;
804 static ssize_t vxfs_flistxattr(struct vfs_handle_struct *handle,
805 struct files_struct *fsp, char *list,
806 size_t size)
808 ssize_t result;
810 result = vxfs_listxattr_fd(fsp->fh->fd, list, size);
811 if (result >= 0 || ((errno != ENOTSUP) && (errno != ENOSYS))) {
812 return result;
815 result = SMB_VFS_NEXT_FLISTXATTR(handle, fsp, list, size);
817 if (result <= 0) {
818 return result;
821 /* Remove any XATTR_USER_NTACL elements from the returned list. */
822 result = vxfs_filter_list(list, result);
824 return result;
827 static NTSTATUS vxfs_set_ea_dos_attributes(struct vfs_handle_struct *handle,
828 const struct smb_filename *smb_fname,
829 uint32_t dosmode)
831 NTSTATUS err;
832 int ret = 0;
833 bool attrset = false;
834 bool is_dir = false;
836 DBG_DEBUG("Entered function\n");
838 is_dir = S_ISDIR(smb_fname->st.st_ex_mode);
839 if (!(dosmode & FILE_ATTRIBUTE_READONLY)) {
840 ret = vxfs_checkwxattr_path(smb_fname->base_name);
841 if (ret == -1) {
842 DBG_DEBUG("ret:%d\n", ret);
843 if ((errno != EOPNOTSUPP) && (errno != ENOENT)) {
844 return map_nt_error_from_unix(errno);
848 if (dosmode & FILE_ATTRIBUTE_READONLY) {
849 ret = vxfs_setwxattr_path(smb_fname->base_name, is_dir);
850 DBG_DEBUG("ret:%d\n", ret);
851 if (ret == -1) {
852 if ((errno != EOPNOTSUPP) && (errno != EINVAL)) {
853 return map_nt_error_from_unix(errno);
855 } else {
856 attrset = true;
859 err = SMB_VFS_NEXT_SET_DOS_ATTRIBUTES(handle, smb_fname, dosmode);
860 if (!NT_STATUS_IS_OK(err)) {
861 if (attrset) {
862 ret = vxfs_clearwxattr_path(smb_fname->base_name, is_dir);
863 DBG_DEBUG("ret:%d\n", ret);
864 if ((ret == -1) && (errno != ENOENT)) {
865 return map_nt_error_from_unix(errno);
870 return err;
873 static NTSTATUS vxfs_fset_ea_dos_attributes(struct vfs_handle_struct *handle,
874 struct files_struct *fsp,
875 uint32_t dosmode)
877 NTSTATUS err;
878 int ret = 0;
879 bool attrset = false;
881 DBG_DEBUG("Entered function\n");
883 if (!(dosmode & FILE_ATTRIBUTE_READONLY)) {
884 ret = vxfs_checkwxattr_fd(fsp->fh->fd);
885 if (ret == -1) {
886 DBG_DEBUG("ret:%d\n", ret);
887 if ((errno != EOPNOTSUPP) && (errno != ENOENT)) {
888 return map_nt_error_from_unix(errno);
892 if (dosmode & FILE_ATTRIBUTE_READONLY) {
893 ret = vxfs_setwxattr_fd(fsp->fh->fd);
894 DBG_DEBUG("ret:%d\n", ret);
895 if (ret == -1) {
896 if ((errno != EOPNOTSUPP) && (errno != EINVAL)) {
897 return map_nt_error_from_unix(errno);
899 } else {
900 attrset = true;
903 err = SMB_VFS_NEXT_FSET_DOS_ATTRIBUTES(handle, fsp, dosmode);
904 if (!NT_STATUS_IS_OK(err)) {
905 if (attrset) {
906 ret = vxfs_clearwxattr_fd(fsp->fh->fd);
907 DBG_DEBUG("ret:%d\n", ret);
908 if ((ret == -1) && (errno != ENOENT)) {
909 return map_nt_error_from_unix(errno);
913 return err;
916 static int vfs_vxfs_connect(struct vfs_handle_struct *handle,
917 const char *service, const char *user)
920 int ret;
922 ret = SMB_VFS_NEXT_CONNECT(handle, service, user);
923 if (ret < 0) {
924 return ret;
927 vxfs_init();
929 return 0;
932 static struct vfs_fn_pointers vfs_vxfs_fns = {
933 .connect_fn = vfs_vxfs_connect,
935 #ifdef VXFS_ACL_SHARE
936 .sys_acl_set_file_fn = vxfs_sys_acl_set_file,
937 .sys_acl_set_fd_fn = vxfs_sys_acl_set_fd,
938 #endif
940 .set_dos_attributes_fn = vxfs_set_ea_dos_attributes,
941 .fset_dos_attributes_fn = vxfs_fset_ea_dos_attributes,
942 .getxattr_fn = vxfs_get_xattr,
943 .getxattrat_send_fn = vfs_not_implemented_getxattrat_send,
944 .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv,
945 .fgetxattr_fn = vxfs_fget_xattr,
946 .listxattr_fn = vxfs_listxattr,
947 .flistxattr_fn = vxfs_flistxattr,
948 .removexattr_fn = vxfs_remove_xattr,
949 .fremovexattr_fn = vxfs_fremove_xattr,
950 .setxattr_fn = vxfs_set_xattr,
951 .fsetxattr_fn = vxfs_fset_xattr,
954 static_decl_vfs;
955 NTSTATUS vfs_vxfs_init(TALLOC_CTX *ctx)
957 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "vxfs",
958 &vfs_vxfs_fns);