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"
30 #define DBGC_CLASS DBGC_VFS
33 #include "nfs4_acls.h"
35 #include "system/filesys.h"
37 #include "lib/util/tevent_unix.h"
39 struct gpfs_config_data
{
53 static int vfs_gpfs_kernel_flock(vfs_handle_struct
*handle
, files_struct
*fsp
,
54 uint32 share_mode
, uint32 access_mask
)
57 struct gpfs_config_data
*config
;
60 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
61 struct gpfs_config_data
,
64 if(!config
->sharemodes
) {
68 START_PROFILE(syscall_kernel_flock
);
70 kernel_flock(fsp
->fh
->fd
, share_mode
, access_mask
);
72 if (!set_gpfs_sharemode(fsp
, access_mask
, fsp
->share_access
)) {
76 END_PROFILE(syscall_kernel_flock
);
81 static int vfs_gpfs_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
84 struct gpfs_config_data
*config
;
86 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
87 struct gpfs_config_data
,
90 if (config
->sharemodes
&& (fsp
->fh
!= NULL
) && (fsp
->fh
->fd
!= -1)) {
91 set_gpfs_sharemode(fsp
, 0, 0);
94 return SMB_VFS_NEXT_CLOSE(handle
, fsp
);
97 static int vfs_gpfs_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
100 struct gpfs_config_data
*config
;
103 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
104 struct gpfs_config_data
,
107 if (linux_set_lease_sighandler(fsp
->fh
->fd
) == -1)
110 START_PROFILE(syscall_linux_setlease
);
112 if (config
->leases
) {
113 ret
= set_gpfs_lease(fsp
->fh
->fd
,leasetype
);
116 END_PROFILE(syscall_linux_setlease
);
121 static int vfs_gpfs_get_real_filename(struct vfs_handle_struct
*handle
,
129 char real_pathname
[PATH_MAX
+1];
132 struct gpfs_config_data
*config
;
134 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
135 struct gpfs_config_data
,
138 if (!config
->getrealfilename
) {
139 return SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
,
140 mem_ctx
, found_name
);
143 mangled
= mangle_is_mangled(name
, handle
->conn
->params
);
145 return SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
,
146 mem_ctx
, found_name
);
149 full_path
= talloc_asprintf(talloc_tos(), "%s/%s", path
, name
);
150 if (full_path
== NULL
) {
155 buflen
= sizeof(real_pathname
) - 1;
157 result
= smbd_gpfs_get_realfilename_path(full_path
, real_pathname
,
160 TALLOC_FREE(full_path
);
162 if ((result
== -1) && (errno
== ENOSYS
)) {
163 return SMB_VFS_NEXT_GET_REAL_FILENAME(
164 handle
, path
, name
, mem_ctx
, found_name
);
168 DEBUG(10, ("smbd_gpfs_get_realfilename_path returned %s\n",
174 * GPFS does not necessarily null-terminate the returned path
175 * but instead returns the buffer length in buflen.
178 if (buflen
< sizeof(real_pathname
)) {
179 real_pathname
[buflen
] = '\0';
181 real_pathname
[sizeof(real_pathname
)-1] = '\0';
184 DEBUG(10, ("smbd_gpfs_get_realfilename_path: %s/%s -> %s\n",
185 path
, name
, real_pathname
));
187 name
= strrchr_m(real_pathname
, '/');
193 *found_name
= talloc_strdup(mem_ctx
, name
+1);
194 if (*found_name
== NULL
) {
202 static void gpfs_dumpacl(int level
, struct gpfs_acl
*gacl
)
207 DEBUG(0, ("gpfs acl is NULL\n"));
211 DEBUG(level
, ("gpfs acl: nace: %d, type:%d, version:%d, level:%d, len:%d\n",
212 gacl
->acl_nace
, gacl
->acl_type
, gacl
->acl_version
, gacl
->acl_level
, gacl
->acl_len
));
213 for(i
=0; i
<gacl
->acl_nace
; i
++)
215 struct gpfs_ace_v4
*gace
= gacl
->ace_v4
+ i
;
216 DEBUG(level
, ("\tace[%d]: type:%d, flags:0x%x, mask:0x%x, iflags:0x%x, who:%u\n",
217 i
, gace
->aceType
, gace
->aceFlags
, gace
->aceMask
,
218 gace
->aceIFlags
, gace
->aceWho
));
222 static struct gpfs_acl
*gpfs_getacl_alloc(const char *fname
, gpfs_aclType_t type
)
224 struct gpfs_acl
*acl
;
227 TALLOC_CTX
*mem_ctx
= talloc_tos();
229 acl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, len
);
237 acl
->acl_version
= 0;
238 acl
->acl_type
= type
;
240 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
, acl
);
241 if ((ret
!= 0) && (errno
== ENOSPC
)) {
242 struct gpfs_acl
*new_acl
= (struct gpfs_acl
*)TALLOC_SIZE(
243 mem_ctx
, acl
->acl_len
+ sizeof(struct gpfs_acl
));
244 if (new_acl
== NULL
) {
250 new_acl
->acl_len
= acl
->acl_len
;
251 new_acl
->acl_level
= acl
->acl_level
;
252 new_acl
->acl_version
= acl
->acl_version
;
253 new_acl
->acl_type
= acl
->acl_type
;
257 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
, acl
);
260 DEBUG(8, ("smbd_gpfs_getacl failed with %s\n",strerror(errno
)));
268 /* Tries to get nfs4 acls and returns SMB ACL allocated.
269 * On failure returns 1 if it got non-NFSv4 ACL to prompt
270 * retry with POSIX ACL checks.
271 * On failure returns -1 if there is system (GPFS) error, check errno.
272 * Returns 0 on success
274 static int gpfs_get_nfs4_acl(const char *fname
, SMB4ACL_T
**ppacl
)
277 struct gpfs_acl
*gacl
= NULL
;
278 DEBUG(10, ("gpfs_get_nfs4_acl invoked for %s\n", fname
));
280 /* First get the real acl length */
281 gacl
= gpfs_getacl_alloc(fname
, 0);
283 DEBUG(9, ("gpfs_getacl failed for %s with %s\n",
284 fname
, strerror(errno
)));
288 if (gacl
->acl_type
!= GPFS_ACL_TYPE_NFS4
) {
289 DEBUG(10, ("Got non-nfsv4 acl\n"));
290 /* Retry with POSIX ACLs check */
295 *ppacl
= smb_create_smb4acl();
297 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
298 gacl
->acl_len
, gacl
->acl_level
, gacl
->acl_version
,
301 for (i
=0; i
<gacl
->acl_nace
; i
++) {
302 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[i
];
303 SMB_ACE4PROP_T smbace
;
304 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
305 "who: %d\n", gace
->aceType
, gace
->aceIFlags
,
306 gace
->aceFlags
, gace
->aceMask
, gace
->aceWho
));
309 if (gace
->aceIFlags
& ACE4_IFLAG_SPECIAL_ID
) {
310 smbace
.flags
|= SMB_ACE4_ID_SPECIAL
;
311 switch (gace
->aceWho
) {
312 case ACE4_SPECIAL_OWNER
:
313 smbace
.who
.special_id
= SMB_ACE4_WHO_OWNER
;
315 case ACE4_SPECIAL_GROUP
:
316 smbace
.who
.special_id
= SMB_ACE4_WHO_GROUP
;
318 case ACE4_SPECIAL_EVERYONE
:
319 smbace
.who
.special_id
= SMB_ACE4_WHO_EVERYONE
;
322 DEBUG(8, ("invalid special gpfs id %d "
323 "ignored\n", gace
->aceWho
));
324 continue; /* don't add it */
327 if (gace
->aceFlags
& ACE4_FLAG_GROUP_ID
)
328 smbace
.who
.gid
= gace
->aceWho
;
330 smbace
.who
.uid
= gace
->aceWho
;
333 /* remove redundent deny entries */
334 if (i
> 0 && gace
->aceType
== SMB_ACE4_ACCESS_DENIED_ACE_TYPE
) {
335 struct gpfs_ace_v4
*prev
= &gacl
->ace_v4
[i
-1];
336 if (prev
->aceType
== SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
&&
337 prev
->aceFlags
== gace
->aceFlags
&&
338 prev
->aceIFlags
== gace
->aceIFlags
&&
339 (gace
->aceMask
& prev
->aceMask
) == 0 &&
340 gace
->aceWho
== prev
->aceWho
) {
341 /* its redundent - skip it */
346 smbace
.aceType
= gace
->aceType
;
347 smbace
.aceFlags
= gace
->aceFlags
;
348 smbace
.aceMask
= gace
->aceMask
;
349 smb_add_ace4(*ppacl
, &smbace
);
355 static NTSTATUS
gpfsacl_fget_nt_acl(vfs_handle_struct
*handle
,
356 files_struct
*fsp
, uint32 security_info
,
358 struct security_descriptor
**ppdesc
)
360 SMB4ACL_T
*pacl
= NULL
;
362 struct gpfs_config_data
*config
;
366 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
367 struct gpfs_config_data
,
368 return NT_STATUS_INTERNAL_ERROR
);
371 return SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
,
375 result
= gpfs_get_nfs4_acl(fsp
->fsp_name
->base_name
, &pacl
);
378 return smb_fget_nt_acl_nfs4(fsp
, security_info
, mem_ctx
, ppdesc
, pacl
);
381 DEBUG(10, ("retrying with posix acl...\n"));
382 return posix_fget_nt_acl(fsp
, security_info
, mem_ctx
, ppdesc
);
385 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
386 return map_nt_error_from_unix(errno
);
389 static NTSTATUS
gpfsacl_get_nt_acl(vfs_handle_struct
*handle
,
391 uint32 security_info
,
392 TALLOC_CTX
*mem_ctx
, struct security_descriptor
**ppdesc
)
394 SMB4ACL_T
*pacl
= NULL
;
396 struct gpfs_config_data
*config
;
400 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
401 struct gpfs_config_data
,
402 return NT_STATUS_INTERNAL_ERROR
);
405 return SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
,
409 result
= gpfs_get_nfs4_acl(name
, &pacl
);
412 return smb_get_nt_acl_nfs4(handle
->conn
, name
, security_info
,
413 mem_ctx
, ppdesc
, pacl
);
416 DEBUG(10, ("retrying with posix acl...\n"));
417 return posix_get_nt_acl(handle
->conn
, name
, security_info
,
421 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
422 return map_nt_error_from_unix(errno
);
425 static bool gpfsacl_process_smbacl(files_struct
*fsp
, SMB4ACL_T
*smbacl
)
428 gpfs_aclLen_t gacl_len
;
430 struct gpfs_acl
*gacl
;
431 TALLOC_CTX
*mem_ctx
= talloc_tos();
433 gacl_len
= offsetof(gpfs_acl_t
, ace_v4
) + smb_get_naces(smbacl
) *
434 sizeof(gpfs_ace_v4_t
);
436 gacl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, gacl_len
);
438 DEBUG(0, ("talloc failed\n"));
443 gacl
->acl_len
= gacl_len
;
445 gacl
->acl_version
= GPFS_ACL_VERSION_NFS4
;
446 gacl
->acl_type
= GPFS_ACL_TYPE_NFS4
;
447 gacl
->acl_nace
= 0; /* change later... */
449 for (smbace
=smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
450 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[gacl
->acl_nace
];
451 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
453 gace
->aceType
= aceprop
->aceType
;
454 gace
->aceFlags
= aceprop
->aceFlags
;
455 gace
->aceMask
= aceprop
->aceMask
;
458 * GPFS can't distinguish between WRITE and APPEND on
459 * files, so one being set without the other is an
460 * error. Sorry for the many ()'s :-)
463 if (!fsp
->is_directory
465 ((((gace
->aceMask
& ACE4_MASK_WRITE
) == 0)
466 && ((gace
->aceMask
& ACE4_MASK_APPEND
) != 0))
468 (((gace
->aceMask
& ACE4_MASK_WRITE
) != 0)
469 && ((gace
->aceMask
& ACE4_MASK_APPEND
) == 0)))
471 lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
472 "merge_writeappend", True
)) {
473 DEBUG(2, ("vfs_gpfs.c: file [%s]: ACE contains "
474 "WRITE^APPEND, setting WRITE|APPEND\n",
476 gace
->aceMask
|= ACE4_MASK_WRITE
|ACE4_MASK_APPEND
;
479 gace
->aceIFlags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_IFLAG_SPECIAL_ID
: 0;
481 if (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
)
483 switch(aceprop
->who
.special_id
)
485 case SMB_ACE4_WHO_EVERYONE
:
486 gace
->aceWho
= ACE4_SPECIAL_EVERYONE
;
488 case SMB_ACE4_WHO_OWNER
:
489 gace
->aceWho
= ACE4_SPECIAL_OWNER
;
491 case SMB_ACE4_WHO_GROUP
:
492 gace
->aceWho
= ACE4_SPECIAL_GROUP
;
495 DEBUG(8, ("unsupported special_id %d\n", aceprop
->who
.special_id
));
496 continue; /* don't add it !!! */
499 /* just only for the type safety... */
500 if (aceprop
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)
501 gace
->aceWho
= aceprop
->who
.gid
;
503 gace
->aceWho
= aceprop
->who
.uid
;
509 ret
= smbd_gpfs_putacl(fsp
->fsp_name
->base_name
,
510 GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gacl
);
512 DEBUG(8, ("gpfs_putacl failed with %s\n", strerror(errno
)));
513 gpfs_dumpacl(8, gacl
);
517 DEBUG(10, ("gpfs_putacl succeeded\n"));
521 static NTSTATUS
gpfsacl_set_nt_acl_internal(files_struct
*fsp
, uint32 security_info_sent
, const struct security_descriptor
*psd
)
523 struct gpfs_acl
*acl
;
524 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
526 acl
= gpfs_getacl_alloc(fsp
->fsp_name
->base_name
, 0);
530 if (acl
->acl_version
&GPFS_ACL_VERSION_NFS4
)
532 if (lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
533 "refuse_dacl_protected", false)
534 && (psd
->type
&SEC_DESC_DACL_PROTECTED
)) {
535 DEBUG(2, ("Rejecting unsupported ACL with DACL_PROTECTED bit set\n"));
536 return NT_STATUS_NOT_SUPPORTED
;
539 result
= smb_set_nt_acl_nfs4(
540 fsp
, security_info_sent
, psd
,
541 gpfsacl_process_smbacl
);
542 } else { /* assume POSIX ACL - by default... */
543 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
549 static NTSTATUS
gpfsacl_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, const struct security_descriptor
*psd
)
551 struct gpfs_config_data
*config
;
553 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
554 struct gpfs_config_data
,
555 return NT_STATUS_INTERNAL_ERROR
);
558 return SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
561 return gpfsacl_set_nt_acl_internal(fsp
, security_info_sent
, psd
);
564 static SMB_ACL_T
gpfs2smb_acl(const struct gpfs_acl
*pacl
, TALLOC_CTX
*mem_ctx
)
569 result
= sys_acl_init(mem_ctx
);
570 if (result
== NULL
) {
575 result
->count
= pacl
->acl_nace
;
577 for (i
=0; i
<pacl
->acl_nace
; i
++) {
578 struct smb_acl_entry
*ace
= &result
->acl
[i
];
579 const struct gpfs_ace_v1
*g_ace
= &pacl
->ace_v1
[i
];
581 DEBUG(10, ("Converting type %d id %lu perm %x\n",
582 (int)g_ace
->ace_type
, (unsigned long)g_ace
->ace_who
,
583 (int)g_ace
->ace_perm
));
585 switch (g_ace
->ace_type
) {
587 ace
->a_type
= SMB_ACL_USER
;
588 ace
->info
.user
.uid
= (uid_t
)g_ace
->ace_who
;
590 case GPFS_ACL_USER_OBJ
:
591 ace
->a_type
= SMB_ACL_USER_OBJ
;
594 ace
->a_type
= SMB_ACL_GROUP
;
595 ace
->info
.group
.gid
= (gid_t
)g_ace
->ace_who
;
597 case GPFS_ACL_GROUP_OBJ
:
598 ace
->a_type
= SMB_ACL_GROUP_OBJ
;
601 ace
->a_type
= SMB_ACL_OTHER
;
604 ace
->a_type
= SMB_ACL_MASK
;
607 DEBUG(10, ("Got invalid ace_type: %d\n",
615 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_READ
) ?
617 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_WRITE
) ?
619 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_EXECUTE
) ?
622 DEBUGADD(10, ("Converted to %d perm %x\n",
623 ace
->a_type
, ace
->a_perm
));
629 static SMB_ACL_T
gpfsacl_get_posix_acl(const char *path
, gpfs_aclType_t type
,
632 struct gpfs_acl
*pacl
;
633 SMB_ACL_T result
= NULL
;
635 pacl
= gpfs_getacl_alloc(path
, type
);
638 DEBUG(10, ("gpfs_getacl failed for %s with %s\n",
639 path
, strerror(errno
)));
646 if (pacl
->acl_version
!= GPFS_ACL_VERSION_POSIX
) {
647 DEBUG(10, ("Got acl version %d, expected %d\n",
648 pacl
->acl_version
, GPFS_ACL_VERSION_POSIX
));
653 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
654 pacl
->acl_len
, pacl
->acl_level
, pacl
->acl_version
,
657 result
= gpfs2smb_acl(pacl
, mem_ctx
);
658 if (result
!= NULL
) {
670 static SMB_ACL_T
gpfsacl_sys_acl_get_file(vfs_handle_struct
*handle
,
675 gpfs_aclType_t gpfs_type
;
676 struct gpfs_config_data
*config
;
678 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
679 struct gpfs_config_data
,
683 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
,
688 case SMB_ACL_TYPE_ACCESS
:
689 gpfs_type
= GPFS_ACL_TYPE_ACCESS
;
691 case SMB_ACL_TYPE_DEFAULT
:
692 gpfs_type
= GPFS_ACL_TYPE_DEFAULT
;
695 DEBUG(0, ("Got invalid type: %d\n", type
));
696 smb_panic("exiting");
699 return gpfsacl_get_posix_acl(path_p
, gpfs_type
, mem_ctx
);
702 static SMB_ACL_T
gpfsacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
706 struct gpfs_config_data
*config
;
708 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
709 struct gpfs_config_data
,
713 return SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
, mem_ctx
);
716 return gpfsacl_get_posix_acl(fsp
->fsp_name
->base_name
,
717 GPFS_ACL_TYPE_ACCESS
, mem_ctx
);
720 static int gpfsacl_sys_acl_blob_get_file(vfs_handle_struct
*handle
,
723 char **blob_description
,
726 struct gpfs_config_data
*config
;
727 SMB4ACL_T
*pacl
= NULL
;
730 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
731 struct gpfs_config_data
,
735 return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FILE(handle
, path_p
,
741 result
= gpfs_get_nfs4_acl(path_p
, &pacl
);
743 /* We don't have a way to linearlise the NFS4 ACL
744 * right now, and it is much closer to the NT ACL
750 return posix_sys_acl_blob_get_file(handle
, path_p
, mem_ctx
,
751 blob_description
, blob
);
754 static int gpfsacl_sys_acl_blob_get_fd(vfs_handle_struct
*handle
,
757 char **blob_description
,
760 struct gpfs_config_data
*config
;
761 SMB4ACL_T
*pacl
= NULL
;
764 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
765 struct gpfs_config_data
,
769 return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle
, fsp
, mem_ctx
,
770 blob_description
, blob
);
773 result
= gpfs_get_nfs4_acl(fsp
->fsp_name
->base_name
, &pacl
);
775 /* We don't have a way to linearlise the NFS4 ACL
776 * right now, and it is much closer to the NT ACL
782 return posix_sys_acl_blob_get_fd(handle
, fsp
, mem_ctx
,
783 blob_description
, blob
);
786 static struct gpfs_acl
*smb2gpfs_acl(const SMB_ACL_T pacl
,
790 struct gpfs_acl
*result
;
793 DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl
->count
));
795 len
= offsetof(gpfs_acl_t
, ace_v1
) + (pacl
->count
) *
796 sizeof(gpfs_ace_v1_t
);
798 result
= (struct gpfs_acl
*)SMB_MALLOC(len
);
799 if (result
== NULL
) {
804 result
->acl_len
= len
;
805 result
->acl_level
= 0;
806 result
->acl_version
= GPFS_ACL_VERSION_POSIX
;
807 result
->acl_type
= (type
== SMB_ACL_TYPE_DEFAULT
) ?
808 GPFS_ACL_TYPE_DEFAULT
: GPFS_ACL_TYPE_ACCESS
;
809 result
->acl_nace
= pacl
->count
;
811 for (i
=0; i
<pacl
->count
; i
++) {
812 const struct smb_acl_entry
*ace
= &pacl
->acl
[i
];
813 struct gpfs_ace_v1
*g_ace
= &result
->ace_v1
[i
];
815 DEBUG(10, ("Converting type %d perm %x\n",
816 (int)ace
->a_type
, (int)ace
->a_perm
));
820 switch(ace
->a_type
) {
822 g_ace
->ace_type
= GPFS_ACL_USER
;
823 g_ace
->ace_who
= (gpfs_uid_t
)ace
->info
.user
.uid
;
825 case SMB_ACL_USER_OBJ
:
826 g_ace
->ace_type
= GPFS_ACL_USER_OBJ
;
827 g_ace
->ace_perm
|= ACL_PERM_CONTROL
;
831 g_ace
->ace_type
= GPFS_ACL_GROUP
;
832 g_ace
->ace_who
= (gpfs_uid_t
)ace
->info
.group
.gid
;
834 case SMB_ACL_GROUP_OBJ
:
835 g_ace
->ace_type
= GPFS_ACL_GROUP_OBJ
;
839 g_ace
->ace_type
= GPFS_ACL_MASK
;
840 g_ace
->ace_perm
= 0x8f;
844 g_ace
->ace_type
= GPFS_ACL_OTHER
;
848 DEBUG(10, ("Got invalid ace_type: %d\n", ace
->a_type
));
854 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_READ
) ?
856 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_WRITE
) ?
858 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_EXECUTE
) ?
859 ACL_PERM_EXECUTE
: 0;
861 DEBUGADD(10, ("Converted to %d id %d perm %x\n",
862 g_ace
->ace_type
, g_ace
->ace_who
, g_ace
->ace_perm
));
868 static int gpfsacl_sys_acl_set_file(vfs_handle_struct
*handle
,
873 struct gpfs_acl
*gpfs_acl
;
875 struct gpfs_config_data
*config
;
877 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
878 struct gpfs_config_data
,
882 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, type
, theacl
);
885 gpfs_acl
= smb2gpfs_acl(theacl
, type
);
886 if (gpfs_acl
== NULL
) {
890 result
= smbd_gpfs_putacl((char *)name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gpfs_acl
);
896 static int gpfsacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
900 struct gpfs_config_data
*config
;
902 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
903 struct gpfs_config_data
,
907 return SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
910 return gpfsacl_sys_acl_set_file(handle
, fsp
->fsp_name
->base_name
,
911 SMB_ACL_TYPE_ACCESS
, theacl
);
914 static int gpfsacl_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
917 struct gpfs_config_data
*config
;
919 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
920 struct gpfs_config_data
,
924 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
932 * Assumed: mode bits are shiftable and standard
933 * Output: the new aceMask field for an smb nfs4 ace
935 static uint32
gpfsacl_mask_filter(uint32 aceType
, uint32 aceMask
, uint32 rwx
)
937 const uint32 posix_nfs4map
[3] = {
938 SMB_ACE4_EXECUTE
, /* execute */
939 SMB_ACE4_WRITE_DATA
| SMB_ACE4_APPEND_DATA
, /* write; GPFS specific */
940 SMB_ACE4_READ_DATA
/* read */
943 uint32_t posix_mask
= 0x01;
948 nfs4_bits
= posix_nfs4map
[i
];
949 posix_bit
= rwx
& posix_mask
;
951 if (aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
) {
953 aceMask
|= nfs4_bits
;
955 aceMask
&= ~nfs4_bits
;
957 /* add deny bits when suitable */
959 aceMask
|= nfs4_bits
;
961 aceMask
&= ~nfs4_bits
;
962 } /* other ace types are unexpected */
970 static int gpfsacl_emu_chmod(const char *path
, mode_t mode
)
972 SMB4ACL_T
*pacl
= NULL
;
974 bool haveAllowEntry
[SMB_ACE4_WHO_EVERYONE
+ 1] = {False
, False
, False
, False
};
976 files_struct fake_fsp
; /* TODO: rationalize parametrization */
980 DEBUG(10, ("gpfsacl_emu_chmod invoked for %s mode %o\n", path
, mode
));
982 result
= gpfs_get_nfs4_acl(path
, &pacl
);
986 if (mode
& ~(S_IRWXU
| S_IRWXG
| S_IRWXO
)) {
987 DEBUG(2, ("WARNING: cutting extra mode bits %o on %s\n", mode
, path
));
990 for (smbace
=smb_first_ace4(pacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
991 SMB_ACE4PROP_T
*ace
= smb_get_ace4(smbace
);
992 uint32_t specid
= ace
->who
.special_id
;
994 if (ace
->flags
&SMB_ACE4_ID_SPECIAL
&&
995 ace
->aceType
<=SMB_ACE4_ACCESS_DENIED_ACE_TYPE
&&
996 specid
<= SMB_ACE4_WHO_EVERYONE
) {
1000 if (ace
->aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
)
1001 haveAllowEntry
[specid
] = True
;
1003 /* mode >> 6 for @owner, mode >> 3 for @group,
1004 * mode >> 0 for @everyone */
1005 newMask
= gpfsacl_mask_filter(ace
->aceType
, ace
->aceMask
,
1006 mode
>> ((SMB_ACE4_WHO_EVERYONE
- specid
) * 3));
1007 if (ace
->aceMask
!=newMask
) {
1008 DEBUG(10, ("ace changed for %s (%o -> %o) id=%d\n",
1009 path
, ace
->aceMask
, newMask
, specid
));
1011 ace
->aceMask
= newMask
;
1015 /* make sure we have at least ALLOW entries
1016 * for all the 3 special ids (@EVERYONE, @OWNER, @GROUP)
1019 for(i
= SMB_ACE4_WHO_OWNER
; i
<=SMB_ACE4_WHO_EVERYONE
; i
++) {
1022 if (haveAllowEntry
[i
]==True
)
1026 ace
.aceType
= SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
;
1027 ace
.flags
|= SMB_ACE4_ID_SPECIAL
;
1028 ace
.who
.special_id
= i
;
1030 if (i
==SMB_ACE4_WHO_GROUP
) /* not sure it's necessary... */
1031 ace
.aceFlags
|= SMB_ACE4_IDENTIFIER_GROUP
;
1033 ace
.aceMask
= gpfsacl_mask_filter(ace
.aceType
, ace
.aceMask
,
1034 mode
>> ((SMB_ACE4_WHO_EVERYONE
- i
) * 3));
1036 /* don't add unnecessary aces */
1040 /* we add it to the END - as windows expects allow aces */
1041 smb_add_ace4(pacl
, &ace
);
1042 DEBUG(10, ("Added ALLOW ace for %s, mode=%o, id=%d, aceMask=%x\n",
1043 path
, mode
, i
, ace
.aceMask
));
1046 /* don't add complementary DENY ACEs here */
1047 ZERO_STRUCT(fake_fsp
);
1048 status
= create_synthetic_smb_fname(talloc_tos(), path
, NULL
, NULL
,
1049 &fake_fsp
.fsp_name
);
1050 if (!NT_STATUS_IS_OK(status
)) {
1051 errno
= map_errno_from_nt_status(status
);
1055 if (gpfsacl_process_smbacl(&fake_fsp
, pacl
) == False
) {
1056 TALLOC_FREE(fake_fsp
.fsp_name
);
1060 TALLOC_FREE(fake_fsp
.fsp_name
);
1061 return 0; /* ok for [f]chmod */
1064 static int vfs_gpfs_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
1066 struct smb_filename
*smb_fname_cpath
;
1070 status
= create_synthetic_smb_fname(
1071 talloc_tos(), path
, NULL
, NULL
, &smb_fname_cpath
);
1073 if (SMB_VFS_NEXT_STAT(handle
, smb_fname_cpath
) != 0) {
1077 /* avoid chmod() if possible, to preserve acls */
1078 if ((smb_fname_cpath
->st
.st_ex_mode
& ~S_IFMT
) == mode
) {
1082 rc
= gpfsacl_emu_chmod(path
, mode
);
1084 return SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1088 static int vfs_gpfs_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
1093 if (SMB_VFS_NEXT_FSTAT(handle
, fsp
, &st
) != 0) {
1097 /* avoid chmod() if possible, to preserve acls */
1098 if ((st
.st_ex_mode
& ~S_IFMT
) == mode
) {
1102 rc
= gpfsacl_emu_chmod(fsp
->fsp_name
->base_name
, mode
);
1104 return SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1108 static int gpfs_set_xattr(struct vfs_handle_struct
*handle
, const char *path
,
1109 const char *name
, const void *value
, size_t size
, int flags
){
1110 struct xattr_DOSATTRIB dosattrib
;
1111 enum ndr_err_code ndr_err
;
1113 const char *attrstr
= value
;
1114 unsigned int dosmode
=0;
1115 struct gpfs_winattr attrs
;
1117 struct gpfs_config_data
*config
;
1119 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1120 struct gpfs_config_data
,
1123 if (!config
->winattr
) {
1124 DEBUG(10, ("gpfs_set_xattr:name is %s -> next\n",name
));
1125 return SMB_VFS_NEXT_SETXATTR(handle
,path
,name
,value
,size
,flags
);
1128 DEBUG(10, ("gpfs_set_xattr: %s \n",path
));
1130 /* Only handle DOS Attributes */
1131 if (strcmp(name
,SAMBA_XATTR_DOS_ATTRIB
) != 0){
1132 DEBUG(5, ("gpfs_set_xattr:name is %s\n",name
));
1133 return SMB_VFS_NEXT_SETXATTR(handle
,path
,name
,value
,size
,flags
);
1136 blob
.data
= (uint8_t *)attrstr
;
1139 ndr_err
= ndr_pull_struct_blob(&blob
, talloc_tos(), &dosattrib
,
1140 (ndr_pull_flags_fn_t
)ndr_pull_xattr_DOSATTRIB
);
1142 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
1143 DEBUG(1, ("gpfs_set_xattr: bad ndr decode "
1144 "from EA on file %s: Error = %s\n",
1145 path
, ndr_errstr(ndr_err
)));
1149 if (dosattrib
.version
!= 3) {
1150 DEBUG(1, ("gpfs_set_xattr: expected dosattrib version 3, got "
1151 "%d\n", (int)dosattrib
.version
));
1154 if (!(dosattrib
.info
.info3
.valid_flags
& XATTR_DOSINFO_ATTRIB
)) {
1155 DEBUG(10, ("gpfs_set_xattr: XATTR_DOSINFO_ATTRIB not "
1156 "valid, ignoring\n"));
1160 dosmode
= dosattrib
.info
.info3
.attrib
;
1163 /*Just map RD_ONLY, ARCHIVE, SYSTEM HIDDEN and SPARSE. Ignore the others*/
1164 if (dosmode
& FILE_ATTRIBUTE_ARCHIVE
){
1165 attrs
.winAttrs
|= GPFS_WINATTR_ARCHIVE
;
1167 if (dosmode
& FILE_ATTRIBUTE_HIDDEN
){
1168 attrs
.winAttrs
|= GPFS_WINATTR_HIDDEN
;
1170 if (dosmode
& FILE_ATTRIBUTE_SYSTEM
){
1171 attrs
.winAttrs
|= GPFS_WINATTR_SYSTEM
;
1173 if (dosmode
& FILE_ATTRIBUTE_READONLY
){
1174 attrs
.winAttrs
|= GPFS_WINATTR_READONLY
;
1176 if (dosmode
& FILE_ATTRIBUTE_SPARSE
) {
1177 attrs
.winAttrs
|= GPFS_WINATTR_SPARSE_FILE
;
1181 ret
= set_gpfs_winattrs(discard_const_p(char, path
),
1182 GPFS_WINATTR_SET_ATTRS
, &attrs
);
1184 if (errno
== ENOSYS
) {
1185 return SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
,
1189 DEBUG(1, ("gpfs_set_xattr:Set GPFS attributes failed %d\n",ret
));
1193 DEBUG(10, ("gpfs_set_xattr:Set attributes: 0x%x\n",attrs
.winAttrs
));
1197 static ssize_t
gpfs_get_xattr(struct vfs_handle_struct
*handle
, const char *path
,
1198 const char *name
, void *value
, size_t size
){
1199 char *attrstr
= value
;
1200 unsigned int dosmode
= 0;
1201 struct gpfs_winattr attrs
;
1203 struct gpfs_config_data
*config
;
1205 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1206 struct gpfs_config_data
,
1209 if (!config
->winattr
) {
1210 DEBUG(10, ("gpfs_get_xattr:name is %s -> next\n",name
));
1211 return SMB_VFS_NEXT_GETXATTR(handle
,path
,name
,value
,size
);
1214 DEBUG(10, ("gpfs_get_xattr: %s \n",path
));
1216 /* Only handle DOS Attributes */
1217 if (strcmp(name
,SAMBA_XATTR_DOS_ATTRIB
) != 0){
1218 DEBUG(5, ("gpfs_get_xattr:name is %s\n",name
));
1219 return SMB_VFS_NEXT_GETXATTR(handle
,path
,name
,value
,size
);
1222 ret
= get_gpfs_winattrs(discard_const_p(char, path
), &attrs
);
1224 if (errno
== ENOSYS
) {
1225 return SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
,
1229 DEBUG(1, ("gpfs_get_xattr: Get GPFS attributes failed: "
1230 "%d (%s)\n", ret
, strerror(errno
)));
1234 DEBUG(10, ("gpfs_get_xattr:Got attributes: 0x%x\n",attrs
.winAttrs
));
1236 /*Just map RD_ONLY, ARCHIVE, SYSTEM, HIDDEN and SPARSE. Ignore the others*/
1237 if (attrs
.winAttrs
& GPFS_WINATTR_ARCHIVE
){
1238 dosmode
|= FILE_ATTRIBUTE_ARCHIVE
;
1240 if (attrs
.winAttrs
& GPFS_WINATTR_HIDDEN
){
1241 dosmode
|= FILE_ATTRIBUTE_HIDDEN
;
1243 if (attrs
.winAttrs
& GPFS_WINATTR_SYSTEM
){
1244 dosmode
|= FILE_ATTRIBUTE_SYSTEM
;
1246 if (attrs
.winAttrs
& GPFS_WINATTR_READONLY
){
1247 dosmode
|= FILE_ATTRIBUTE_READONLY
;
1249 if (attrs
.winAttrs
& GPFS_WINATTR_SPARSE_FILE
) {
1250 dosmode
|= FILE_ATTRIBUTE_SPARSE
;
1253 snprintf(attrstr
, size
, "0x%2.2x",
1254 (unsigned int)(dosmode
& SAMBA_ATTRIBUTES_MASK
));
1255 DEBUG(10, ("gpfs_get_xattr: returning %s\n",attrstr
));
1259 static int vfs_gpfs_stat(struct vfs_handle_struct
*handle
,
1260 struct smb_filename
*smb_fname
)
1262 struct gpfs_winattr attrs
;
1266 struct gpfs_config_data
*config
;
1268 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1269 struct gpfs_config_data
,
1272 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1277 if (!config
->winattr
) {
1281 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &fname
);
1282 if (!NT_STATUS_IS_OK(status
)) {
1283 errno
= map_errno_from_nt_status(status
);
1286 ret
= get_gpfs_winattrs(discard_const_p(char, fname
), &attrs
);
1289 smb_fname
->st
.st_ex_calculated_birthtime
= false;
1290 smb_fname
->st
.st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1291 smb_fname
->st
.st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1292 smb_fname
->st
.vfs_private
= attrs
.winAttrs
;
1297 static int vfs_gpfs_fstat(struct vfs_handle_struct
*handle
,
1298 struct files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1300 struct gpfs_winattr attrs
;
1302 struct gpfs_config_data
*config
;
1304 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1305 struct gpfs_config_data
,
1308 ret
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1312 if ((fsp
->fh
== NULL
) || (fsp
->fh
->fd
== -1)) {
1315 if (!config
->winattr
) {
1319 ret
= smbd_fget_gpfs_winattrs(fsp
->fh
->fd
, &attrs
);
1321 sbuf
->st_ex_calculated_birthtime
= false;
1322 sbuf
->st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1323 sbuf
->st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1328 static int vfs_gpfs_lstat(struct vfs_handle_struct
*handle
,
1329 struct smb_filename
*smb_fname
)
1331 struct gpfs_winattr attrs
;
1335 struct gpfs_config_data
*config
;
1337 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1338 struct gpfs_config_data
,
1341 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1345 if (!config
->winattr
) {
1349 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &path
);
1350 if (!NT_STATUS_IS_OK(status
)) {
1351 errno
= map_errno_from_nt_status(status
);
1354 ret
= get_gpfs_winattrs(discard_const_p(char, path
), &attrs
);
1357 smb_fname
->st
.st_ex_calculated_birthtime
= false;
1358 smb_fname
->st
.st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1359 smb_fname
->st
.st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1360 smb_fname
->st
.vfs_private
= attrs
.winAttrs
;
1365 static int vfs_gpfs_ntimes(struct vfs_handle_struct
*handle
,
1366 const struct smb_filename
*smb_fname
,
1367 struct smb_file_time
*ft
)
1370 struct gpfs_winattr attrs
;
1374 struct gpfs_config_data
*config
;
1376 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1377 struct gpfs_config_data
,
1380 ret
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1382 /* don't complain if access was denied */
1383 if (errno
!= EPERM
&& errno
!= EACCES
) {
1384 DEBUG(1,("vfs_gpfs_ntimes: SMB_VFS_NEXT_NTIMES failed:"
1385 "%s", strerror(errno
)));
1390 if(null_timespec(ft
->create_time
)){
1391 DEBUG(10,("vfs_gpfs_ntimes:Create Time is NULL\n"));
1395 if (!config
->winattr
) {
1399 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &path
);
1400 if (!NT_STATUS_IS_OK(status
)) {
1401 errno
= map_errno_from_nt_status(status
);
1406 attrs
.creationTime
.tv_sec
= ft
->create_time
.tv_sec
;
1407 attrs
.creationTime
.tv_nsec
= ft
->create_time
.tv_nsec
;
1409 ret
= set_gpfs_winattrs(discard_const_p(char, path
),
1410 GPFS_WINATTR_SET_CREATION_TIME
, &attrs
);
1411 if(ret
== -1 && errno
!= ENOSYS
){
1412 DEBUG(1,("vfs_gpfs_ntimes: set GPFS ntimes failed %d\n",ret
));
1419 static int vfs_gpfs_fallocate(struct vfs_handle_struct
*handle
,
1420 struct files_struct
*fsp
, enum vfs_fallocate_mode mode
,
1421 off_t offset
, off_t len
)
1424 struct gpfs_config_data
*config
;
1426 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1427 struct gpfs_config_data
,
1430 if (!config
->prealloc
) {
1431 /* you should better not run fallocate() on GPFS at all */
1436 if (mode
== VFS_FALLOCATE_KEEP_SIZE
) {
1437 DEBUG(10, ("Unsupported VFS_FALLOCATE_KEEP_SIZE\n"));
1442 ret
= smbd_gpfs_prealloc(fsp
->fh
->fd
, offset
, len
);
1444 if (ret
== -1 && errno
!= ENOSYS
) {
1445 DEBUG(0, ("GPFS prealloc failed: %s\n", strerror(errno
)));
1446 } else if (ret
== -1 && errno
== ENOSYS
) {
1447 DEBUG(10, ("GPFS prealloc not supported.\n"));
1449 DEBUG(10, ("GPFS prealloc succeeded.\n"));
1455 static int vfs_gpfs_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1459 struct gpfs_config_data
*config
;
1461 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1462 struct gpfs_config_data
,
1465 if (!config
->ftruncate
) {
1466 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1469 result
= smbd_gpfs_ftruncate(fsp
->fh
->fd
, len
);
1470 if ((result
== -1) && (errno
== ENOSYS
)) {
1471 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1476 static bool vfs_gpfs_is_offline(struct vfs_handle_struct
*handle
,
1477 const struct smb_filename
*fname
,
1478 SMB_STRUCT_STAT
*sbuf
)
1480 struct gpfs_winattr attrs
;
1483 struct gpfs_config_data
*config
;
1485 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1486 struct gpfs_config_data
,
1489 if (!config
->winattr
) {
1490 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1493 status
= get_full_smb_filename(talloc_tos(), fname
, &path
);
1494 if (!NT_STATUS_IS_OK(status
)) {
1495 errno
= map_errno_from_nt_status(status
);
1499 if (VALID_STAT(*sbuf
)) {
1500 attrs
.winAttrs
= sbuf
->vfs_private
;
1503 ret
= get_gpfs_winattrs(path
, &attrs
);
1510 if ((attrs
.winAttrs
& GPFS_WINATTR_OFFLINE
) != 0) {
1511 DEBUG(10, ("%s is offline\n", path
));
1515 DEBUG(10, ("%s is online\n", path
));
1517 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1520 static bool vfs_gpfs_aio_force(struct vfs_handle_struct
*handle
,
1521 struct files_struct
*fsp
)
1523 return vfs_gpfs_is_offline(handle
, fsp
->fsp_name
, &fsp
->fsp_name
->st
);
1526 static ssize_t
vfs_gpfs_sendfile(vfs_handle_struct
*handle
, int tofd
,
1527 files_struct
*fsp
, const DATA_BLOB
*hdr
,
1528 off_t offset
, size_t n
)
1530 if ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0) {
1534 return SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fsp
, hdr
, offset
, n
);
1537 static int vfs_gpfs_connect(struct vfs_handle_struct
*handle
,
1538 const char *service
, const char *user
)
1540 struct gpfs_config_data
*config
;
1543 smbd_gpfs_lib_init();
1545 ret
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
1551 config
= talloc_zero(handle
->conn
, struct gpfs_config_data
);
1553 SMB_VFS_NEXT_DISCONNECT(handle
);
1554 DEBUG(0, ("talloc_zero() failed\n"));
1558 config
->sharemodes
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1559 "sharemodes", true);
1561 config
->leases
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1564 config
->hsm
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1567 config
->syncio
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1570 config
->winattr
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1573 config
->ftruncate
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1576 config
->getrealfilename
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1577 "getrealfilename", true);
1579 config
->dfreequota
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1580 "dfreequota", false);
1582 config
->prealloc
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1585 config
->acl
= lp_parm_bool(SNUM(handle
->conn
), "gpfs", "acl", true);
1587 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
1588 NULL
, struct gpfs_config_data
,
1591 if (config
->leases
) {
1593 * GPFS lease code is based on kernel oplock code
1594 * so make sure it is turned on
1596 if (!lp_kernel_oplocks(SNUM(handle
->conn
))) {
1597 DEBUG(5, ("Enabling kernel oplocks for "
1598 "gpfs:leases to work\n"));
1599 lp_do_parameter(SNUM(handle
->conn
), "kernel oplocks",
1604 * as the kernel does not properly support Level II oplocks
1605 * and GPFS leases code is based on kernel infrastructure, we
1606 * need to turn off Level II oplocks if gpfs:leases is enabled
1608 if (lp_level2_oplocks(SNUM(handle
->conn
))) {
1609 DEBUG(5, ("gpfs:leases are enabled, disabling "
1610 "Level II oplocks\n"));
1611 lp_do_parameter(SNUM(handle
->conn
), "level2 oplocks",
1619 static int vfs_gpfs_get_quotas(const char *path
, uid_t uid
, gid_t gid
,
1621 struct gpfs_quotaInfo
*qi_user
,
1622 struct gpfs_quotaInfo
*qi_group
,
1623 struct gpfs_quotaInfo
*qi_fset
)
1630 * We want to always use the directory to get the fileset id,
1631 * because files might have a share mode. We also do not want
1632 * to get the parent directory when there is already a
1633 * directory to avoid stepping in a different fileset. The
1634 * path passed here is currently either "." or a filename, so
1635 * this is ok. The proper solution would be having a way to
1636 * query the fileset id without opening the file.
1638 b
= parent_dirname(talloc_tos(), path
, &dir_path
, NULL
);
1644 DEBUG(10, ("path %s, directory %s\n", path
, dir_path
));
1646 err
= get_gpfs_fset_id(dir_path
, fset_id
);
1648 DEBUG(0, ("Get fset id failed path %s, dir %s, errno %d.\n",
1649 path
, dir_path
, errno
));
1653 err
= get_gpfs_quota(path
, GPFS_USRQUOTA
, uid
, qi_user
);
1658 err
= get_gpfs_quota(path
, GPFS_GRPQUOTA
, gid
, qi_group
);
1663 err
= get_gpfs_quota(path
, GPFS_FILESETQUOTA
, *fset_id
, qi_fset
);
1671 static void vfs_gpfs_disk_free_quota(struct gpfs_quotaInfo qi
, time_t cur_time
,
1672 uint64_t *dfree
, uint64_t *dsize
)
1674 uint64_t usage
, limit
;
1677 * The quota reporting is done in units of 1024 byte blocks, but
1678 * sys_fsusage uses units of 512 byte blocks, adjust the block number
1679 * accordingly. Also filter possibly negative usage counts from gpfs.
1681 usage
= qi
.blockUsage
< 0 ? 0 : (uint64_t)qi
.blockUsage
* 2;
1682 limit
= (uint64_t)qi
.blockHardLimit
* 2;
1685 * When the grace time for the exceeded soft block quota has been
1686 * exceeded, the soft block quota becomes an additional hard limit.
1688 if (qi
.blockSoftLimit
&&
1689 qi
.blockGraceTime
&& cur_time
> qi
.blockGraceTime
) {
1690 /* report disk as full */
1692 *dsize
= MIN(*dsize
, usage
);
1695 if (!qi
.blockHardLimit
)
1698 if (usage
>= limit
) {
1699 /* report disk as full */
1701 *dsize
= MIN(*dsize
, usage
);
1704 /* limit has not been reached, determine "free space" */
1705 *dfree
= MIN(*dfree
, limit
- usage
);
1706 *dsize
= MIN(*dsize
, limit
);
1710 static uint64_t vfs_gpfs_disk_free(vfs_handle_struct
*handle
, const char *path
,
1711 bool small_query
, uint64_t *bsize
,
1712 uint64_t *dfree
, uint64_t *dsize
)
1714 struct security_unix_token
*utok
;
1715 struct gpfs_quotaInfo qi_user
, qi_group
, qi_fset
;
1716 struct gpfs_config_data
*config
;
1720 SMB_VFS_HANDLE_GET_DATA(handle
, config
, struct gpfs_config_data
,
1721 return (uint64_t)-1);
1722 if (!config
->dfreequota
) {
1723 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1724 bsize
, dfree
, dsize
);
1727 err
= sys_fsusage(path
, dfree
, dsize
);
1729 DEBUG (0, ("Could not get fs usage, errno %d\n", errno
));
1730 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1731 bsize
, dfree
, dsize
);
1734 /* sys_fsusage returns units of 512 bytes */
1737 DEBUG(10, ("fs dfree %llu, dsize %llu\n",
1738 (unsigned long long)*dfree
, (unsigned long long)*dsize
));
1740 utok
= handle
->conn
->session_info
->unix_token
;
1741 err
= vfs_gpfs_get_quotas(path
, utok
->uid
, utok
->gid
, &fset_id
,
1742 &qi_user
, &qi_group
, &qi_fset
);
1744 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1745 bsize
, dfree
, dsize
);
1748 cur_time
= time(NULL
);
1750 /* Adjust free space and size according to quota limits. */
1751 vfs_gpfs_disk_free_quota(qi_user
, cur_time
, dfree
, dsize
);
1752 vfs_gpfs_disk_free_quota(qi_group
, cur_time
, dfree
, dsize
);
1754 /* Id 0 indicates the default quota, not an actual quota */
1756 vfs_gpfs_disk_free_quota(qi_fset
, cur_time
, dfree
, dsize
);
1759 disk_norm(small_query
, bsize
, dfree
, dsize
);
1763 static uint32_t vfs_gpfs_capabilities(struct vfs_handle_struct
*handle
,
1764 enum timestamp_set_resolution
*p_ts_res
)
1766 struct gpfs_config_data
*config
;
1769 next
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
1771 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1772 struct gpfs_config_data
,
1776 next
|= FILE_SUPPORTS_REMOTE_STORAGE
;
1781 static int vfs_gpfs_open(struct vfs_handle_struct
*handle
,
1782 struct smb_filename
*smb_fname
, files_struct
*fsp
,
1783 int flags
, mode_t mode
)
1785 struct gpfs_config_data
*config
;
1787 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1788 struct gpfs_config_data
,
1791 if (config
->syncio
) {
1794 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
1797 static ssize_t
vfs_gpfs_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
1798 void *data
, size_t n
, off_t offset
)
1802 ret
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
1804 DEBUG(10, ("vfs_private = %x\n",
1805 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1808 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1809 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1810 notify_fname(handle
->conn
, NOTIFY_ACTION_MODIFIED
,
1811 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1812 fsp
->fsp_name
->base_name
);
1818 struct vfs_gpfs_pread_state
{
1819 struct files_struct
*fsp
;
1824 static void vfs_gpfs_pread_done(struct tevent_req
*subreq
);
1826 static struct tevent_req
*vfs_gpfs_pread_send(struct vfs_handle_struct
*handle
,
1827 TALLOC_CTX
*mem_ctx
,
1828 struct tevent_context
*ev
,
1829 struct files_struct
*fsp
,
1830 void *data
, size_t n
,
1833 struct tevent_req
*req
, *subreq
;
1834 struct vfs_gpfs_pread_state
*state
;
1836 req
= tevent_req_create(mem_ctx
, &state
, struct vfs_gpfs_pread_state
);
1841 subreq
= SMB_VFS_NEXT_PREAD_SEND(state
, ev
, handle
, fsp
, data
,
1843 if (tevent_req_nomem(subreq
, req
)) {
1844 return tevent_req_post(req
, ev
);
1846 tevent_req_set_callback(subreq
, vfs_gpfs_pread_done
, req
);
1850 static void vfs_gpfs_pread_done(struct tevent_req
*subreq
)
1852 struct tevent_req
*req
= tevent_req_callback_data(
1853 subreq
, struct tevent_req
);
1854 struct vfs_gpfs_pread_state
*state
= tevent_req_data(
1855 req
, struct vfs_gpfs_pread_state
);
1857 state
->ret
= SMB_VFS_PREAD_RECV(subreq
, &state
->err
);
1858 TALLOC_FREE(subreq
);
1859 tevent_req_done(req
);
1862 static ssize_t
vfs_gpfs_pread_recv(struct tevent_req
*req
, int *err
)
1864 struct vfs_gpfs_pread_state
*state
= tevent_req_data(
1865 req
, struct vfs_gpfs_pread_state
);
1866 struct files_struct
*fsp
= state
->fsp
;
1868 if (tevent_req_is_unix_error(req
, err
)) {
1873 DEBUG(10, ("vfs_private = %x\n",
1874 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1876 if ((state
->ret
!= -1) &&
1877 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1878 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1879 DEBUG(10, ("sending notify\n"));
1880 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
1881 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1882 fsp
->fsp_name
->base_name
);
1888 static ssize_t
vfs_gpfs_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
1889 const void *data
, size_t n
, off_t offset
)
1893 ret
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
1895 DEBUG(10, ("vfs_private = %x\n",
1896 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1899 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1900 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1901 notify_fname(handle
->conn
, NOTIFY_ACTION_MODIFIED
,
1902 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1903 fsp
->fsp_name
->base_name
);
1909 struct vfs_gpfs_pwrite_state
{
1910 struct files_struct
*fsp
;
1915 static void vfs_gpfs_pwrite_done(struct tevent_req
*subreq
);
1917 static struct tevent_req
*vfs_gpfs_pwrite_send(
1918 struct vfs_handle_struct
*handle
,
1919 TALLOC_CTX
*mem_ctx
,
1920 struct tevent_context
*ev
,
1921 struct files_struct
*fsp
,
1922 const void *data
, size_t n
,
1925 struct tevent_req
*req
, *subreq
;
1926 struct vfs_gpfs_pwrite_state
*state
;
1928 req
= tevent_req_create(mem_ctx
, &state
, struct vfs_gpfs_pwrite_state
);
1933 subreq
= SMB_VFS_NEXT_PWRITE_SEND(state
, ev
, handle
, fsp
, data
,
1935 if (tevent_req_nomem(subreq
, req
)) {
1936 return tevent_req_post(req
, ev
);
1938 tevent_req_set_callback(subreq
, vfs_gpfs_pwrite_done
, req
);
1942 static void vfs_gpfs_pwrite_done(struct tevent_req
*subreq
)
1944 struct tevent_req
*req
= tevent_req_callback_data(
1945 subreq
, struct tevent_req
);
1946 struct vfs_gpfs_pwrite_state
*state
= tevent_req_data(
1947 req
, struct vfs_gpfs_pwrite_state
);
1949 state
->ret
= SMB_VFS_PWRITE_RECV(subreq
, &state
->err
);
1950 TALLOC_FREE(subreq
);
1951 tevent_req_done(req
);
1954 static ssize_t
vfs_gpfs_pwrite_recv(struct tevent_req
*req
, int *err
)
1956 struct vfs_gpfs_pwrite_state
*state
= tevent_req_data(
1957 req
, struct vfs_gpfs_pwrite_state
);
1958 struct files_struct
*fsp
= state
->fsp
;
1960 if (tevent_req_is_unix_error(req
, err
)) {
1965 DEBUG(10, ("vfs_private = %x\n",
1966 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1968 if ((state
->ret
!= -1) &&
1969 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1970 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1971 DEBUG(10, ("sending notify\n"));
1972 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
1973 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1974 fsp
->fsp_name
->base_name
);
1981 static struct vfs_fn_pointers vfs_gpfs_fns
= {
1982 .connect_fn
= vfs_gpfs_connect
,
1983 .disk_free_fn
= vfs_gpfs_disk_free
,
1984 .fs_capabilities_fn
= vfs_gpfs_capabilities
,
1985 .kernel_flock_fn
= vfs_gpfs_kernel_flock
,
1986 .linux_setlease_fn
= vfs_gpfs_setlease
,
1987 .get_real_filename_fn
= vfs_gpfs_get_real_filename
,
1988 .fget_nt_acl_fn
= gpfsacl_fget_nt_acl
,
1989 .get_nt_acl_fn
= gpfsacl_get_nt_acl
,
1990 .fset_nt_acl_fn
= gpfsacl_fset_nt_acl
,
1991 .sys_acl_get_file_fn
= gpfsacl_sys_acl_get_file
,
1992 .sys_acl_get_fd_fn
= gpfsacl_sys_acl_get_fd
,
1993 .sys_acl_blob_get_file_fn
= gpfsacl_sys_acl_blob_get_file
,
1994 .sys_acl_blob_get_fd_fn
= gpfsacl_sys_acl_blob_get_fd
,
1995 .sys_acl_set_file_fn
= gpfsacl_sys_acl_set_file
,
1996 .sys_acl_set_fd_fn
= gpfsacl_sys_acl_set_fd
,
1997 .sys_acl_delete_def_file_fn
= gpfsacl_sys_acl_delete_def_file
,
1998 .chmod_fn
= vfs_gpfs_chmod
,
1999 .fchmod_fn
= vfs_gpfs_fchmod
,
2000 .close_fn
= vfs_gpfs_close
,
2001 .setxattr_fn
= gpfs_set_xattr
,
2002 .getxattr_fn
= gpfs_get_xattr
,
2003 .stat_fn
= vfs_gpfs_stat
,
2004 .fstat_fn
= vfs_gpfs_fstat
,
2005 .lstat_fn
= vfs_gpfs_lstat
,
2006 .ntimes_fn
= vfs_gpfs_ntimes
,
2007 .is_offline_fn
= vfs_gpfs_is_offline
,
2008 .aio_force_fn
= vfs_gpfs_aio_force
,
2009 .sendfile_fn
= vfs_gpfs_sendfile
,
2010 .fallocate_fn
= vfs_gpfs_fallocate
,
2011 .open_fn
= vfs_gpfs_open
,
2012 .pread_fn
= vfs_gpfs_pread
,
2013 .pread_send_fn
= vfs_gpfs_pread_send
,
2014 .pread_recv_fn
= vfs_gpfs_pread_recv
,
2015 .pwrite_fn
= vfs_gpfs_pwrite
,
2016 .pwrite_send_fn
= vfs_gpfs_pwrite_send
,
2017 .pwrite_recv_fn
= vfs_gpfs_pwrite_recv
,
2018 .ftruncate_fn
= vfs_gpfs_ftruncate
2021 NTSTATUS
vfs_gpfs_init(void);
2022 NTSTATUS
vfs_gpfs_init(void)
2026 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "gpfs",