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/>.
29 #define DBGC_CLASS DBGC_VFS
32 #include "nfs4_acls.h"
35 static int vfs_gpfs_kernel_flock(vfs_handle_struct
*handle
, files_struct
*fsp
,
39 START_PROFILE(syscall_kernel_flock
);
41 kernel_flock(fsp
->fh
->fd
, share_mode
);
43 if (!set_gpfs_sharemode(fsp
, fsp
->access_mask
, fsp
->share_access
)) {
49 END_PROFILE(syscall_kernel_flock
);
54 static int vfs_gpfs_setlease(vfs_handle_struct
*handle
, files_struct
*fsp
,
59 START_PROFILE(syscall_linux_setlease
);
61 if ( linux_set_lease_sighandler(fsp
->fh
->fd
) == -1)
64 ret
= set_gpfs_lease(fsp
->fh
->fd
,leasetype
);
67 /* This must have come from GPFS not being available */
68 /* or some other error, hence call the default */
69 ret
= linux_setlease(fsp
->fh
->fd
, leasetype
);
72 END_PROFILE(syscall_linux_setlease
);
79 static void gpfs_dumpacl(int level
, struct gpfs_acl
*gacl
)
84 DEBUG(0, ("gpfs acl is NULL\n"));
88 DEBUG(level
, ("gpfs acl: nace: %d, type:%d, version:%d, level:%d, len:%d\n",
89 gacl
->acl_nace
, gacl
->acl_type
, gacl
->acl_version
, gacl
->acl_level
, gacl
->acl_len
));
90 for(i
=0; i
<gacl
->acl_nace
; i
++)
92 struct gpfs_ace_v4
*gace
= gacl
->ace_v4
+ i
;
93 DEBUG(level
, ("\tace[%d]: type:%d, flags:0x%x, mask:0x%x, iflags:0x%x, who:%u\n",
94 i
, gace
->aceType
, gace
->aceFlags
, gace
->aceMask
,
95 gace
->aceIFlags
, gace
->aceWho
));
99 static struct gpfs_acl
*gpfs_getacl_alloc(const char *fname
, gpfs_aclType_t type
)
101 struct gpfs_acl
*acl
;
104 TALLOC_CTX
*mem_ctx
= talloc_tos();
106 acl
= (struct gpfs_acl
*)TALLOC_SIZE(mem_ctx
, len
);
114 acl
->acl_version
= 0;
115 acl
->acl_type
= type
;
117 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
| GPFS_ACL_SAMBA
, acl
);
118 if ((ret
!= 0) && (errno
== ENOSPC
)) {
119 struct gpfs_acl
*new_acl
= (struct gpfs_acl
*)TALLOC_SIZE(
120 mem_ctx
, acl
->acl_len
+ sizeof(struct gpfs_acl
));
121 if (new_acl
== NULL
) {
126 new_acl
->acl_len
= acl
->acl_len
;
127 new_acl
->acl_level
= acl
->acl_level
;
128 new_acl
->acl_version
= acl
->acl_version
;
129 new_acl
->acl_type
= acl
->acl_type
;
132 ret
= smbd_gpfs_getacl((char *)fname
, GPFS_GETACL_STRUCT
| GPFS_ACL_SAMBA
, acl
);
136 DEBUG(8, ("smbd_gpfs_getacl failed with %s\n",strerror(errno
)));
143 /* Tries to get nfs4 acls and returns SMB ACL allocated.
144 * On failure returns 1 if it got non-NFSv4 ACL to prompt
145 * retry with POSIX ACL checks.
146 * On failure returns -1 if there is system (GPFS) error, check errno.
147 * Returns 0 on success
149 static int gpfs_get_nfs4_acl(const char *fname
, SMB4ACL_T
**ppacl
)
152 struct gpfs_acl
*gacl
= NULL
;
153 DEBUG(10, ("gpfs_get_nfs4_acl invoked for %s\n", fname
));
155 /* First get the real acl length */
156 gacl
= gpfs_getacl_alloc(fname
, 0);
158 DEBUG(9, ("gpfs_getacl failed for %s with %s\n",
159 fname
, strerror(errno
)));
163 if (gacl
->acl_type
!= GPFS_ACL_TYPE_NFS4
) {
164 DEBUG(10, ("Got non-nfsv4 acl\n"));
165 /* Retry with POSIX ACLs check */
169 *ppacl
= smb_create_smb4acl();
171 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
172 gacl
->acl_len
, gacl
->acl_level
, gacl
->acl_version
,
175 for (i
=0; i
<gacl
->acl_nace
; i
++) {
176 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[i
];
177 SMB_ACE4PROP_T smbace
;
178 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
179 "who: %d\n", gace
->aceType
, gace
->aceIFlags
,
180 gace
->aceFlags
, gace
->aceMask
, gace
->aceWho
));
182 memset(&smbace
, 0, sizeof(SMB4ACE_T
));
183 if (gace
->aceIFlags
& ACE4_IFLAG_SPECIAL_ID
) {
184 smbace
.flags
|= SMB_ACE4_ID_SPECIAL
;
185 switch (gace
->aceWho
) {
186 case ACE4_SPECIAL_OWNER
:
187 smbace
.who
.special_id
= SMB_ACE4_WHO_OWNER
;
189 case ACE4_SPECIAL_GROUP
:
190 smbace
.who
.special_id
= SMB_ACE4_WHO_GROUP
;
192 case ACE4_SPECIAL_EVERYONE
:
193 smbace
.who
.special_id
= SMB_ACE4_WHO_EVERYONE
;
196 DEBUG(8, ("invalid special gpfs id %d "
197 "ignored\n", gace
->aceWho
));
198 continue; /* don't add it */
201 if (gace
->aceFlags
& ACE4_FLAG_GROUP_ID
)
202 smbace
.who
.gid
= gace
->aceWho
;
204 smbace
.who
.uid
= gace
->aceWho
;
207 /* remove redundent deny entries */
208 if (i
> 0 && gace
->aceType
== SMB_ACE4_ACCESS_DENIED_ACE_TYPE
) {
209 struct gpfs_ace_v4
*prev
= &gacl
->ace_v4
[i
-1];
210 if (prev
->aceType
== SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
&&
211 prev
->aceFlags
== gace
->aceFlags
&&
212 prev
->aceIFlags
== gace
->aceIFlags
&&
213 (gace
->aceMask
& prev
->aceMask
) == 0 &&
214 gace
->aceWho
== prev
->aceWho
) {
215 /* its redundent - skip it */
220 smbace
.aceType
= gace
->aceType
;
221 smbace
.aceFlags
= gace
->aceFlags
;
222 smbace
.aceMask
= gace
->aceMask
;
223 smb_add_ace4(*ppacl
, &smbace
);
229 static NTSTATUS
gpfsacl_fget_nt_acl(vfs_handle_struct
*handle
,
230 files_struct
*fsp
, uint32 security_info
,
233 SMB4ACL_T
*pacl
= NULL
;
237 result
= gpfs_get_nfs4_acl(fsp
->fsp_name
, &pacl
);
240 return smb_fget_nt_acl_nfs4(fsp
, security_info
, ppdesc
, pacl
);
243 DEBUG(10, ("retrying with posix acl...\n"));
244 return posix_fget_nt_acl(fsp
, security_info
, ppdesc
);
247 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
248 return map_nt_error_from_unix(errno
);
251 static NTSTATUS
gpfsacl_get_nt_acl(vfs_handle_struct
*handle
,
253 uint32 security_info
, SEC_DESC
**ppdesc
)
255 SMB4ACL_T
*pacl
= NULL
;
259 result
= gpfs_get_nfs4_acl(name
, &pacl
);
262 return smb_get_nt_acl_nfs4(handle
->conn
, name
, security_info
, ppdesc
, pacl
);
265 DEBUG(10, ("retrying with posix acl...\n"));
266 return posix_get_nt_acl(handle
->conn
, name
, security_info
, ppdesc
);
269 /* GPFS ACL was not read, something wrong happened, error code is set in errno */
270 return map_nt_error_from_unix(errno
);
273 static bool gpfsacl_process_smbacl(files_struct
*fsp
, SMB4ACL_T
*smbacl
)
276 gpfs_aclLen_t gacl_len
;
278 struct gpfs_acl
*gacl
;
279 TALLOC_CTX
*mem_ctx
= talloc_tos();
281 gacl_len
= sizeof(struct gpfs_acl
) +
282 (smb_get_naces(smbacl
)-1)*sizeof(gpfs_ace_v4_t
);
284 gacl
= TALLOC_SIZE(mem_ctx
, gacl_len
);
286 DEBUG(0, ("talloc failed\n"));
291 gacl
->acl_len
= gacl_len
;
293 gacl
->acl_version
= GPFS_ACL_VERSION_NFS4
;
294 gacl
->acl_type
= GPFS_ACL_TYPE_NFS4
;
295 gacl
->acl_nace
= 0; /* change later... */
297 for (smbace
=smb_first_ace4(smbacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
298 struct gpfs_ace_v4
*gace
= &gacl
->ace_v4
[gacl
->acl_nace
];
299 SMB_ACE4PROP_T
*aceprop
= smb_get_ace4(smbace
);
301 gace
->aceType
= aceprop
->aceType
;
302 gace
->aceFlags
= aceprop
->aceFlags
;
303 gace
->aceMask
= aceprop
->aceMask
;
306 * GPFS can't distinguish between WRITE and APPEND on
307 * files, so one being set without the other is an
308 * error. Sorry for the many ()'s :-)
311 if (!fsp
->is_directory
313 ((((gace
->aceMask
& ACE4_MASK_WRITE
) == 0)
314 && ((gace
->aceMask
& ACE4_MASK_APPEND
) != 0))
316 (((gace
->aceMask
& ACE4_MASK_WRITE
) != 0)
317 && ((gace
->aceMask
& ACE4_MASK_APPEND
) == 0)))
319 lp_parm_bool(fsp
->conn
->params
->service
, "gpfs",
320 "merge_writeappend", True
)) {
321 DEBUG(2, ("vfs_gpfs.c: file [%s]: ACE contains "
322 "WRITE^APPEND, setting WRITE|APPEND\n",
324 gace
->aceMask
|= ACE4_MASK_WRITE
|ACE4_MASK_APPEND
;
327 gace
->aceIFlags
= (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
) ? ACE4_IFLAG_SPECIAL_ID
: 0;
329 if (aceprop
->flags
&SMB_ACE4_ID_SPECIAL
)
331 switch(aceprop
->who
.special_id
)
333 case SMB_ACE4_WHO_EVERYONE
:
334 gace
->aceWho
= ACE4_SPECIAL_EVERYONE
;
336 case SMB_ACE4_WHO_OWNER
:
337 gace
->aceWho
= ACE4_SPECIAL_OWNER
;
339 case SMB_ACE4_WHO_GROUP
:
340 gace
->aceWho
= ACE4_SPECIAL_GROUP
;
343 DEBUG(8, ("unsupported special_id %d\n", aceprop
->who
.special_id
));
344 continue; /* don't add it !!! */
347 /* just only for the type safety... */
348 if (aceprop
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)
349 gace
->aceWho
= aceprop
->who
.gid
;
351 gace
->aceWho
= aceprop
->who
.uid
;
357 ret
= smbd_gpfs_putacl(fsp
->fsp_name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gacl
);
359 DEBUG(8, ("gpfs_putacl failed with %s\n", strerror(errno
)));
360 gpfs_dumpacl(8, gacl
);
364 DEBUG(10, ("gpfs_putacl succeeded\n"));
368 static NTSTATUS
gpfsacl_set_nt_acl_internal(files_struct
*fsp
, uint32 security_info_sent
, SEC_DESC
*psd
)
370 struct gpfs_acl
*acl
;
371 NTSTATUS result
= NT_STATUS_ACCESS_DENIED
;
373 acl
= gpfs_getacl_alloc(fsp
->fsp_name
, 0);
377 if (acl
->acl_version
&GPFS_ACL_VERSION_NFS4
)
379 result
= smb_set_nt_acl_nfs4(
380 fsp
, security_info_sent
, psd
,
381 gpfsacl_process_smbacl
);
382 } else { /* assume POSIX ACL - by default... */
383 result
= set_nt_acl(fsp
, security_info_sent
, psd
);
389 static NTSTATUS
gpfsacl_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, uint32 security_info_sent
, SEC_DESC
*psd
)
391 return gpfsacl_set_nt_acl_internal(fsp
, security_info_sent
, psd
);
394 static NTSTATUS
gpfsacl_set_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
, char *name
, uint32 security_info_sent
, SEC_DESC
*psd
)
396 return gpfsacl_set_nt_acl_internal(fsp
, security_info_sent
, psd
);
399 static SMB_ACL_T
gpfs2smb_acl(const struct gpfs_acl
*pacl
)
404 result
= sys_acl_init(pacl
->acl_nace
);
405 if (result
== NULL
) {
410 result
->count
= pacl
->acl_nace
;
412 for (i
=0; i
<pacl
->acl_nace
; i
++) {
413 struct smb_acl_entry
*ace
= &result
->acl
[i
];
414 const struct gpfs_ace_v1
*g_ace
= &pacl
->ace_v1
[i
];
416 DEBUG(10, ("Converting type %d id %lu perm %x\n",
417 (int)g_ace
->ace_type
, (unsigned long)g_ace
->ace_who
,
418 (int)g_ace
->ace_perm
));
420 switch (g_ace
->ace_type
) {
422 ace
->a_type
= SMB_ACL_USER
;
423 ace
->uid
= (uid_t
)g_ace
->ace_who
;
425 case GPFS_ACL_USER_OBJ
:
426 ace
->a_type
= SMB_ACL_USER_OBJ
;
429 ace
->a_type
= SMB_ACL_GROUP
;
430 ace
->gid
= (gid_t
)g_ace
->ace_who
;
432 case GPFS_ACL_GROUP_OBJ
:
433 ace
->a_type
= SMB_ACL_GROUP_OBJ
;
436 ace
->a_type
= SMB_ACL_OTHER
;
439 ace
->a_type
= SMB_ACL_MASK
;
442 DEBUG(10, ("Got invalid ace_type: %d\n",
450 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_READ
) ?
452 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_WRITE
) ?
454 ace
->a_perm
|= (g_ace
->ace_perm
& ACL_PERM_EXECUTE
) ?
457 DEBUGADD(10, ("Converted to %d perm %x\n",
458 ace
->a_type
, ace
->a_perm
));
464 static SMB_ACL_T
gpfsacl_get_posix_acl(const char *path
, gpfs_aclType_t type
)
466 struct gpfs_acl
*pacl
;
467 SMB_ACL_T result
= NULL
;
469 pacl
= gpfs_getacl_alloc(path
, type
);
472 DEBUG(10, ("gpfs_getacl failed for %s with %s\n",
473 path
, strerror(errno
)));
480 if (pacl
->acl_version
!= GPFS_ACL_VERSION_POSIX
) {
481 DEBUG(10, ("Got acl version %d, expected %d\n",
482 pacl
->acl_version
, GPFS_ACL_VERSION_POSIX
));
487 DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
488 pacl
->acl_len
, pacl
->acl_level
, pacl
->acl_version
,
491 result
= gpfs2smb_acl(pacl
);
492 if (result
== NULL
) {
504 SMB_ACL_T
gpfsacl_sys_acl_get_file(vfs_handle_struct
*handle
,
509 gpfs_aclType_t gpfs_type
;
512 case SMB_ACL_TYPE_ACCESS
:
513 gpfs_type
= GPFS_ACL_TYPE_ACCESS
;
515 case SMB_ACL_TYPE_DEFAULT
:
516 gpfs_type
= GPFS_ACL_TYPE_DEFAULT
;
519 DEBUG(0, ("Got invalid type: %d\n", type
));
520 smb_panic("exiting");
523 return gpfsacl_get_posix_acl(path_p
, gpfs_type
);
526 SMB_ACL_T
gpfsacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
529 return gpfsacl_get_posix_acl(fsp
->fsp_name
, GPFS_ACL_TYPE_ACCESS
);
532 static struct gpfs_acl
*smb2gpfs_acl(const SMB_ACL_T pacl
,
536 struct gpfs_acl
*result
;
540 gpfs_ace_v1_t ace_v1
[1]; /* when GPFS_ACL_VERSION_POSIX */
541 gpfs_ace_v4_t ace_v4
[1]; /* when GPFS_ACL_VERSION_NFS4 */
544 DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl
->count
));
546 len
= sizeof(struct gpfs_acl
) - sizeof(union gpfs_ace_union
) +
547 (pacl
->count
)*sizeof(gpfs_ace_v1_t
);
549 result
= SMB_MALLOC(len
);
550 if (result
== NULL
) {
555 result
->acl_len
= len
;
556 result
->acl_level
= 0;
557 result
->acl_version
= GPFS_ACL_VERSION_POSIX
;
558 result
->acl_type
= (type
== SMB_ACL_TYPE_DEFAULT
) ?
559 GPFS_ACL_TYPE_DEFAULT
: GPFS_ACL_TYPE_ACCESS
;
560 result
->acl_nace
= pacl
->count
;
562 for (i
=0; i
<pacl
->count
; i
++) {
563 const struct smb_acl_entry
*ace
= &pacl
->acl
[i
];
564 struct gpfs_ace_v1
*g_ace
= &result
->ace_v1
[i
];
566 DEBUG(10, ("Converting type %d perm %x\n",
567 (int)ace
->a_type
, (int)ace
->a_perm
));
571 switch(ace
->a_type
) {
573 g_ace
->ace_type
= GPFS_ACL_USER
;
574 g_ace
->ace_who
= (gpfs_uid_t
)ace
->uid
;
576 case SMB_ACL_USER_OBJ
:
577 g_ace
->ace_type
= GPFS_ACL_USER_OBJ
;
578 g_ace
->ace_perm
|= ACL_PERM_CONTROL
;
582 g_ace
->ace_type
= GPFS_ACL_GROUP
;
583 g_ace
->ace_who
= (gpfs_uid_t
)ace
->gid
;
585 case SMB_ACL_GROUP_OBJ
:
586 g_ace
->ace_type
= GPFS_ACL_GROUP_OBJ
;
590 g_ace
->ace_type
= GPFS_ACL_MASK
;
591 g_ace
->ace_perm
= 0x8f;
595 g_ace
->ace_type
= GPFS_ACL_OTHER
;
599 DEBUG(10, ("Got invalid ace_type: %d\n", ace
->a_type
));
605 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_READ
) ?
607 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_WRITE
) ?
609 g_ace
->ace_perm
|= (ace
->a_perm
& SMB_ACL_EXECUTE
) ?
610 ACL_PERM_EXECUTE
: 0;
612 DEBUGADD(10, ("Converted to %d id %d perm %x\n",
613 g_ace
->ace_type
, g_ace
->ace_who
, g_ace
->ace_perm
));
619 int gpfsacl_sys_acl_set_file(vfs_handle_struct
*handle
,
625 struct gpfs_acl
*gpfs_acl
;
628 gpfs_acl
= smb2gpfs_acl(theacl
, type
);
629 if (gpfs_acl
== NULL
) {
633 result
= smbd_gpfs_putacl((char *)name
, GPFS_PUTACL_STRUCT
| GPFS_ACL_SAMBA
, gpfs_acl
);
639 int gpfsacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
643 return gpfsacl_sys_acl_set_file(handle
, fsp
->fsp_name
, SMB_ACL_TYPE_ACCESS
, theacl
);
646 int gpfsacl_sys_acl_delete_def_file(vfs_handle_struct
*handle
,
655 * Assumed: mode bits are shiftable and standard
656 * Output: the new aceMask field for an smb nfs4 ace
658 static uint32
gpfsacl_mask_filter(uint32 aceType
, uint32 aceMask
, uint32 rwx
)
660 const uint32 posix_nfs4map
[3] = {
661 SMB_ACE4_EXECUTE
, /* execute */
662 SMB_ACE4_WRITE_DATA
| SMB_ACE4_APPEND_DATA
, /* write; GPFS specific */
663 SMB_ACE4_READ_DATA
/* read */
666 uint32_t posix_mask
= 0x01;
671 nfs4_bits
= posix_nfs4map
[i
];
672 posix_bit
= rwx
& posix_mask
;
674 if (aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
) {
676 aceMask
|= nfs4_bits
;
678 aceMask
&= ~nfs4_bits
;
680 /* add deny bits when suitable */
682 aceMask
|= nfs4_bits
;
684 aceMask
&= ~nfs4_bits
;
685 } /* other ace types are unexpected */
693 static int gpfsacl_emu_chmod(const char *path
, mode_t mode
)
695 SMB4ACL_T
*pacl
= NULL
;
697 bool haveAllowEntry
[SMB_ACE4_WHO_EVERYONE
+ 1] = {False
, False
, False
, False
};
699 files_struct fake_fsp
; /* TODO: rationalize parametrization */
702 DEBUG(10, ("gpfsacl_emu_chmod invoked for %s mode %o\n", path
, mode
));
704 result
= gpfs_get_nfs4_acl(path
, &pacl
);
708 if (mode
& ~(S_IRWXU
| S_IRWXG
| S_IRWXO
)) {
709 DEBUG(2, ("WARNING: cutting extra mode bits %o on %s\n", mode
, path
));
712 for (smbace
=smb_first_ace4(pacl
); smbace
!=NULL
; smbace
= smb_next_ace4(smbace
)) {
713 SMB_ACE4PROP_T
*ace
= smb_get_ace4(smbace
);
714 uint32_t specid
= ace
->who
.special_id
;
716 if (ace
->flags
&SMB_ACE4_ID_SPECIAL
&&
717 ace
->aceType
<=SMB_ACE4_ACCESS_DENIED_ACE_TYPE
&&
718 specid
<= SMB_ACE4_WHO_EVERYONE
) {
722 if (ace
->aceType
==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
)
723 haveAllowEntry
[specid
] = True
;
725 /* mode >> 6 for @owner, mode >> 3 for @group,
726 * mode >> 0 for @everyone */
727 newMask
= gpfsacl_mask_filter(ace
->aceType
, ace
->aceMask
,
728 mode
>> ((SMB_ACE4_WHO_EVERYONE
- specid
) * 3));
729 if (ace
->aceMask
!=newMask
) {
730 DEBUG(10, ("ace changed for %s (%o -> %o) id=%d\n",
731 path
, ace
->aceMask
, newMask
, specid
));
733 ace
->aceMask
= newMask
;
737 /* make sure we have at least ALLOW entries
738 * for all the 3 special ids (@EVERYONE, @OWNER, @GROUP)
741 for(i
= SMB_ACE4_WHO_OWNER
; i
<=SMB_ACE4_WHO_EVERYONE
; i
++) {
744 if (haveAllowEntry
[i
]==True
)
747 memset(&ace
, 0, sizeof(SMB_ACE4PROP_T
));
748 ace
.aceType
= SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE
;
749 ace
.flags
|= SMB_ACE4_ID_SPECIAL
;
750 ace
.who
.special_id
= i
;
752 if (i
==SMB_ACE4_WHO_GROUP
) /* not sure it's necessary... */
753 ace
.aceFlags
|= SMB_ACE4_IDENTIFIER_GROUP
;
755 ace
.aceMask
= gpfsacl_mask_filter(ace
.aceType
, ace
.aceMask
,
756 mode
>> ((SMB_ACE4_WHO_EVERYONE
- i
) * 3));
758 /* don't add unnecessary aces */
762 /* we add it to the END - as windows expects allow aces */
763 smb_add_ace4(pacl
, &ace
);
764 DEBUG(10, ("Added ALLOW ace for %s, mode=%o, id=%d, aceMask=%x\n",
765 path
, mode
, i
, ace
.aceMask
));
768 /* don't add complementary DENY ACEs here */
769 memset(&fake_fsp
, 0, sizeof(struct files_struct
));
770 fake_fsp
.fsp_name
= (char *)path
; /* no file_new is needed here */
773 if (gpfsacl_process_smbacl(&fake_fsp
, pacl
) == False
)
775 return 0; /* ok for [f]chmod */
778 static int vfs_gpfs_chmod(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
783 if (SMB_VFS_NEXT_STAT(handle
, path
, &st
) != 0) {
787 /* avoid chmod() if possible, to preserve acls */
788 if ((st
.st_mode
& ~S_IFMT
) == mode
) {
792 rc
= gpfsacl_emu_chmod(path
, mode
);
794 return SMB_VFS_NEXT_CHMOD(handle
, path
, mode
);
798 static int vfs_gpfs_fchmod(vfs_handle_struct
*handle
, files_struct
*fsp
, mode_t mode
)
803 if (SMB_VFS_NEXT_FSTAT(handle
, fsp
, &st
) != 0) {
807 /* avoid chmod() if possible, to preserve acls */
808 if ((st
.st_mode
& ~S_IFMT
) == mode
) {
812 rc
= gpfsacl_emu_chmod(fsp
->fsp_name
, mode
);
814 return SMB_VFS_NEXT_FCHMOD(handle
, fsp
, mode
);
818 /* VFS operations structure */
820 static vfs_op_tuple gpfs_op_tuples
[] = {
822 { SMB_VFS_OP(vfs_gpfs_kernel_flock
),
823 SMB_VFS_OP_KERNEL_FLOCK
,
824 SMB_VFS_LAYER_OPAQUE
},
826 { SMB_VFS_OP(vfs_gpfs_setlease
),
827 SMB_VFS_OP_LINUX_SETLEASE
,
828 SMB_VFS_LAYER_OPAQUE
},
830 { SMB_VFS_OP(gpfsacl_fget_nt_acl
),
831 SMB_VFS_OP_FGET_NT_ACL
,
832 SMB_VFS_LAYER_TRANSPARENT
},
834 { SMB_VFS_OP(gpfsacl_get_nt_acl
),
835 SMB_VFS_OP_GET_NT_ACL
,
836 SMB_VFS_LAYER_TRANSPARENT
},
838 { SMB_VFS_OP(gpfsacl_fset_nt_acl
),
839 SMB_VFS_OP_FSET_NT_ACL
,
840 SMB_VFS_LAYER_TRANSPARENT
},
842 { SMB_VFS_OP(gpfsacl_set_nt_acl
),
843 SMB_VFS_OP_SET_NT_ACL
,
844 SMB_VFS_LAYER_TRANSPARENT
},
846 { SMB_VFS_OP(gpfsacl_sys_acl_get_file
),
847 SMB_VFS_OP_SYS_ACL_GET_FILE
,
848 SMB_VFS_LAYER_TRANSPARENT
},
850 { SMB_VFS_OP(gpfsacl_sys_acl_get_fd
),
851 SMB_VFS_OP_SYS_ACL_GET_FD
,
852 SMB_VFS_LAYER_TRANSPARENT
},
854 { SMB_VFS_OP(gpfsacl_sys_acl_set_file
),
855 SMB_VFS_OP_SYS_ACL_SET_FILE
,
856 SMB_VFS_LAYER_TRANSPARENT
},
858 { SMB_VFS_OP(gpfsacl_sys_acl_set_fd
),
859 SMB_VFS_OP_SYS_ACL_SET_FD
,
860 SMB_VFS_LAYER_TRANSPARENT
},
862 { SMB_VFS_OP(gpfsacl_sys_acl_delete_def_file
),
863 SMB_VFS_OP_SYS_ACL_DELETE_DEF_FILE
,
864 SMB_VFS_LAYER_TRANSPARENT
},
866 { SMB_VFS_OP(vfs_gpfs_chmod
),
868 SMB_VFS_LAYER_TRANSPARENT
},
870 { SMB_VFS_OP(vfs_gpfs_fchmod
),
872 SMB_VFS_LAYER_TRANSPARENT
},
874 { SMB_VFS_OP(NULL
), SMB_VFS_OP_NOOP
, SMB_VFS_LAYER_NOOP
}
879 NTSTATUS
vfs_gpfs_init(void);
880 NTSTATUS
vfs_gpfs_init(void)
884 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "gpfs",