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/>.
27 #define DBGC_CLASS DBGC_VFS
30 #include "nfs4_acls.h"
33 static int vfs_gpfs_kernel_flock(vfs_handle_struct
*handle
, files_struct
*fsp
,
37 START_PROFILE(syscall_kernel_flock
);
39 kernel_flock(fsp
->fh
->fd
, share_mode
);
41 if (!set_gpfs_sharemode(fsp
, fsp
->access_mask
, fsp
->share_access
)) {
47 END_PROFILE(syscall_kernel_flock
);
52 static int vfs_gpfs_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
57 START_PROFILE(syscall_linux_setlease
);
59 if ( linux_set_lease_sighandler(fsp
->fh
->fd
) == -1)
62 ret
= set_gpfs_lease(fsp
->fh
->fd
,leasetype
);
65 /* This must have come from GPFS not being available */
66 /* or some other error, hence call the default */
67 ret
= linux_setlease(fsp
->fh
->fd
, leasetype
);
70 END_PROFILE(syscall_linux_setlease
);
75 static int vfs_gpfs_get_real_filename(struct vfs_handle_struct
*handle
,
83 char real_pathname
[PATH_MAX
+1];
86 full_path
= talloc_asprintf(talloc_tos(), "%s/%s", path
, name
);
87 if (full_path
== NULL
) {
92 buflen
= sizeof(real_pathname
) - 1;
94 result
= smbd_gpfs_get_realfilename_path(full_path
, real_pathname
,
97 TALLOC_FREE(full_path
);
99 if ((result
== -1) && (errno
== ENOSYS
)) {
100 return SMB_VFS_NEXT_GET_REAL_FILENAME(
101 handle
, path
, name
, mem_ctx
, found_name
);
105 DEBUG(10, ("smbd_gpfs_get_realfilename_path returned %s\n",
111 * GPFS does not necessarily null-terminate the returned path
112 * but instead returns the buffer length in buflen.
115 if (buflen
< sizeof(real_pathname
)) {
116 real_pathname
[buflen
] = '\0';
118 real_pathname
[sizeof(real_pathname
)-1] = '\0';
121 DEBUG(10, ("smbd_gpfs_get_realfilename_path: %s/%s -> %s\n",
122 path
, name
, real_pathname
));
124 name
= strrchr_m(real_pathname
, '/');
130 *found_name
= talloc_strdup(mem_ctx
, name
+1);
131 if (*found_name
== NULL
) {
139 static void gpfs_dumpacl(int level
, struct gpfs_acl
*gacl
)
144 DEBUG(0, ("gpfs acl is NULL\n"));
148 DEBUG(level
, ("gpfs acl: nace: %d, type:%d, version:%d, level:%d, len:%d\n",
149 gacl
->acl_nace
, gacl
->acl_type
, gacl
->acl_version
, gacl
->acl_level
, gacl
->acl_len
));
150 for(i
=0; i
<gacl
->acl_nace
; i
++)
152 struct gpfs_ace_v4
*gace
= gacl
->ace_v4
+ i
;
153 DEBUG(level
, ("\tace[%d]: type:%d, flags:0x%x, mask:0x%x, iflags:0x%x, who:%u\n",
154 i
, gace
->aceType
, gace
->aceFlags
, gace
->aceMask
,
155 gace
->aceIFlags
, gace
->aceWho
));
159 static struct gpfs_acl
*gpfs_getacl_alloc(const char *fname
, gpfs_aclType_t type
)
161 struct gpfs_acl
*acl
;
164 TALLOC_CTX
*mem_ctx
= talloc_tos();
166 acl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, len
);
174 acl
->acl_version
= 0;
175 acl
->acl_type
= type
;
177 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
| GPFS_ACL_SAMBA
, acl
);
178 if ((ret
!= 0) && (errno
== ENOSPC
)) {
179 struct gpfs_acl
*new_acl
= (struct gpfs_acl
*)TALLOC_SIZE(
180 mem_ctx
, acl
->acl_len
+ sizeof(struct gpfs_acl
));
181 if (new_acl
== NULL
) {
186 new_acl
->acl_len
= acl
->acl_len
;
187 new_acl
->acl_level
= acl
->acl_level
;
188 new_acl
->acl_version
= acl
->acl_version
;
189 new_acl
->acl_type
= acl
->acl_type
;
192 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
| GPFS_ACL_SAMBA
, acl
);
196 DEBUG(8, ("smbd_gpfs_getacl failed with %s\n",strerror(errno
)));
203 /* Tries to get nfs4 acls and returns SMB ACL allocated.
204 * On failure returns 1 if it got non-NFSv4 ACL to prompt
205 * retry with POSIX ACL checks.
206 * On failure returns -1 if there is system (GPFS) error, check errno.
207 * Returns 0 on success
209 static int gpfs_get_nfs4_acl(const char *fname
, SMB4ACL_T
**ppacl
)
212 struct gpfs_acl
*gacl
= NULL
;
213 DEBUG(10, ("gpfs_get_nfs4_acl invoked for %s\n", fname
));
215 /* First get the real acl length */
216 gacl
= gpfs_getacl_alloc(fname
, 0);
218 DEBUG(9, ("gpfs_getacl failed for %s with %s\n",
219 fname
, strerror(errno
)));
223 if (gacl
->acl_type
!= GPFS_ACL_TYPE_NFS4
) {
224 DEBUG(10, ("Got non-nfsv4 acl\n"));
225 /* Retry with POSIX ACLs check */
229 *ppacl
= smb_create_smb4acl();
231 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
232 gacl
->acl_len
, gacl
->acl_level
, gacl
->acl_version
,
235 for (i
=0; i
<gacl
->acl_nace
; i
++) {
236 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[i
];
237 SMB_ACE4PROP_T smbace
;
238 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
239 "who: %d\n", gace
->aceType
, gace
->aceIFlags
,
240 gace
->aceFlags
, gace
->aceMask
, gace
->aceWho
));
243 if (gace
->aceIFlags
& ACE4_IFLAG_SPECIAL_ID
) {
244 smbace
.flags
|= SMB_ACE4_ID_SPECIAL
;
245 switch (gace
->aceWho
) {
246 case ACE4_SPECIAL_OWNER
:
247 smbace
.who
.special_id
= SMB_ACE4_WHO_OWNER
;
249 case ACE4_SPECIAL_GROUP
:
250 smbace
.who
.special_id
= SMB_ACE4_WHO_GROUP
;
252 case ACE4_SPECIAL_EVERYONE
:
253 smbace
.who
.special_id
= SMB_ACE4_WHO_EVERYONE
;
256 DEBUG(8, ("invalid special gpfs id %d "
257 "ignored\n", gace
->aceWho
));
258 continue; /* don't add it */
261 if (gace
->aceFlags
& ACE4_FLAG_GROUP_ID
)
262 smbace
.who
.gid
= gace
->aceWho
;
264 smbace
.who
.uid
= gace
->aceWho
;
267 /* remove redundent deny entries */
268 if (i
> 0 && gace
->aceType
== SMB_ACE4_ACCESS_DENIED_ACE_TYPE
) {
269 struct gpfs_ace_v4
*prev
= &gacl
->ace_v4
[i
-1];
270 if (prev
->aceType
== SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
&&
271 prev
->aceFlags
== gace
->aceFlags
&&
272 prev
->aceIFlags
== gace
->aceIFlags
&&
273 (gace
->aceMask
& prev
->aceMask
) == 0 &&
274 gace
->aceWho
== prev
->aceWho
) {
275 /* its redundent - skip it */
280 smbace
.aceType
= gace
->aceType
;
281 smbace
.aceFlags
= gace
->aceFlags
;
282 smbace
.aceMask
= gace
->aceMask
;
283 smb_add_ace4(*ppacl
, &smbace
);
289 static NTSTATUS
gpfsacl_fget_nt_acl(vfs_handle_struct
*handle
,
290 files_struct
*fsp
, uint32 security_info
,
293 SMB4ACL_T
*pacl
= NULL
;
297 result
= gpfs_get_nfs4_acl(fsp
->fsp_name
, &pacl
);
300 return smb_fget_nt_acl_nfs4(fsp
, security_info
, ppdesc
, pacl
);
303 DEBUG(10, ("retrying with posix acl...\n"));
304 return posix_fget_nt_acl(fsp
, security_info
, ppdesc
);
307 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
308 return map_nt_error_from_unix(errno
);
311 static NTSTATUS
gpfsacl_get_nt_acl(vfs_handle_struct
*handle
,
313 uint32 security_info
, SEC_DESC
**ppdesc
)
315 SMB4ACL_T
*pacl
= NULL
;
319 result
= gpfs_get_nfs4_acl(name
, &pacl
);
322 return smb_get_nt_acl_nfs4(handle
->conn
, name
, security_info
, ppdesc
, pacl
);
325 DEBUG(10, ("retrying with posix acl...\n"));
326 return posix_get_nt_acl(handle
->conn
, name
, security_info
, ppdesc
);
329 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
330 return map_nt_error_from_unix(errno
);
333 static bool gpfsacl_process_smbacl(files_struct
*fsp
, SMB4ACL_T
*smbacl
)
336 gpfs_aclLen_t gacl_len
;
338 struct gpfs_acl
*gacl
;
339 TALLOC_CTX
*mem_ctx
= talloc_tos();
341 gacl_len
= sizeof(struct gpfs_acl
) +
342 (smb_get_naces(smbacl
)-1)*sizeof(gpfs_ace_v4_t
);
344 gacl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, gacl_len
);
346 DEBUG(0, ("talloc failed\n"));
351 gacl
->acl_len
= gacl_len
;
353 gacl
->acl_version
= GPFS_ACL_VERSION_NFS4
;
354 gacl
->acl_type
= GPFS_ACL_TYPE_NFS4
;
355 gacl
->acl_nace
= 0; /* change later... */
357 for (smbace
=smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
358 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[gacl
->acl_nace
];
359 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
361 gace
->aceType
= aceprop
->aceType
;
362 gace
->aceFlags
= aceprop
->aceFlags
;
363 gace
->aceMask
= aceprop
->aceMask
;
366 * GPFS can't distinguish between WRITE and APPEND on
367 * files, so one being set without the other is an
368 * error. Sorry for the many ()'s :-)
371 if (!fsp
->is_directory
373 ((((gace
->aceMask
& ACE4_MASK_WRITE
) == 0)
374 && ((gace
->aceMask
& ACE4_MASK_APPEND
) != 0))
376 (((gace
->aceMask
& ACE4_MASK_WRITE
) != 0)
377 && ((gace
->aceMask
& ACE4_MASK_APPEND
) == 0)))
379 lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
380 "merge_writeappend", True
)) {
381 DEBUG(2, ("vfs_gpfs.c: file [%s]: ACE contains "
382 "WRITE^APPEND, setting WRITE|APPEND\n",
384 gace
->aceMask
|= ACE4_MASK_WRITE
|ACE4_MASK_APPEND
;
387 gace
->aceIFlags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_IFLAG_SPECIAL_ID
: 0;
389 if (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
)
391 switch(aceprop
->who
.special_id
)
393 case SMB_ACE4_WHO_EVERYONE
:
394 gace
->aceWho
= ACE4_SPECIAL_EVERYONE
;
396 case SMB_ACE4_WHO_OWNER
:
397 gace
->aceWho
= ACE4_SPECIAL_OWNER
;
399 case SMB_ACE4_WHO_GROUP
:
400 gace
->aceWho
= ACE4_SPECIAL_GROUP
;
403 DEBUG(8, ("unsupported special_id %d\n", aceprop
->who
.special_id
));
404 continue; /* don't add it !!! */
407 /* just only for the type safety... */
408 if (aceprop
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)
409 gace
->aceWho
= aceprop
->who
.gid
;
411 gace
->aceWho
= aceprop
->who
.uid
;
417 ret
= smbd_gpfs_putacl(fsp
->fsp_name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gacl
);
419 DEBUG(8, ("gpfs_putacl failed with %s\n", strerror(errno
)));
420 gpfs_dumpacl(8, gacl
);
424 DEBUG(10, ("gpfs_putacl succeeded\n"));
428 static NTSTATUS
gpfsacl_set_nt_acl_internal(files_struct
*fsp
, uint32 security_info_sent
, const SEC_DESC
*psd
)
430 struct gpfs_acl
*acl
;
431 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
433 acl
= gpfs_getacl_alloc(fsp
->fsp_name
, 0);
437 if (acl
->acl_version
&GPFS_ACL_VERSION_NFS4
)
439 result
= smb_set_nt_acl_nfs4(
440 fsp
, security_info_sent
, psd
,
441 gpfsacl_process_smbacl
);
442 } else { /* assume POSIX ACL - by default... */
443 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
449 static NTSTATUS
gpfsacl_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, const SEC_DESC
*psd
)
451 return gpfsacl_set_nt_acl_internal(fsp
, security_info_sent
, psd
);
454 static SMB_ACL_T
gpfs2smb_acl(const struct gpfs_acl
*pacl
)
459 result
= sys_acl_init(pacl
->acl_nace
);
460 if (result
== NULL
) {
465 result
->count
= pacl
->acl_nace
;
467 for (i
=0; i
<pacl
->acl_nace
; i
++) {
468 struct smb_acl_entry
*ace
= &result
->acl
[i
];
469 const struct gpfs_ace_v1
*g_ace
= &pacl
->ace_v1
[i
];
471 DEBUG(10, ("Converting type %d id %lu perm %x\n",
472 (int)g_ace
->ace_type
, (unsigned long)g_ace
->ace_who
,
473 (int)g_ace
->ace_perm
));
475 switch (g_ace
->ace_type
) {
477 ace
->a_type
= SMB_ACL_USER
;
478 ace
->uid
= (uid_t
)g_ace
->ace_who
;
480 case GPFS_ACL_USER_OBJ
:
481 ace
->a_type
= SMB_ACL_USER_OBJ
;
484 ace
->a_type
= SMB_ACL_GROUP
;
485 ace
->gid
= (gid_t
)g_ace
->ace_who
;
487 case GPFS_ACL_GROUP_OBJ
:
488 ace
->a_type
= SMB_ACL_GROUP_OBJ
;
491 ace
->a_type
= SMB_ACL_OTHER
;
494 ace
->a_type
= SMB_ACL_MASK
;
497 DEBUG(10, ("Got invalid ace_type: %d\n",
505 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_READ
) ?
507 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_WRITE
) ?
509 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_EXECUTE
) ?
512 DEBUGADD(10, ("Converted to %d perm %x\n",
513 ace
->a_type
, ace
->a_perm
));
519 static SMB_ACL_T
gpfsacl_get_posix_acl(const char *path
, gpfs_aclType_t type
)
521 struct gpfs_acl
*pacl
;
522 SMB_ACL_T result
= NULL
;
524 pacl
= gpfs_getacl_alloc(path
, type
);
527 DEBUG(10, ("gpfs_getacl failed for %s with %s\n",
528 path
, strerror(errno
)));
535 if (pacl
->acl_version
!= GPFS_ACL_VERSION_POSIX
) {
536 DEBUG(10, ("Got acl version %d, expected %d\n",
537 pacl
->acl_version
, GPFS_ACL_VERSION_POSIX
));
542 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
543 pacl
->acl_len
, pacl
->acl_level
, pacl
->acl_version
,
546 result
= gpfs2smb_acl(pacl
);
547 if (result
== NULL
) {
559 static SMB_ACL_T
gpfsacl_sys_acl_get_file(vfs_handle_struct
*handle
,
563 gpfs_aclType_t gpfs_type
;
566 case SMB_ACL_TYPE_ACCESS
:
567 gpfs_type
= GPFS_ACL_TYPE_ACCESS
;
569 case SMB_ACL_TYPE_DEFAULT
:
570 gpfs_type
= GPFS_ACL_TYPE_DEFAULT
;
573 DEBUG(0, ("Got invalid type: %d\n", type
));
574 smb_panic("exiting");
577 return gpfsacl_get_posix_acl(path_p
, gpfs_type
);
580 static SMB_ACL_T
gpfsacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
583 return gpfsacl_get_posix_acl(fsp
->fsp_name
, GPFS_ACL_TYPE_ACCESS
);
586 static struct gpfs_acl
*smb2gpfs_acl(const SMB_ACL_T pacl
,
590 struct gpfs_acl
*result
;
594 gpfs_ace_v1_t ace_v1
[1]; /* when GPFS_ACL_VERSION_POSIX */
595 gpfs_ace_v4_t ace_v4
[1]; /* when GPFS_ACL_VERSION_NFS4 */
598 DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl
->count
));
600 len
= sizeof(struct gpfs_acl
) - sizeof(union gpfs_ace_union
) +
601 (pacl
->count
)*sizeof(gpfs_ace_v1_t
);
603 result
= (struct gpfs_acl
*)SMB_MALLOC(len
);
604 if (result
== NULL
) {
609 result
->acl_len
= len
;
610 result
->acl_level
= 0;
611 result
->acl_version
= GPFS_ACL_VERSION_POSIX
;
612 result
->acl_type
= (type
== SMB_ACL_TYPE_DEFAULT
) ?
613 GPFS_ACL_TYPE_DEFAULT
: GPFS_ACL_TYPE_ACCESS
;
614 result
->acl_nace
= pacl
->count
;
616 for (i
=0; i
<pacl
->count
; i
++) {
617 const struct smb_acl_entry
*ace
= &pacl
->acl
[i
];
618 struct gpfs_ace_v1
*g_ace
= &result
->ace_v1
[i
];
620 DEBUG(10, ("Converting type %d perm %x\n",
621 (int)ace
->a_type
, (int)ace
->a_perm
));
625 switch(ace
->a_type
) {
627 g_ace
->ace_type
= GPFS_ACL_USER
;
628 g_ace
->ace_who
= (gpfs_uid_t
)ace
->uid
;
630 case SMB_ACL_USER_OBJ
:
631 g_ace
->ace_type
= GPFS_ACL_USER_OBJ
;
632 g_ace
->ace_perm
|= ACL_PERM_CONTROL
;
636 g_ace
->ace_type
= GPFS_ACL_GROUP
;
637 g_ace
->ace_who
= (gpfs_uid_t
)ace
->gid
;
639 case SMB_ACL_GROUP_OBJ
:
640 g_ace
->ace_type
= GPFS_ACL_GROUP_OBJ
;
644 g_ace
->ace_type
= GPFS_ACL_MASK
;
645 g_ace
->ace_perm
= 0x8f;
649 g_ace
->ace_type
= GPFS_ACL_OTHER
;
653 DEBUG(10, ("Got invalid ace_type: %d\n", ace
->a_type
));
659 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_READ
) ?
661 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_WRITE
) ?
663 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_EXECUTE
) ?
664 ACL_PERM_EXECUTE
: 0;
666 DEBUGADD(10, ("Converted to %d id %d perm %x\n",
667 g_ace
->ace_type
, g_ace
->ace_who
, g_ace
->ace_perm
));
673 static int gpfsacl_sys_acl_set_file(vfs_handle_struct
*handle
,
678 struct gpfs_acl
*gpfs_acl
;
681 gpfs_acl
= smb2gpfs_acl(theacl
, type
);
682 if (gpfs_acl
== NULL
) {
686 result
= smbd_gpfs_putacl((char *)name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gpfs_acl
);
692 static int gpfsacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
696 return gpfsacl_sys_acl_set_file(handle
, fsp
->fsp_name
, SMB_ACL_TYPE_ACCESS
, theacl
);
699 static int gpfsacl_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
707 * Assumed: mode bits are shiftable and standard
708 * Output: the new aceMask field for an smb nfs4 ace
710 static uint32
gpfsacl_mask_filter(uint32 aceType
, uint32 aceMask
, uint32 rwx
)
712 const uint32 posix_nfs4map
[3] = {
713 SMB_ACE4_EXECUTE
, /* execute */
714 SMB_ACE4_WRITE_DATA
| SMB_ACE4_APPEND_DATA
, /* write; GPFS specific */
715 SMB_ACE4_READ_DATA
/* read */
718 uint32_t posix_mask
= 0x01;
723 nfs4_bits
= posix_nfs4map
[i
];
724 posix_bit
= rwx
& posix_mask
;
726 if (aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
) {
728 aceMask
|= nfs4_bits
;
730 aceMask
&= ~nfs4_bits
;
732 /* add deny bits when suitable */
734 aceMask
|= nfs4_bits
;
736 aceMask
&= ~nfs4_bits
;
737 } /* other ace types are unexpected */
745 static int gpfsacl_emu_chmod(const char *path
, mode_t mode
)
747 SMB4ACL_T
*pacl
= NULL
;
749 bool haveAllowEntry
[SMB_ACE4_WHO_EVERYONE
+ 1] = {False
, False
, False
, False
};
751 files_struct fake_fsp
; /* TODO: rationalize parametrization */
754 DEBUG(10, ("gpfsacl_emu_chmod invoked for %s mode %o\n", path
, mode
));
756 result
= gpfs_get_nfs4_acl(path
, &pacl
);
760 if (mode
& ~(S_IRWXU
| S_IRWXG
| S_IRWXO
)) {
761 DEBUG(2, ("WARNING: cutting extra mode bits %o on %s\n", mode
, path
));
764 for (smbace
=smb_first_ace4(pacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
765 SMB_ACE4PROP_T
*ace
= smb_get_ace4(smbace
);
766 uint32_t specid
= ace
->who
.special_id
;
768 if (ace
->flags
&SMB_ACE4_ID_SPECIAL
&&
769 ace
->aceType
<=SMB_ACE4_ACCESS_DENIED_ACE_TYPE
&&
770 specid
<= SMB_ACE4_WHO_EVERYONE
) {
774 if (ace
->aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
)
775 haveAllowEntry
[specid
] = True
;
777 /* mode >> 6 for @owner, mode >> 3 for @group,
778 * mode >> 0 for @everyone */
779 newMask
= gpfsacl_mask_filter(ace
->aceType
, ace
->aceMask
,
780 mode
>> ((SMB_ACE4_WHO_EVERYONE
- specid
) * 3));
781 if (ace
->aceMask
!=newMask
) {
782 DEBUG(10, ("ace changed for %s (%o -> %o) id=%d\n",
783 path
, ace
->aceMask
, newMask
, specid
));
785 ace
->aceMask
= newMask
;
789 /* make sure we have at least ALLOW entries
790 * for all the 3 special ids (@EVERYONE, @OWNER, @GROUP)
793 for(i
= SMB_ACE4_WHO_OWNER
; i
<=SMB_ACE4_WHO_EVERYONE
; i
++) {
796 if (haveAllowEntry
[i
]==True
)
800 ace
.aceType
= SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
;
801 ace
.flags
|= SMB_ACE4_ID_SPECIAL
;
802 ace
.who
.special_id
= i
;
804 if (i
==SMB_ACE4_WHO_GROUP
) /* not sure it's necessary... */
805 ace
.aceFlags
|= SMB_ACE4_IDENTIFIER_GROUP
;
807 ace
.aceMask
= gpfsacl_mask_filter(ace
.aceType
, ace
.aceMask
,
808 mode
>> ((SMB_ACE4_WHO_EVERYONE
- i
) * 3));
810 /* don't add unnecessary aces */
814 /* we add it to the END - as windows expects allow aces */
815 smb_add_ace4(pacl
, &ace
);
816 DEBUG(10, ("Added ALLOW ace for %s, mode=%o, id=%d, aceMask=%x\n",
817 path
, mode
, i
, ace
.aceMask
));
820 /* don't add complementary DENY ACEs here */
821 ZERO_STRUCT(fake_fsp
);
822 fake_fsp
.fsp_name
= (char *)path
; /* no file_new is needed here */
825 if (gpfsacl_process_smbacl(&fake_fsp
, pacl
) == False
)
827 return 0; /* ok for [f]chmod */
830 static int vfs_gpfs_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
835 if (SMB_VFS_NEXT_STAT(handle
, path
, &st
) != 0) {
839 /* avoid chmod() if possible, to preserve acls */
840 if ((st
.st_mode
& ~S_IFMT
) == mode
) {
844 rc
= gpfsacl_emu_chmod(path
, mode
);
846 return SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
850 static int vfs_gpfs_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
855 if (SMB_VFS_NEXT_FSTAT(handle
, fsp
, &st
) != 0) {
859 /* avoid chmod() if possible, to preserve acls */
860 if ((st
.st_mode
& ~S_IFMT
) == mode
) {
864 rc
= gpfsacl_emu_chmod(fsp
->fsp_name
, mode
);
866 return SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
870 /* VFS operations structure */
872 static vfs_op_tuple gpfs_op_tuples
[] = {
874 { SMB_VFS_OP(vfs_gpfs_kernel_flock
),
875 SMB_VFS_OP_KERNEL_FLOCK
,
876 SMB_VFS_LAYER_OPAQUE
},
878 { SMB_VFS_OP(vfs_gpfs_setlease
),
879 SMB_VFS_OP_LINUX_SETLEASE
,
880 SMB_VFS_LAYER_OPAQUE
},
882 { SMB_VFS_OP(vfs_gpfs_get_real_filename
),
883 SMB_VFS_OP_GET_REAL_FILENAME
,
884 SMB_VFS_LAYER_OPAQUE
},
886 { SMB_VFS_OP(gpfsacl_fget_nt_acl
),
887 SMB_VFS_OP_FGET_NT_ACL
,
888 SMB_VFS_LAYER_TRANSPARENT
},
890 { SMB_VFS_OP(gpfsacl_get_nt_acl
),
891 SMB_VFS_OP_GET_NT_ACL
,
892 SMB_VFS_LAYER_TRANSPARENT
},
894 { SMB_VFS_OP(gpfsacl_fset_nt_acl
),
895 SMB_VFS_OP_FSET_NT_ACL
,
896 SMB_VFS_LAYER_TRANSPARENT
},
898 { SMB_VFS_OP(gpfsacl_sys_acl_get_file
),
899 SMB_VFS_OP_SYS_ACL_GET_FILE
,
900 SMB_VFS_LAYER_TRANSPARENT
},
902 { SMB_VFS_OP(gpfsacl_sys_acl_get_fd
),
903 SMB_VFS_OP_SYS_ACL_GET_FD
,
904 SMB_VFS_LAYER_TRANSPARENT
},
906 { SMB_VFS_OP(gpfsacl_sys_acl_set_file
),
907 SMB_VFS_OP_SYS_ACL_SET_FILE
,
908 SMB_VFS_LAYER_TRANSPARENT
},
910 { SMB_VFS_OP(gpfsacl_sys_acl_set_fd
),
911 SMB_VFS_OP_SYS_ACL_SET_FD
,
912 SMB_VFS_LAYER_TRANSPARENT
},
914 { SMB_VFS_OP(gpfsacl_sys_acl_delete_def_file
),
915 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
916 SMB_VFS_LAYER_TRANSPARENT
},
918 { SMB_VFS_OP(vfs_gpfs_chmod
),
920 SMB_VFS_LAYER_TRANSPARENT
},
922 { SMB_VFS_OP(vfs_gpfs_fchmod
),
924 SMB_VFS_LAYER_TRANSPARENT
},
926 { SMB_VFS_OP(NULL
), SMB_VFS_OP_NOOP
, SMB_VFS_LAYER_NOOP
}
931 NTSTATUS
vfs_gpfs_init(void);
932 NTSTATUS
vfs_gpfs_init(void)
936 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "gpfs",