2 Unix SMB/CIFS implementation.
3 Wrap gpfs calls in vfs functions.
5 Copyright (C) Christian Ambach <cambach1@de.ibm.com> 2006
7 Major code contributions by Chetan Shringarpure <chetan.sh@in.ibm.com>
8 and Gomati Mohanan <gomati.mohanan@in.ibm.com>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "smbd/smbd.h"
26 #include "librpc/gen_ndr/ndr_xattr.h"
27 #include "include/smbprofile.h"
28 #include "modules/non_posix_acls.h"
31 #define DBGC_CLASS DBGC_VFS
34 #include "nfs4_acls.h"
36 #include "system/filesys.h"
38 #include "lib/util/tevent_unix.h"
40 struct gpfs_config_data
{
54 static int vfs_gpfs_kernel_flock(vfs_handle_struct
*handle
, files_struct
*fsp
,
55 uint32 share_mode
, uint32 access_mask
)
58 struct gpfs_config_data
*config
;
61 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
62 struct gpfs_config_data
,
65 if(!config
->sharemodes
) {
69 START_PROFILE(syscall_kernel_flock
);
71 kernel_flock(fsp
->fh
->fd
, share_mode
, access_mask
);
73 if (!set_gpfs_sharemode(fsp
, access_mask
, fsp
->share_access
)) {
77 END_PROFILE(syscall_kernel_flock
);
82 static int vfs_gpfs_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
85 struct gpfs_config_data
*config
;
87 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
88 struct gpfs_config_data
,
91 if (config
->sharemodes
&& (fsp
->fh
!= NULL
) && (fsp
->fh
->fd
!= -1)) {
92 set_gpfs_sharemode(fsp
, 0, 0);
95 return SMB_VFS_NEXT_CLOSE(handle
, fsp
);
98 static int vfs_gpfs_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
101 struct gpfs_config_data
*config
;
104 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
105 struct gpfs_config_data
,
108 if (linux_set_lease_sighandler(fsp
->fh
->fd
) == -1)
111 START_PROFILE(syscall_linux_setlease
);
113 if (config
->leases
) {
114 ret
= set_gpfs_lease(fsp
->fh
->fd
,leasetype
);
117 END_PROFILE(syscall_linux_setlease
);
122 static int vfs_gpfs_get_real_filename(struct vfs_handle_struct
*handle
,
130 char real_pathname
[PATH_MAX
+1];
133 struct gpfs_config_data
*config
;
135 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
136 struct gpfs_config_data
,
139 if (!config
->getrealfilename
) {
140 return SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
,
141 mem_ctx
, found_name
);
144 mangled
= mangle_is_mangled(name
, handle
->conn
->params
);
146 return SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
,
147 mem_ctx
, found_name
);
150 full_path
= talloc_asprintf(talloc_tos(), "%s/%s", path
, name
);
151 if (full_path
== NULL
) {
156 buflen
= sizeof(real_pathname
) - 1;
158 result
= smbd_gpfs_get_realfilename_path(full_path
, real_pathname
,
161 TALLOC_FREE(full_path
);
163 if ((result
== -1) && (errno
== ENOSYS
)) {
164 return SMB_VFS_NEXT_GET_REAL_FILENAME(
165 handle
, path
, name
, mem_ctx
, found_name
);
169 DEBUG(10, ("smbd_gpfs_get_realfilename_path returned %s\n",
175 * GPFS does not necessarily null-terminate the returned path
176 * but instead returns the buffer length in buflen.
179 if (buflen
< sizeof(real_pathname
)) {
180 real_pathname
[buflen
] = '\0';
182 real_pathname
[sizeof(real_pathname
)-1] = '\0';
185 DEBUG(10, ("smbd_gpfs_get_realfilename_path: %s/%s -> %s\n",
186 path
, name
, real_pathname
));
188 name
= strrchr_m(real_pathname
, '/');
194 *found_name
= talloc_strdup(mem_ctx
, name
+1);
195 if (*found_name
== NULL
) {
203 static void gpfs_dumpacl(int level
, struct gpfs_acl
*gacl
)
208 DEBUG(0, ("gpfs acl is NULL\n"));
212 DEBUG(level
, ("gpfs acl: nace: %d, type:%d, version:%d, level:%d, len:%d\n",
213 gacl
->acl_nace
, gacl
->acl_type
, gacl
->acl_version
, gacl
->acl_level
, gacl
->acl_len
));
214 for(i
=0; i
<gacl
->acl_nace
; i
++)
216 struct gpfs_ace_v4
*gace
= gacl
->ace_v4
+ i
;
217 DEBUG(level
, ("\tace[%d]: type:%d, flags:0x%x, mask:0x%x, iflags:0x%x, who:%u\n",
218 i
, gace
->aceType
, gace
->aceFlags
, gace
->aceMask
,
219 gace
->aceIFlags
, gace
->aceWho
));
224 * get the ACL from GPFS, allocated on the specified mem_ctx
225 * internally retries when initial buffer was too small
227 * caller needs to cast result to either
228 * raw = yes: struct gpfs_opaque_acl
229 * raw = no: struct gpfs_acl
232 static void *vfs_gpfs_getacl(TALLOC_CTX
*mem_ctx
,
235 const gpfs_aclType_t type
)
246 aclbuf
= talloc_zero_size(mem_ctx
, size
);
247 if (aclbuf
== NULL
) {
253 struct gpfs_opaque_acl
*buf
= (struct gpfs_opaque_acl
*) aclbuf
;
254 buf
->acl_type
= type
;
255 flags
= GPFS_GETACL_NATIVE
;
256 len
= (unsigned int *) &(buf
->acl_buffer_len
);
257 struct_size
= sizeof(struct gpfs_opaque_acl
);
259 struct gpfs_acl
*buf
= (struct gpfs_acl
*) aclbuf
;
260 buf
->acl_type
= type
;
261 flags
= GPFS_GETACL_STRUCT
;
262 len
= &(buf
->acl_len
);
263 struct_size
= sizeof(struct gpfs_acl
);
266 /* set the length of the buffer as input value */
270 ret
= smbd_gpfs_getacl((char *)fname
, flags
, aclbuf
);
271 if ((ret
!= 0) && (errno
== ENOSPC
)) {
273 * get the size needed to accommodate the complete buffer
275 * the value returned only applies to the ACL blob in the
276 * struct so make sure to also have headroom for the first
277 * struct members by adding room for the complete struct
278 * (might be a few bytes too much then)
280 size
= *len
+ struct_size
;
282 DEBUG(10, ("Increasing ACL buffer size to %zu\n", size
));
287 DEBUG(5, ("smbd_gpfs_getacl failed with %s\n",
296 /* Tries to get nfs4 acls and returns SMB ACL allocated.
297 * On failure returns 1 if it got non-NFSv4 ACL to prompt
298 * retry with POSIX ACL checks.
299 * On failure returns -1 if there is system (GPFS) error, check errno.
300 * Returns 0 on success
302 static int gpfs_get_nfs4_acl(const char *fname
, SMB4ACL_T
**ppacl
)
305 struct gpfs_acl
*gacl
= NULL
;
306 DEBUG(10, ("gpfs_get_nfs4_acl invoked for %s\n", fname
));
309 gacl
= (struct gpfs_acl
*) vfs_gpfs_getacl(talloc_tos(), fname
,
312 DEBUG(9, ("gpfs_getacl failed for %s with %s\n",
313 fname
, strerror(errno
)));
317 if (gacl
->acl_type
!= GPFS_ACL_TYPE_NFS4
) {
318 DEBUG(10, ("Got non-nfsv4 acl\n"));
319 /* Retry with POSIX ACLs check */
324 *ppacl
= smb_create_smb4acl();
326 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
327 gacl
->acl_len
, gacl
->acl_level
, gacl
->acl_version
,
330 for (i
=0; i
<gacl
->acl_nace
; i
++) {
331 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[i
];
332 SMB_ACE4PROP_T smbace
;
333 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
334 "who: %d\n", gace
->aceType
, gace
->aceIFlags
,
335 gace
->aceFlags
, gace
->aceMask
, gace
->aceWho
));
338 if (gace
->aceIFlags
& ACE4_IFLAG_SPECIAL_ID
) {
339 smbace
.flags
|= SMB_ACE4_ID_SPECIAL
;
340 switch (gace
->aceWho
) {
341 case ACE4_SPECIAL_OWNER
:
342 smbace
.who
.special_id
= SMB_ACE4_WHO_OWNER
;
344 case ACE4_SPECIAL_GROUP
:
345 smbace
.who
.special_id
= SMB_ACE4_WHO_GROUP
;
347 case ACE4_SPECIAL_EVERYONE
:
348 smbace
.who
.special_id
= SMB_ACE4_WHO_EVERYONE
;
351 DEBUG(8, ("invalid special gpfs id %d "
352 "ignored\n", gace
->aceWho
));
353 continue; /* don't add it */
356 if (gace
->aceFlags
& ACE4_FLAG_GROUP_ID
)
357 smbace
.who
.gid
= gace
->aceWho
;
359 smbace
.who
.uid
= gace
->aceWho
;
362 /* remove redundant deny entries */
363 if (i
> 0 && gace
->aceType
== SMB_ACE4_ACCESS_DENIED_ACE_TYPE
) {
364 struct gpfs_ace_v4
*prev
= &gacl
->ace_v4
[i
-1];
365 if (prev
->aceType
== SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
&&
366 prev
->aceFlags
== gace
->aceFlags
&&
367 prev
->aceIFlags
== gace
->aceIFlags
&&
368 (gace
->aceMask
& prev
->aceMask
) == 0 &&
369 gace
->aceWho
== prev
->aceWho
) {
370 /* it's redundant - skip it */
375 smbace
.aceType
= gace
->aceType
;
376 smbace
.aceFlags
= gace
->aceFlags
;
377 smbace
.aceMask
= gace
->aceMask
;
378 smb_add_ace4(*ppacl
, &smbace
);
386 static NTSTATUS
gpfsacl_fget_nt_acl(vfs_handle_struct
*handle
,
387 files_struct
*fsp
, uint32 security_info
,
389 struct security_descriptor
**ppdesc
)
391 SMB4ACL_T
*pacl
= NULL
;
393 struct gpfs_config_data
*config
;
397 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
398 struct gpfs_config_data
,
399 return NT_STATUS_INTERNAL_ERROR
);
402 return SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
,
406 result
= gpfs_get_nfs4_acl(fsp
->fsp_name
->base_name
, &pacl
);
409 return smb_fget_nt_acl_nfs4(fsp
, security_info
, mem_ctx
, ppdesc
, pacl
);
412 DEBUG(10, ("retrying with posix acl...\n"));
413 return posix_fget_nt_acl(fsp
, security_info
, mem_ctx
, ppdesc
);
416 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
417 return map_nt_error_from_unix(errno
);
420 static NTSTATUS
gpfsacl_get_nt_acl(vfs_handle_struct
*handle
,
422 uint32 security_info
,
423 TALLOC_CTX
*mem_ctx
, struct security_descriptor
**ppdesc
)
425 SMB4ACL_T
*pacl
= NULL
;
427 struct gpfs_config_data
*config
;
431 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
432 struct gpfs_config_data
,
433 return NT_STATUS_INTERNAL_ERROR
);
436 return SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
,
440 result
= gpfs_get_nfs4_acl(name
, &pacl
);
443 return smb_get_nt_acl_nfs4(handle
->conn
, name
, security_info
,
444 mem_ctx
, ppdesc
, pacl
);
447 DEBUG(10, ("retrying with posix acl...\n"));
448 return posix_get_nt_acl(handle
->conn
, name
, security_info
,
452 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
453 return map_nt_error_from_unix(errno
);
456 static bool gpfsacl_process_smbacl(files_struct
*fsp
, SMB4ACL_T
*smbacl
)
459 gpfs_aclLen_t gacl_len
;
461 struct gpfs_acl
*gacl
;
462 TALLOC_CTX
*mem_ctx
= talloc_tos();
464 gacl_len
= offsetof(gpfs_acl_t
, ace_v4
) + smb_get_naces(smbacl
) *
465 sizeof(gpfs_ace_v4_t
);
467 gacl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, gacl_len
);
469 DEBUG(0, ("talloc failed\n"));
474 gacl
->acl_len
= gacl_len
;
476 gacl
->acl_version
= GPFS_ACL_VERSION_NFS4
;
477 gacl
->acl_type
= GPFS_ACL_TYPE_NFS4
;
478 gacl
->acl_nace
= 0; /* change later... */
480 for (smbace
=smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
481 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[gacl
->acl_nace
];
482 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
484 gace
->aceType
= aceprop
->aceType
;
485 gace
->aceFlags
= aceprop
->aceFlags
;
486 gace
->aceMask
= aceprop
->aceMask
;
489 * GPFS can't distinguish between WRITE and APPEND on
490 * files, so one being set without the other is an
491 * error. Sorry for the many ()'s :-)
494 if (!fsp
->is_directory
496 ((((gace
->aceMask
& ACE4_MASK_WRITE
) == 0)
497 && ((gace
->aceMask
& ACE4_MASK_APPEND
) != 0))
499 (((gace
->aceMask
& ACE4_MASK_WRITE
) != 0)
500 && ((gace
->aceMask
& ACE4_MASK_APPEND
) == 0)))
502 lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
503 "merge_writeappend", True
)) {
504 DEBUG(2, ("vfs_gpfs.c: file [%s]: ACE contains "
505 "WRITE^APPEND, setting WRITE|APPEND\n",
507 gace
->aceMask
|= ACE4_MASK_WRITE
|ACE4_MASK_APPEND
;
510 gace
->aceIFlags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_IFLAG_SPECIAL_ID
: 0;
512 if (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
)
514 switch(aceprop
->who
.special_id
)
516 case SMB_ACE4_WHO_EVERYONE
:
517 gace
->aceWho
= ACE4_SPECIAL_EVERYONE
;
519 case SMB_ACE4_WHO_OWNER
:
520 gace
->aceWho
= ACE4_SPECIAL_OWNER
;
522 case SMB_ACE4_WHO_GROUP
:
523 gace
->aceWho
= ACE4_SPECIAL_GROUP
;
526 DEBUG(8, ("unsupported special_id %d\n", aceprop
->who
.special_id
));
527 continue; /* don't add it !!! */
530 /* just only for the type safety... */
531 if (aceprop
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)
532 gace
->aceWho
= aceprop
->who
.gid
;
534 gace
->aceWho
= aceprop
->who
.uid
;
540 ret
= smbd_gpfs_putacl(fsp
->fsp_name
->base_name
,
541 GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gacl
);
543 DEBUG(8, ("gpfs_putacl failed with %s\n", strerror(errno
)));
544 gpfs_dumpacl(8, gacl
);
548 DEBUG(10, ("gpfs_putacl succeeded\n"));
552 static NTSTATUS
gpfsacl_set_nt_acl_internal(files_struct
*fsp
, uint32 security_info_sent
, const struct security_descriptor
*psd
)
554 struct gpfs_acl
*acl
;
555 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
557 acl
= (struct gpfs_acl
*) vfs_gpfs_getacl(talloc_tos(),
558 fsp
->fsp_name
->base_name
,
561 return map_nt_error_from_unix(errno
);
564 if (acl
->acl_version
== GPFS_ACL_VERSION_NFS4
) {
565 if (lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
566 "refuse_dacl_protected", false)
567 && (psd
->type
&SEC_DESC_DACL_PROTECTED
)) {
568 DEBUG(2, ("Rejecting unsupported ACL with DACL_PROTECTED bit set\n"));
570 return NT_STATUS_NOT_SUPPORTED
;
573 result
= smb_set_nt_acl_nfs4(
574 fsp
, security_info_sent
, psd
,
575 gpfsacl_process_smbacl
);
576 } else { /* assume POSIX ACL - by default... */
577 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
584 static NTSTATUS
gpfsacl_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, const struct security_descriptor
*psd
)
586 struct gpfs_config_data
*config
;
588 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
589 struct gpfs_config_data
,
590 return NT_STATUS_INTERNAL_ERROR
);
593 return SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
596 return gpfsacl_set_nt_acl_internal(fsp
, security_info_sent
, psd
);
599 static SMB_ACL_T
gpfs2smb_acl(const struct gpfs_acl
*pacl
, TALLOC_CTX
*mem_ctx
)
604 result
= sys_acl_init(mem_ctx
);
605 if (result
== NULL
) {
610 result
->count
= pacl
->acl_nace
;
611 result
->acl
= talloc_realloc(result
, result
->acl
, struct smb_acl_entry
,
613 if (result
->acl
== NULL
) {
619 for (i
=0; i
<pacl
->acl_nace
; i
++) {
620 struct smb_acl_entry
*ace
= &result
->acl
[i
];
621 const struct gpfs_ace_v1
*g_ace
= &pacl
->ace_v1
[i
];
623 DEBUG(10, ("Converting type %d id %lu perm %x\n",
624 (int)g_ace
->ace_type
, (unsigned long)g_ace
->ace_who
,
625 (int)g_ace
->ace_perm
));
627 switch (g_ace
->ace_type
) {
629 ace
->a_type
= SMB_ACL_USER
;
630 ace
->info
.user
.uid
= (uid_t
)g_ace
->ace_who
;
632 case GPFS_ACL_USER_OBJ
:
633 ace
->a_type
= SMB_ACL_USER_OBJ
;
636 ace
->a_type
= SMB_ACL_GROUP
;
637 ace
->info
.group
.gid
= (gid_t
)g_ace
->ace_who
;
639 case GPFS_ACL_GROUP_OBJ
:
640 ace
->a_type
= SMB_ACL_GROUP_OBJ
;
643 ace
->a_type
= SMB_ACL_OTHER
;
646 ace
->a_type
= SMB_ACL_MASK
;
649 DEBUG(10, ("Got invalid ace_type: %d\n",
657 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_READ
) ?
659 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_WRITE
) ?
661 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_EXECUTE
) ?
664 DEBUGADD(10, ("Converted to %d perm %x\n",
665 ace
->a_type
, ace
->a_perm
));
671 static SMB_ACL_T
gpfsacl_get_posix_acl(const char *path
, gpfs_aclType_t type
,
674 struct gpfs_acl
*pacl
;
675 SMB_ACL_T result
= NULL
;
677 pacl
= vfs_gpfs_getacl(talloc_tos(), path
, false, type
);
680 DEBUG(10, ("vfs_gpfs_getacl failed for %s with %s\n",
681 path
, strerror(errno
)));
688 if (pacl
->acl_version
!= GPFS_ACL_VERSION_POSIX
) {
689 DEBUG(10, ("Got acl version %d, expected %d\n",
690 pacl
->acl_version
, GPFS_ACL_VERSION_POSIX
));
695 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
696 pacl
->acl_len
, pacl
->acl_level
, pacl
->acl_version
,
699 result
= gpfs2smb_acl(pacl
, mem_ctx
);
700 if (result
!= NULL
) {
715 static SMB_ACL_T
gpfsacl_sys_acl_get_file(vfs_handle_struct
*handle
,
720 gpfs_aclType_t gpfs_type
;
721 struct gpfs_config_data
*config
;
723 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
724 struct gpfs_config_data
,
728 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
,
733 case SMB_ACL_TYPE_ACCESS
:
734 gpfs_type
= GPFS_ACL_TYPE_ACCESS
;
736 case SMB_ACL_TYPE_DEFAULT
:
737 gpfs_type
= GPFS_ACL_TYPE_DEFAULT
;
740 DEBUG(0, ("Got invalid type: %d\n", type
));
741 smb_panic("exiting");
744 return gpfsacl_get_posix_acl(path_p
, gpfs_type
, mem_ctx
);
747 static SMB_ACL_T
gpfsacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
751 struct gpfs_config_data
*config
;
753 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
754 struct gpfs_config_data
,
758 return SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
, mem_ctx
);
761 return gpfsacl_get_posix_acl(fsp
->fsp_name
->base_name
,
762 GPFS_ACL_TYPE_ACCESS
, mem_ctx
);
765 static int gpfsacl_sys_acl_blob_get_file(vfs_handle_struct
*handle
,
768 char **blob_description
,
771 struct gpfs_config_data
*config
;
772 struct gpfs_opaque_acl
*acl
= NULL
;
776 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
777 struct gpfs_config_data
,
781 return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle
, path_p
,
788 acl
= (struct gpfs_opaque_acl
*)
789 vfs_gpfs_getacl(mem_ctx
,
795 DEBUG(5, ("vfs_gpfs_getacl finished with errno %d: %s\n",
796 errno
, strerror(errno
)));
798 /* EINVAL means POSIX ACL, bail out on other cases */
799 if (errno
!= EINVAL
) {
808 * we only need the actual ACL blob here
809 * acl_version will always be NFS4 because we asked
811 * acl_type is only used for POSIX ACLs
813 aclblob
.data
= (uint8_t*) acl
->acl_var_data
;
814 aclblob
.length
= acl
->acl_buffer_len
;
816 *blob_description
= talloc_strdup(mem_ctx
, "gpfs_nfs4_acl");
817 if (!*blob_description
) {
823 result
= non_posix_sys_acl_blob_get_file_helper(handle
, path_p
,
831 /* fall back to POSIX ACL */
832 return posix_sys_acl_blob_get_file(handle
, path_p
, mem_ctx
,
833 blob_description
, blob
);
836 static int gpfsacl_sys_acl_blob_get_fd(vfs_handle_struct
*handle
,
839 char **blob_description
,
842 struct gpfs_config_data
*config
;
843 struct gpfs_opaque_acl
*acl
= NULL
;
847 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
848 struct gpfs_config_data
,
852 return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle
, fsp
, mem_ctx
,
853 blob_description
, blob
);
857 acl
= (struct gpfs_opaque_acl
*) vfs_gpfs_getacl(mem_ctx
,
858 fsp
->fsp_name
->base_name
,
863 DEBUG(5, ("vfs_gpfs_getacl finished with errno %d: %s\n",
864 errno
, strerror(errno
)));
866 /* EINVAL means POSIX ACL, bail out on other cases */
867 if (errno
!= EINVAL
) {
876 * we only need the actual ACL blob here
877 * acl_version will always be NFS4 because we asked
879 * acl_type is only used for POSIX ACLs
881 aclblob
.data
= (uint8_t*) acl
->acl_var_data
;
882 aclblob
.length
= acl
->acl_buffer_len
;
884 *blob_description
= talloc_strdup(mem_ctx
, "gpfs_nfs4_acl");
885 if (!*blob_description
) {
891 result
= non_posix_sys_acl_blob_get_fd_helper(handle
, fsp
,
899 /* fall back to POSIX ACL */
900 return posix_sys_acl_blob_get_fd(handle
, fsp
, mem_ctx
,
901 blob_description
, blob
);
904 static struct gpfs_acl
*smb2gpfs_acl(const SMB_ACL_T pacl
,
908 struct gpfs_acl
*result
;
911 DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl
->count
));
913 len
= offsetof(gpfs_acl_t
, ace_v1
) + (pacl
->count
) *
914 sizeof(gpfs_ace_v1_t
);
916 result
= (struct gpfs_acl
*)SMB_MALLOC(len
);
917 if (result
== NULL
) {
922 result
->acl_len
= len
;
923 result
->acl_level
= 0;
924 result
->acl_version
= GPFS_ACL_VERSION_POSIX
;
925 result
->acl_type
= (type
== SMB_ACL_TYPE_DEFAULT
) ?
926 GPFS_ACL_TYPE_DEFAULT
: GPFS_ACL_TYPE_ACCESS
;
927 result
->acl_nace
= pacl
->count
;
929 for (i
=0; i
<pacl
->count
; i
++) {
930 const struct smb_acl_entry
*ace
= &pacl
->acl
[i
];
931 struct gpfs_ace_v1
*g_ace
= &result
->ace_v1
[i
];
933 DEBUG(10, ("Converting type %d perm %x\n",
934 (int)ace
->a_type
, (int)ace
->a_perm
));
938 switch(ace
->a_type
) {
940 g_ace
->ace_type
= GPFS_ACL_USER
;
941 g_ace
->ace_who
= (gpfs_uid_t
)ace
->info
.user
.uid
;
943 case SMB_ACL_USER_OBJ
:
944 g_ace
->ace_type
= GPFS_ACL_USER_OBJ
;
945 g_ace
->ace_perm
|= ACL_PERM_CONTROL
;
949 g_ace
->ace_type
= GPFS_ACL_GROUP
;
950 g_ace
->ace_who
= (gpfs_uid_t
)ace
->info
.group
.gid
;
952 case SMB_ACL_GROUP_OBJ
:
953 g_ace
->ace_type
= GPFS_ACL_GROUP_OBJ
;
957 g_ace
->ace_type
= GPFS_ACL_MASK
;
958 g_ace
->ace_perm
= 0x8f;
962 g_ace
->ace_type
= GPFS_ACL_OTHER
;
966 DEBUG(10, ("Got invalid ace_type: %d\n", ace
->a_type
));
972 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_READ
) ?
974 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_WRITE
) ?
976 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_EXECUTE
) ?
977 ACL_PERM_EXECUTE
: 0;
979 DEBUGADD(10, ("Converted to %d id %d perm %x\n",
980 g_ace
->ace_type
, g_ace
->ace_who
, g_ace
->ace_perm
));
986 static int gpfsacl_sys_acl_set_file(vfs_handle_struct
*handle
,
991 struct gpfs_acl
*gpfs_acl
;
993 struct gpfs_config_data
*config
;
995 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
996 struct gpfs_config_data
,
1000 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, type
, theacl
);
1003 gpfs_acl
= smb2gpfs_acl(theacl
, type
);
1004 if (gpfs_acl
== NULL
) {
1008 result
= smbd_gpfs_putacl((char *)name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gpfs_acl
);
1010 SAFE_FREE(gpfs_acl
);
1014 static int gpfsacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
1018 struct gpfs_config_data
*config
;
1020 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1021 struct gpfs_config_data
,
1025 return SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
1028 return gpfsacl_sys_acl_set_file(handle
, fsp
->fsp_name
->base_name
,
1029 SMB_ACL_TYPE_ACCESS
, theacl
);
1032 static int gpfsacl_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
1035 struct gpfs_config_data
*config
;
1037 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1038 struct gpfs_config_data
,
1042 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
1050 * Assumed: mode bits are shiftable and standard
1051 * Output: the new aceMask field for an smb nfs4 ace
1053 static uint32
gpfsacl_mask_filter(uint32 aceType
, uint32 aceMask
, uint32 rwx
)
1055 const uint32 posix_nfs4map
[3] = {
1056 SMB_ACE4_EXECUTE
, /* execute */
1057 SMB_ACE4_WRITE_DATA
| SMB_ACE4_APPEND_DATA
, /* write; GPFS specific */
1058 SMB_ACE4_READ_DATA
/* read */
1061 uint32_t posix_mask
= 0x01;
1065 for(i
=0; i
<3; i
++) {
1066 nfs4_bits
= posix_nfs4map
[i
];
1067 posix_bit
= rwx
& posix_mask
;
1069 if (aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
) {
1071 aceMask
|= nfs4_bits
;
1073 aceMask
&= ~nfs4_bits
;
1075 /* add deny bits when suitable */
1077 aceMask
|= nfs4_bits
;
1079 aceMask
&= ~nfs4_bits
;
1080 } /* other ace types are unexpected */
1088 static int gpfsacl_emu_chmod(const char *path
, mode_t mode
)
1090 SMB4ACL_T
*pacl
= NULL
;
1092 bool haveAllowEntry
[SMB_ACE4_WHO_EVERYONE
+ 1] = {False
, False
, False
, False
};
1094 files_struct fake_fsp
; /* TODO: rationalize parametrization */
1098 DEBUG(10, ("gpfsacl_emu_chmod invoked for %s mode %o\n", path
, mode
));
1100 result
= gpfs_get_nfs4_acl(path
, &pacl
);
1104 if (mode
& ~(S_IRWXU
| S_IRWXG
| S_IRWXO
)) {
1105 DEBUG(2, ("WARNING: cutting extra mode bits %o on %s\n", mode
, path
));
1108 for (smbace
=smb_first_ace4(pacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
1109 SMB_ACE4PROP_T
*ace
= smb_get_ace4(smbace
);
1110 uint32_t specid
= ace
->who
.special_id
;
1112 if (ace
->flags
&SMB_ACE4_ID_SPECIAL
&&
1113 ace
->aceType
<=SMB_ACE4_ACCESS_DENIED_ACE_TYPE
&&
1114 specid
<= SMB_ACE4_WHO_EVERYONE
) {
1118 if (ace
->aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
)
1119 haveAllowEntry
[specid
] = True
;
1121 /* mode >> 6 for @owner, mode >> 3 for @group,
1122 * mode >> 0 for @everyone */
1123 newMask
= gpfsacl_mask_filter(ace
->aceType
, ace
->aceMask
,
1124 mode
>> ((SMB_ACE4_WHO_EVERYONE
- specid
) * 3));
1125 if (ace
->aceMask
!=newMask
) {
1126 DEBUG(10, ("ace changed for %s (%o -> %o) id=%d\n",
1127 path
, ace
->aceMask
, newMask
, specid
));
1129 ace
->aceMask
= newMask
;
1133 /* make sure we have at least ALLOW entries
1134 * for all the 3 special ids (@EVERYONE, @OWNER, @GROUP)
1137 for(i
= SMB_ACE4_WHO_OWNER
; i
<=SMB_ACE4_WHO_EVERYONE
; i
++) {
1140 if (haveAllowEntry
[i
]==True
)
1144 ace
.aceType
= SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
;
1145 ace
.flags
|= SMB_ACE4_ID_SPECIAL
;
1146 ace
.who
.special_id
= i
;
1148 if (i
==SMB_ACE4_WHO_GROUP
) /* not sure it's necessary... */
1149 ace
.aceFlags
|= SMB_ACE4_IDENTIFIER_GROUP
;
1151 ace
.aceMask
= gpfsacl_mask_filter(ace
.aceType
, ace
.aceMask
,
1152 mode
>> ((SMB_ACE4_WHO_EVERYONE
- i
) * 3));
1154 /* don't add unnecessary aces */
1158 /* we add it to the END - as windows expects allow aces */
1159 smb_add_ace4(pacl
, &ace
);
1160 DEBUG(10, ("Added ALLOW ace for %s, mode=%o, id=%d, aceMask=%x\n",
1161 path
, mode
, i
, ace
.aceMask
));
1164 /* don't add complementary DENY ACEs here */
1165 ZERO_STRUCT(fake_fsp
);
1166 fake_fsp
.fsp_name
= synthetic_smb_fname(
1167 talloc_tos(), path
, NULL
, NULL
);
1168 if (fake_fsp
.fsp_name
== NULL
) {
1173 if (gpfsacl_process_smbacl(&fake_fsp
, pacl
) == False
) {
1174 TALLOC_FREE(fake_fsp
.fsp_name
);
1178 TALLOC_FREE(fake_fsp
.fsp_name
);
1179 return 0; /* ok for [f]chmod */
1182 static int vfs_gpfs_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
1184 struct smb_filename
*smb_fname_cpath
;
1187 smb_fname_cpath
= synthetic_smb_fname(talloc_tos(), path
, NULL
, NULL
);
1188 if (smb_fname_cpath
== NULL
) {
1193 if (SMB_VFS_NEXT_STAT(handle
, smb_fname_cpath
) != 0) {
1197 /* avoid chmod() if possible, to preserve acls */
1198 if ((smb_fname_cpath
->st
.st_ex_mode
& ~S_IFMT
) == mode
) {
1202 rc
= gpfsacl_emu_chmod(path
, mode
);
1204 return SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1208 static int vfs_gpfs_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
1213 if (SMB_VFS_NEXT_FSTAT(handle
, fsp
, &st
) != 0) {
1217 /* avoid chmod() if possible, to preserve acls */
1218 if ((st
.st_ex_mode
& ~S_IFMT
) == mode
) {
1222 rc
= gpfsacl_emu_chmod(fsp
->fsp_name
->base_name
, mode
);
1224 return SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1228 static int gpfs_set_xattr(struct vfs_handle_struct
*handle
, const char *path
,
1229 const char *name
, const void *value
, size_t size
, int flags
){
1230 struct xattr_DOSATTRIB dosattrib
;
1231 enum ndr_err_code ndr_err
;
1233 const char *attrstr
= value
;
1234 unsigned int dosmode
=0;
1235 struct gpfs_winattr attrs
;
1237 struct gpfs_config_data
*config
;
1239 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1240 struct gpfs_config_data
,
1243 if (!config
->winattr
) {
1244 DEBUG(10, ("gpfs_set_xattr:name is %s -> next\n",name
));
1245 return SMB_VFS_NEXT_SETXATTR(handle
,path
,name
,value
,size
,flags
);
1248 DEBUG(10, ("gpfs_set_xattr: %s \n",path
));
1250 /* Only handle DOS Attributes */
1251 if (strcmp(name
,SAMBA_XATTR_DOS_ATTRIB
) != 0){
1252 DEBUG(5, ("gpfs_set_xattr:name is %s\n",name
));
1253 return SMB_VFS_NEXT_SETXATTR(handle
,path
,name
,value
,size
,flags
);
1256 blob
.data
= (uint8_t *)attrstr
;
1259 ndr_err
= ndr_pull_struct_blob(&blob
, talloc_tos(), &dosattrib
,
1260 (ndr_pull_flags_fn_t
)ndr_pull_xattr_DOSATTRIB
);
1262 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
1263 DEBUG(1, ("gpfs_set_xattr: bad ndr decode "
1264 "from EA on file %s: Error = %s\n",
1265 path
, ndr_errstr(ndr_err
)));
1269 if (dosattrib
.version
!= 3) {
1270 DEBUG(1, ("gpfs_set_xattr: expected dosattrib version 3, got "
1271 "%d\n", (int)dosattrib
.version
));
1274 if (!(dosattrib
.info
.info3
.valid_flags
& XATTR_DOSINFO_ATTRIB
)) {
1275 DEBUG(10, ("gpfs_set_xattr: XATTR_DOSINFO_ATTRIB not "
1276 "valid, ignoring\n"));
1280 dosmode
= dosattrib
.info
.info3
.attrib
;
1283 /*Just map RD_ONLY, ARCHIVE, SYSTEM HIDDEN and SPARSE. Ignore the others*/
1284 if (dosmode
& FILE_ATTRIBUTE_ARCHIVE
){
1285 attrs
.winAttrs
|= GPFS_WINATTR_ARCHIVE
;
1287 if (dosmode
& FILE_ATTRIBUTE_HIDDEN
){
1288 attrs
.winAttrs
|= GPFS_WINATTR_HIDDEN
;
1290 if (dosmode
& FILE_ATTRIBUTE_SYSTEM
){
1291 attrs
.winAttrs
|= GPFS_WINATTR_SYSTEM
;
1293 if (dosmode
& FILE_ATTRIBUTE_READONLY
){
1294 attrs
.winAttrs
|= GPFS_WINATTR_READONLY
;
1296 if (dosmode
& FILE_ATTRIBUTE_SPARSE
) {
1297 attrs
.winAttrs
|= GPFS_WINATTR_SPARSE_FILE
;
1301 ret
= set_gpfs_winattrs(discard_const_p(char, path
),
1302 GPFS_WINATTR_SET_ATTRS
, &attrs
);
1304 if (errno
== ENOSYS
) {
1305 return SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
,
1309 DEBUG(1, ("gpfs_set_xattr:Set GPFS attributes failed %d\n",ret
));
1313 DEBUG(10, ("gpfs_set_xattr:Set attributes: 0x%x\n",attrs
.winAttrs
));
1317 static ssize_t
gpfs_get_xattr(struct vfs_handle_struct
*handle
, const char *path
,
1318 const char *name
, void *value
, size_t size
){
1319 char *attrstr
= value
;
1320 unsigned int dosmode
= 0;
1321 struct gpfs_winattr attrs
;
1323 struct gpfs_config_data
*config
;
1325 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1326 struct gpfs_config_data
,
1329 if (!config
->winattr
) {
1330 DEBUG(10, ("gpfs_get_xattr:name is %s -> next\n",name
));
1331 return SMB_VFS_NEXT_GETXATTR(handle
,path
,name
,value
,size
);
1334 DEBUG(10, ("gpfs_get_xattr: %s \n",path
));
1336 /* Only handle DOS Attributes */
1337 if (strcmp(name
,SAMBA_XATTR_DOS_ATTRIB
) != 0){
1338 DEBUG(5, ("gpfs_get_xattr:name is %s\n",name
));
1339 return SMB_VFS_NEXT_GETXATTR(handle
,path
,name
,value
,size
);
1342 ret
= get_gpfs_winattrs(discard_const_p(char, path
), &attrs
);
1344 if (errno
== ENOSYS
) {
1345 return SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
,
1349 DEBUG(1, ("gpfs_get_xattr: Get GPFS attributes failed: "
1350 "%d (%s)\n", ret
, strerror(errno
)));
1354 DEBUG(10, ("gpfs_get_xattr:Got attributes: 0x%x\n",attrs
.winAttrs
));
1356 /*Just map RD_ONLY, ARCHIVE, SYSTEM, HIDDEN and SPARSE. Ignore the others*/
1357 if (attrs
.winAttrs
& GPFS_WINATTR_ARCHIVE
){
1358 dosmode
|= FILE_ATTRIBUTE_ARCHIVE
;
1360 if (attrs
.winAttrs
& GPFS_WINATTR_HIDDEN
){
1361 dosmode
|= FILE_ATTRIBUTE_HIDDEN
;
1363 if (attrs
.winAttrs
& GPFS_WINATTR_SYSTEM
){
1364 dosmode
|= FILE_ATTRIBUTE_SYSTEM
;
1366 if (attrs
.winAttrs
& GPFS_WINATTR_READONLY
){
1367 dosmode
|= FILE_ATTRIBUTE_READONLY
;
1369 if (attrs
.winAttrs
& GPFS_WINATTR_SPARSE_FILE
) {
1370 dosmode
|= FILE_ATTRIBUTE_SPARSE
;
1373 snprintf(attrstr
, size
, "0x%2.2x",
1374 (unsigned int)(dosmode
& SAMBA_ATTRIBUTES_MASK
));
1375 DEBUG(10, ("gpfs_get_xattr: returning %s\n",attrstr
));
1379 static int vfs_gpfs_stat(struct vfs_handle_struct
*handle
,
1380 struct smb_filename
*smb_fname
)
1382 struct gpfs_winattr attrs
;
1386 struct gpfs_config_data
*config
;
1388 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1389 struct gpfs_config_data
,
1392 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1397 if (!config
->winattr
) {
1401 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &fname
);
1402 if (!NT_STATUS_IS_OK(status
)) {
1403 errno
= map_errno_from_nt_status(status
);
1406 ret
= get_gpfs_winattrs(discard_const_p(char, fname
), &attrs
);
1409 smb_fname
->st
.st_ex_calculated_birthtime
= false;
1410 smb_fname
->st
.st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1411 smb_fname
->st
.st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1412 smb_fname
->st
.vfs_private
= attrs
.winAttrs
;
1417 static int vfs_gpfs_fstat(struct vfs_handle_struct
*handle
,
1418 struct files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1420 struct gpfs_winattr attrs
;
1422 struct gpfs_config_data
*config
;
1424 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1425 struct gpfs_config_data
,
1428 ret
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1432 if ((fsp
->fh
== NULL
) || (fsp
->fh
->fd
== -1)) {
1435 if (!config
->winattr
) {
1439 ret
= smbd_fget_gpfs_winattrs(fsp
->fh
->fd
, &attrs
);
1441 sbuf
->st_ex_calculated_birthtime
= false;
1442 sbuf
->st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1443 sbuf
->st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1448 static int vfs_gpfs_lstat(struct vfs_handle_struct
*handle
,
1449 struct smb_filename
*smb_fname
)
1451 struct gpfs_winattr attrs
;
1455 struct gpfs_config_data
*config
;
1457 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1458 struct gpfs_config_data
,
1461 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1465 if (!config
->winattr
) {
1469 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &path
);
1470 if (!NT_STATUS_IS_OK(status
)) {
1471 errno
= map_errno_from_nt_status(status
);
1474 ret
= get_gpfs_winattrs(discard_const_p(char, path
), &attrs
);
1477 smb_fname
->st
.st_ex_calculated_birthtime
= false;
1478 smb_fname
->st
.st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1479 smb_fname
->st
.st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1480 smb_fname
->st
.vfs_private
= attrs
.winAttrs
;
1485 static int vfs_gpfs_ntimes(struct vfs_handle_struct
*handle
,
1486 const struct smb_filename
*smb_fname
,
1487 struct smb_file_time
*ft
)
1490 struct gpfs_winattr attrs
;
1494 struct gpfs_config_data
*config
;
1496 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1497 struct gpfs_config_data
,
1500 ret
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1502 /* don't complain if access was denied */
1503 if (errno
!= EPERM
&& errno
!= EACCES
) {
1504 DEBUG(1,("vfs_gpfs_ntimes: SMB_VFS_NEXT_NTIMES failed:"
1505 "%s", strerror(errno
)));
1510 if(null_timespec(ft
->create_time
)){
1511 DEBUG(10,("vfs_gpfs_ntimes:Create Time is NULL\n"));
1515 if (!config
->winattr
) {
1519 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &path
);
1520 if (!NT_STATUS_IS_OK(status
)) {
1521 errno
= map_errno_from_nt_status(status
);
1526 attrs
.creationTime
.tv_sec
= ft
->create_time
.tv_sec
;
1527 attrs
.creationTime
.tv_nsec
= ft
->create_time
.tv_nsec
;
1529 ret
= set_gpfs_winattrs(discard_const_p(char, path
),
1530 GPFS_WINATTR_SET_CREATION_TIME
, &attrs
);
1531 if(ret
== -1 && errno
!= ENOSYS
){
1532 DEBUG(1,("vfs_gpfs_ntimes: set GPFS ntimes failed %d\n",ret
));
1539 static int vfs_gpfs_fallocate(struct vfs_handle_struct
*handle
,
1540 struct files_struct
*fsp
, enum vfs_fallocate_mode mode
,
1541 off_t offset
, off_t len
)
1544 struct gpfs_config_data
*config
;
1546 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1547 struct gpfs_config_data
,
1550 if (!config
->prealloc
) {
1551 /* you should better not run fallocate() on GPFS at all */
1556 if (mode
== VFS_FALLOCATE_KEEP_SIZE
) {
1557 DEBUG(10, ("Unsupported VFS_FALLOCATE_KEEP_SIZE\n"));
1562 ret
= smbd_gpfs_prealloc(fsp
->fh
->fd
, offset
, len
);
1564 if (ret
== -1 && errno
!= ENOSYS
) {
1565 DEBUG(0, ("GPFS prealloc failed: %s\n", strerror(errno
)));
1566 } else if (ret
== -1 && errno
== ENOSYS
) {
1567 DEBUG(10, ("GPFS prealloc not supported.\n"));
1569 DEBUG(10, ("GPFS prealloc succeeded.\n"));
1575 static int vfs_gpfs_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1579 struct gpfs_config_data
*config
;
1581 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1582 struct gpfs_config_data
,
1585 if (!config
->ftruncate
) {
1586 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1589 result
= smbd_gpfs_ftruncate(fsp
->fh
->fd
, len
);
1590 if ((result
== -1) && (errno
== ENOSYS
)) {
1591 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1596 static bool vfs_gpfs_is_offline(struct vfs_handle_struct
*handle
,
1597 const struct smb_filename
*fname
,
1598 SMB_STRUCT_STAT
*sbuf
)
1600 struct gpfs_winattr attrs
;
1603 struct gpfs_config_data
*config
;
1605 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1606 struct gpfs_config_data
,
1609 if (!config
->winattr
) {
1610 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1613 status
= get_full_smb_filename(talloc_tos(), fname
, &path
);
1614 if (!NT_STATUS_IS_OK(status
)) {
1615 errno
= map_errno_from_nt_status(status
);
1619 if (VALID_STAT(*sbuf
)) {
1620 attrs
.winAttrs
= sbuf
->vfs_private
;
1623 ret
= get_gpfs_winattrs(path
, &attrs
);
1630 if ((attrs
.winAttrs
& GPFS_WINATTR_OFFLINE
) != 0) {
1631 DEBUG(10, ("%s is offline\n", path
));
1635 DEBUG(10, ("%s is online\n", path
));
1637 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1640 static bool vfs_gpfs_aio_force(struct vfs_handle_struct
*handle
,
1641 struct files_struct
*fsp
)
1643 return vfs_gpfs_is_offline(handle
, fsp
->fsp_name
, &fsp
->fsp_name
->st
);
1646 static ssize_t
vfs_gpfs_sendfile(vfs_handle_struct
*handle
, int tofd
,
1647 files_struct
*fsp
, const DATA_BLOB
*hdr
,
1648 off_t offset
, size_t n
)
1650 if ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0) {
1654 return SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fsp
, hdr
, offset
, n
);
1657 static int vfs_gpfs_connect(struct vfs_handle_struct
*handle
,
1658 const char *service
, const char *user
)
1660 struct gpfs_config_data
*config
;
1663 smbd_gpfs_lib_init();
1665 ret
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
1671 config
= talloc_zero(handle
->conn
, struct gpfs_config_data
);
1673 SMB_VFS_NEXT_DISCONNECT(handle
);
1674 DEBUG(0, ("talloc_zero() failed\n"));
1678 config
->sharemodes
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1679 "sharemodes", true);
1681 config
->leases
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1684 config
->hsm
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1687 config
->syncio
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1690 config
->winattr
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1693 config
->ftruncate
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1696 config
->getrealfilename
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1697 "getrealfilename", true);
1699 config
->dfreequota
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1700 "dfreequota", false);
1702 config
->prealloc
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1705 config
->acl
= lp_parm_bool(SNUM(handle
->conn
), "gpfs", "acl", true);
1707 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
1708 NULL
, struct gpfs_config_data
,
1711 if (config
->leases
) {
1713 * GPFS lease code is based on kernel oplock code
1714 * so make sure it is turned on
1716 if (!lp_kernel_oplocks(SNUM(handle
->conn
))) {
1717 DEBUG(5, ("Enabling kernel oplocks for "
1718 "gpfs:leases to work\n"));
1719 lp_do_parameter(SNUM(handle
->conn
), "kernel oplocks",
1724 * as the kernel does not properly support Level II oplocks
1725 * and GPFS leases code is based on kernel infrastructure, we
1726 * need to turn off Level II oplocks if gpfs:leases is enabled
1728 if (lp_level2_oplocks(SNUM(handle
->conn
))) {
1729 DEBUG(5, ("gpfs:leases are enabled, disabling "
1730 "Level II oplocks\n"));
1731 lp_do_parameter(SNUM(handle
->conn
), "level2 oplocks",
1739 static int vfs_gpfs_get_quotas(const char *path
, uid_t uid
, gid_t gid
,
1741 struct gpfs_quotaInfo
*qi_user
,
1742 struct gpfs_quotaInfo
*qi_group
,
1743 struct gpfs_quotaInfo
*qi_fset
)
1750 * We want to always use the directory to get the fileset id,
1751 * because files might have a share mode. We also do not want
1752 * to get the parent directory when there is already a
1753 * directory to avoid stepping in a different fileset. The
1754 * path passed here is currently either "." or a filename, so
1755 * this is ok. The proper solution would be having a way to
1756 * query the fileset id without opening the file.
1758 b
= parent_dirname(talloc_tos(), path
, &dir_path
, NULL
);
1764 DEBUG(10, ("path %s, directory %s\n", path
, dir_path
));
1766 err
= get_gpfs_fset_id(dir_path
, fset_id
);
1768 DEBUG(0, ("Get fset id failed path %s, dir %s, errno %d.\n",
1769 path
, dir_path
, errno
));
1773 err
= get_gpfs_quota(path
, GPFS_USRQUOTA
, uid
, qi_user
);
1778 err
= get_gpfs_quota(path
, GPFS_GRPQUOTA
, gid
, qi_group
);
1783 err
= get_gpfs_quota(path
, GPFS_FILESETQUOTA
, *fset_id
, qi_fset
);
1791 static void vfs_gpfs_disk_free_quota(struct gpfs_quotaInfo qi
, time_t cur_time
,
1792 uint64_t *dfree
, uint64_t *dsize
)
1794 uint64_t usage
, limit
;
1797 * The quota reporting is done in units of 1024 byte blocks, but
1798 * sys_fsusage uses units of 512 byte blocks, adjust the block number
1799 * accordingly. Also filter possibly negative usage counts from gpfs.
1801 usage
= qi
.blockUsage
< 0 ? 0 : (uint64_t)qi
.blockUsage
* 2;
1802 limit
= (uint64_t)qi
.blockHardLimit
* 2;
1805 * When the grace time for the exceeded soft block quota has been
1806 * exceeded, the soft block quota becomes an additional hard limit.
1808 if (qi
.blockSoftLimit
&&
1809 qi
.blockGraceTime
&& cur_time
> qi
.blockGraceTime
) {
1810 /* report disk as full */
1812 *dsize
= MIN(*dsize
, usage
);
1815 if (!qi
.blockHardLimit
)
1818 if (usage
>= limit
) {
1819 /* report disk as full */
1821 *dsize
= MIN(*dsize
, usage
);
1824 /* limit has not been reached, determine "free space" */
1825 *dfree
= MIN(*dfree
, limit
- usage
);
1826 *dsize
= MIN(*dsize
, limit
);
1830 static uint64_t vfs_gpfs_disk_free(vfs_handle_struct
*handle
, const char *path
,
1831 bool small_query
, uint64_t *bsize
,
1832 uint64_t *dfree
, uint64_t *dsize
)
1834 struct security_unix_token
*utok
;
1835 struct gpfs_quotaInfo qi_user
, qi_group
, qi_fset
;
1836 struct gpfs_config_data
*config
;
1840 SMB_VFS_HANDLE_GET_DATA(handle
, config
, struct gpfs_config_data
,
1841 return (uint64_t)-1);
1842 if (!config
->dfreequota
) {
1843 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1844 bsize
, dfree
, dsize
);
1847 err
= sys_fsusage(path
, dfree
, dsize
);
1849 DEBUG (0, ("Could not get fs usage, errno %d\n", errno
));
1850 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1851 bsize
, dfree
, dsize
);
1854 /* sys_fsusage returns units of 512 bytes */
1857 DEBUG(10, ("fs dfree %llu, dsize %llu\n",
1858 (unsigned long long)*dfree
, (unsigned long long)*dsize
));
1860 utok
= handle
->conn
->session_info
->unix_token
;
1861 err
= vfs_gpfs_get_quotas(path
, utok
->uid
, utok
->gid
, &fset_id
,
1862 &qi_user
, &qi_group
, &qi_fset
);
1864 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1865 bsize
, dfree
, dsize
);
1868 cur_time
= time(NULL
);
1870 /* Adjust free space and size according to quota limits. */
1871 vfs_gpfs_disk_free_quota(qi_user
, cur_time
, dfree
, dsize
);
1872 vfs_gpfs_disk_free_quota(qi_group
, cur_time
, dfree
, dsize
);
1874 /* Id 0 indicates the default quota, not an actual quota */
1876 vfs_gpfs_disk_free_quota(qi_fset
, cur_time
, dfree
, dsize
);
1879 disk_norm(small_query
, bsize
, dfree
, dsize
);
1883 static uint32_t vfs_gpfs_capabilities(struct vfs_handle_struct
*handle
,
1884 enum timestamp_set_resolution
*p_ts_res
)
1886 struct gpfs_config_data
*config
;
1889 next
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
1891 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1892 struct gpfs_config_data
,
1896 next
|= FILE_SUPPORTS_REMOTE_STORAGE
;
1901 static int vfs_gpfs_open(struct vfs_handle_struct
*handle
,
1902 struct smb_filename
*smb_fname
, files_struct
*fsp
,
1903 int flags
, mode_t mode
)
1905 struct gpfs_config_data
*config
;
1907 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1908 struct gpfs_config_data
,
1911 if (config
->syncio
) {
1914 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
1917 static ssize_t
vfs_gpfs_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
1918 void *data
, size_t n
, off_t offset
)
1922 ret
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
1924 DEBUG(10, ("vfs_private = %x\n",
1925 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1928 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1929 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1930 notify_fname(handle
->conn
, NOTIFY_ACTION_MODIFIED
,
1931 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1932 fsp
->fsp_name
->base_name
);
1938 struct vfs_gpfs_pread_state
{
1939 struct files_struct
*fsp
;
1944 static void vfs_gpfs_pread_done(struct tevent_req
*subreq
);
1946 static struct tevent_req
*vfs_gpfs_pread_send(struct vfs_handle_struct
*handle
,
1947 TALLOC_CTX
*mem_ctx
,
1948 struct tevent_context
*ev
,
1949 struct files_struct
*fsp
,
1950 void *data
, size_t n
,
1953 struct tevent_req
*req
, *subreq
;
1954 struct vfs_gpfs_pread_state
*state
;
1956 req
= tevent_req_create(mem_ctx
, &state
, struct vfs_gpfs_pread_state
);
1961 subreq
= SMB_VFS_NEXT_PREAD_SEND(state
, ev
, handle
, fsp
, data
,
1963 if (tevent_req_nomem(subreq
, req
)) {
1964 return tevent_req_post(req
, ev
);
1966 tevent_req_set_callback(subreq
, vfs_gpfs_pread_done
, req
);
1970 static void vfs_gpfs_pread_done(struct tevent_req
*subreq
)
1972 struct tevent_req
*req
= tevent_req_callback_data(
1973 subreq
, struct tevent_req
);
1974 struct vfs_gpfs_pread_state
*state
= tevent_req_data(
1975 req
, struct vfs_gpfs_pread_state
);
1977 state
->ret
= SMB_VFS_PREAD_RECV(subreq
, &state
->err
);
1978 TALLOC_FREE(subreq
);
1979 tevent_req_done(req
);
1982 static ssize_t
vfs_gpfs_pread_recv(struct tevent_req
*req
, int *err
)
1984 struct vfs_gpfs_pread_state
*state
= tevent_req_data(
1985 req
, struct vfs_gpfs_pread_state
);
1986 struct files_struct
*fsp
= state
->fsp
;
1988 if (tevent_req_is_unix_error(req
, err
)) {
1993 DEBUG(10, ("vfs_private = %x\n",
1994 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1996 if ((state
->ret
!= -1) &&
1997 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1998 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1999 DEBUG(10, ("sending notify\n"));
2000 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
2001 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
2002 fsp
->fsp_name
->base_name
);
2008 static ssize_t
vfs_gpfs_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
2009 const void *data
, size_t n
, off_t offset
)
2013 ret
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
2015 DEBUG(10, ("vfs_private = %x\n",
2016 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
2019 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
2020 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
2021 notify_fname(handle
->conn
, NOTIFY_ACTION_MODIFIED
,
2022 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
2023 fsp
->fsp_name
->base_name
);
2029 struct vfs_gpfs_pwrite_state
{
2030 struct files_struct
*fsp
;
2035 static void vfs_gpfs_pwrite_done(struct tevent_req
*subreq
);
2037 static struct tevent_req
*vfs_gpfs_pwrite_send(
2038 struct vfs_handle_struct
*handle
,
2039 TALLOC_CTX
*mem_ctx
,
2040 struct tevent_context
*ev
,
2041 struct files_struct
*fsp
,
2042 const void *data
, size_t n
,
2045 struct tevent_req
*req
, *subreq
;
2046 struct vfs_gpfs_pwrite_state
*state
;
2048 req
= tevent_req_create(mem_ctx
, &state
, struct vfs_gpfs_pwrite_state
);
2053 subreq
= SMB_VFS_NEXT_PWRITE_SEND(state
, ev
, handle
, fsp
, data
,
2055 if (tevent_req_nomem(subreq
, req
)) {
2056 return tevent_req_post(req
, ev
);
2058 tevent_req_set_callback(subreq
, vfs_gpfs_pwrite_done
, req
);
2062 static void vfs_gpfs_pwrite_done(struct tevent_req
*subreq
)
2064 struct tevent_req
*req
= tevent_req_callback_data(
2065 subreq
, struct tevent_req
);
2066 struct vfs_gpfs_pwrite_state
*state
= tevent_req_data(
2067 req
, struct vfs_gpfs_pwrite_state
);
2069 state
->ret
= SMB_VFS_PWRITE_RECV(subreq
, &state
->err
);
2070 TALLOC_FREE(subreq
);
2071 tevent_req_done(req
);
2074 static ssize_t
vfs_gpfs_pwrite_recv(struct tevent_req
*req
, int *err
)
2076 struct vfs_gpfs_pwrite_state
*state
= tevent_req_data(
2077 req
, struct vfs_gpfs_pwrite_state
);
2078 struct files_struct
*fsp
= state
->fsp
;
2080 if (tevent_req_is_unix_error(req
, err
)) {
2085 DEBUG(10, ("vfs_private = %x\n",
2086 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
2088 if ((state
->ret
!= -1) &&
2089 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
2090 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
2091 DEBUG(10, ("sending notify\n"));
2092 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
2093 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
2094 fsp
->fsp_name
->base_name
);
2101 static struct vfs_fn_pointers vfs_gpfs_fns
= {
2102 .connect_fn
= vfs_gpfs_connect
,
2103 .disk_free_fn
= vfs_gpfs_disk_free
,
2104 .fs_capabilities_fn
= vfs_gpfs_capabilities
,
2105 .kernel_flock_fn
= vfs_gpfs_kernel_flock
,
2106 .linux_setlease_fn
= vfs_gpfs_setlease
,
2107 .get_real_filename_fn
= vfs_gpfs_get_real_filename
,
2108 .fget_nt_acl_fn
= gpfsacl_fget_nt_acl
,
2109 .get_nt_acl_fn
= gpfsacl_get_nt_acl
,
2110 .fset_nt_acl_fn
= gpfsacl_fset_nt_acl
,
2111 .sys_acl_get_file_fn
= gpfsacl_sys_acl_get_file
,
2112 .sys_acl_get_fd_fn
= gpfsacl_sys_acl_get_fd
,
2113 .sys_acl_blob_get_file_fn
= gpfsacl_sys_acl_blob_get_file
,
2114 .sys_acl_blob_get_fd_fn
= gpfsacl_sys_acl_blob_get_fd
,
2115 .sys_acl_set_file_fn
= gpfsacl_sys_acl_set_file
,
2116 .sys_acl_set_fd_fn
= gpfsacl_sys_acl_set_fd
,
2117 .sys_acl_delete_def_file_fn
= gpfsacl_sys_acl_delete_def_file
,
2118 .chmod_fn
= vfs_gpfs_chmod
,
2119 .fchmod_fn
= vfs_gpfs_fchmod
,
2120 .close_fn
= vfs_gpfs_close
,
2121 .setxattr_fn
= gpfs_set_xattr
,
2122 .getxattr_fn
= gpfs_get_xattr
,
2123 .stat_fn
= vfs_gpfs_stat
,
2124 .fstat_fn
= vfs_gpfs_fstat
,
2125 .lstat_fn
= vfs_gpfs_lstat
,
2126 .ntimes_fn
= vfs_gpfs_ntimes
,
2127 .is_offline_fn
= vfs_gpfs_is_offline
,
2128 .aio_force_fn
= vfs_gpfs_aio_force
,
2129 .sendfile_fn
= vfs_gpfs_sendfile
,
2130 .fallocate_fn
= vfs_gpfs_fallocate
,
2131 .open_fn
= vfs_gpfs_open
,
2132 .pread_fn
= vfs_gpfs_pread
,
2133 .pread_send_fn
= vfs_gpfs_pread_send
,
2134 .pread_recv_fn
= vfs_gpfs_pread_recv
,
2135 .pwrite_fn
= vfs_gpfs_pwrite
,
2136 .pwrite_send_fn
= vfs_gpfs_pwrite_send
,
2137 .pwrite_recv_fn
= vfs_gpfs_pwrite_recv
,
2138 .ftruncate_fn
= vfs_gpfs_ftruncate
2141 NTSTATUS
vfs_gpfs_init(void);
2142 NTSTATUS
vfs_gpfs_init(void)
2146 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "gpfs",