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 START_PROFILE(syscall_kernel_flock
);
66 kernel_flock(fsp
->fh
->fd
, share_mode
, access_mask
);
68 if (config
->sharemodes
69 && !set_gpfs_sharemode(fsp
, access_mask
, fsp
->share_access
)) {
73 END_PROFILE(syscall_kernel_flock
);
78 static int vfs_gpfs_close(vfs_handle_struct
*handle
, files_struct
*fsp
)
81 struct gpfs_config_data
*config
;
83 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
84 struct gpfs_config_data
,
87 if (config
->sharemodes
&& (fsp
->fh
!= NULL
) && (fsp
->fh
->fd
!= -1)) {
88 set_gpfs_sharemode(fsp
, 0, 0);
91 return SMB_VFS_NEXT_CLOSE(handle
, fsp
);
94 static int vfs_gpfs_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
97 struct gpfs_config_data
*config
;
100 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
101 struct gpfs_config_data
,
104 if (linux_set_lease_sighandler(fsp
->fh
->fd
) == -1)
107 START_PROFILE(syscall_linux_setlease
);
109 if (config
->leases
) {
110 ret
= set_gpfs_lease(fsp
->fh
->fd
,leasetype
);
113 END_PROFILE(syscall_linux_setlease
);
118 static int vfs_gpfs_get_real_filename(struct vfs_handle_struct
*handle
,
126 char real_pathname
[PATH_MAX
+1];
129 struct gpfs_config_data
*config
;
131 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
132 struct gpfs_config_data
,
135 if (!config
->getrealfilename
) {
136 return SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
,
137 mem_ctx
, found_name
);
140 mangled
= mangle_is_mangled(name
, handle
->conn
->params
);
142 return SMB_VFS_NEXT_GET_REAL_FILENAME(handle
, path
, name
,
143 mem_ctx
, found_name
);
146 full_path
= talloc_asprintf(talloc_tos(), "%s/%s", path
, name
);
147 if (full_path
== NULL
) {
152 buflen
= sizeof(real_pathname
) - 1;
154 result
= smbd_gpfs_get_realfilename_path(full_path
, real_pathname
,
157 TALLOC_FREE(full_path
);
159 if ((result
== -1) && (errno
== ENOSYS
)) {
160 return SMB_VFS_NEXT_GET_REAL_FILENAME(
161 handle
, path
, name
, mem_ctx
, found_name
);
165 DEBUG(10, ("smbd_gpfs_get_realfilename_path returned %s\n",
171 * GPFS does not necessarily null-terminate the returned path
172 * but instead returns the buffer length in buflen.
175 if (buflen
< sizeof(real_pathname
)) {
176 real_pathname
[buflen
] = '\0';
178 real_pathname
[sizeof(real_pathname
)-1] = '\0';
181 DEBUG(10, ("smbd_gpfs_get_realfilename_path: %s/%s -> %s\n",
182 path
, name
, real_pathname
));
184 name
= strrchr_m(real_pathname
, '/');
190 *found_name
= talloc_strdup(mem_ctx
, name
+1);
191 if (*found_name
== NULL
) {
199 static void gpfs_dumpacl(int level
, struct gpfs_acl
*gacl
)
204 DEBUG(0, ("gpfs acl is NULL\n"));
208 DEBUG(level
, ("gpfs acl: nace: %d, type:%d, version:%d, level:%d, len:%d\n",
209 gacl
->acl_nace
, gacl
->acl_type
, gacl
->acl_version
, gacl
->acl_level
, gacl
->acl_len
));
210 for(i
=0; i
<gacl
->acl_nace
; i
++)
212 struct gpfs_ace_v4
*gace
= gacl
->ace_v4
+ i
;
213 DEBUG(level
, ("\tace[%d]: type:%d, flags:0x%x, mask:0x%x, iflags:0x%x, who:%u\n",
214 i
, gace
->aceType
, gace
->aceFlags
, gace
->aceMask
,
215 gace
->aceIFlags
, gace
->aceWho
));
219 static struct gpfs_acl
*gpfs_getacl_alloc(const char *fname
, gpfs_aclType_t type
)
221 struct gpfs_acl
*acl
;
224 TALLOC_CTX
*mem_ctx
= talloc_tos();
226 acl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, len
);
234 acl
->acl_version
= 0;
235 acl
->acl_type
= type
;
237 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
, acl
);
238 if ((ret
!= 0) && (errno
== ENOSPC
)) {
239 struct gpfs_acl
*new_acl
= (struct gpfs_acl
*)TALLOC_SIZE(
240 mem_ctx
, acl
->acl_len
+ sizeof(struct gpfs_acl
));
241 if (new_acl
== NULL
) {
246 new_acl
->acl_len
= acl
->acl_len
;
247 new_acl
->acl_level
= acl
->acl_level
;
248 new_acl
->acl_version
= acl
->acl_version
;
249 new_acl
->acl_type
= acl
->acl_type
;
252 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
, acl
);
256 DEBUG(8, ("smbd_gpfs_getacl failed with %s\n",strerror(errno
)));
263 /* Tries to get nfs4 acls and returns SMB ACL allocated.
264 * On failure returns 1 if it got non-NFSv4 ACL to prompt
265 * retry with POSIX ACL checks.
266 * On failure returns -1 if there is system (GPFS) error, check errno.
267 * Returns 0 on success
269 static int gpfs_get_nfs4_acl(const char *fname
, SMB4ACL_T
**ppacl
)
272 struct gpfs_acl
*gacl
= NULL
;
273 DEBUG(10, ("gpfs_get_nfs4_acl invoked for %s\n", fname
));
275 /* First get the real acl length */
276 gacl
= gpfs_getacl_alloc(fname
, 0);
278 DEBUG(9, ("gpfs_getacl failed for %s with %s\n",
279 fname
, strerror(errno
)));
283 if (gacl
->acl_type
!= GPFS_ACL_TYPE_NFS4
) {
284 DEBUG(10, ("Got non-nfsv4 acl\n"));
285 /* Retry with POSIX ACLs check */
289 *ppacl
= smb_create_smb4acl();
291 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
292 gacl
->acl_len
, gacl
->acl_level
, gacl
->acl_version
,
295 for (i
=0; i
<gacl
->acl_nace
; i
++) {
296 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[i
];
297 SMB_ACE4PROP_T smbace
;
298 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
299 "who: %d\n", gace
->aceType
, gace
->aceIFlags
,
300 gace
->aceFlags
, gace
->aceMask
, gace
->aceWho
));
303 if (gace
->aceIFlags
& ACE4_IFLAG_SPECIAL_ID
) {
304 smbace
.flags
|= SMB_ACE4_ID_SPECIAL
;
305 switch (gace
->aceWho
) {
306 case ACE4_SPECIAL_OWNER
:
307 smbace
.who
.special_id
= SMB_ACE4_WHO_OWNER
;
309 case ACE4_SPECIAL_GROUP
:
310 smbace
.who
.special_id
= SMB_ACE4_WHO_GROUP
;
312 case ACE4_SPECIAL_EVERYONE
:
313 smbace
.who
.special_id
= SMB_ACE4_WHO_EVERYONE
;
316 DEBUG(8, ("invalid special gpfs id %d "
317 "ignored\n", gace
->aceWho
));
318 continue; /* don't add it */
321 if (gace
->aceFlags
& ACE4_FLAG_GROUP_ID
)
322 smbace
.who
.gid
= gace
->aceWho
;
324 smbace
.who
.uid
= gace
->aceWho
;
327 /* remove redundent deny entries */
328 if (i
> 0 && gace
->aceType
== SMB_ACE4_ACCESS_DENIED_ACE_TYPE
) {
329 struct gpfs_ace_v4
*prev
= &gacl
->ace_v4
[i
-1];
330 if (prev
->aceType
== SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
&&
331 prev
->aceFlags
== gace
->aceFlags
&&
332 prev
->aceIFlags
== gace
->aceIFlags
&&
333 (gace
->aceMask
& prev
->aceMask
) == 0 &&
334 gace
->aceWho
== prev
->aceWho
) {
335 /* its redundent - skip it */
340 smbace
.aceType
= gace
->aceType
;
341 smbace
.aceFlags
= gace
->aceFlags
;
342 smbace
.aceMask
= gace
->aceMask
;
343 smb_add_ace4(*ppacl
, &smbace
);
349 static NTSTATUS
gpfsacl_fget_nt_acl(vfs_handle_struct
*handle
,
350 files_struct
*fsp
, uint32 security_info
,
351 struct security_descriptor
**ppdesc
)
353 SMB4ACL_T
*pacl
= NULL
;
355 struct gpfs_config_data
*config
;
359 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
360 struct gpfs_config_data
,
361 return NT_STATUS_INTERNAL_ERROR
);
364 return SMB_VFS_NEXT_FGET_NT_ACL(handle
, fsp
, security_info
, ppdesc
);
367 result
= gpfs_get_nfs4_acl(fsp
->fsp_name
->base_name
, &pacl
);
370 return smb_fget_nt_acl_nfs4(fsp
, security_info
, ppdesc
, pacl
);
373 DEBUG(10, ("retrying with posix acl...\n"));
374 return posix_fget_nt_acl(fsp
, security_info
, ppdesc
);
377 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
378 return map_nt_error_from_unix(errno
);
381 static NTSTATUS
gpfsacl_get_nt_acl(vfs_handle_struct
*handle
,
383 uint32 security_info
, struct security_descriptor
**ppdesc
)
385 SMB4ACL_T
*pacl
= NULL
;
387 struct gpfs_config_data
*config
;
391 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
392 struct gpfs_config_data
,
393 return NT_STATUS_INTERNAL_ERROR
);
396 return SMB_VFS_NEXT_GET_NT_ACL(handle
, name
, security_info
, ppdesc
);
399 result
= gpfs_get_nfs4_acl(name
, &pacl
);
402 return smb_get_nt_acl_nfs4(handle
->conn
, name
, security_info
, ppdesc
, pacl
);
405 DEBUG(10, ("retrying with posix acl...\n"));
406 return posix_get_nt_acl(handle
->conn
, name
, security_info
, ppdesc
);
409 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
410 return map_nt_error_from_unix(errno
);
413 static bool gpfsacl_process_smbacl(files_struct
*fsp
, SMB4ACL_T
*smbacl
)
416 gpfs_aclLen_t gacl_len
;
418 struct gpfs_acl
*gacl
;
419 TALLOC_CTX
*mem_ctx
= talloc_tos();
421 gacl_len
= offsetof(gpfs_acl_t
, ace_v4
) + smb_get_naces(smbacl
) *
422 sizeof(gpfs_ace_v4_t
);
424 gacl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, gacl_len
);
426 DEBUG(0, ("talloc failed\n"));
431 gacl
->acl_len
= gacl_len
;
433 gacl
->acl_version
= GPFS_ACL_VERSION_NFS4
;
434 gacl
->acl_type
= GPFS_ACL_TYPE_NFS4
;
435 gacl
->acl_nace
= 0; /* change later... */
437 for (smbace
=smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
438 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[gacl
->acl_nace
];
439 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
441 gace
->aceType
= aceprop
->aceType
;
442 gace
->aceFlags
= aceprop
->aceFlags
;
443 gace
->aceMask
= aceprop
->aceMask
;
446 * GPFS can't distinguish between WRITE and APPEND on
447 * files, so one being set without the other is an
448 * error. Sorry for the many ()'s :-)
451 if (!fsp
->is_directory
453 ((((gace
->aceMask
& ACE4_MASK_WRITE
) == 0)
454 && ((gace
->aceMask
& ACE4_MASK_APPEND
) != 0))
456 (((gace
->aceMask
& ACE4_MASK_WRITE
) != 0)
457 && ((gace
->aceMask
& ACE4_MASK_APPEND
) == 0)))
459 lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
460 "merge_writeappend", True
)) {
461 DEBUG(2, ("vfs_gpfs.c: file [%s]: ACE contains "
462 "WRITE^APPEND, setting WRITE|APPEND\n",
464 gace
->aceMask
|= ACE4_MASK_WRITE
|ACE4_MASK_APPEND
;
467 gace
->aceIFlags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_IFLAG_SPECIAL_ID
: 0;
469 if (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
)
471 switch(aceprop
->who
.special_id
)
473 case SMB_ACE4_WHO_EVERYONE
:
474 gace
->aceWho
= ACE4_SPECIAL_EVERYONE
;
476 case SMB_ACE4_WHO_OWNER
:
477 gace
->aceWho
= ACE4_SPECIAL_OWNER
;
479 case SMB_ACE4_WHO_GROUP
:
480 gace
->aceWho
= ACE4_SPECIAL_GROUP
;
483 DEBUG(8, ("unsupported special_id %d\n", aceprop
->who
.special_id
));
484 continue; /* don't add it !!! */
487 /* just only for the type safety... */
488 if (aceprop
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)
489 gace
->aceWho
= aceprop
->who
.gid
;
491 gace
->aceWho
= aceprop
->who
.uid
;
497 ret
= smbd_gpfs_putacl(fsp
->fsp_name
->base_name
,
498 GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gacl
);
500 DEBUG(8, ("gpfs_putacl failed with %s\n", strerror(errno
)));
501 gpfs_dumpacl(8, gacl
);
505 DEBUG(10, ("gpfs_putacl succeeded\n"));
509 static NTSTATUS
gpfsacl_set_nt_acl_internal(files_struct
*fsp
, uint32 security_info_sent
, const struct security_descriptor
*psd
)
511 struct gpfs_acl
*acl
;
512 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
514 acl
= gpfs_getacl_alloc(fsp
->fsp_name
->base_name
, 0);
518 if (acl
->acl_version
&GPFS_ACL_VERSION_NFS4
)
520 if (lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
521 "refuse_dacl_protected", false)
522 && (psd
->type
&SEC_DESC_DACL_PROTECTED
)) {
523 DEBUG(2, ("Rejecting unsupported ACL with DACL_PROTECTED bit set\n"));
524 return NT_STATUS_NOT_SUPPORTED
;
527 result
= smb_set_nt_acl_nfs4(
528 fsp
, security_info_sent
, psd
,
529 gpfsacl_process_smbacl
);
530 } else { /* assume POSIX ACL - by default... */
531 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
537 static NTSTATUS
gpfsacl_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, const struct security_descriptor
*psd
)
539 struct gpfs_config_data
*config
;
541 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
542 struct gpfs_config_data
,
543 return NT_STATUS_INTERNAL_ERROR
);
546 return SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
549 return gpfsacl_set_nt_acl_internal(fsp
, security_info_sent
, psd
);
552 static SMB_ACL_T
gpfs2smb_acl(const struct gpfs_acl
*pacl
)
557 result
= sys_acl_init(pacl
->acl_nace
);
558 if (result
== NULL
) {
563 result
->count
= pacl
->acl_nace
;
565 for (i
=0; i
<pacl
->acl_nace
; i
++) {
566 struct smb_acl_entry
*ace
= &result
->acl
[i
];
567 const struct gpfs_ace_v1
*g_ace
= &pacl
->ace_v1
[i
];
569 DEBUG(10, ("Converting type %d id %lu perm %x\n",
570 (int)g_ace
->ace_type
, (unsigned long)g_ace
->ace_who
,
571 (int)g_ace
->ace_perm
));
573 switch (g_ace
->ace_type
) {
575 ace
->a_type
= SMB_ACL_USER
;
576 ace
->uid
= (uid_t
)g_ace
->ace_who
;
578 case GPFS_ACL_USER_OBJ
:
579 ace
->a_type
= SMB_ACL_USER_OBJ
;
582 ace
->a_type
= SMB_ACL_GROUP
;
583 ace
->gid
= (gid_t
)g_ace
->ace_who
;
585 case GPFS_ACL_GROUP_OBJ
:
586 ace
->a_type
= SMB_ACL_GROUP_OBJ
;
589 ace
->a_type
= SMB_ACL_OTHER
;
592 ace
->a_type
= SMB_ACL_MASK
;
595 DEBUG(10, ("Got invalid ace_type: %d\n",
603 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_READ
) ?
605 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_WRITE
) ?
607 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_EXECUTE
) ?
610 DEBUGADD(10, ("Converted to %d perm %x\n",
611 ace
->a_type
, ace
->a_perm
));
617 static SMB_ACL_T
gpfsacl_get_posix_acl(const char *path
, gpfs_aclType_t type
)
619 struct gpfs_acl
*pacl
;
620 SMB_ACL_T result
= NULL
;
622 pacl
= gpfs_getacl_alloc(path
, type
);
625 DEBUG(10, ("gpfs_getacl failed for %s with %s\n",
626 path
, strerror(errno
)));
633 if (pacl
->acl_version
!= GPFS_ACL_VERSION_POSIX
) {
634 DEBUG(10, ("Got acl version %d, expected %d\n",
635 pacl
->acl_version
, GPFS_ACL_VERSION_POSIX
));
640 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
641 pacl
->acl_len
, pacl
->acl_level
, pacl
->acl_version
,
644 result
= gpfs2smb_acl(pacl
);
645 if (result
!= NULL
) {
657 static SMB_ACL_T
gpfsacl_sys_acl_get_file(vfs_handle_struct
*handle
,
661 gpfs_aclType_t gpfs_type
;
662 struct gpfs_config_data
*config
;
664 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
665 struct gpfs_config_data
,
669 return SMB_VFS_NEXT_SYS_ACL_GET_FILE(handle
, path_p
, type
);
673 case SMB_ACL_TYPE_ACCESS
:
674 gpfs_type
= GPFS_ACL_TYPE_ACCESS
;
676 case SMB_ACL_TYPE_DEFAULT
:
677 gpfs_type
= GPFS_ACL_TYPE_DEFAULT
;
680 DEBUG(0, ("Got invalid type: %d\n", type
));
681 smb_panic("exiting");
684 return gpfsacl_get_posix_acl(path_p
, gpfs_type
);
687 static SMB_ACL_T
gpfsacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
690 struct gpfs_config_data
*config
;
692 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
693 struct gpfs_config_data
,
697 return SMB_VFS_NEXT_SYS_ACL_GET_FD(handle
, fsp
);
700 return gpfsacl_get_posix_acl(fsp
->fsp_name
->base_name
,
701 GPFS_ACL_TYPE_ACCESS
);
704 static struct gpfs_acl
*smb2gpfs_acl(const SMB_ACL_T pacl
,
708 struct gpfs_acl
*result
;
711 DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl
->count
));
713 len
= offsetof(gpfs_acl_t
, ace_v1
) + (pacl
->count
) *
714 sizeof(gpfs_ace_v1_t
);
716 result
= (struct gpfs_acl
*)SMB_MALLOC(len
);
717 if (result
== NULL
) {
722 result
->acl_len
= len
;
723 result
->acl_level
= 0;
724 result
->acl_version
= GPFS_ACL_VERSION_POSIX
;
725 result
->acl_type
= (type
== SMB_ACL_TYPE_DEFAULT
) ?
726 GPFS_ACL_TYPE_DEFAULT
: GPFS_ACL_TYPE_ACCESS
;
727 result
->acl_nace
= pacl
->count
;
729 for (i
=0; i
<pacl
->count
; i
++) {
730 const struct smb_acl_entry
*ace
= &pacl
->acl
[i
];
731 struct gpfs_ace_v1
*g_ace
= &result
->ace_v1
[i
];
733 DEBUG(10, ("Converting type %d perm %x\n",
734 (int)ace
->a_type
, (int)ace
->a_perm
));
738 switch(ace
->a_type
) {
740 g_ace
->ace_type
= GPFS_ACL_USER
;
741 g_ace
->ace_who
= (gpfs_uid_t
)ace
->uid
;
743 case SMB_ACL_USER_OBJ
:
744 g_ace
->ace_type
= GPFS_ACL_USER_OBJ
;
745 g_ace
->ace_perm
|= ACL_PERM_CONTROL
;
749 g_ace
->ace_type
= GPFS_ACL_GROUP
;
750 g_ace
->ace_who
= (gpfs_uid_t
)ace
->gid
;
752 case SMB_ACL_GROUP_OBJ
:
753 g_ace
->ace_type
= GPFS_ACL_GROUP_OBJ
;
757 g_ace
->ace_type
= GPFS_ACL_MASK
;
758 g_ace
->ace_perm
= 0x8f;
762 g_ace
->ace_type
= GPFS_ACL_OTHER
;
766 DEBUG(10, ("Got invalid ace_type: %d\n", ace
->a_type
));
772 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_READ
) ?
774 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_WRITE
) ?
776 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_EXECUTE
) ?
777 ACL_PERM_EXECUTE
: 0;
779 DEBUGADD(10, ("Converted to %d id %d perm %x\n",
780 g_ace
->ace_type
, g_ace
->ace_who
, g_ace
->ace_perm
));
786 static int gpfsacl_sys_acl_set_file(vfs_handle_struct
*handle
,
791 struct gpfs_acl
*gpfs_acl
;
793 struct gpfs_config_data
*config
;
795 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
796 struct gpfs_config_data
,
800 return SMB_VFS_NEXT_SYS_ACL_SET_FILE(handle
, name
, type
, theacl
);
803 gpfs_acl
= smb2gpfs_acl(theacl
, type
);
804 if (gpfs_acl
== NULL
) {
808 result
= smbd_gpfs_putacl((char *)name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gpfs_acl
);
814 static int gpfsacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
818 struct gpfs_config_data
*config
;
820 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
821 struct gpfs_config_data
,
825 return SMB_VFS_NEXT_SYS_ACL_SET_FD(handle
, fsp
, theacl
);
828 return gpfsacl_sys_acl_set_file(handle
, fsp
->fsp_name
->base_name
,
829 SMB_ACL_TYPE_ACCESS
, theacl
);
832 static int gpfsacl_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
835 struct gpfs_config_data
*config
;
837 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
838 struct gpfs_config_data
,
842 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FILE(handle
, path
);
850 * Assumed: mode bits are shiftable and standard
851 * Output: the new aceMask field for an smb nfs4 ace
853 static uint32
gpfsacl_mask_filter(uint32 aceType
, uint32 aceMask
, uint32 rwx
)
855 const uint32 posix_nfs4map
[3] = {
856 SMB_ACE4_EXECUTE
, /* execute */
857 SMB_ACE4_WRITE_DATA
| SMB_ACE4_APPEND_DATA
, /* write; GPFS specific */
858 SMB_ACE4_READ_DATA
/* read */
861 uint32_t posix_mask
= 0x01;
866 nfs4_bits
= posix_nfs4map
[i
];
867 posix_bit
= rwx
& posix_mask
;
869 if (aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
) {
871 aceMask
|= nfs4_bits
;
873 aceMask
&= ~nfs4_bits
;
875 /* add deny bits when suitable */
877 aceMask
|= nfs4_bits
;
879 aceMask
&= ~nfs4_bits
;
880 } /* other ace types are unexpected */
888 static int gpfsacl_emu_chmod(const char *path
, mode_t mode
)
890 SMB4ACL_T
*pacl
= NULL
;
892 bool haveAllowEntry
[SMB_ACE4_WHO_EVERYONE
+ 1] = {False
, False
, False
, False
};
894 files_struct fake_fsp
; /* TODO: rationalize parametrization */
898 DEBUG(10, ("gpfsacl_emu_chmod invoked for %s mode %o\n", path
, mode
));
900 result
= gpfs_get_nfs4_acl(path
, &pacl
);
904 if (mode
& ~(S_IRWXU
| S_IRWXG
| S_IRWXO
)) {
905 DEBUG(2, ("WARNING: cutting extra mode bits %o on %s\n", mode
, path
));
908 for (smbace
=smb_first_ace4(pacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
909 SMB_ACE4PROP_T
*ace
= smb_get_ace4(smbace
);
910 uint32_t specid
= ace
->who
.special_id
;
912 if (ace
->flags
&SMB_ACE4_ID_SPECIAL
&&
913 ace
->aceType
<=SMB_ACE4_ACCESS_DENIED_ACE_TYPE
&&
914 specid
<= SMB_ACE4_WHO_EVERYONE
) {
918 if (ace
->aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
)
919 haveAllowEntry
[specid
] = True
;
921 /* mode >> 6 for @owner, mode >> 3 for @group,
922 * mode >> 0 for @everyone */
923 newMask
= gpfsacl_mask_filter(ace
->aceType
, ace
->aceMask
,
924 mode
>> ((SMB_ACE4_WHO_EVERYONE
- specid
) * 3));
925 if (ace
->aceMask
!=newMask
) {
926 DEBUG(10, ("ace changed for %s (%o -> %o) id=%d\n",
927 path
, ace
->aceMask
, newMask
, specid
));
929 ace
->aceMask
= newMask
;
933 /* make sure we have at least ALLOW entries
934 * for all the 3 special ids (@EVERYONE, @OWNER, @GROUP)
937 for(i
= SMB_ACE4_WHO_OWNER
; i
<=SMB_ACE4_WHO_EVERYONE
; i
++) {
940 if (haveAllowEntry
[i
]==True
)
944 ace
.aceType
= SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
;
945 ace
.flags
|= SMB_ACE4_ID_SPECIAL
;
946 ace
.who
.special_id
= i
;
948 if (i
==SMB_ACE4_WHO_GROUP
) /* not sure it's necessary... */
949 ace
.aceFlags
|= SMB_ACE4_IDENTIFIER_GROUP
;
951 ace
.aceMask
= gpfsacl_mask_filter(ace
.aceType
, ace
.aceMask
,
952 mode
>> ((SMB_ACE4_WHO_EVERYONE
- i
) * 3));
954 /* don't add unnecessary aces */
958 /* we add it to the END - as windows expects allow aces */
959 smb_add_ace4(pacl
, &ace
);
960 DEBUG(10, ("Added ALLOW ace for %s, mode=%o, id=%d, aceMask=%x\n",
961 path
, mode
, i
, ace
.aceMask
));
964 /* don't add complementary DENY ACEs here */
965 ZERO_STRUCT(fake_fsp
);
966 status
= create_synthetic_smb_fname(talloc_tos(), path
, NULL
, NULL
,
968 if (!NT_STATUS_IS_OK(status
)) {
969 errno
= map_errno_from_nt_status(status
);
973 if (gpfsacl_process_smbacl(&fake_fsp
, pacl
) == False
) {
974 TALLOC_FREE(fake_fsp
.fsp_name
);
978 TALLOC_FREE(fake_fsp
.fsp_name
);
979 return 0; /* ok for [f]chmod */
982 static int vfs_gpfs_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
984 struct smb_filename
*smb_fname_cpath
;
988 status
= create_synthetic_smb_fname(
989 talloc_tos(), path
, NULL
, NULL
, &smb_fname_cpath
);
991 if (SMB_VFS_NEXT_STAT(handle
, smb_fname_cpath
) != 0) {
995 /* avoid chmod() if possible, to preserve acls */
996 if ((smb_fname_cpath
->st
.st_ex_mode
& ~S_IFMT
) == mode
) {
1000 rc
= gpfsacl_emu_chmod(path
, mode
);
1002 return SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
1006 static int vfs_gpfs_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
1011 if (SMB_VFS_NEXT_FSTAT(handle
, fsp
, &st
) != 0) {
1015 /* avoid chmod() if possible, to preserve acls */
1016 if ((st
.st_ex_mode
& ~S_IFMT
) == mode
) {
1020 rc
= gpfsacl_emu_chmod(fsp
->fsp_name
->base_name
, mode
);
1022 return SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
1026 static int gpfs_set_xattr(struct vfs_handle_struct
*handle
, const char *path
,
1027 const char *name
, const void *value
, size_t size
, int flags
){
1028 struct xattr_DOSATTRIB dosattrib
;
1029 enum ndr_err_code ndr_err
;
1031 const char *attrstr
= value
;
1032 unsigned int dosmode
=0;
1033 struct gpfs_winattr attrs
;
1035 struct gpfs_config_data
*config
;
1037 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1038 struct gpfs_config_data
,
1041 if (!config
->winattr
) {
1042 DEBUG(10, ("gpfs_set_xattr:name is %s -> next\n",name
));
1043 return SMB_VFS_NEXT_SETXATTR(handle
,path
,name
,value
,size
,flags
);
1046 DEBUG(10, ("gpfs_set_xattr: %s \n",path
));
1048 /* Only handle DOS Attributes */
1049 if (strcmp(name
,SAMBA_XATTR_DOS_ATTRIB
) != 0){
1050 DEBUG(5, ("gpfs_set_xattr:name is %s\n",name
));
1051 return SMB_VFS_NEXT_SETXATTR(handle
,path
,name
,value
,size
,flags
);
1054 blob
.data
= (uint8_t *)attrstr
;
1057 ndr_err
= ndr_pull_struct_blob(&blob
, talloc_tos(), &dosattrib
,
1058 (ndr_pull_flags_fn_t
)ndr_pull_xattr_DOSATTRIB
);
1060 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
1061 DEBUG(1, ("gpfs_set_xattr: bad ndr decode "
1062 "from EA on file %s: Error = %s\n",
1063 path
, ndr_errstr(ndr_err
)));
1067 if (dosattrib
.version
!= 3) {
1068 DEBUG(1, ("gpfs_set_xattr: expected dosattrib version 3, got "
1069 "%d\n", (int)dosattrib
.version
));
1072 if (!(dosattrib
.info
.info3
.valid_flags
& XATTR_DOSINFO_ATTRIB
)) {
1073 DEBUG(10, ("gpfs_set_xattr: XATTR_DOSINFO_ATTRIB not "
1074 "valid, ignoring\n"));
1078 dosmode
= dosattrib
.info
.info3
.attrib
;
1081 /*Just map RD_ONLY, ARCHIVE, SYSTEM HIDDEN and SPARSE. Ignore the others*/
1082 if (dosmode
& FILE_ATTRIBUTE_ARCHIVE
){
1083 attrs
.winAttrs
|= GPFS_WINATTR_ARCHIVE
;
1085 if (dosmode
& FILE_ATTRIBUTE_HIDDEN
){
1086 attrs
.winAttrs
|= GPFS_WINATTR_HIDDEN
;
1088 if (dosmode
& FILE_ATTRIBUTE_SYSTEM
){
1089 attrs
.winAttrs
|= GPFS_WINATTR_SYSTEM
;
1091 if (dosmode
& FILE_ATTRIBUTE_READONLY
){
1092 attrs
.winAttrs
|= GPFS_WINATTR_READONLY
;
1094 if (dosmode
& FILE_ATTRIBUTE_SPARSE
) {
1095 attrs
.winAttrs
|= GPFS_WINATTR_SPARSE_FILE
;
1099 ret
= set_gpfs_winattrs(discard_const_p(char, path
),
1100 GPFS_WINATTR_SET_ATTRS
, &attrs
);
1102 if (errno
== ENOSYS
) {
1103 return SMB_VFS_NEXT_SETXATTR(handle
, path
, name
, value
,
1107 DEBUG(1, ("gpfs_set_xattr:Set GPFS attributes failed %d\n",ret
));
1111 DEBUG(10, ("gpfs_set_xattr:Set attributes: 0x%x\n",attrs
.winAttrs
));
1115 static ssize_t
gpfs_get_xattr(struct vfs_handle_struct
*handle
, const char *path
,
1116 const char *name
, void *value
, size_t size
){
1117 char *attrstr
= value
;
1118 unsigned int dosmode
= 0;
1119 struct gpfs_winattr attrs
;
1121 struct gpfs_config_data
*config
;
1123 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1124 struct gpfs_config_data
,
1127 if (!config
->winattr
) {
1128 DEBUG(10, ("gpfs_get_xattr:name is %s -> next\n",name
));
1129 return SMB_VFS_NEXT_GETXATTR(handle
,path
,name
,value
,size
);
1132 DEBUG(10, ("gpfs_get_xattr: %s \n",path
));
1134 /* Only handle DOS Attributes */
1135 if (strcmp(name
,SAMBA_XATTR_DOS_ATTRIB
) != 0){
1136 DEBUG(5, ("gpfs_get_xattr:name is %s\n",name
));
1137 return SMB_VFS_NEXT_GETXATTR(handle
,path
,name
,value
,size
);
1140 ret
= get_gpfs_winattrs(discard_const_p(char, path
), &attrs
);
1142 if (errno
== ENOSYS
) {
1143 return SMB_VFS_NEXT_GETXATTR(handle
, path
, name
, value
,
1147 DEBUG(1, ("gpfs_get_xattr: Get GPFS attributes failed: "
1148 "%d (%s)\n", ret
, strerror(errno
)));
1152 DEBUG(10, ("gpfs_get_xattr:Got attributes: 0x%x\n",attrs
.winAttrs
));
1154 /*Just map RD_ONLY, ARCHIVE, SYSTEM, HIDDEN and SPARSE. Ignore the others*/
1155 if (attrs
.winAttrs
& GPFS_WINATTR_ARCHIVE
){
1156 dosmode
|= FILE_ATTRIBUTE_ARCHIVE
;
1158 if (attrs
.winAttrs
& GPFS_WINATTR_HIDDEN
){
1159 dosmode
|= FILE_ATTRIBUTE_HIDDEN
;
1161 if (attrs
.winAttrs
& GPFS_WINATTR_SYSTEM
){
1162 dosmode
|= FILE_ATTRIBUTE_SYSTEM
;
1164 if (attrs
.winAttrs
& GPFS_WINATTR_READONLY
){
1165 dosmode
|= FILE_ATTRIBUTE_READONLY
;
1167 if (attrs
.winAttrs
& GPFS_WINATTR_SPARSE_FILE
) {
1168 dosmode
|= FILE_ATTRIBUTE_SPARSE
;
1171 snprintf(attrstr
, size
, "0x%2.2x",
1172 (unsigned int)(dosmode
& SAMBA_ATTRIBUTES_MASK
));
1173 DEBUG(10, ("gpfs_get_xattr: returning %s\n",attrstr
));
1177 static int vfs_gpfs_stat(struct vfs_handle_struct
*handle
,
1178 struct smb_filename
*smb_fname
)
1180 struct gpfs_winattr attrs
;
1184 struct gpfs_config_data
*config
;
1186 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1187 struct gpfs_config_data
,
1190 ret
= SMB_VFS_NEXT_STAT(handle
, smb_fname
);
1195 if (!config
->winattr
) {
1199 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &fname
);
1200 if (!NT_STATUS_IS_OK(status
)) {
1201 errno
= map_errno_from_nt_status(status
);
1204 ret
= get_gpfs_winattrs(discard_const_p(char, fname
), &attrs
);
1207 smb_fname
->st
.st_ex_calculated_birthtime
= false;
1208 smb_fname
->st
.st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1209 smb_fname
->st
.st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1210 smb_fname
->st
.vfs_private
= attrs
.winAttrs
;
1215 static int vfs_gpfs_fstat(struct vfs_handle_struct
*handle
,
1216 struct files_struct
*fsp
, SMB_STRUCT_STAT
*sbuf
)
1218 struct gpfs_winattr attrs
;
1220 struct gpfs_config_data
*config
;
1222 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1223 struct gpfs_config_data
,
1226 ret
= SMB_VFS_NEXT_FSTAT(handle
, fsp
, sbuf
);
1230 if ((fsp
->fh
== NULL
) || (fsp
->fh
->fd
== -1)) {
1233 if (!config
->winattr
) {
1237 ret
= smbd_fget_gpfs_winattrs(fsp
->fh
->fd
, &attrs
);
1239 sbuf
->st_ex_calculated_birthtime
= false;
1240 sbuf
->st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1241 sbuf
->st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1246 static int vfs_gpfs_lstat(struct vfs_handle_struct
*handle
,
1247 struct smb_filename
*smb_fname
)
1249 struct gpfs_winattr attrs
;
1253 struct gpfs_config_data
*config
;
1255 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1256 struct gpfs_config_data
,
1259 ret
= SMB_VFS_NEXT_LSTAT(handle
, smb_fname
);
1263 if (!config
->winattr
) {
1267 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &path
);
1268 if (!NT_STATUS_IS_OK(status
)) {
1269 errno
= map_errno_from_nt_status(status
);
1272 ret
= get_gpfs_winattrs(discard_const_p(char, path
), &attrs
);
1275 smb_fname
->st
.st_ex_calculated_birthtime
= false;
1276 smb_fname
->st
.st_ex_btime
.tv_sec
= attrs
.creationTime
.tv_sec
;
1277 smb_fname
->st
.st_ex_btime
.tv_nsec
= attrs
.creationTime
.tv_nsec
;
1278 smb_fname
->st
.vfs_private
= attrs
.winAttrs
;
1283 static int vfs_gpfs_ntimes(struct vfs_handle_struct
*handle
,
1284 const struct smb_filename
*smb_fname
,
1285 struct smb_file_time
*ft
)
1288 struct gpfs_winattr attrs
;
1292 struct gpfs_config_data
*config
;
1294 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1295 struct gpfs_config_data
,
1298 ret
= SMB_VFS_NEXT_NTIMES(handle
, smb_fname
, ft
);
1300 /* don't complain if access was denied */
1301 if (errno
!= EPERM
&& errno
!= EACCES
) {
1302 DEBUG(1,("vfs_gpfs_ntimes: SMB_VFS_NEXT_NTIMES failed:"
1303 "%s", strerror(errno
)));
1308 if(null_timespec(ft
->create_time
)){
1309 DEBUG(10,("vfs_gpfs_ntimes:Create Time is NULL\n"));
1313 if (!config
->winattr
) {
1317 status
= get_full_smb_filename(talloc_tos(), smb_fname
, &path
);
1318 if (!NT_STATUS_IS_OK(status
)) {
1319 errno
= map_errno_from_nt_status(status
);
1324 attrs
.creationTime
.tv_sec
= ft
->create_time
.tv_sec
;
1325 attrs
.creationTime
.tv_nsec
= ft
->create_time
.tv_nsec
;
1327 ret
= set_gpfs_winattrs(discard_const_p(char, path
),
1328 GPFS_WINATTR_SET_CREATION_TIME
, &attrs
);
1329 if(ret
== -1 && errno
!= ENOSYS
){
1330 DEBUG(1,("vfs_gpfs_ntimes: set GPFS ntimes failed %d\n",ret
));
1337 static int vfs_gpfs_fallocate(struct vfs_handle_struct
*handle
,
1338 struct files_struct
*fsp
, enum vfs_fallocate_mode mode
,
1339 off_t offset
, off_t len
)
1342 struct gpfs_config_data
*config
;
1344 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1345 struct gpfs_config_data
,
1348 if (!config
->prealloc
) {
1349 /* you should better not run fallocate() on GPFS at all */
1354 if (mode
== VFS_FALLOCATE_KEEP_SIZE
) {
1355 DEBUG(10, ("Unsupported VFS_FALLOCATE_KEEP_SIZE\n"));
1360 ret
= smbd_gpfs_prealloc(fsp
->fh
->fd
, offset
, len
);
1362 if (ret
== -1 && errno
!= ENOSYS
) {
1363 DEBUG(0, ("GPFS prealloc failed: %s\n", strerror(errno
)));
1364 } else if (ret
== -1 && errno
== ENOSYS
) {
1365 DEBUG(10, ("GPFS prealloc not supported.\n"));
1367 DEBUG(10, ("GPFS prealloc succeeded.\n"));
1373 static int vfs_gpfs_ftruncate(vfs_handle_struct
*handle
, files_struct
*fsp
,
1377 struct gpfs_config_data
*config
;
1379 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1380 struct gpfs_config_data
,
1383 if (!config
->ftruncate
) {
1384 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1387 result
= smbd_gpfs_ftruncate(fsp
->fh
->fd
, len
);
1388 if ((result
== -1) && (errno
== ENOSYS
)) {
1389 return SMB_VFS_NEXT_FTRUNCATE(handle
, fsp
, len
);
1394 static bool vfs_gpfs_is_offline(struct vfs_handle_struct
*handle
,
1395 const struct smb_filename
*fname
,
1396 SMB_STRUCT_STAT
*sbuf
)
1398 struct gpfs_winattr attrs
;
1401 struct gpfs_config_data
*config
;
1403 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1404 struct gpfs_config_data
,
1407 if (!config
->winattr
) {
1408 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1411 status
= get_full_smb_filename(talloc_tos(), fname
, &path
);
1412 if (!NT_STATUS_IS_OK(status
)) {
1413 errno
= map_errno_from_nt_status(status
);
1417 if (VALID_STAT(*sbuf
)) {
1418 attrs
.winAttrs
= sbuf
->vfs_private
;
1421 ret
= get_gpfs_winattrs(path
, &attrs
);
1428 if ((attrs
.winAttrs
& GPFS_WINATTR_OFFLINE
) != 0) {
1429 DEBUG(10, ("%s is offline\n", path
));
1433 DEBUG(10, ("%s is online\n", path
));
1435 return SMB_VFS_NEXT_IS_OFFLINE(handle
, fname
, sbuf
);
1438 static bool vfs_gpfs_aio_force(struct vfs_handle_struct
*handle
,
1439 struct files_struct
*fsp
)
1441 return vfs_gpfs_is_offline(handle
, fsp
->fsp_name
, &fsp
->fsp_name
->st
);
1444 static ssize_t
vfs_gpfs_sendfile(vfs_handle_struct
*handle
, int tofd
,
1445 files_struct
*fsp
, const DATA_BLOB
*hdr
,
1446 off_t offset
, size_t n
)
1448 if ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0) {
1452 return SMB_VFS_NEXT_SENDFILE(handle
, tofd
, fsp
, hdr
, offset
, n
);
1455 static int vfs_gpfs_connect(struct vfs_handle_struct
*handle
,
1456 const char *service
, const char *user
)
1458 struct gpfs_config_data
*config
;
1461 smbd_gpfs_lib_init();
1463 ret
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
1469 config
= talloc_zero(handle
->conn
, struct gpfs_config_data
);
1471 SMB_VFS_NEXT_DISCONNECT(handle
);
1472 DEBUG(0, ("talloc_zero() failed\n"));
1476 config
->sharemodes
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1477 "sharemodes", true);
1479 config
->leases
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1482 config
->hsm
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1485 config
->syncio
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1488 config
->winattr
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1491 config
->ftruncate
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1494 config
->getrealfilename
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1495 "getrealfilename", true);
1497 config
->dfreequota
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1498 "dfreequota", false);
1500 config
->prealloc
= lp_parm_bool(SNUM(handle
->conn
), "gpfs",
1503 config
->acl
= lp_parm_bool(SNUM(handle
->conn
), "gpfs", "acl", true);
1505 SMB_VFS_HANDLE_SET_DATA(handle
, config
,
1506 NULL
, struct gpfs_config_data
,
1509 if (config
->leases
) {
1511 * GPFS lease code is based on kernel oplock code
1512 * so make sure it is turned on
1514 if (!lp_kernel_oplocks(SNUM(handle
->conn
))) {
1515 DEBUG(5, ("Enabling kernel oplocks for "
1516 "gpfs:leases to work\n"));
1517 lp_do_parameter(SNUM(handle
->conn
), "kernel oplocks",
1522 * as the kernel does not properly support Level II oplocks
1523 * and GPFS leases code is based on kernel infrastructure, we
1524 * need to turn off Level II oplocks if gpfs:leases is enabled
1526 if (lp_level2_oplocks(SNUM(handle
->conn
))) {
1527 DEBUG(5, ("gpfs:leases are enabled, disabling "
1528 "Level II oplocks\n"));
1529 lp_do_parameter(SNUM(handle
->conn
), "level2 oplocks",
1537 static int vfs_gpfs_get_quotas(const char *path
, uid_t uid
, gid_t gid
,
1539 struct gpfs_quotaInfo
*qi_user
,
1540 struct gpfs_quotaInfo
*qi_group
,
1541 struct gpfs_quotaInfo
*qi_fset
)
1545 err
= get_gpfs_fset_id(path
, fset_id
);
1547 DEBUG(0, ("Get fset id failed, errno %d.\n", errno
));
1551 err
= get_gpfs_quota(path
, GPFS_USRQUOTA
, uid
, qi_user
);
1556 err
= get_gpfs_quota(path
, GPFS_GRPQUOTA
, gid
, qi_group
);
1561 err
= get_gpfs_quota(path
, GPFS_FILESETQUOTA
, *fset_id
, qi_fset
);
1569 static void vfs_gpfs_disk_free_quota(struct gpfs_quotaInfo qi
, time_t cur_time
,
1570 uint64_t *dfree
, uint64_t *dsize
)
1572 uint64_t usage
, limit
;
1575 * The quota reporting is done in units of 1024 byte blocks, but
1576 * sys_fsusage uses units of 512 byte blocks, adjust the block number
1577 * accordingly. Also filter possibly negative usage counts from gpfs.
1579 usage
= qi
.blockUsage
< 0 ? 0 : (uint64_t)qi
.blockUsage
* 2;
1580 limit
= (uint64_t)qi
.blockHardLimit
* 2;
1583 * When the grace time for the exceeded soft block quota has been
1584 * exceeded, the soft block quota becomes an additional hard limit.
1586 if (qi
.blockSoftLimit
&&
1587 qi
.blockGraceTime
&& cur_time
> qi
.blockGraceTime
) {
1588 /* report disk as full */
1590 *dsize
= MIN(*dsize
, usage
);
1593 if (!qi
.blockHardLimit
)
1596 if (usage
>= limit
) {
1597 /* report disk as full */
1599 *dsize
= MIN(*dsize
, usage
);
1602 /* limit has not been reached, determine "free space" */
1603 *dfree
= MIN(*dfree
, limit
- usage
);
1604 *dsize
= MIN(*dsize
, limit
);
1608 static uint64_t vfs_gpfs_disk_free(vfs_handle_struct
*handle
, const char *path
,
1609 bool small_query
, uint64_t *bsize
,
1610 uint64_t *dfree
, uint64_t *dsize
)
1612 struct security_unix_token
*utok
;
1613 struct gpfs_quotaInfo qi_user
, qi_group
, qi_fset
;
1614 struct gpfs_config_data
*config
;
1618 SMB_VFS_HANDLE_GET_DATA(handle
, config
, struct gpfs_config_data
,
1619 return (uint64_t)-1);
1620 if (!config
->dfreequota
) {
1621 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1622 bsize
, dfree
, dsize
);
1625 err
= sys_fsusage(path
, dfree
, dsize
);
1627 DEBUG (0, ("Could not get fs usage, errno %d\n", errno
));
1628 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1629 bsize
, dfree
, dsize
);
1632 /* sys_fsusage returns units of 512 bytes */
1635 DEBUG(10, ("fs dfree %llu, dsize %llu\n",
1636 (unsigned long long)*dfree
, (unsigned long long)*dsize
));
1638 utok
= handle
->conn
->session_info
->unix_token
;
1639 err
= vfs_gpfs_get_quotas(path
, utok
->uid
, utok
->gid
, &fset_id
,
1640 &qi_user
, &qi_group
, &qi_fset
);
1642 return SMB_VFS_NEXT_DISK_FREE(handle
, path
, small_query
,
1643 bsize
, dfree
, dsize
);
1646 cur_time
= time(NULL
);
1648 /* Adjust free space and size according to quota limits. */
1649 vfs_gpfs_disk_free_quota(qi_user
, cur_time
, dfree
, dsize
);
1650 vfs_gpfs_disk_free_quota(qi_group
, cur_time
, dfree
, dsize
);
1652 /* Id 0 indicates the default quota, not an actual quota */
1654 vfs_gpfs_disk_free_quota(qi_fset
, cur_time
, dfree
, dsize
);
1657 disk_norm(small_query
, bsize
, dfree
, dsize
);
1661 static uint32_t vfs_gpfs_capabilities(struct vfs_handle_struct
*handle
,
1662 enum timestamp_set_resolution
*p_ts_res
)
1664 struct gpfs_config_data
*config
;
1667 next
= SMB_VFS_NEXT_FS_CAPABILITIES(handle
, p_ts_res
);
1669 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1670 struct gpfs_config_data
,
1674 next
|= FILE_SUPPORTS_REMOTE_STORAGE
;
1679 static int vfs_gpfs_open(struct vfs_handle_struct
*handle
,
1680 struct smb_filename
*smb_fname
, files_struct
*fsp
,
1681 int flags
, mode_t mode
)
1683 struct gpfs_config_data
*config
;
1685 SMB_VFS_HANDLE_GET_DATA(handle
, config
,
1686 struct gpfs_config_data
,
1689 if (config
->syncio
) {
1692 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
1695 static ssize_t
vfs_gpfs_pread(vfs_handle_struct
*handle
, files_struct
*fsp
,
1696 void *data
, size_t n
, off_t offset
)
1700 ret
= SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, n
, offset
);
1702 DEBUG(10, ("vfs_private = %x\n",
1703 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1706 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1707 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1708 notify_fname(handle
->conn
, NOTIFY_ACTION_MODIFIED
,
1709 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1710 fsp
->fsp_name
->base_name
);
1716 struct vfs_gpfs_pread_state
{
1717 struct files_struct
*fsp
;
1722 static void vfs_gpfs_pread_done(struct tevent_req
*subreq
);
1724 static struct tevent_req
*vfs_gpfs_pread_send(struct vfs_handle_struct
*handle
,
1725 TALLOC_CTX
*mem_ctx
,
1726 struct tevent_context
*ev
,
1727 struct files_struct
*fsp
,
1728 void *data
, size_t n
,
1731 struct tevent_req
*req
, *subreq
;
1732 struct vfs_gpfs_pread_state
*state
;
1734 req
= tevent_req_create(mem_ctx
, &state
, struct vfs_gpfs_pread_state
);
1739 subreq
= SMB_VFS_NEXT_PREAD_SEND(state
, ev
, handle
, fsp
, data
,
1741 if (tevent_req_nomem(subreq
, req
)) {
1742 return tevent_req_post(req
, ev
);
1744 tevent_req_set_callback(subreq
, vfs_gpfs_pread_done
, req
);
1748 static void vfs_gpfs_pread_done(struct tevent_req
*subreq
)
1750 struct tevent_req
*req
= tevent_req_callback_data(
1751 subreq
, struct tevent_req
);
1752 struct vfs_gpfs_pread_state
*state
= tevent_req_data(
1753 req
, struct vfs_gpfs_pread_state
);
1755 state
->ret
= SMB_VFS_PREAD_RECV(subreq
, &state
->err
);
1756 TALLOC_FREE(subreq
);
1757 tevent_req_done(req
);
1760 static ssize_t
vfs_gpfs_pread_recv(struct tevent_req
*req
, int *err
)
1762 struct vfs_gpfs_pread_state
*state
= tevent_req_data(
1763 req
, struct vfs_gpfs_pread_state
);
1764 struct files_struct
*fsp
= state
->fsp
;
1766 if (tevent_req_is_unix_error(req
, err
)) {
1771 DEBUG(10, ("vfs_private = %x\n",
1772 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1774 if ((state
->ret
!= -1) &&
1775 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1776 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1777 DEBUG(10, ("sending notify\n"));
1778 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
1779 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1780 fsp
->fsp_name
->base_name
);
1786 static ssize_t
vfs_gpfs_pwrite(vfs_handle_struct
*handle
, files_struct
*fsp
,
1787 const void *data
, size_t n
, off_t offset
)
1791 ret
= SMB_VFS_NEXT_PWRITE(handle
, fsp
, data
, n
, offset
);
1793 DEBUG(10, ("vfs_private = %x\n",
1794 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1797 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1798 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1799 notify_fname(handle
->conn
, NOTIFY_ACTION_MODIFIED
,
1800 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1801 fsp
->fsp_name
->base_name
);
1807 struct vfs_gpfs_pwrite_state
{
1808 struct files_struct
*fsp
;
1813 static void vfs_gpfs_pwrite_done(struct tevent_req
*subreq
);
1815 static struct tevent_req
*vfs_gpfs_pwrite_send(
1816 struct vfs_handle_struct
*handle
,
1817 TALLOC_CTX
*mem_ctx
,
1818 struct tevent_context
*ev
,
1819 struct files_struct
*fsp
,
1820 const void *data
, size_t n
,
1823 struct tevent_req
*req
, *subreq
;
1824 struct vfs_gpfs_pwrite_state
*state
;
1826 req
= tevent_req_create(mem_ctx
, &state
, struct vfs_gpfs_pwrite_state
);
1831 subreq
= SMB_VFS_NEXT_PWRITE_SEND(state
, ev
, handle
, fsp
, data
,
1833 if (tevent_req_nomem(subreq
, req
)) {
1834 return tevent_req_post(req
, ev
);
1836 tevent_req_set_callback(subreq
, vfs_gpfs_pwrite_done
, req
);
1840 static void vfs_gpfs_pwrite_done(struct tevent_req
*subreq
)
1842 struct tevent_req
*req
= tevent_req_callback_data(
1843 subreq
, struct tevent_req
);
1844 struct vfs_gpfs_pwrite_state
*state
= tevent_req_data(
1845 req
, struct vfs_gpfs_pwrite_state
);
1847 state
->ret
= SMB_VFS_PWRITE_RECV(subreq
, &state
->err
);
1848 TALLOC_FREE(subreq
);
1849 tevent_req_done(req
);
1852 static ssize_t
vfs_gpfs_pwrite_recv(struct tevent_req
*req
, int *err
)
1854 struct vfs_gpfs_pwrite_state
*state
= tevent_req_data(
1855 req
, struct vfs_gpfs_pwrite_state
);
1856 struct files_struct
*fsp
= state
->fsp
;
1858 if (tevent_req_is_unix_error(req
, err
)) {
1863 DEBUG(10, ("vfs_private = %x\n",
1864 (unsigned int)fsp
->fsp_name
->st
.vfs_private
));
1866 if ((state
->ret
!= -1) &&
1867 ((fsp
->fsp_name
->st
.vfs_private
& GPFS_WINATTR_OFFLINE
) != 0)) {
1868 fsp
->fsp_name
->st
.vfs_private
&= ~GPFS_WINATTR_OFFLINE
;
1869 DEBUG(10, ("sending notify\n"));
1870 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
1871 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
1872 fsp
->fsp_name
->base_name
);
1879 static struct vfs_fn_pointers vfs_gpfs_fns
= {
1880 .connect_fn
= vfs_gpfs_connect
,
1881 .disk_free_fn
= vfs_gpfs_disk_free
,
1882 .fs_capabilities_fn
= vfs_gpfs_capabilities
,
1883 .kernel_flock_fn
= vfs_gpfs_kernel_flock
,
1884 .linux_setlease_fn
= vfs_gpfs_setlease
,
1885 .get_real_filename_fn
= vfs_gpfs_get_real_filename
,
1886 .fget_nt_acl_fn
= gpfsacl_fget_nt_acl
,
1887 .get_nt_acl_fn
= gpfsacl_get_nt_acl
,
1888 .fset_nt_acl_fn
= gpfsacl_fset_nt_acl
,
1889 .sys_acl_get_file_fn
= gpfsacl_sys_acl_get_file
,
1890 .sys_acl_get_fd_fn
= gpfsacl_sys_acl_get_fd
,
1891 .sys_acl_set_file_fn
= gpfsacl_sys_acl_set_file
,
1892 .sys_acl_set_fd_fn
= gpfsacl_sys_acl_set_fd
,
1893 .sys_acl_delete_def_file_fn
= gpfsacl_sys_acl_delete_def_file
,
1894 .chmod_fn
= vfs_gpfs_chmod
,
1895 .fchmod_fn
= vfs_gpfs_fchmod
,
1896 .close_fn
= vfs_gpfs_close
,
1897 .setxattr_fn
= gpfs_set_xattr
,
1898 .getxattr_fn
= gpfs_get_xattr
,
1899 .stat_fn
= vfs_gpfs_stat
,
1900 .fstat_fn
= vfs_gpfs_fstat
,
1901 .lstat_fn
= vfs_gpfs_lstat
,
1902 .ntimes_fn
= vfs_gpfs_ntimes
,
1903 .is_offline_fn
= vfs_gpfs_is_offline
,
1904 .aio_force_fn
= vfs_gpfs_aio_force
,
1905 .sendfile_fn
= vfs_gpfs_sendfile
,
1906 .fallocate_fn
= vfs_gpfs_fallocate
,
1907 .open_fn
= vfs_gpfs_open
,
1908 .pread_fn
= vfs_gpfs_pread
,
1909 .pread_send_fn
= vfs_gpfs_pread_send
,
1910 .pread_recv_fn
= vfs_gpfs_pread_recv
,
1911 .pwrite_fn
= vfs_gpfs_pwrite
,
1912 .pwrite_send_fn
= vfs_gpfs_pwrite_send
,
1913 .pwrite_recv_fn
= vfs_gpfs_pwrite_recv
,
1914 .ftruncate_fn
= vfs_gpfs_ftruncate
1917 NTSTATUS
vfs_gpfs_init(void);
1918 NTSTATUS
vfs_gpfs_init(void)
1922 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "gpfs",