2 Unix SMB/CIFS implementation.
3 SMB NT Security Descriptor / Unix permission conversion.
4 Copyright (C) Jeremy Allison 1994-2000.
5 Copyright (C) Andreas Gruenbacher 2002.
6 Copyright (C) Simo Sorce <idra@samba.org> 2009.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 extern struct current_user current_user
;
25 extern const struct generic_mapping file_generic_mapping
;
28 #define DBGC_CLASS DBGC_ACLS
30 /****************************************************************************
31 Data structures representing the internal ACE format.
32 ****************************************************************************/
34 enum ace_owner
{UID_ACE
, GID_ACE
, WORLD_ACE
};
35 enum ace_attribute
{ALLOW_ACE
, DENY_ACE
}; /* Used for incoming NT ACLS. */
37 typedef union posix_id
{
43 typedef struct canon_ace
{
44 struct canon_ace
*next
, *prev
;
46 mode_t perms
; /* Only use S_I(R|W|X)USR mode bits here. */
48 enum ace_owner owner_type
;
49 enum ace_attribute attr
;
54 #define ALL_ACE_PERMS (S_IRUSR|S_IWUSR|S_IXUSR)
57 * EA format of user.SAMBA_PAI (Samba_Posix_Acl_Interitance)
60 * | 1 | 1 | 2 | 2 | ....
61 * +------+------+-------------+---------------------+-------------+--------------------+
62 * | vers | flag | num_entries | num_default_entries | ..entries.. | default_entries... |
63 * +------+------+-------------+---------------------+-------------+--------------------+
66 #define PAI_VERSION_OFFSET 0
67 #define PAI_FLAG_OFFSET 1
68 #define PAI_NUM_ENTRIES_OFFSET 2
69 #define PAI_NUM_DEFAULT_ENTRIES_OFFSET 4
70 #define PAI_ENTRIES_BASE 6
73 #define PAI_ACL_FLAG_PROTECTED 0x1
74 #define PAI_ENTRY_LENGTH 5
77 * In memory format of user.SAMBA_PAI attribute.
81 struct pai_entry
*next
, *prev
;
82 enum ace_owner owner_type
;
88 unsigned int num_entries
;
89 struct pai_entry
*entry_list
;
90 unsigned int num_def_entries
;
91 struct pai_entry
*def_entry_list
;
94 /************************************************************************
95 Return a uint32 of the pai_entry principal.
96 ************************************************************************/
98 static uint32
get_pai_entry_val(struct pai_entry
*paie
)
100 switch (paie
->owner_type
) {
102 DEBUG(10,("get_pai_entry_val: uid = %u\n", (unsigned int)paie
->unix_ug
.uid
));
103 return (uint32
)paie
->unix_ug
.uid
;
105 DEBUG(10,("get_pai_entry_val: gid = %u\n", (unsigned int)paie
->unix_ug
.gid
));
106 return (uint32
)paie
->unix_ug
.gid
;
109 DEBUG(10,("get_pai_entry_val: world ace\n"));
114 /************************************************************************
115 Return a uint32 of the entry principal.
116 ************************************************************************/
118 static uint32
get_entry_val(canon_ace
*ace_entry
)
120 switch (ace_entry
->owner_type
) {
122 DEBUG(10,("get_entry_val: uid = %u\n", (unsigned int)ace_entry
->unix_ug
.uid
));
123 return (uint32
)ace_entry
->unix_ug
.uid
;
125 DEBUG(10,("get_entry_val: gid = %u\n", (unsigned int)ace_entry
->unix_ug
.gid
));
126 return (uint32
)ace_entry
->unix_ug
.gid
;
129 DEBUG(10,("get_entry_val: world ace\n"));
134 /************************************************************************
135 Count the inherited entries.
136 ************************************************************************/
138 static unsigned int num_inherited_entries(canon_ace
*ace_list
)
140 unsigned int num_entries
= 0;
142 for (; ace_list
; ace_list
= ace_list
->next
)
143 if (ace_list
->inherited
)
148 /************************************************************************
149 Create the on-disk format. Caller must free.
150 ************************************************************************/
152 static char *create_pai_buf(canon_ace
*file_ace_list
, canon_ace
*dir_ace_list
, bool pai_protected
, size_t *store_size
)
154 char *pai_buf
= NULL
;
155 canon_ace
*ace_list
= NULL
;
156 char *entry_offset
= NULL
;
157 unsigned int num_entries
= 0;
158 unsigned int num_def_entries
= 0;
160 for (ace_list
= file_ace_list
; ace_list
; ace_list
= ace_list
->next
)
161 if (ace_list
->inherited
)
164 for (ace_list
= dir_ace_list
; ace_list
; ace_list
= ace_list
->next
)
165 if (ace_list
->inherited
)
168 DEBUG(10,("create_pai_buf: num_entries = %u, num_def_entries = %u\n", num_entries
, num_def_entries
));
170 *store_size
= PAI_ENTRIES_BASE
+ ((num_entries
+ num_def_entries
)*PAI_ENTRY_LENGTH
);
172 pai_buf
= (char *)SMB_MALLOC(*store_size
);
177 /* Set up the header. */
178 memset(pai_buf
, '\0', PAI_ENTRIES_BASE
);
179 SCVAL(pai_buf
,PAI_VERSION_OFFSET
,PAI_VERSION
);
180 SCVAL(pai_buf
,PAI_FLAG_OFFSET
,(pai_protected
? PAI_ACL_FLAG_PROTECTED
: 0));
181 SSVAL(pai_buf
,PAI_NUM_ENTRIES_OFFSET
,num_entries
);
182 SSVAL(pai_buf
,PAI_NUM_DEFAULT_ENTRIES_OFFSET
,num_def_entries
);
184 entry_offset
= pai_buf
+ PAI_ENTRIES_BASE
;
186 for (ace_list
= file_ace_list
; ace_list
; ace_list
= ace_list
->next
) {
187 if (ace_list
->inherited
) {
188 uint8 type_val
= (unsigned char)ace_list
->owner_type
;
189 uint32 entry_val
= get_entry_val(ace_list
);
191 SCVAL(entry_offset
,0,type_val
);
192 SIVAL(entry_offset
,1,entry_val
);
193 entry_offset
+= PAI_ENTRY_LENGTH
;
197 for (ace_list
= dir_ace_list
; ace_list
; ace_list
= ace_list
->next
) {
198 if (ace_list
->inherited
) {
199 uint8 type_val
= (unsigned char)ace_list
->owner_type
;
200 uint32 entry_val
= get_entry_val(ace_list
);
202 SCVAL(entry_offset
,0,type_val
);
203 SIVAL(entry_offset
,1,entry_val
);
204 entry_offset
+= PAI_ENTRY_LENGTH
;
211 /************************************************************************
212 Store the user.SAMBA_PAI attribute on disk.
213 ************************************************************************/
215 static void store_inheritance_attributes(files_struct
*fsp
, canon_ace
*file_ace_list
,
216 canon_ace
*dir_ace_list
, bool pai_protected
)
222 if (!lp_map_acl_inherit(SNUM(fsp
->conn
)))
226 * Don't store if this ACL isn't protected and
227 * none of the entries in it are marked as inherited.
230 if (!pai_protected
&& num_inherited_entries(file_ace_list
) == 0 && num_inherited_entries(dir_ace_list
) == 0) {
231 /* Instead just remove the attribute if it exists. */
232 if (fsp
->fh
->fd
!= -1)
233 SMB_VFS_FREMOVEXATTR(fsp
, SAMBA_POSIX_INHERITANCE_EA_NAME
);
235 SMB_VFS_REMOVEXATTR(fsp
->conn
, fsp
->fsp_name
, SAMBA_POSIX_INHERITANCE_EA_NAME
);
239 pai_buf
= create_pai_buf(file_ace_list
, dir_ace_list
, pai_protected
, &store_size
);
241 if (fsp
->fh
->fd
!= -1)
242 ret
= SMB_VFS_FSETXATTR(fsp
, SAMBA_POSIX_INHERITANCE_EA_NAME
,
243 pai_buf
, store_size
, 0);
245 ret
= SMB_VFS_SETXATTR(fsp
->conn
,fsp
->fsp_name
, SAMBA_POSIX_INHERITANCE_EA_NAME
,
246 pai_buf
, store_size
, 0);
250 DEBUG(10,("store_inheritance_attribute:%s for file %s\n", pai_protected
? " (protected)" : "", fsp
->fsp_name
));
251 if (ret
== -1 && !no_acl_syscall_error(errno
))
252 DEBUG(1,("store_inheritance_attribute: Error %s\n", strerror(errno
) ));
255 /************************************************************************
256 Delete the in memory inheritance info.
257 ************************************************************************/
259 static void free_inherited_info(struct pai_val
*pal
)
262 struct pai_entry
*paie
, *paie_next
;
263 for (paie
= pal
->entry_list
; paie
; paie
= paie_next
) {
264 paie_next
= paie
->next
;
267 for (paie
= pal
->def_entry_list
; paie
; paie
= paie_next
) {
268 paie_next
= paie
->next
;
275 /************************************************************************
276 Was this ACL protected ?
277 ************************************************************************/
279 static bool get_protected_flag(struct pai_val
*pal
)
283 return pal
->pai_protected
;
286 /************************************************************************
287 Was this ACE inherited ?
288 ************************************************************************/
290 static bool get_inherited_flag(struct pai_val
*pal
, canon_ace
*ace_entry
, bool default_ace
)
292 struct pai_entry
*paie
;
297 /* If the entry exists it is inherited. */
298 for (paie
= (default_ace
? pal
->def_entry_list
: pal
->entry_list
); paie
; paie
= paie
->next
) {
299 if (ace_entry
->owner_type
== paie
->owner_type
&&
300 get_entry_val(ace_entry
) == get_pai_entry_val(paie
))
306 /************************************************************************
307 Ensure an attribute just read is valid.
308 ************************************************************************/
310 static bool check_pai_ok(char *pai_buf
, size_t pai_buf_data_size
)
313 uint16 num_def_entries
;
315 if (pai_buf_data_size
< PAI_ENTRIES_BASE
) {
316 /* Corrupted - too small. */
320 if (CVAL(pai_buf
,PAI_VERSION_OFFSET
) != PAI_VERSION
)
323 num_entries
= SVAL(pai_buf
,PAI_NUM_ENTRIES_OFFSET
);
324 num_def_entries
= SVAL(pai_buf
,PAI_NUM_DEFAULT_ENTRIES_OFFSET
);
326 /* Check the entry lists match. */
327 /* Each entry is 5 bytes (type plus 4 bytes of uid or gid). */
329 if (((num_entries
+ num_def_entries
)*PAI_ENTRY_LENGTH
) + PAI_ENTRIES_BASE
!= pai_buf_data_size
)
336 /************************************************************************
337 Convert to in-memory format.
338 ************************************************************************/
340 static struct pai_val
*create_pai_val(char *buf
, size_t size
)
343 struct pai_val
*paiv
= NULL
;
346 if (!check_pai_ok(buf
, size
))
349 paiv
= SMB_MALLOC_P(struct pai_val
);
353 memset(paiv
, '\0', sizeof(struct pai_val
));
355 paiv
->pai_protected
= (CVAL(buf
,PAI_FLAG_OFFSET
) == PAI_ACL_FLAG_PROTECTED
);
357 paiv
->num_entries
= SVAL(buf
,PAI_NUM_ENTRIES_OFFSET
);
358 paiv
->num_def_entries
= SVAL(buf
,PAI_NUM_DEFAULT_ENTRIES_OFFSET
);
360 entry_offset
= buf
+ PAI_ENTRIES_BASE
;
362 DEBUG(10,("create_pai_val:%s num_entries = %u, num_def_entries = %u\n",
363 paiv
->pai_protected
? " (pai_protected)" : "", paiv
->num_entries
, paiv
->num_def_entries
));
365 for (i
= 0; i
< paiv
->num_entries
; i
++) {
366 struct pai_entry
*paie
;
368 paie
= SMB_MALLOC_P(struct pai_entry
);
370 free_inherited_info(paiv
);
374 paie
->owner_type
= (enum ace_owner
)CVAL(entry_offset
,0);
375 switch( paie
->owner_type
) {
377 paie
->unix_ug
.uid
= (uid_t
)IVAL(entry_offset
,1);
378 DEBUG(10,("create_pai_val: uid = %u\n", (unsigned int)paie
->unix_ug
.uid
));
381 paie
->unix_ug
.gid
= (gid_t
)IVAL(entry_offset
,1);
382 DEBUG(10,("create_pai_val: gid = %u\n", (unsigned int)paie
->unix_ug
.gid
));
385 paie
->unix_ug
.world
= -1;
386 DEBUG(10,("create_pai_val: world ace\n"));
389 free_inherited_info(paiv
);
392 entry_offset
+= PAI_ENTRY_LENGTH
;
393 DLIST_ADD(paiv
->entry_list
, paie
);
396 for (i
= 0; i
< paiv
->num_def_entries
; i
++) {
397 struct pai_entry
*paie
;
399 paie
= SMB_MALLOC_P(struct pai_entry
);
401 free_inherited_info(paiv
);
405 paie
->owner_type
= (enum ace_owner
)CVAL(entry_offset
,0);
406 switch( paie
->owner_type
) {
408 paie
->unix_ug
.uid
= (uid_t
)IVAL(entry_offset
,1);
409 DEBUG(10,("create_pai_val: (def) uid = %u\n", (unsigned int)paie
->unix_ug
.uid
));
412 paie
->unix_ug
.gid
= (gid_t
)IVAL(entry_offset
,1);
413 DEBUG(10,("create_pai_val: (def) gid = %u\n", (unsigned int)paie
->unix_ug
.gid
));
416 paie
->unix_ug
.world
= -1;
417 DEBUG(10,("create_pai_val: (def) world ace\n"));
420 free_inherited_info(paiv
);
423 entry_offset
+= PAI_ENTRY_LENGTH
;
424 DLIST_ADD(paiv
->def_entry_list
, paie
);
430 /************************************************************************
431 Load the user.SAMBA_PAI attribute.
432 ************************************************************************/
434 static struct pai_val
*fload_inherited_info(files_struct
*fsp
)
437 size_t pai_buf_size
= 1024;
438 struct pai_val
*paiv
= NULL
;
441 if (!lp_map_acl_inherit(SNUM(fsp
->conn
)))
444 if ((pai_buf
= (char *)SMB_MALLOC(pai_buf_size
)) == NULL
)
448 if (fsp
->fh
->fd
!= -1)
449 ret
= SMB_VFS_FGETXATTR(fsp
, SAMBA_POSIX_INHERITANCE_EA_NAME
,
450 pai_buf
, pai_buf_size
);
452 ret
= SMB_VFS_GETXATTR(fsp
->conn
,fsp
->fsp_name
,SAMBA_POSIX_INHERITANCE_EA_NAME
,
453 pai_buf
, pai_buf_size
);
456 if (errno
!= ERANGE
) {
459 /* Buffer too small - enlarge it. */
462 if (pai_buf_size
> 1024*1024) {
463 return NULL
; /* Limit malloc to 1mb. */
465 if ((pai_buf
= (char *)SMB_MALLOC(pai_buf_size
)) == NULL
)
470 DEBUG(10,("load_inherited_info: ret = %lu for file %s\n", (unsigned long)ret
, fsp
->fsp_name
));
473 /* No attribute or not supported. */
475 if (errno
!= ENOATTR
)
476 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno
) ));
479 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno
) ));
485 paiv
= create_pai_val(pai_buf
, ret
);
487 if (paiv
&& paiv
->pai_protected
)
488 DEBUG(10,("load_inherited_info: ACL is protected for file %s\n", fsp
->fsp_name
));
494 /************************************************************************
495 Load the user.SAMBA_PAI attribute.
496 ************************************************************************/
498 static struct pai_val
*load_inherited_info(const struct connection_struct
*conn
,
502 size_t pai_buf_size
= 1024;
503 struct pai_val
*paiv
= NULL
;
506 if (!lp_map_acl_inherit(SNUM(conn
))) {
510 if ((pai_buf
= (char *)SMB_MALLOC(pai_buf_size
)) == NULL
) {
515 ret
= SMB_VFS_GETXATTR(conn
, fname
,
516 SAMBA_POSIX_INHERITANCE_EA_NAME
,
517 pai_buf
, pai_buf_size
);
520 if (errno
!= ERANGE
) {
523 /* Buffer too small - enlarge it. */
526 if (pai_buf_size
> 1024*1024) {
527 return NULL
; /* Limit malloc to 1mb. */
529 if ((pai_buf
= (char *)SMB_MALLOC(pai_buf_size
)) == NULL
)
534 DEBUG(10,("load_inherited_info: ret = %lu for file %s\n", (unsigned long)ret
, fname
));
537 /* No attribute or not supported. */
539 if (errno
!= ENOATTR
)
540 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno
) ));
543 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno
) ));
549 paiv
= create_pai_val(pai_buf
, ret
);
551 if (paiv
&& paiv
->pai_protected
) {
552 DEBUG(10,("load_inherited_info: ACL is protected for file %s\n", fname
));
559 /****************************************************************************
560 Functions to manipulate the internal ACE format.
561 ****************************************************************************/
563 /****************************************************************************
564 Count a linked list of canonical ACE entries.
565 ****************************************************************************/
567 static size_t count_canon_ace_list( canon_ace
*l_head
)
572 for (ace
= l_head
; ace
; ace
= ace
->next
)
578 /****************************************************************************
579 Free a linked list of canonical ACE entries.
580 ****************************************************************************/
582 static void free_canon_ace_list( canon_ace
*l_head
)
584 canon_ace
*list
, *next
;
586 for (list
= l_head
; list
; list
= next
) {
588 DLIST_REMOVE(l_head
, list
);
593 /****************************************************************************
594 Function to duplicate a canon_ace entry.
595 ****************************************************************************/
597 static canon_ace
*dup_canon_ace( canon_ace
*src_ace
)
599 canon_ace
*dst_ace
= SMB_MALLOC_P(canon_ace
);
605 dst_ace
->prev
= dst_ace
->next
= NULL
;
609 /****************************************************************************
610 Print out a canon ace.
611 ****************************************************************************/
613 static void print_canon_ace(canon_ace
*pace
, int num
)
615 dbgtext( "canon_ace index %d. Type = %s ", num
, pace
->attr
== ALLOW_ACE
? "allow" : "deny" );
616 dbgtext( "SID = %s ", sid_string_dbg(&pace
->trustee
));
617 if (pace
->owner_type
== UID_ACE
) {
618 const char *u_name
= uidtoname(pace
->unix_ug
.uid
);
619 dbgtext( "uid %u (%s) ", (unsigned int)pace
->unix_ug
.uid
, u_name
);
620 } else if (pace
->owner_type
== GID_ACE
) {
621 char *g_name
= gidtoname(pace
->unix_ug
.gid
);
622 dbgtext( "gid %u (%s) ", (unsigned int)pace
->unix_ug
.gid
, g_name
);
625 switch (pace
->type
) {
627 dbgtext( "SMB_ACL_USER ");
629 case SMB_ACL_USER_OBJ
:
630 dbgtext( "SMB_ACL_USER_OBJ ");
633 dbgtext( "SMB_ACL_GROUP ");
635 case SMB_ACL_GROUP_OBJ
:
636 dbgtext( "SMB_ACL_GROUP_OBJ ");
639 dbgtext( "SMB_ACL_OTHER ");
646 dbgtext( "(inherited) ");
648 dbgtext( "%c", pace
->perms
& S_IRUSR
? 'r' : '-');
649 dbgtext( "%c", pace
->perms
& S_IWUSR
? 'w' : '-');
650 dbgtext( "%c\n", pace
->perms
& S_IXUSR
? 'x' : '-');
653 /****************************************************************************
654 Print out a canon ace list.
655 ****************************************************************************/
657 static void print_canon_ace_list(const char *name
, canon_ace
*ace_list
)
661 if( DEBUGLVL( 10 )) {
662 dbgtext( "print_canon_ace_list: %s\n", name
);
663 for (;ace_list
; ace_list
= ace_list
->next
, count
++)
664 print_canon_ace(ace_list
, count
);
668 /****************************************************************************
669 Map POSIX ACL perms to canon_ace permissions (a mode_t containing only S_(R|W|X)USR bits).
670 ****************************************************************************/
672 static mode_t
convert_permset_to_mode_t(connection_struct
*conn
, SMB_ACL_PERMSET_T permset
)
676 ret
|= (SMB_VFS_SYS_ACL_GET_PERM(conn
, permset
, SMB_ACL_READ
) ? S_IRUSR
: 0);
677 ret
|= (SMB_VFS_SYS_ACL_GET_PERM(conn
, permset
, SMB_ACL_WRITE
) ? S_IWUSR
: 0);
678 ret
|= (SMB_VFS_SYS_ACL_GET_PERM(conn
, permset
, SMB_ACL_EXECUTE
) ? S_IXUSR
: 0);
683 /****************************************************************************
684 Map generic UNIX permissions to canon_ace permissions (a mode_t containing only S_(R|W|X)USR bits).
685 ****************************************************************************/
687 static mode_t
unix_perms_to_acl_perms(mode_t mode
, int r_mask
, int w_mask
, int x_mask
)
701 /****************************************************************************
702 Map canon_ace permissions (a mode_t containing only S_(R|W|X)USR bits) to
703 an SMB_ACL_PERMSET_T.
704 ****************************************************************************/
706 static int map_acl_perms_to_permset(connection_struct
*conn
, mode_t mode
, SMB_ACL_PERMSET_T
*p_permset
)
708 if (SMB_VFS_SYS_ACL_CLEAR_PERMS(conn
, *p_permset
) == -1)
710 if (mode
& S_IRUSR
) {
711 if (SMB_VFS_SYS_ACL_ADD_PERM(conn
, *p_permset
, SMB_ACL_READ
) == -1)
714 if (mode
& S_IWUSR
) {
715 if (SMB_VFS_SYS_ACL_ADD_PERM(conn
, *p_permset
, SMB_ACL_WRITE
) == -1)
718 if (mode
& S_IXUSR
) {
719 if (SMB_VFS_SYS_ACL_ADD_PERM(conn
, *p_permset
, SMB_ACL_EXECUTE
) == -1)
725 /****************************************************************************
726 Function to create owner and group SIDs from a SMB_STRUCT_STAT.
727 ****************************************************************************/
729 void create_file_sids(const SMB_STRUCT_STAT
*psbuf
, DOM_SID
*powner_sid
, DOM_SID
*pgroup_sid
)
731 uid_to_sid( powner_sid
, psbuf
->st_uid
);
732 gid_to_sid( pgroup_sid
, psbuf
->st_gid
);
735 /****************************************************************************
736 Is the identity in two ACEs equal ? Check both SID and uid/gid.
737 ****************************************************************************/
739 static bool identity_in_ace_equal(canon_ace
*ace1
, canon_ace
*ace2
)
741 if (sid_equal(&ace1
->trustee
, &ace2
->trustee
)) {
744 if (ace1
->owner_type
== ace2
->owner_type
) {
745 if (ace1
->owner_type
== UID_ACE
&&
746 ace1
->unix_ug
.uid
== ace2
->unix_ug
.uid
) {
748 } else if (ace1
->owner_type
== GID_ACE
&&
749 ace1
->unix_ug
.gid
== ace2
->unix_ug
.gid
) {
756 /****************************************************************************
757 Merge aces with a common sid - if both are allow or deny, OR the permissions together and
758 delete the second one. If the first is deny, mask the permissions off and delete the allow
759 if the permissions become zero, delete the deny if the permissions are non zero.
760 ****************************************************************************/
762 static void merge_aces( canon_ace
**pp_list_head
)
764 canon_ace
*l_head
= *pp_list_head
;
765 canon_ace
*curr_ace_outer
;
766 canon_ace
*curr_ace_outer_next
;
769 * First, merge allow entries with identical SIDs, and deny entries
770 * with identical SIDs.
773 for (curr_ace_outer
= l_head
; curr_ace_outer
; curr_ace_outer
= curr_ace_outer_next
) {
775 canon_ace
*curr_ace_next
;
777 curr_ace_outer_next
= curr_ace_outer
->next
; /* Save the link in case we delete. */
779 for (curr_ace
= curr_ace_outer
->next
; curr_ace
; curr_ace
= curr_ace_next
) {
781 curr_ace_next
= curr_ace
->next
; /* Save the link in case of delete. */
783 if (identity_in_ace_equal(curr_ace
, curr_ace_outer
) &&
784 (curr_ace
->attr
== curr_ace_outer
->attr
)) {
786 if( DEBUGLVL( 10 )) {
787 dbgtext("merge_aces: Merging ACE's\n");
788 print_canon_ace( curr_ace_outer
, 0);
789 print_canon_ace( curr_ace
, 0);
792 /* Merge two allow or two deny ACE's. */
794 curr_ace_outer
->perms
|= curr_ace
->perms
;
795 DLIST_REMOVE(l_head
, curr_ace
);
797 curr_ace_outer_next
= curr_ace_outer
->next
; /* We may have deleted the link. */
803 * Now go through and mask off allow permissions with deny permissions.
804 * We can delete either the allow or deny here as we know that each SID
805 * appears only once in the list.
808 for (curr_ace_outer
= l_head
; curr_ace_outer
; curr_ace_outer
= curr_ace_outer_next
) {
810 canon_ace
*curr_ace_next
;
812 curr_ace_outer_next
= curr_ace_outer
->next
; /* Save the link in case we delete. */
814 for (curr_ace
= curr_ace_outer
->next
; curr_ace
; curr_ace
= curr_ace_next
) {
816 curr_ace_next
= curr_ace
->next
; /* Save the link in case of delete. */
819 * Subtract ACE's with different entries. Due to the ordering constraints
820 * we've put on the ACL, we know the deny must be the first one.
823 if (identity_in_ace_equal(curr_ace
, curr_ace_outer
) &&
824 (curr_ace_outer
->attr
== DENY_ACE
) && (curr_ace
->attr
== ALLOW_ACE
)) {
826 if( DEBUGLVL( 10 )) {
827 dbgtext("merge_aces: Masking ACE's\n");
828 print_canon_ace( curr_ace_outer
, 0);
829 print_canon_ace( curr_ace
, 0);
832 curr_ace
->perms
&= ~curr_ace_outer
->perms
;
834 if (curr_ace
->perms
== 0) {
837 * The deny overrides the allow. Remove the allow.
840 DLIST_REMOVE(l_head
, curr_ace
);
842 curr_ace_outer_next
= curr_ace_outer
->next
; /* We may have deleted the link. */
847 * Even after removing permissions, there
848 * are still allow permissions - delete the deny.
849 * It is safe to delete the deny here,
850 * as we are guarenteed by the deny first
851 * ordering that all the deny entries for
852 * this SID have already been merged into one
853 * before we can get to an allow ace.
856 DLIST_REMOVE(l_head
, curr_ace_outer
);
857 SAFE_FREE(curr_ace_outer
);
862 } /* end for curr_ace */
863 } /* end for curr_ace_outer */
865 /* We may have modified the list. */
867 *pp_list_head
= l_head
;
870 /****************************************************************************
871 Check if we need to return NT4.x compatible ACL entries.
872 ****************************************************************************/
874 static bool nt4_compatible_acls(void)
876 int compat
= lp_acl_compatibility();
878 if (compat
== ACL_COMPAT_AUTO
) {
879 enum remote_arch_types ra_type
= get_remote_arch();
881 /* Automatically adapt to client */
882 return (ra_type
<= RA_WINNT
);
884 return (compat
== ACL_COMPAT_WINNT
);
888 /****************************************************************************
889 Map canon_ace perms to permission bits NT.
890 The attr element is not used here - we only process deny entries on set,
891 not get. Deny entries are implicit on get with ace->perms = 0.
892 ****************************************************************************/
894 static uint32_t map_canon_ace_perms(int snum
,
895 enum security_ace_type
*pacl_type
,
899 uint32_t nt_mask
= 0;
901 *pacl_type
= SEC_ACE_TYPE_ACCESS_ALLOWED
;
903 if (lp_acl_map_full_control(snum
) && ((perms
& ALL_ACE_PERMS
) == ALL_ACE_PERMS
)) {
905 nt_mask
= UNIX_DIRECTORY_ACCESS_RWX
;
907 nt_mask
= (UNIX_ACCESS_RWX
& ~DELETE_ACCESS
);
909 } else if ((perms
& ALL_ACE_PERMS
) == (mode_t
)0) {
911 * Windows NT refuses to display ACEs with no permissions in them (but
912 * they are perfectly legal with Windows 2000). If the ACE has empty
913 * permissions we cannot use 0, so we use the otherwise unused
914 * WRITE_OWNER permission, which we ignore when we set an ACL.
915 * We abstract this into a #define of UNIX_ACCESS_NONE to allow this
916 * to be changed in the future.
919 if (nt4_compatible_acls())
920 nt_mask
= UNIX_ACCESS_NONE
;
925 nt_mask
|= ((perms
& S_IRUSR
) ? UNIX_DIRECTORY_ACCESS_R
: 0 );
926 nt_mask
|= ((perms
& S_IWUSR
) ? UNIX_DIRECTORY_ACCESS_W
: 0 );
927 nt_mask
|= ((perms
& S_IXUSR
) ? UNIX_DIRECTORY_ACCESS_X
: 0 );
929 nt_mask
|= ((perms
& S_IRUSR
) ? UNIX_ACCESS_R
: 0 );
930 nt_mask
|= ((perms
& S_IWUSR
) ? UNIX_ACCESS_W
: 0 );
931 nt_mask
|= ((perms
& S_IXUSR
) ? UNIX_ACCESS_X
: 0 );
935 DEBUG(10,("map_canon_ace_perms: Mapped (UNIX) %x to (NT) %x\n",
936 (unsigned int)perms
, (unsigned int)nt_mask
));
941 /****************************************************************************
942 Map NT perms to a UNIX mode_t.
943 ****************************************************************************/
945 #define FILE_SPECIFIC_READ_BITS (FILE_READ_DATA|FILE_READ_EA|FILE_READ_ATTRIBUTES)
946 #define FILE_SPECIFIC_WRITE_BITS (FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_WRITE_EA|FILE_WRITE_ATTRIBUTES)
947 #define FILE_SPECIFIC_EXECUTE_BITS (FILE_EXECUTE)
949 static mode_t
map_nt_perms( uint32
*mask
, int type
)
955 if((*mask
) & GENERIC_ALL_ACCESS
)
956 mode
= S_IRUSR
|S_IWUSR
|S_IXUSR
;
958 mode
|= ((*mask
) & (GENERIC_READ_ACCESS
|FILE_SPECIFIC_READ_BITS
)) ? S_IRUSR
: 0;
959 mode
|= ((*mask
) & (GENERIC_WRITE_ACCESS
|FILE_SPECIFIC_WRITE_BITS
)) ? S_IWUSR
: 0;
960 mode
|= ((*mask
) & (GENERIC_EXECUTE_ACCESS
|FILE_SPECIFIC_EXECUTE_BITS
)) ? S_IXUSR
: 0;
964 if((*mask
) & GENERIC_ALL_ACCESS
)
965 mode
= S_IRGRP
|S_IWGRP
|S_IXGRP
;
967 mode
|= ((*mask
) & (GENERIC_READ_ACCESS
|FILE_SPECIFIC_READ_BITS
)) ? S_IRGRP
: 0;
968 mode
|= ((*mask
) & (GENERIC_WRITE_ACCESS
|FILE_SPECIFIC_WRITE_BITS
)) ? S_IWGRP
: 0;
969 mode
|= ((*mask
) & (GENERIC_EXECUTE_ACCESS
|FILE_SPECIFIC_EXECUTE_BITS
)) ? S_IXGRP
: 0;
973 if((*mask
) & GENERIC_ALL_ACCESS
)
974 mode
= S_IROTH
|S_IWOTH
|S_IXOTH
;
976 mode
|= ((*mask
) & (GENERIC_READ_ACCESS
|FILE_SPECIFIC_READ_BITS
)) ? S_IROTH
: 0;
977 mode
|= ((*mask
) & (GENERIC_WRITE_ACCESS
|FILE_SPECIFIC_WRITE_BITS
)) ? S_IWOTH
: 0;
978 mode
|= ((*mask
) & (GENERIC_EXECUTE_ACCESS
|FILE_SPECIFIC_EXECUTE_BITS
)) ? S_IXOTH
: 0;
986 /****************************************************************************
987 Unpack a SEC_DESC into a UNIX owner and group.
988 ****************************************************************************/
990 NTSTATUS
unpack_nt_owners(int snum
, uid_t
*puser
, gid_t
*pgrp
, uint32 security_info_sent
, const SEC_DESC
*psd
)
998 if(security_info_sent
== 0) {
999 DEBUG(0,("unpack_nt_owners: no security info sent !\n"));
1000 return NT_STATUS_OK
;
1004 * Validate the owner and group SID's.
1007 memset(&owner_sid
, '\0', sizeof(owner_sid
));
1008 memset(&grp_sid
, '\0', sizeof(grp_sid
));
1010 DEBUG(5,("unpack_nt_owners: validating owner_sids.\n"));
1013 * Don't immediately fail if the owner sid cannot be validated.
1014 * This may be a group chown only set.
1017 if (security_info_sent
& OWNER_SECURITY_INFORMATION
) {
1018 sid_copy(&owner_sid
, psd
->owner_sid
);
1019 if (!sid_to_uid(&owner_sid
, puser
)) {
1020 if (lp_force_unknown_acl_user(snum
)) {
1021 /* this allows take ownership to work
1023 *puser
= current_user
.ut
.uid
;
1025 DEBUG(3,("unpack_nt_owners: unable to validate"
1026 " owner sid for %s\n",
1027 sid_string_dbg(&owner_sid
)));
1028 return NT_STATUS_INVALID_OWNER
;
1031 DEBUG(3,("unpack_nt_owners: owner sid mapped to uid %u\n",
1032 (unsigned int)*puser
));
1036 * Don't immediately fail if the group sid cannot be validated.
1037 * This may be an owner chown only set.
1040 if (security_info_sent
& GROUP_SECURITY_INFORMATION
) {
1041 sid_copy(&grp_sid
, psd
->group_sid
);
1042 if (!sid_to_gid( &grp_sid
, pgrp
)) {
1043 if (lp_force_unknown_acl_user(snum
)) {
1044 /* this allows take group ownership to work
1046 *pgrp
= current_user
.ut
.gid
;
1048 DEBUG(3,("unpack_nt_owners: unable to validate"
1050 return NT_STATUS_INVALID_OWNER
;
1053 DEBUG(3,("unpack_nt_owners: group sid mapped to gid %u\n",
1054 (unsigned int)*pgrp
));
1057 DEBUG(5,("unpack_nt_owners: owner_sids validated.\n"));
1059 return NT_STATUS_OK
;
1062 /****************************************************************************
1063 Ensure the enforced permissions for this share apply.
1064 ****************************************************************************/
1066 static void apply_default_perms(const struct share_params
*params
,
1067 const bool is_directory
, canon_ace
*pace
,
1070 mode_t and_bits
= (mode_t
)0;
1071 mode_t or_bits
= (mode_t
)0;
1073 /* Get the initial bits to apply. */
1076 and_bits
= lp_dir_security_mask(params
->service
);
1077 or_bits
= lp_force_dir_security_mode(params
->service
);
1079 and_bits
= lp_security_mask(params
->service
);
1080 or_bits
= lp_force_security_mode(params
->service
);
1083 /* Now bounce them into the S_USR space. */
1086 /* Ensure owner has read access. */
1087 pace
->perms
|= S_IRUSR
;
1089 pace
->perms
|= (S_IWUSR
|S_IXUSR
);
1090 and_bits
= unix_perms_to_acl_perms(and_bits
, S_IRUSR
, S_IWUSR
, S_IXUSR
);
1091 or_bits
= unix_perms_to_acl_perms(or_bits
, S_IRUSR
, S_IWUSR
, S_IXUSR
);
1094 and_bits
= unix_perms_to_acl_perms(and_bits
, S_IRGRP
, S_IWGRP
, S_IXGRP
);
1095 or_bits
= unix_perms_to_acl_perms(or_bits
, S_IRGRP
, S_IWGRP
, S_IXGRP
);
1098 and_bits
= unix_perms_to_acl_perms(and_bits
, S_IROTH
, S_IWOTH
, S_IXOTH
);
1099 or_bits
= unix_perms_to_acl_perms(or_bits
, S_IROTH
, S_IWOTH
, S_IXOTH
);
1103 pace
->perms
= ((pace
->perms
& and_bits
)|or_bits
);
1106 /****************************************************************************
1107 Check if a given uid/SID is in a group gid/SID. This is probably very
1108 expensive and will need optimisation. A *lot* of optimisation :-). JRA.
1109 ****************************************************************************/
1111 static bool uid_entry_in_group( canon_ace
*uid_ace
, canon_ace
*group_ace
)
1113 const char *u_name
= NULL
;
1115 /* "Everyone" always matches every uid. */
1117 if (sid_equal(&group_ace
->trustee
, &global_sid_World
))
1121 * if it's the current user, we already have the unix token
1122 * and don't need to do the complex user_in_group_sid() call
1124 if (uid_ace
->unix_ug
.uid
== current_user
.ut
.uid
) {
1127 if (group_ace
->unix_ug
.gid
== current_user
.ut
.gid
) {
1131 for (i
=0; i
< current_user
.ut
.ngroups
; i
++) {
1132 if (group_ace
->unix_ug
.gid
== current_user
.ut
.groups
[i
]) {
1138 /* u_name talloc'ed off tos. */
1139 u_name
= uidtoname(uid_ace
->unix_ug
.uid
);
1144 /* notice that this is not reliable for users exported by winbindd! */
1145 return user_in_group_sid(u_name
, &group_ace
->trustee
);
1148 /****************************************************************************
1149 A well formed POSIX file or default ACL has at least 3 entries, a
1150 SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER_OBJ.
1151 In addition, the owner must always have at least read access.
1152 When using this call on get_acl, the pst struct is valid and contains
1153 the mode of the file. When using this call on set_acl, the pst struct has
1154 been modified to have a mode containing the default for this file or directory
1156 ****************************************************************************/
1158 static bool ensure_canon_entry_valid(canon_ace
**pp_ace
,
1159 const struct share_params
*params
,
1160 const bool is_directory
,
1161 const DOM_SID
*pfile_owner_sid
,
1162 const DOM_SID
*pfile_grp_sid
,
1163 const SMB_STRUCT_STAT
*pst
,
1167 bool got_user
= False
;
1168 bool got_grp
= False
;
1169 bool got_other
= False
;
1170 canon_ace
*pace_other
= NULL
;
1172 for (pace
= *pp_ace
; pace
; pace
= pace
->next
) {
1173 if (pace
->type
== SMB_ACL_USER_OBJ
) {
1176 apply_default_perms(params
, is_directory
, pace
, S_IRUSR
);
1179 } else if (pace
->type
== SMB_ACL_GROUP_OBJ
) {
1182 * Ensure create mask/force create mode is respected on set.
1186 apply_default_perms(params
, is_directory
, pace
, S_IRGRP
);
1189 } else if (pace
->type
== SMB_ACL_OTHER
) {
1192 * Ensure create mask/force create mode is respected on set.
1196 apply_default_perms(params
, is_directory
, pace
, S_IROTH
);
1203 if ((pace
= SMB_MALLOC_P(canon_ace
)) == NULL
) {
1204 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1209 pace
->type
= SMB_ACL_USER_OBJ
;
1210 pace
->owner_type
= UID_ACE
;
1211 pace
->unix_ug
.uid
= pst
->st_uid
;
1212 pace
->trustee
= *pfile_owner_sid
;
1213 pace
->attr
= ALLOW_ACE
;
1216 /* See if the owning user is in any of the other groups in
1217 the ACE. If so, OR in the permissions from that group. */
1219 bool group_matched
= False
;
1220 canon_ace
*pace_iter
;
1222 for (pace_iter
= *pp_ace
; pace_iter
; pace_iter
= pace_iter
->next
) {
1223 if (pace_iter
->type
== SMB_ACL_GROUP_OBJ
|| pace_iter
->type
== SMB_ACL_GROUP
) {
1224 if (uid_entry_in_group(pace
, pace_iter
)) {
1225 pace
->perms
|= pace_iter
->perms
;
1226 group_matched
= True
;
1231 /* If we only got an "everyone" perm, just use that. */
1232 if (!group_matched
) {
1234 pace
->perms
= pace_other
->perms
;
1239 apply_default_perms(params
, is_directory
, pace
, S_IRUSR
);
1241 pace
->perms
= unix_perms_to_acl_perms(pst
->st_mode
, S_IRUSR
, S_IWUSR
, S_IXUSR
);
1244 DLIST_ADD(*pp_ace
, pace
);
1248 if ((pace
= SMB_MALLOC_P(canon_ace
)) == NULL
) {
1249 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1254 pace
->type
= SMB_ACL_GROUP_OBJ
;
1255 pace
->owner_type
= GID_ACE
;
1256 pace
->unix_ug
.uid
= pst
->st_gid
;
1257 pace
->trustee
= *pfile_grp_sid
;
1258 pace
->attr
= ALLOW_ACE
;
1260 /* If we only got an "everyone" perm, just use that. */
1262 pace
->perms
= pace_other
->perms
;
1265 apply_default_perms(params
, is_directory
, pace
, S_IRGRP
);
1267 pace
->perms
= unix_perms_to_acl_perms(pst
->st_mode
, S_IRGRP
, S_IWGRP
, S_IXGRP
);
1270 DLIST_ADD(*pp_ace
, pace
);
1274 if ((pace
= SMB_MALLOC_P(canon_ace
)) == NULL
) {
1275 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1280 pace
->type
= SMB_ACL_OTHER
;
1281 pace
->owner_type
= WORLD_ACE
;
1282 pace
->unix_ug
.world
= -1;
1283 pace
->trustee
= global_sid_World
;
1284 pace
->attr
= ALLOW_ACE
;
1287 apply_default_perms(params
, is_directory
, pace
, S_IROTH
);
1289 pace
->perms
= unix_perms_to_acl_perms(pst
->st_mode
, S_IROTH
, S_IWOTH
, S_IXOTH
);
1291 DLIST_ADD(*pp_ace
, pace
);
1297 /****************************************************************************
1298 Check if a POSIX ACL has the required SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ entries.
1299 If it does not have them, check if there are any entries where the trustee is the
1300 file owner or the owning group, and map these to SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ.
1301 ****************************************************************************/
1303 static void check_owning_objs(canon_ace
*ace
, DOM_SID
*pfile_owner_sid
, DOM_SID
*pfile_grp_sid
)
1305 bool got_user_obj
, got_group_obj
;
1306 canon_ace
*current_ace
;
1309 entries
= count_canon_ace_list(ace
);
1310 got_user_obj
= False
;
1311 got_group_obj
= False
;
1313 for (i
=0, current_ace
= ace
; i
< entries
; i
++, current_ace
= current_ace
->next
) {
1314 if (current_ace
->type
== SMB_ACL_USER_OBJ
)
1315 got_user_obj
= True
;
1316 else if (current_ace
->type
== SMB_ACL_GROUP_OBJ
)
1317 got_group_obj
= True
;
1319 if (got_user_obj
&& got_group_obj
) {
1320 DEBUG(10,("check_owning_objs: ACL had owning user/group entries.\n"));
1324 for (i
=0, current_ace
= ace
; i
< entries
; i
++, current_ace
= current_ace
->next
) {
1325 if (!got_user_obj
&& current_ace
->owner_type
== UID_ACE
&&
1326 sid_equal(¤t_ace
->trustee
, pfile_owner_sid
)) {
1327 current_ace
->type
= SMB_ACL_USER_OBJ
;
1328 got_user_obj
= True
;
1330 if (!got_group_obj
&& current_ace
->owner_type
== GID_ACE
&&
1331 sid_equal(¤t_ace
->trustee
, pfile_grp_sid
)) {
1332 current_ace
->type
= SMB_ACL_GROUP_OBJ
;
1333 got_group_obj
= True
;
1337 DEBUG(10,("check_owning_objs: ACL is missing an owner entry.\n"));
1339 DEBUG(10,("check_owning_objs: ACL is missing an owning group entry.\n"));
1342 /****************************************************************************
1343 Unpack a SEC_DESC into two canonical ace lists.
1344 ****************************************************************************/
1346 static bool create_canon_ace_lists(files_struct
*fsp
,
1347 SMB_STRUCT_STAT
*pst
,
1348 DOM_SID
*pfile_owner_sid
,
1349 DOM_SID
*pfile_grp_sid
,
1350 canon_ace
**ppfile_ace
,
1351 canon_ace
**ppdir_ace
,
1352 const SEC_ACL
*dacl
)
1354 bool all_aces_are_inherit_only
= (fsp
->is_directory
? True
: False
);
1355 canon_ace
*file_ace
= NULL
;
1356 canon_ace
*dir_ace
= NULL
;
1357 canon_ace
*current_ace
= NULL
;
1358 bool got_dir_allow
= False
;
1359 bool got_file_allow
= False
;
1366 * Convert the incoming ACL into a more regular form.
1369 for(i
= 0; i
< dacl
->num_aces
; i
++) {
1370 SEC_ACE
*psa
= &dacl
->aces
[i
];
1372 if((psa
->type
!= SEC_ACE_TYPE_ACCESS_ALLOWED
) && (psa
->type
!= SEC_ACE_TYPE_ACCESS_DENIED
)) {
1373 DEBUG(3,("create_canon_ace_lists: unable to set anything but an ALLOW or DENY ACE.\n"));
1377 if (nt4_compatible_acls()) {
1379 * The security mask may be UNIX_ACCESS_NONE which should map into
1380 * no permissions (we overload the WRITE_OWNER bit for this) or it
1381 * should be one of the ALL/EXECUTE/READ/WRITE bits. Arrange for this
1382 * to be so. Any other bits override the UNIX_ACCESS_NONE bit.
1386 * Convert GENERIC bits to specific bits.
1389 se_map_generic(&psa
->access_mask
, &file_generic_mapping
);
1391 psa
->access_mask
&= (UNIX_ACCESS_NONE
|FILE_ALL_ACCESS
);
1393 if(psa
->access_mask
!= UNIX_ACCESS_NONE
)
1394 psa
->access_mask
&= ~UNIX_ACCESS_NONE
;
1399 * Deal with the fact that NT 4.x re-writes the canonical format
1400 * that we return for default ACLs. If a directory ACE is identical
1401 * to a inherited directory ACE then NT changes the bits so that the
1402 * first ACE is set to OI|IO and the second ACE for this SID is set
1403 * to CI. We need to repair this. JRA.
1406 for(i
= 0; i
< dacl
->num_aces
; i
++) {
1407 SEC_ACE
*psa1
= &dacl
->aces
[i
];
1409 for (j
= i
+ 1; j
< dacl
->num_aces
; j
++) {
1410 SEC_ACE
*psa2
= &dacl
->aces
[j
];
1412 if (psa1
->access_mask
!= psa2
->access_mask
)
1415 if (!sid_equal(&psa1
->trustee
, &psa2
->trustee
))
1419 * Ok - permission bits and SIDs are equal.
1420 * Check if flags were re-written.
1423 if (psa1
->flags
& SEC_ACE_FLAG_INHERIT_ONLY
) {
1425 psa1
->flags
|= (psa2
->flags
& (SEC_ACE_FLAG_CONTAINER_INHERIT
|SEC_ACE_FLAG_OBJECT_INHERIT
));
1426 psa2
->flags
&= ~(SEC_ACE_FLAG_CONTAINER_INHERIT
|SEC_ACE_FLAG_OBJECT_INHERIT
);
1428 } else if (psa2
->flags
& SEC_ACE_FLAG_INHERIT_ONLY
) {
1430 psa2
->flags
|= (psa1
->flags
& (SEC_ACE_FLAG_CONTAINER_INHERIT
|SEC_ACE_FLAG_OBJECT_INHERIT
));
1431 psa1
->flags
&= ~(SEC_ACE_FLAG_CONTAINER_INHERIT
|SEC_ACE_FLAG_OBJECT_INHERIT
);
1437 for(i
= 0; i
< dacl
->num_aces
; i
++) {
1438 SEC_ACE
*psa
= &dacl
->aces
[i
];
1441 * Create a cannon_ace entry representing this NT DACL ACE.
1444 if ((current_ace
= SMB_MALLOC_P(canon_ace
)) == NULL
) {
1445 free_canon_ace_list(file_ace
);
1446 free_canon_ace_list(dir_ace
);
1447 DEBUG(0,("create_canon_ace_lists: malloc fail.\n"));
1451 ZERO_STRUCTP(current_ace
);
1453 sid_copy(¤t_ace
->trustee
, &psa
->trustee
);
1456 * Try and work out if the SID is a user or group
1457 * as we need to flag these differently for POSIX.
1458 * Note what kind of a POSIX ACL this should map to.
1461 if( sid_equal(¤t_ace
->trustee
, &global_sid_World
)) {
1462 current_ace
->owner_type
= WORLD_ACE
;
1463 current_ace
->unix_ug
.world
= -1;
1464 current_ace
->type
= SMB_ACL_OTHER
;
1465 } else if (sid_equal(¤t_ace
->trustee
, &global_sid_Creator_Owner
)) {
1466 current_ace
->owner_type
= UID_ACE
;
1467 current_ace
->unix_ug
.uid
= pst
->st_uid
;
1468 current_ace
->type
= SMB_ACL_USER_OBJ
;
1471 * The Creator Owner entry only specifies inheritable permissions,
1472 * never access permissions. WinNT doesn't always set the ACE to
1473 *INHERIT_ONLY, though.
1476 if (nt4_compatible_acls())
1477 psa
->flags
|= SEC_ACE_FLAG_INHERIT_ONLY
;
1478 } else if (sid_equal(¤t_ace
->trustee
, &global_sid_Creator_Group
)) {
1479 current_ace
->owner_type
= GID_ACE
;
1480 current_ace
->unix_ug
.gid
= pst
->st_gid
;
1481 current_ace
->type
= SMB_ACL_GROUP_OBJ
;
1484 * The Creator Group entry only specifies inheritable permissions,
1485 * never access permissions. WinNT doesn't always set the ACE to
1486 *INHERIT_ONLY, though.
1488 if (nt4_compatible_acls())
1489 psa
->flags
|= SEC_ACE_FLAG_INHERIT_ONLY
;
1491 } else if (sid_to_uid( ¤t_ace
->trustee
, ¤t_ace
->unix_ug
.uid
)) {
1492 current_ace
->owner_type
= UID_ACE
;
1493 /* If it's the owning user, this is a user_obj, not
1495 if (current_ace
->unix_ug
.uid
== pst
->st_uid
) {
1496 current_ace
->type
= SMB_ACL_USER_OBJ
;
1498 current_ace
->type
= SMB_ACL_USER
;
1500 } else if (sid_to_gid( ¤t_ace
->trustee
, ¤t_ace
->unix_ug
.gid
)) {
1501 current_ace
->owner_type
= GID_ACE
;
1502 /* If it's the primary group, this is a group_obj, not
1504 if (current_ace
->unix_ug
.gid
== pst
->st_gid
) {
1505 current_ace
->type
= SMB_ACL_GROUP_OBJ
;
1507 current_ace
->type
= SMB_ACL_GROUP
;
1511 * Silently ignore map failures in non-mappable SIDs (NT Authority, BUILTIN etc).
1514 if (non_mappable_sid(&psa
->trustee
)) {
1515 DEBUG(10, ("create_canon_ace_lists: ignoring "
1516 "non-mappable SID %s\n",
1517 sid_string_dbg(&psa
->trustee
)));
1518 SAFE_FREE(current_ace
);
1522 free_canon_ace_list(file_ace
);
1523 free_canon_ace_list(dir_ace
);
1524 DEBUG(0, ("create_canon_ace_lists: unable to map SID "
1525 "%s to uid or gid.\n",
1526 sid_string_dbg(¤t_ace
->trustee
)));
1527 SAFE_FREE(current_ace
);
1532 * Map the given NT permissions into a UNIX mode_t containing only
1533 * S_I(R|W|X)USR bits.
1536 current_ace
->perms
|= map_nt_perms( &psa
->access_mask
, S_IRUSR
);
1537 current_ace
->attr
= (psa
->type
== SEC_ACE_TYPE_ACCESS_ALLOWED
) ? ALLOW_ACE
: DENY_ACE
;
1538 current_ace
->inherited
= ((psa
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) ? True
: False
);
1541 * Now add the created ace to either the file list, the directory
1542 * list, or both. We *MUST* preserve the order here (hence we use
1543 * DLIST_ADD_END) as NT ACLs are order dependent.
1546 if (fsp
->is_directory
) {
1549 * We can only add to the default POSIX ACE list if the ACE is
1550 * designed to be inherited by both files and directories.
1553 if ((psa
->flags
& (SEC_ACE_FLAG_OBJECT_INHERIT
|SEC_ACE_FLAG_CONTAINER_INHERIT
)) ==
1554 (SEC_ACE_FLAG_OBJECT_INHERIT
|SEC_ACE_FLAG_CONTAINER_INHERIT
)) {
1556 DLIST_ADD_END(dir_ace
, current_ace
, canon_ace
*);
1559 * Note if this was an allow ace. We can't process
1560 * any further deny ace's after this.
1563 if (current_ace
->attr
== ALLOW_ACE
)
1564 got_dir_allow
= True
;
1566 if ((current_ace
->attr
== DENY_ACE
) && got_dir_allow
) {
1567 DEBUG(0,("create_canon_ace_lists: malformed ACL in inheritable ACL ! \
1568 Deny entry after Allow entry. Failing to set on file %s.\n", fsp
->fsp_name
));
1569 free_canon_ace_list(file_ace
);
1570 free_canon_ace_list(dir_ace
);
1574 if( DEBUGLVL( 10 )) {
1575 dbgtext("create_canon_ace_lists: adding dir ACL:\n");
1576 print_canon_ace( current_ace
, 0);
1580 * If this is not an inherit only ACE we need to add a duplicate
1584 if (!(psa
->flags
& SEC_ACE_FLAG_INHERIT_ONLY
)) {
1585 canon_ace
*dup_ace
= dup_canon_ace(current_ace
);
1588 DEBUG(0,("create_canon_ace_lists: malloc fail !\n"));
1589 free_canon_ace_list(file_ace
);
1590 free_canon_ace_list(dir_ace
);
1595 * We must not free current_ace here as its
1596 * pointer is now owned by the dir_ace list.
1598 current_ace
= dup_ace
;
1601 * We must not free current_ace here as its
1602 * pointer is now owned by the dir_ace list.
1610 * Only add to the file ACL if not inherit only.
1613 if (current_ace
&& !(psa
->flags
& SEC_ACE_FLAG_INHERIT_ONLY
)) {
1614 DLIST_ADD_END(file_ace
, current_ace
, canon_ace
*);
1617 * Note if this was an allow ace. We can't process
1618 * any further deny ace's after this.
1621 if (current_ace
->attr
== ALLOW_ACE
)
1622 got_file_allow
= True
;
1624 if ((current_ace
->attr
== DENY_ACE
) && got_file_allow
) {
1625 DEBUG(0,("create_canon_ace_lists: malformed ACL in file ACL ! \
1626 Deny entry after Allow entry. Failing to set on file %s.\n", fsp
->fsp_name
));
1627 free_canon_ace_list(file_ace
);
1628 free_canon_ace_list(dir_ace
);
1632 if( DEBUGLVL( 10 )) {
1633 dbgtext("create_canon_ace_lists: adding file ACL:\n");
1634 print_canon_ace( current_ace
, 0);
1636 all_aces_are_inherit_only
= False
;
1638 * We must not free current_ace here as its
1639 * pointer is now owned by the file_ace list.
1645 * Free if ACE was not added.
1648 SAFE_FREE(current_ace
);
1651 if (fsp
->is_directory
&& all_aces_are_inherit_only
) {
1653 * Windows 2000 is doing one of these weird 'inherit acl'
1654 * traverses to conserve NTFS ACL resources. Just pretend
1655 * there was no DACL sent. JRA.
1658 DEBUG(10,("create_canon_ace_lists: Win2k inherit acl traverse. Ignoring DACL.\n"));
1659 free_canon_ace_list(file_ace
);
1660 free_canon_ace_list(dir_ace
);
1665 * Check if we have SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ entries in each
1666 * ACL. If we don't have them, check if any SMB_ACL_USER/SMB_ACL_GROUP
1667 * entries can be converted to *_OBJ. Usually we will already have these
1668 * entries in the Default ACL, and the Access ACL will not have them.
1671 check_owning_objs(file_ace
, pfile_owner_sid
, pfile_grp_sid
);
1674 check_owning_objs(dir_ace
, pfile_owner_sid
, pfile_grp_sid
);
1678 *ppfile_ace
= file_ace
;
1679 *ppdir_ace
= dir_ace
;
1684 /****************************************************************************
1685 ASCII art time again... JRA :-).
1687 We have 4 cases to process when moving from an NT ACL to a POSIX ACL. Firstly,
1688 we insist the ACL is in canonical form (ie. all DENY entries preceede ALLOW
1689 entries). Secondly, the merge code has ensured that all duplicate SID entries for
1690 allow or deny have been merged, so the same SID can only appear once in the deny
1691 list or once in the allow list.
1693 We then process as follows :
1695 ---------------------------------------------------------------------------
1696 First pass - look for a Everyone DENY entry.
1698 If it is deny all (rwx) trunate the list at this point.
1699 Else, walk the list from this point and use the deny permissions of this
1700 entry as a mask on all following allow entries. Finally, delete
1701 the Everyone DENY entry (we have applied it to everything possible).
1703 In addition, in this pass we remove any DENY entries that have
1704 no permissions (ie. they are a DENY nothing).
1705 ---------------------------------------------------------------------------
1706 Second pass - only deal with deny user entries.
1708 DENY user1 (perms XXX)
1711 for all following allow group entries where user1 is in group
1712 new_perms |= group_perms;
1714 user1 entry perms = new_perms & ~ XXX;
1716 Convert the deny entry to an allow entry with the new perms and
1717 push to the end of the list. Note if the user was in no groups
1718 this maps to a specific allow nothing entry for this user.
1720 The common case from the NT ACL choser (userX deny all) is
1721 optimised so we don't do the group lookup - we just map to
1722 an allow nothing entry.
1724 What we're doing here is inferring the allow permissions the
1725 person setting the ACE on user1 wanted by looking at the allow
1726 permissions on the groups the user is currently in. This will
1727 be a snapshot, depending on group membership but is the best
1728 we can do and has the advantage of failing closed rather than
1730 ---------------------------------------------------------------------------
1731 Third pass - only deal with deny group entries.
1733 DENY group1 (perms XXX)
1735 for all following allow user entries where user is in group1
1736 user entry perms = user entry perms & ~ XXX;
1738 If there is a group Everyone allow entry with permissions YYY,
1739 convert the group1 entry to an allow entry and modify its
1742 new_perms = YYY & ~ XXX
1744 and push to the end of the list.
1746 If there is no group Everyone allow entry then convert the
1747 group1 entry to a allow nothing entry and push to the end of the list.
1749 Note that the common case from the NT ACL choser (groupX deny all)
1750 cannot be optimised here as we need to modify user entries who are
1751 in the group to change them to a deny all also.
1753 What we're doing here is modifying the allow permissions of
1754 user entries (which are more specific in POSIX ACLs) to mask
1755 out the explicit deny set on the group they are in. This will
1756 be a snapshot depending on current group membership but is the
1757 best we can do and has the advantage of failing closed rather
1759 ---------------------------------------------------------------------------
1760 Fourth pass - cope with cumulative permissions.
1762 for all allow user entries, if there exists an allow group entry with
1763 more permissive permissions, and the user is in that group, rewrite the
1764 allow user permissions to contain both sets of permissions.
1766 Currently the code for this is #ifdef'ed out as these semantics make
1767 no sense to me. JRA.
1768 ---------------------------------------------------------------------------
1770 Note we *MUST* do the deny user pass first as this will convert deny user
1771 entries into allow user entries which can then be processed by the deny
1774 The above algorithm took a *lot* of thinking about - hence this
1775 explaination :-). JRA.
1776 ****************************************************************************/
1778 /****************************************************************************
1779 Process a canon_ace list entries. This is very complex code. We need
1780 to go through and remove the "deny" permissions from any allow entry that matches
1781 the id of this entry. We have already refused any NT ACL that wasn't in correct
1782 order (DENY followed by ALLOW). If any allow entry ends up with zero permissions,
1783 we just remove it (to fail safe). We have already removed any duplicate ace
1784 entries. Treat an "Everyone" DENY_ACE as a special case - use it to mask all
1786 ****************************************************************************/
1788 static void process_deny_list( canon_ace
**pp_ace_list
)
1790 canon_ace
*ace_list
= *pp_ace_list
;
1791 canon_ace
*curr_ace
= NULL
;
1792 canon_ace
*curr_ace_next
= NULL
;
1794 /* Pass 1 above - look for an Everyone, deny entry. */
1796 for (curr_ace
= ace_list
; curr_ace
; curr_ace
= curr_ace_next
) {
1797 canon_ace
*allow_ace_p
;
1799 curr_ace_next
= curr_ace
->next
; /* So we can't lose the link. */
1801 if (curr_ace
->attr
!= DENY_ACE
)
1804 if (curr_ace
->perms
== (mode_t
)0) {
1806 /* Deny nothing entry - delete. */
1808 DLIST_REMOVE(ace_list
, curr_ace
);
1812 if (!sid_equal(&curr_ace
->trustee
, &global_sid_World
))
1815 /* JRATEST - assert. */
1816 SMB_ASSERT(curr_ace
->owner_type
== WORLD_ACE
);
1818 if (curr_ace
->perms
== ALL_ACE_PERMS
) {
1821 * Optimisation. This is a DENY_ALL to Everyone. Truncate the
1822 * list at this point including this entry.
1825 canon_ace
*prev_entry
= curr_ace
->prev
;
1827 free_canon_ace_list( curr_ace
);
1829 prev_entry
->next
= NULL
;
1831 /* We deleted the entire list. */
1837 for (allow_ace_p
= curr_ace
->next
; allow_ace_p
; allow_ace_p
= allow_ace_p
->next
) {
1840 * Only mask off allow entries.
1843 if (allow_ace_p
->attr
!= ALLOW_ACE
)
1846 allow_ace_p
->perms
&= ~curr_ace
->perms
;
1850 * Now it's been applied, remove it.
1853 DLIST_REMOVE(ace_list
, curr_ace
);
1856 /* Pass 2 above - deal with deny user entries. */
1858 for (curr_ace
= ace_list
; curr_ace
; curr_ace
= curr_ace_next
) {
1859 mode_t new_perms
= (mode_t
)0;
1860 canon_ace
*allow_ace_p
;
1862 curr_ace_next
= curr_ace
->next
; /* So we can't lose the link. */
1864 if (curr_ace
->attr
!= DENY_ACE
)
1867 if (curr_ace
->owner_type
!= UID_ACE
)
1870 if (curr_ace
->perms
== ALL_ACE_PERMS
) {
1873 * Optimisation - this is a deny everything to this user.
1874 * Convert to an allow nothing and push to the end of the list.
1877 curr_ace
->attr
= ALLOW_ACE
;
1878 curr_ace
->perms
= (mode_t
)0;
1879 DLIST_DEMOTE(ace_list
, curr_ace
, canon_ace
*);
1883 for (allow_ace_p
= curr_ace
->next
; allow_ace_p
; allow_ace_p
= allow_ace_p
->next
) {
1885 if (allow_ace_p
->attr
!= ALLOW_ACE
)
1888 /* We process GID_ACE and WORLD_ACE entries only. */
1890 if (allow_ace_p
->owner_type
== UID_ACE
)
1893 if (uid_entry_in_group( curr_ace
, allow_ace_p
))
1894 new_perms
|= allow_ace_p
->perms
;
1898 * Convert to a allow entry, modify the perms and push to the end
1902 curr_ace
->attr
= ALLOW_ACE
;
1903 curr_ace
->perms
= (new_perms
& ~curr_ace
->perms
);
1904 DLIST_DEMOTE(ace_list
, curr_ace
, canon_ace
*);
1907 /* Pass 3 above - deal with deny group entries. */
1909 for (curr_ace
= ace_list
; curr_ace
; curr_ace
= curr_ace_next
) {
1910 canon_ace
*allow_ace_p
;
1911 canon_ace
*allow_everyone_p
= NULL
;
1913 curr_ace_next
= curr_ace
->next
; /* So we can't lose the link. */
1915 if (curr_ace
->attr
!= DENY_ACE
)
1918 if (curr_ace
->owner_type
!= GID_ACE
)
1921 for (allow_ace_p
= curr_ace
->next
; allow_ace_p
; allow_ace_p
= allow_ace_p
->next
) {
1923 if (allow_ace_p
->attr
!= ALLOW_ACE
)
1926 /* Store a pointer to the Everyone allow, if it exists. */
1927 if (allow_ace_p
->owner_type
== WORLD_ACE
)
1928 allow_everyone_p
= allow_ace_p
;
1930 /* We process UID_ACE entries only. */
1932 if (allow_ace_p
->owner_type
!= UID_ACE
)
1935 /* Mask off the deny group perms. */
1937 if (uid_entry_in_group( allow_ace_p
, curr_ace
))
1938 allow_ace_p
->perms
&= ~curr_ace
->perms
;
1942 * Convert the deny to an allow with the correct perms and
1943 * push to the end of the list.
1946 curr_ace
->attr
= ALLOW_ACE
;
1947 if (allow_everyone_p
)
1948 curr_ace
->perms
= allow_everyone_p
->perms
& ~curr_ace
->perms
;
1950 curr_ace
->perms
= (mode_t
)0;
1951 DLIST_DEMOTE(ace_list
, curr_ace
, canon_ace
*);
1954 /* Doing this fourth pass allows Windows semantics to be layered
1955 * on top of POSIX semantics. I'm not sure if this is desirable.
1956 * For example, in W2K ACLs there is no way to say, "Group X no
1957 * access, user Y full access" if user Y is a member of group X.
1958 * This seems completely broken semantics to me.... JRA.
1962 /* Pass 4 above - deal with allow entries. */
1964 for (curr_ace
= ace_list
; curr_ace
; curr_ace
= curr_ace_next
) {
1965 canon_ace
*allow_ace_p
;
1967 curr_ace_next
= curr_ace
->next
; /* So we can't lose the link. */
1969 if (curr_ace
->attr
!= ALLOW_ACE
)
1972 if (curr_ace
->owner_type
!= UID_ACE
)
1975 for (allow_ace_p
= ace_list
; allow_ace_p
; allow_ace_p
= allow_ace_p
->next
) {
1977 if (allow_ace_p
->attr
!= ALLOW_ACE
)
1980 /* We process GID_ACE entries only. */
1982 if (allow_ace_p
->owner_type
!= GID_ACE
)
1985 /* OR in the group perms. */
1987 if (uid_entry_in_group( curr_ace
, allow_ace_p
))
1988 curr_ace
->perms
|= allow_ace_p
->perms
;
1993 *pp_ace_list
= ace_list
;
1996 /****************************************************************************
1997 Create a default mode that will be used if a security descriptor entry has
1998 no user/group/world entries.
1999 ****************************************************************************/
2001 static mode_t
create_default_mode(files_struct
*fsp
, bool interitable_mode
)
2003 int snum
= SNUM(fsp
->conn
);
2004 mode_t and_bits
= (mode_t
)0;
2005 mode_t or_bits
= (mode_t
)0;
2006 mode_t mode
= interitable_mode
2007 ? unix_mode( fsp
->conn
, FILE_ATTRIBUTE_ARCHIVE
, fsp
->fsp_name
,
2011 if (fsp
->is_directory
)
2012 mode
|= (S_IWUSR
|S_IXUSR
);
2015 * Now AND with the create mode/directory mode bits then OR with the
2016 * force create mode/force directory mode bits.
2019 if (fsp
->is_directory
) {
2020 and_bits
= lp_dir_security_mask(snum
);
2021 or_bits
= lp_force_dir_security_mode(snum
);
2023 and_bits
= lp_security_mask(snum
);
2024 or_bits
= lp_force_security_mode(snum
);
2027 return ((mode
& and_bits
)|or_bits
);
2030 /****************************************************************************
2031 Unpack a SEC_DESC into two canonical ace lists. We don't depend on this
2033 ****************************************************************************/
2035 static bool unpack_canon_ace(files_struct
*fsp
,
2036 SMB_STRUCT_STAT
*pst
,
2037 DOM_SID
*pfile_owner_sid
,
2038 DOM_SID
*pfile_grp_sid
,
2039 canon_ace
**ppfile_ace
,
2040 canon_ace
**ppdir_ace
,
2041 uint32 security_info_sent
,
2042 const SEC_DESC
*psd
)
2044 canon_ace
*file_ace
= NULL
;
2045 canon_ace
*dir_ace
= NULL
;
2050 if(security_info_sent
== 0) {
2051 DEBUG(0,("unpack_canon_ace: no security info sent !\n"));
2056 * If no DACL then this is a chown only security descriptor.
2059 if(!(security_info_sent
& DACL_SECURITY_INFORMATION
) || !psd
->dacl
)
2063 * Now go through the DACL and create the canon_ace lists.
2066 if (!create_canon_ace_lists( fsp
, pst
, pfile_owner_sid
, pfile_grp_sid
,
2067 &file_ace
, &dir_ace
, psd
->dacl
))
2070 if ((file_ace
== NULL
) && (dir_ace
== NULL
)) {
2071 /* W2K traverse DACL set - ignore. */
2076 * Go through the canon_ace list and merge entries
2077 * belonging to identical users of identical allow or deny type.
2078 * We can do this as all deny entries come first, followed by
2079 * all allow entries (we have mandated this before accepting this acl).
2082 print_canon_ace_list( "file ace - before merge", file_ace
);
2083 merge_aces( &file_ace
);
2085 print_canon_ace_list( "dir ace - before merge", dir_ace
);
2086 merge_aces( &dir_ace
);
2089 * NT ACLs are order dependent. Go through the acl lists and
2090 * process DENY entries by masking the allow entries.
2093 print_canon_ace_list( "file ace - before deny", file_ace
);
2094 process_deny_list( &file_ace
);
2096 print_canon_ace_list( "dir ace - before deny", dir_ace
);
2097 process_deny_list( &dir_ace
);
2100 * A well formed POSIX file or default ACL has at least 3 entries, a
2101 * SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER_OBJ
2102 * and optionally a mask entry. Ensure this is the case.
2105 print_canon_ace_list( "file ace - before valid", file_ace
);
2108 * A default 3 element mode entry for a file should be r-- --- ---.
2109 * A default 3 element mode entry for a directory should be rwx --- ---.
2112 pst
->st_mode
= create_default_mode(fsp
, False
);
2114 if (!ensure_canon_entry_valid(&file_ace
, fsp
->conn
->params
, fsp
->is_directory
, pfile_owner_sid
, pfile_grp_sid
, pst
, True
)) {
2115 free_canon_ace_list(file_ace
);
2116 free_canon_ace_list(dir_ace
);
2120 print_canon_ace_list( "dir ace - before valid", dir_ace
);
2123 * A default inheritable 3 element mode entry for a directory should be the
2124 * mode Samba will use to create a file within. Ensure user rwx bits are set if
2128 pst
->st_mode
= create_default_mode(fsp
, True
);
2130 if (dir_ace
&& !ensure_canon_entry_valid(&dir_ace
, fsp
->conn
->params
, fsp
->is_directory
, pfile_owner_sid
, pfile_grp_sid
, pst
, True
)) {
2131 free_canon_ace_list(file_ace
);
2132 free_canon_ace_list(dir_ace
);
2136 print_canon_ace_list( "file ace - return", file_ace
);
2137 print_canon_ace_list( "dir ace - return", dir_ace
);
2139 *ppfile_ace
= file_ace
;
2140 *ppdir_ace
= dir_ace
;
2145 /******************************************************************************
2146 When returning permissions, try and fit NT display
2147 semantics if possible. Note the the canon_entries here must have been malloced.
2148 The list format should be - first entry = owner, followed by group and other user
2149 entries, last entry = other.
2151 Note that this doesn't exactly match the NT semantics for an ACL. As POSIX entries
2152 are not ordered, and match on the most specific entry rather than walking a list,
2153 then a simple POSIX permission of rw-r--r-- should really map to 5 entries,
2155 Entry 0: owner : deny all except read and write.
2156 Entry 1: owner : allow read and write.
2157 Entry 2: group : deny all except read.
2158 Entry 3: group : allow read.
2159 Entry 4: Everyone : allow read.
2161 But NT cannot display this in their ACL editor !
2162 ********************************************************************************/
2164 static void arrange_posix_perms(const char *filename
, canon_ace
**pp_list_head
)
2166 canon_ace
*l_head
= *pp_list_head
;
2167 canon_ace
*owner_ace
= NULL
;
2168 canon_ace
*other_ace
= NULL
;
2169 canon_ace
*ace
= NULL
;
2171 for (ace
= l_head
; ace
; ace
= ace
->next
) {
2172 if (ace
->type
== SMB_ACL_USER_OBJ
)
2174 else if (ace
->type
== SMB_ACL_OTHER
) {
2175 /* Last ace - this is "other" */
2180 if (!owner_ace
|| !other_ace
) {
2181 DEBUG(0,("arrange_posix_perms: Invalid POSIX permissions for file %s, missing owner or other.\n",
2187 * The POSIX algorithm applies to owner first, and other last,
2188 * so ensure they are arranged in this order.
2192 DLIST_PROMOTE(l_head
, owner_ace
);
2196 DLIST_DEMOTE(l_head
, other_ace
, canon_ace
*);
2199 /* We have probably changed the head of the list. */
2201 *pp_list_head
= l_head
;
2204 /****************************************************************************
2205 Create a linked list of canonical ACE entries.
2206 ****************************************************************************/
2208 static canon_ace
*canonicalise_acl(struct connection_struct
*conn
,
2209 const char *fname
, SMB_ACL_T posix_acl
,
2210 const SMB_STRUCT_STAT
*psbuf
,
2211 const DOM_SID
*powner
, const DOM_SID
*pgroup
, struct pai_val
*pal
, SMB_ACL_TYPE_T the_acl_type
)
2213 mode_t acl_mask
= (S_IRUSR
|S_IWUSR
|S_IXUSR
);
2214 canon_ace
*l_head
= NULL
;
2215 canon_ace
*ace
= NULL
;
2216 canon_ace
*next_ace
= NULL
;
2217 int entry_id
= SMB_ACL_FIRST_ENTRY
;
2218 SMB_ACL_ENTRY_T entry
;
2221 while ( posix_acl
&& (SMB_VFS_SYS_ACL_GET_ENTRY(conn
, posix_acl
, entry_id
, &entry
) == 1)) {
2222 SMB_ACL_TAG_T tagtype
;
2223 SMB_ACL_PERMSET_T permset
;
2226 enum ace_owner owner_type
;
2228 entry_id
= SMB_ACL_NEXT_ENTRY
;
2230 /* Is this a MASK entry ? */
2231 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn
, entry
, &tagtype
) == -1)
2234 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, entry
, &permset
) == -1)
2237 /* Decide which SID to use based on the ACL type. */
2239 case SMB_ACL_USER_OBJ
:
2240 /* Get the SID from the owner. */
2241 sid_copy(&sid
, powner
);
2242 unix_ug
.uid
= psbuf
->st_uid
;
2243 owner_type
= UID_ACE
;
2247 uid_t
*puid
= (uid_t
*)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn
, entry
);
2249 DEBUG(0,("canonicalise_acl: Failed to get uid.\n"));
2253 * A SMB_ACL_USER entry for the owner is shadowed by the
2254 * SMB_ACL_USER_OBJ entry and Windows also cannot represent
2255 * that entry, so we ignore it. We also don't create such
2256 * entries out of the blue when setting ACLs, so a get/set
2257 * cycle will drop them.
2259 if (the_acl_type
== SMB_ACL_TYPE_ACCESS
&& *puid
== psbuf
->st_uid
) {
2260 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn
, (void *)puid
,tagtype
);
2263 uid_to_sid( &sid
, *puid
);
2264 unix_ug
.uid
= *puid
;
2265 owner_type
= UID_ACE
;
2266 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn
, (void *)puid
,tagtype
);
2269 case SMB_ACL_GROUP_OBJ
:
2270 /* Get the SID from the owning group. */
2271 sid_copy(&sid
, pgroup
);
2272 unix_ug
.gid
= psbuf
->st_gid
;
2273 owner_type
= GID_ACE
;
2277 gid_t
*pgid
= (gid_t
*)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn
, entry
);
2279 DEBUG(0,("canonicalise_acl: Failed to get gid.\n"));
2282 gid_to_sid( &sid
, *pgid
);
2283 unix_ug
.gid
= *pgid
;
2284 owner_type
= GID_ACE
;
2285 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn
, (void *)pgid
,tagtype
);
2289 acl_mask
= convert_permset_to_mode_t(conn
, permset
);
2290 continue; /* Don't count the mask as an entry. */
2292 /* Use the Everyone SID */
2293 sid
= global_sid_World
;
2295 owner_type
= WORLD_ACE
;
2298 DEBUG(0,("canonicalise_acl: Unknown tagtype %u\n", (unsigned int)tagtype
));
2303 * Add this entry to the list.
2306 if ((ace
= SMB_MALLOC_P(canon_ace
)) == NULL
)
2310 ace
->type
= tagtype
;
2311 ace
->perms
= convert_permset_to_mode_t(conn
, permset
);
2312 ace
->attr
= ALLOW_ACE
;
2314 ace
->unix_ug
= unix_ug
;
2315 ace
->owner_type
= owner_type
;
2316 ace
->inherited
= get_inherited_flag(pal
, ace
, (the_acl_type
== SMB_ACL_TYPE_DEFAULT
));
2318 DLIST_ADD(l_head
, ace
);
2322 * This next call will ensure we have at least a user/group/world set.
2325 if (!ensure_canon_entry_valid(&l_head
, conn
->params
,
2326 S_ISDIR(psbuf
->st_mode
), powner
, pgroup
,
2331 * Now go through the list, masking the permissions with the
2332 * acl_mask. Ensure all DENY Entries are at the start of the list.
2335 DEBUG(10,("canonicalise_acl: %s ace entries before arrange :\n", the_acl_type
== SMB_ACL_TYPE_ACCESS
? "Access" : "Default" ));
2337 for ( ace_count
= 0, ace
= l_head
; ace
; ace
= next_ace
, ace_count
++) {
2338 next_ace
= ace
->next
;
2340 /* Masks are only applied to entries other than USER_OBJ and OTHER. */
2341 if (ace
->type
!= SMB_ACL_OTHER
&& ace
->type
!= SMB_ACL_USER_OBJ
)
2342 ace
->perms
&= acl_mask
;
2344 if (ace
->perms
== 0) {
2345 DLIST_PROMOTE(l_head
, ace
);
2348 if( DEBUGLVL( 10 ) ) {
2349 print_canon_ace(ace
, ace_count
);
2353 arrange_posix_perms(fname
,&l_head
);
2355 print_canon_ace_list( "canonicalise_acl: ace entries after arrange", l_head
);
2361 free_canon_ace_list(l_head
);
2365 /****************************************************************************
2366 Check if the current user group list contains a given group.
2367 ****************************************************************************/
2369 static bool current_user_in_group(gid_t gid
)
2373 for (i
= 0; i
< current_user
.ut
.ngroups
; i
++) {
2374 if (current_user
.ut
.groups
[i
] == gid
) {
2382 /****************************************************************************
2383 Should we override a deny ? Check 'acl group control' and 'dos filemode'.
2384 ****************************************************************************/
2386 static bool acl_group_override(connection_struct
*conn
,
2387 SMB_STRUCT_STAT
*psbuf
,
2390 if ((errno
!= EPERM
) && (errno
!= EACCES
)) {
2394 /* file primary group == user primary or supplementary group */
2395 if (lp_acl_group_control(SNUM(conn
)) &&
2396 current_user_in_group(psbuf
->st_gid
)) {
2400 /* user has writeable permission */
2401 if (lp_dos_filemode(SNUM(conn
)) &&
2402 can_write_to_file(conn
, fname
, psbuf
)) {
2409 /****************************************************************************
2410 Attempt to apply an ACL to a file or directory.
2411 ****************************************************************************/
2413 static bool set_canon_ace_list(files_struct
*fsp
, canon_ace
*the_ace
, bool default_ace
, SMB_STRUCT_STAT
*psbuf
, bool *pacl_set_support
)
2415 connection_struct
*conn
= fsp
->conn
;
2417 SMB_ACL_T the_acl
= SMB_VFS_SYS_ACL_INIT(conn
, (int)count_canon_ace_list(the_ace
) + 1);
2420 SMB_ACL_ENTRY_T mask_entry
;
2421 bool got_mask_entry
= False
;
2422 SMB_ACL_PERMSET_T mask_permset
;
2423 SMB_ACL_TYPE_T the_acl_type
= (default_ace
? SMB_ACL_TYPE_DEFAULT
: SMB_ACL_TYPE_ACCESS
);
2424 bool needs_mask
= False
;
2425 mode_t mask_perms
= 0;
2427 #if defined(POSIX_ACL_NEEDS_MASK)
2428 /* HP-UX always wants to have a mask (called "class" there). */
2432 if (the_acl
== NULL
) {
2434 if (!no_acl_syscall_error(errno
)) {
2436 * Only print this error message if we have some kind of ACL
2437 * support that's not working. Otherwise we would always get this.
2439 DEBUG(0,("set_canon_ace_list: Unable to init %s ACL. (%s)\n",
2440 default_ace
? "default" : "file", strerror(errno
) ));
2442 *pacl_set_support
= False
;
2446 if( DEBUGLVL( 10 )) {
2447 dbgtext("set_canon_ace_list: setting ACL:\n");
2448 for (i
= 0, p_ace
= the_ace
; p_ace
; p_ace
= p_ace
->next
, i
++ ) {
2449 print_canon_ace( p_ace
, i
);
2453 for (i
= 0, p_ace
= the_ace
; p_ace
; p_ace
= p_ace
->next
, i
++ ) {
2454 SMB_ACL_ENTRY_T the_entry
;
2455 SMB_ACL_PERMSET_T the_permset
;
2458 * ACLs only "need" an ACL_MASK entry if there are any named user or
2459 * named group entries. But if there is an ACL_MASK entry, it applies
2460 * to ACL_USER, ACL_GROUP, and ACL_GROUP_OBJ entries. Set the mask
2461 * so that it doesn't deny (i.e., mask off) any permissions.
2464 if (p_ace
->type
== SMB_ACL_USER
|| p_ace
->type
== SMB_ACL_GROUP
) {
2466 mask_perms
|= p_ace
->perms
;
2467 } else if (p_ace
->type
== SMB_ACL_GROUP_OBJ
) {
2468 mask_perms
|= p_ace
->perms
;
2472 * Get the entry for this ACE.
2475 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn
, &the_acl
, &the_entry
) == -1) {
2476 DEBUG(0,("set_canon_ace_list: Failed to create entry %d. (%s)\n",
2477 i
, strerror(errno
) ));
2481 if (p_ace
->type
== SMB_ACL_MASK
) {
2482 mask_entry
= the_entry
;
2483 got_mask_entry
= True
;
2487 * Ok - we now know the ACL calls should be working, don't
2488 * allow fallback to chmod.
2491 *pacl_set_support
= True
;
2494 * Initialise the entry from the canon_ace.
2498 * First tell the entry what type of ACE this is.
2501 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn
, the_entry
, p_ace
->type
) == -1) {
2502 DEBUG(0,("set_canon_ace_list: Failed to set tag type on entry %d. (%s)\n",
2503 i
, strerror(errno
) ));
2508 * Only set the qualifier (user or group id) if the entry is a user
2512 if ((p_ace
->type
== SMB_ACL_USER
) || (p_ace
->type
== SMB_ACL_GROUP
)) {
2513 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn
, the_entry
,(void *)&p_ace
->unix_ug
.uid
) == -1) {
2514 DEBUG(0,("set_canon_ace_list: Failed to set qualifier on entry %d. (%s)\n",
2515 i
, strerror(errno
) ));
2521 * Convert the mode_t perms in the canon_ace to a POSIX permset.
2524 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, the_entry
, &the_permset
) == -1) {
2525 DEBUG(0,("set_canon_ace_list: Failed to get permset on entry %d. (%s)\n",
2526 i
, strerror(errno
) ));
2530 if (map_acl_perms_to_permset(conn
, p_ace
->perms
, &the_permset
) == -1) {
2531 DEBUG(0,("set_canon_ace_list: Failed to create permset for mode (%u) on entry %d. (%s)\n",
2532 (unsigned int)p_ace
->perms
, i
, strerror(errno
) ));
2537 * ..and apply them to the entry.
2540 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, the_entry
, the_permset
) == -1) {
2541 DEBUG(0,("set_canon_ace_list: Failed to add permset on entry %d. (%s)\n",
2542 i
, strerror(errno
) ));
2547 print_canon_ace( p_ace
, i
);
2551 if (needs_mask
&& !got_mask_entry
) {
2552 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn
, &the_acl
, &mask_entry
) == -1) {
2553 DEBUG(0,("set_canon_ace_list: Failed to create mask entry. (%s)\n", strerror(errno
) ));
2557 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn
, mask_entry
, SMB_ACL_MASK
) == -1) {
2558 DEBUG(0,("set_canon_ace_list: Failed to set tag type on mask entry. (%s)\n",strerror(errno
) ));
2562 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, mask_entry
, &mask_permset
) == -1) {
2563 DEBUG(0,("set_canon_ace_list: Failed to get mask permset. (%s)\n", strerror(errno
) ));
2567 if (map_acl_perms_to_permset(conn
, S_IRUSR
|S_IWUSR
|S_IXUSR
, &mask_permset
) == -1) {
2568 DEBUG(0,("set_canon_ace_list: Failed to create mask permset. (%s)\n", strerror(errno
) ));
2572 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, mask_entry
, mask_permset
) == -1) {
2573 DEBUG(0,("set_canon_ace_list: Failed to add mask permset. (%s)\n", strerror(errno
) ));
2579 * Finally apply it to the file or directory.
2582 if(default_ace
|| fsp
->is_directory
|| fsp
->fh
->fd
== -1) {
2583 if (SMB_VFS_SYS_ACL_SET_FILE(conn
, fsp
->fsp_name
, the_acl_type
, the_acl
) == -1) {
2585 * Some systems allow all the above calls and only fail with no ACL support
2586 * when attempting to apply the acl. HPUX with HFS is an example of this. JRA.
2588 if (no_acl_syscall_error(errno
)) {
2589 *pacl_set_support
= False
;
2592 if (acl_group_override(conn
, psbuf
, fsp
->fsp_name
)) {
2595 DEBUG(5,("set_canon_ace_list: acl group control on and current user in file %s primary group.\n",
2599 sret
= SMB_VFS_SYS_ACL_SET_FILE(conn
, fsp
->fsp_name
, the_acl_type
, the_acl
);
2607 DEBUG(2,("set_canon_ace_list: sys_acl_set_file type %s failed for file %s (%s).\n",
2608 the_acl_type
== SMB_ACL_TYPE_DEFAULT
? "directory default" : "file",
2609 fsp
->fsp_name
, strerror(errno
) ));
2614 if (SMB_VFS_SYS_ACL_SET_FD(fsp
, the_acl
) == -1) {
2616 * Some systems allow all the above calls and only fail with no ACL support
2617 * when attempting to apply the acl. HPUX with HFS is an example of this. JRA.
2619 if (no_acl_syscall_error(errno
)) {
2620 *pacl_set_support
= False
;
2623 if (acl_group_override(conn
, psbuf
, fsp
->fsp_name
)) {
2626 DEBUG(5,("set_canon_ace_list: acl group control on and current user in file %s primary group.\n",
2630 sret
= SMB_VFS_SYS_ACL_SET_FD(fsp
, the_acl
);
2638 DEBUG(2,("set_canon_ace_list: sys_acl_set_file failed for file %s (%s).\n",
2639 fsp
->fsp_name
, strerror(errno
) ));
2649 if (the_acl
!= NULL
) {
2650 SMB_VFS_SYS_ACL_FREE_ACL(conn
, the_acl
);
2656 /****************************************************************************
2657 Find a particular canon_ace entry.
2658 ****************************************************************************/
2660 static struct canon_ace
*canon_ace_entry_for(struct canon_ace
*list
, SMB_ACL_TAG_T type
, posix_id
*id
)
2663 if (list
->type
== type
&& ((type
!= SMB_ACL_USER
&& type
!= SMB_ACL_GROUP
) ||
2664 (type
== SMB_ACL_USER
&& id
&& id
->uid
== list
->unix_ug
.uid
) ||
2665 (type
== SMB_ACL_GROUP
&& id
&& id
->gid
== list
->unix_ug
.gid
)))
2672 /****************************************************************************
2674 ****************************************************************************/
2676 SMB_ACL_T
free_empty_sys_acl(connection_struct
*conn
, SMB_ACL_T the_acl
)
2678 SMB_ACL_ENTRY_T entry
;
2682 if (SMB_VFS_SYS_ACL_GET_ENTRY(conn
, the_acl
, SMB_ACL_FIRST_ENTRY
, &entry
) != 1) {
2683 SMB_VFS_SYS_ACL_FREE_ACL(conn
, the_acl
);
2689 /****************************************************************************
2690 Convert a canon_ace to a generic 3 element permission - if possible.
2691 ****************************************************************************/
2693 #define MAP_PERM(p,mask,result) (((p) & (mask)) ? (result) : 0 )
2695 static bool convert_canon_ace_to_posix_perms( files_struct
*fsp
, canon_ace
*file_ace_list
, mode_t
*posix_perms
)
2697 int snum
= SNUM(fsp
->conn
);
2698 size_t ace_count
= count_canon_ace_list(file_ace_list
);
2700 canon_ace
*owner_ace
= NULL
;
2701 canon_ace
*group_ace
= NULL
;
2702 canon_ace
*other_ace
= NULL
;
2706 if (ace_count
!= 3) {
2707 DEBUG(3,("convert_canon_ace_to_posix_perms: Too many ACE entries for file %s to convert to \
2708 posix perms.\n", fsp
->fsp_name
));
2712 for (ace_p
= file_ace_list
; ace_p
; ace_p
= ace_p
->next
) {
2713 if (ace_p
->owner_type
== UID_ACE
)
2715 else if (ace_p
->owner_type
== GID_ACE
)
2717 else if (ace_p
->owner_type
== WORLD_ACE
)
2721 if (!owner_ace
|| !group_ace
|| !other_ace
) {
2722 DEBUG(3,("convert_canon_ace_to_posix_perms: Can't get standard entries for file %s.\n",
2727 *posix_perms
= (mode_t
)0;
2729 *posix_perms
|= owner_ace
->perms
;
2730 *posix_perms
|= MAP_PERM(group_ace
->perms
, S_IRUSR
, S_IRGRP
);
2731 *posix_perms
|= MAP_PERM(group_ace
->perms
, S_IWUSR
, S_IWGRP
);
2732 *posix_perms
|= MAP_PERM(group_ace
->perms
, S_IXUSR
, S_IXGRP
);
2733 *posix_perms
|= MAP_PERM(other_ace
->perms
, S_IRUSR
, S_IROTH
);
2734 *posix_perms
|= MAP_PERM(other_ace
->perms
, S_IWUSR
, S_IWOTH
);
2735 *posix_perms
|= MAP_PERM(other_ace
->perms
, S_IXUSR
, S_IXOTH
);
2737 /* The owner must have at least read access. */
2739 *posix_perms
|= S_IRUSR
;
2740 if (fsp
->is_directory
)
2741 *posix_perms
|= (S_IWUSR
|S_IXUSR
);
2743 /* If requested apply the masks. */
2745 /* Get the initial bits to apply. */
2747 if (fsp
->is_directory
) {
2748 and_bits
= lp_dir_security_mask(snum
);
2749 or_bits
= lp_force_dir_security_mode(snum
);
2751 and_bits
= lp_security_mask(snum
);
2752 or_bits
= lp_force_security_mode(snum
);
2755 *posix_perms
= (((*posix_perms
) & and_bits
)|or_bits
);
2757 DEBUG(10,("convert_canon_ace_to_posix_perms: converted u=%o,g=%o,w=%o to perm=0%o for file %s.\n",
2758 (int)owner_ace
->perms
, (int)group_ace
->perms
, (int)other_ace
->perms
, (int)*posix_perms
,
2764 /****************************************************************************
2765 Incoming NT ACLs on a directory can be split into a default POSIX acl (CI|OI|IO) and
2766 a normal POSIX acl. Win2k needs these split acls re-merging into one ACL
2767 with CI|OI set so it is inherited and also applies to the directory.
2768 Based on code from "Jim McDonough" <jmcd@us.ibm.com>.
2769 ****************************************************************************/
2771 static size_t merge_default_aces( SEC_ACE
*nt_ace_list
, size_t num_aces
)
2775 for (i
= 0; i
< num_aces
; i
++) {
2776 for (j
= i
+1; j
< num_aces
; j
++) {
2777 uint32 i_flags_ni
= (nt_ace_list
[i
].flags
& ~SEC_ACE_FLAG_INHERITED_ACE
);
2778 uint32 j_flags_ni
= (nt_ace_list
[j
].flags
& ~SEC_ACE_FLAG_INHERITED_ACE
);
2779 bool i_inh
= (nt_ace_list
[i
].flags
& SEC_ACE_FLAG_INHERITED_ACE
) ? True
: False
;
2780 bool j_inh
= (nt_ace_list
[j
].flags
& SEC_ACE_FLAG_INHERITED_ACE
) ? True
: False
;
2782 /* We know the lower number ACE's are file entries. */
2783 if ((nt_ace_list
[i
].type
== nt_ace_list
[j
].type
) &&
2784 (nt_ace_list
[i
].size
== nt_ace_list
[j
].size
) &&
2785 (nt_ace_list
[i
].access_mask
== nt_ace_list
[j
].access_mask
) &&
2786 sid_equal(&nt_ace_list
[i
].trustee
, &nt_ace_list
[j
].trustee
) &&
2788 (i_flags_ni
== 0) &&
2789 (j_flags_ni
== (SEC_ACE_FLAG_OBJECT_INHERIT
|
2790 SEC_ACE_FLAG_CONTAINER_INHERIT
|
2791 SEC_ACE_FLAG_INHERIT_ONLY
))) {
2793 * W2K wants to have access allowed zero access ACE's
2794 * at the end of the list. If the mask is zero, merge
2795 * the non-inherited ACE onto the inherited ACE.
2798 if (nt_ace_list
[i
].access_mask
== 0) {
2799 nt_ace_list
[j
].flags
= SEC_ACE_FLAG_OBJECT_INHERIT
|SEC_ACE_FLAG_CONTAINER_INHERIT
|
2800 (i_inh
? SEC_ACE_FLAG_INHERITED_ACE
: 0);
2801 if (num_aces
- i
- 1 > 0)
2802 memmove(&nt_ace_list
[i
], &nt_ace_list
[i
+1], (num_aces
-i
-1) *
2805 DEBUG(10,("merge_default_aces: Merging zero access ACE %u onto ACE %u.\n",
2806 (unsigned int)i
, (unsigned int)j
));
2809 * These are identical except for the flags.
2810 * Merge the inherited ACE onto the non-inherited ACE.
2813 nt_ace_list
[i
].flags
= SEC_ACE_FLAG_OBJECT_INHERIT
|SEC_ACE_FLAG_CONTAINER_INHERIT
|
2814 (i_inh
? SEC_ACE_FLAG_INHERITED_ACE
: 0);
2815 if (num_aces
- j
- 1 > 0)
2816 memmove(&nt_ace_list
[j
], &nt_ace_list
[j
+1], (num_aces
-j
-1) *
2819 DEBUG(10,("merge_default_aces: Merging ACE %u onto ACE %u.\n",
2820 (unsigned int)j
, (unsigned int)i
));
2832 * Add or Replace ACE entry.
2833 * In some cases we need to add a specific ACE for compatibility reasons.
2834 * When doing that we must make sure we are not actually creating a duplicate
2835 * entry. So we need to search whether an ACE entry already exist and eventually
2836 * replacce the access mask, or add a completely new entry if none was found.
2838 * This function assumes the array has enough space to add a new entry without
2839 * any reallocation of memory.
2842 static void add_or_replace_ace(SEC_ACE
*nt_ace_list
, size_t *num_aces
,
2843 const DOM_SID
*sid
, enum security_ace_type type
,
2844 uint32_t mask
, uint8_t flags
)
2848 /* first search for a duplicate */
2849 for (i
= 0; i
< *num_aces
; i
++) {
2850 if (sid_equal(&nt_ace_list
[i
].trustee
, sid
) &&
2851 (nt_ace_list
[i
].flags
== flags
)) break;
2854 if (i
< *num_aces
) { /* found */
2855 nt_ace_list
[i
].type
= type
;
2856 nt_ace_list
[i
].access_mask
= mask
;
2857 DEBUG(10, ("Replacing ACE %d with SID %s and flags %02x\n",
2858 i
, sid_string_dbg(sid
), flags
));
2862 /* not found, append it */
2863 init_sec_ace(&nt_ace_list
[(*num_aces
)++], sid
, type
, mask
, flags
);
2867 /****************************************************************************
2868 Reply to query a security descriptor from an fsp. If it succeeds it allocates
2869 the space for the return elements and returns the size needed to return the
2870 security descriptor. This should be the only external function needed for
2871 the UNIX style get ACL.
2872 ****************************************************************************/
2874 static NTSTATUS
posix_get_nt_acl_common(struct connection_struct
*conn
,
2876 const SMB_STRUCT_STAT
*sbuf
,
2877 struct pai_val
*pal
,
2878 SMB_ACL_T posix_acl
,
2880 uint32_t security_info
,
2886 SEC_ACL
*psa
= NULL
;
2887 size_t num_acls
= 0;
2888 size_t num_def_acls
= 0;
2889 size_t num_aces
= 0;
2890 canon_ace
*file_ace
= NULL
;
2891 canon_ace
*dir_ace
= NULL
;
2892 SEC_ACE
*nt_ace_list
= NULL
;
2893 size_t num_profile_acls
= 0;
2894 DOM_SID orig_owner_sid
;
2895 SEC_DESC
*psd
= NULL
;
2899 * Get the owner, group and world SIDs.
2902 create_file_sids(sbuf
, &owner_sid
, &group_sid
);
2904 if (lp_profile_acls(SNUM(conn
))) {
2905 /* For WXP SP1 the owner must be administrators. */
2906 sid_copy(&orig_owner_sid
, &owner_sid
);
2907 sid_copy(&owner_sid
, &global_sid_Builtin_Administrators
);
2908 sid_copy(&group_sid
, &global_sid_Builtin_Users
);
2909 num_profile_acls
= 3;
2912 if ((security_info
& DACL_SECURITY_INFORMATION
) && !(security_info
& PROTECTED_DACL_SECURITY_INFORMATION
)) {
2915 * In the optimum case Creator Owner and Creator Group would be used for
2916 * the ACL_USER_OBJ and ACL_GROUP_OBJ entries, respectively, but this
2917 * would lead to usability problems under Windows: The Creator entries
2918 * are only available in browse lists of directories and not for files;
2919 * additionally the identity of the owning group couldn't be determined.
2920 * We therefore use those identities only for Default ACLs.
2923 /* Create the canon_ace lists. */
2924 file_ace
= canonicalise_acl(conn
, name
, posix_acl
, sbuf
,
2925 &owner_sid
, &group_sid
, pal
,
2926 SMB_ACL_TYPE_ACCESS
);
2928 /* We must have *some* ACLS. */
2930 if (count_canon_ace_list(file_ace
) == 0) {
2931 DEBUG(0,("get_nt_acl : No ACLs on file (%s) !\n", name
));
2935 if (S_ISDIR(sbuf
->st_mode
) && def_acl
) {
2936 dir_ace
= canonicalise_acl(conn
, name
, def_acl
,
2938 &global_sid_Creator_Owner
,
2939 &global_sid_Creator_Group
,
2940 pal
, SMB_ACL_TYPE_DEFAULT
);
2944 * Create the NT ACE list from the canonical ace lists.
2949 enum security_ace_type nt_acl_type
;
2951 if (nt4_compatible_acls() && dir_ace
) {
2953 * NT 4 chokes if an ACL contains an INHERIT_ONLY entry
2954 * but no non-INHERIT_ONLY entry for one SID. So we only
2955 * remove entries from the Access ACL if the
2956 * corresponding Default ACL entries have also been
2957 * removed. ACEs for CREATOR-OWNER and CREATOR-GROUP
2958 * are exceptions. We can do nothing
2959 * intelligent if the Default ACL contains entries that
2960 * are not also contained in the Access ACL, so this
2961 * case will still fail under NT 4.
2964 ace
= canon_ace_entry_for(dir_ace
, SMB_ACL_OTHER
, NULL
);
2965 if (ace
&& !ace
->perms
) {
2966 DLIST_REMOVE(dir_ace
, ace
);
2969 ace
= canon_ace_entry_for(file_ace
, SMB_ACL_OTHER
, NULL
);
2970 if (ace
&& !ace
->perms
) {
2971 DLIST_REMOVE(file_ace
, ace
);
2977 * WinNT doesn't usually have Creator Group
2978 * in browse lists, so we send this entry to
2979 * WinNT even if it contains no relevant
2980 * permissions. Once we can add
2981 * Creator Group to browse lists we can
2986 ace
= canon_ace_entry_for(dir_ace
, SMB_ACL_GROUP_OBJ
, NULL
);
2987 if (ace
&& !ace
->perms
) {
2988 DLIST_REMOVE(dir_ace
, ace
);
2993 ace
= canon_ace_entry_for(file_ace
, SMB_ACL_GROUP_OBJ
, NULL
);
2994 if (ace
&& !ace
->perms
) {
2995 DLIST_REMOVE(file_ace
, ace
);
3000 num_acls
= count_canon_ace_list(file_ace
);
3001 num_def_acls
= count_canon_ace_list(dir_ace
);
3003 /* Allocate the ace list. */
3004 if ((nt_ace_list
= SMB_MALLOC_ARRAY(SEC_ACE
,num_acls
+ num_profile_acls
+ num_def_acls
)) == NULL
) {
3005 DEBUG(0,("get_nt_acl: Unable to malloc space for nt_ace_list.\n"));
3009 memset(nt_ace_list
, '\0', (num_acls
+ num_def_acls
) * sizeof(SEC_ACE
) );
3012 * Create the NT ACE list from the canonical ace lists.
3015 for (ace
= file_ace
; ace
!= NULL
; ace
= ace
->next
) {
3016 uint32_t acc
= map_canon_ace_perms(SNUM(conn
),
3019 S_ISDIR(sbuf
->st_mode
));
3020 init_sec_ace(&nt_ace_list
[num_aces
++],
3025 SEC_ACE_FLAG_INHERITED_ACE
: 0);
3028 /* The User must have access to a profile share - even
3029 * if we can't map the SID. */
3030 if (lp_profile_acls(SNUM(conn
))) {
3031 add_or_replace_ace(nt_ace_list
, &num_aces
,
3032 &global_sid_Builtin_Users
,
3033 SEC_ACE_TYPE_ACCESS_ALLOWED
,
3034 FILE_GENERIC_ALL
, 0);
3037 for (ace
= dir_ace
; ace
!= NULL
; ace
= ace
->next
) {
3038 uint32_t acc
= map_canon_ace_perms(SNUM(conn
),
3041 S_ISDIR(sbuf
->st_mode
));
3042 init_sec_ace(&nt_ace_list
[num_aces
++],
3046 SEC_ACE_FLAG_OBJECT_INHERIT
|
3047 SEC_ACE_FLAG_CONTAINER_INHERIT
|
3048 SEC_ACE_FLAG_INHERIT_ONLY
|
3050 SEC_ACE_FLAG_INHERITED_ACE
: 0));
3053 /* The User must have access to a profile share - even
3054 * if we can't map the SID. */
3055 if (lp_profile_acls(SNUM(conn
))) {
3056 add_or_replace_ace(nt_ace_list
, &num_aces
,
3057 &global_sid_Builtin_Users
,
3058 SEC_ACE_TYPE_ACCESS_ALLOWED
,
3060 SEC_ACE_FLAG_OBJECT_INHERIT
|
3061 SEC_ACE_FLAG_CONTAINER_INHERIT
|
3062 SEC_ACE_FLAG_INHERIT_ONLY
);
3066 * Merge POSIX default ACLs and normal ACLs into one NT ACE.
3067 * Win2K needs this to get the inheritance correct when replacing ACLs
3068 * on a directory tree. Based on work by Jim @ IBM.
3071 num_aces
= merge_default_aces(nt_ace_list
, num_aces
);
3073 if (lp_profile_acls(SNUM(conn
))) {
3074 for (i
= 0; i
< num_aces
; i
++) {
3075 if (sid_equal(&nt_ace_list
[i
].trustee
, &owner_sid
)) {
3076 add_or_replace_ace(nt_ace_list
, &num_aces
,
3078 nt_ace_list
[i
].type
,
3079 nt_ace_list
[i
].access_mask
,
3080 nt_ace_list
[i
].flags
);
3088 if((psa
= make_sec_acl( talloc_tos(), NT4_ACL_REVISION
, num_aces
, nt_ace_list
)) == NULL
) {
3089 DEBUG(0,("get_nt_acl: Unable to malloc space for acl.\n"));
3093 } /* security_info & DACL_SECURITY_INFORMATION */
3095 psd
= make_standard_sec_desc( talloc_tos(),
3096 (security_info
& OWNER_SECURITY_INFORMATION
) ? &owner_sid
: NULL
,
3097 (security_info
& GROUP_SECURITY_INFORMATION
) ? &group_sid
: NULL
,
3102 DEBUG(0,("get_nt_acl: Unable to malloc space for security descriptor.\n"));
3108 * Windows 2000: The DACL_PROTECTED flag in the security
3109 * descriptor marks the ACL as non-inheriting, i.e., no
3110 * ACEs from higher level directories propagate to this
3111 * ACL. In the POSIX ACL model permissions are only
3112 * inherited at file create time, so ACLs never contain
3113 * any ACEs that are inherited dynamically. The DACL_PROTECTED
3114 * flag doesn't seem to bother Windows NT.
3115 * Always set this if map acl inherit is turned off.
3117 if (get_protected_flag(pal
) || !lp_map_acl_inherit(SNUM(conn
))) {
3118 psd
->type
|= SE_DESC_DACL_PROTECTED
;
3122 dacl_sort_into_canonical_order(psd
->dacl
->aces
, (unsigned int)psd
->dacl
->num_aces
);
3130 SMB_VFS_SYS_ACL_FREE_ACL(conn
, posix_acl
);
3133 SMB_VFS_SYS_ACL_FREE_ACL(conn
, def_acl
);
3135 free_canon_ace_list(file_ace
);
3136 free_canon_ace_list(dir_ace
);
3137 free_inherited_info(pal
);
3138 SAFE_FREE(nt_ace_list
);
3140 return NT_STATUS_OK
;
3143 NTSTATUS
posix_fget_nt_acl(struct files_struct
*fsp
, uint32_t security_info
,
3146 SMB_STRUCT_STAT sbuf
;
3147 SMB_ACL_T posix_acl
= NULL
;
3148 struct pai_val
*pal
;
3152 DEBUG(10,("posix_fget_nt_acl: called for file %s\n", fsp
->fsp_name
));
3154 /* can it happen that fsp_name == NULL ? */
3155 if (fsp
->is_directory
|| fsp
->fh
->fd
== -1) {
3156 return posix_get_nt_acl(fsp
->conn
, fsp
->fsp_name
,
3157 security_info
, ppdesc
);
3160 /* Get the stat struct for the owner info. */
3161 if(SMB_VFS_FSTAT(fsp
, &sbuf
) != 0) {
3162 return map_nt_error_from_unix(errno
);
3165 /* Get the ACL from the fd. */
3166 posix_acl
= SMB_VFS_SYS_ACL_GET_FD(fsp
);
3168 pal
= fload_inherited_info(fsp
);
3170 return posix_get_nt_acl_common(fsp
->conn
, fsp
->fsp_name
, &sbuf
, pal
,
3171 posix_acl
, NULL
, security_info
, ppdesc
);
3174 NTSTATUS
posix_get_nt_acl(struct connection_struct
*conn
, const char *name
,
3175 uint32_t security_info
, SEC_DESC
**ppdesc
)
3177 SMB_STRUCT_STAT sbuf
;
3178 SMB_ACL_T posix_acl
= NULL
;
3179 SMB_ACL_T def_acl
= NULL
;
3180 struct pai_val
*pal
;
3184 DEBUG(10,("posix_get_nt_acl: called for file %s\n", name
));
3186 /* Get the stat struct for the owner info. */
3187 if(SMB_VFS_STAT(conn
, name
, &sbuf
) != 0) {
3188 return map_nt_error_from_unix(errno
);
3191 /* Get the ACL from the path. */
3192 posix_acl
= SMB_VFS_SYS_ACL_GET_FILE(conn
, name
, SMB_ACL_TYPE_ACCESS
);
3194 /* If it's a directory get the default POSIX ACL. */
3195 if(S_ISDIR(sbuf
.st_mode
)) {
3196 def_acl
= SMB_VFS_SYS_ACL_GET_FILE(conn
, name
, SMB_ACL_TYPE_DEFAULT
);
3197 def_acl
= free_empty_sys_acl(conn
, def_acl
);
3200 pal
= load_inherited_info(conn
, name
);
3202 return posix_get_nt_acl_common(conn
, name
, &sbuf
, pal
, posix_acl
,
3203 def_acl
, security_info
, ppdesc
);
3206 /****************************************************************************
3207 Try to chown a file. We will be able to chown it under the following conditions.
3209 1) If we have root privileges, then it will just work.
3210 2) If we have SeTakeOwnershipPrivilege we can change the user to the current user.
3211 3) If we have SeRestorePrivilege we can change the user to any other user.
3212 4) If we have write permission to the file and dos_filemodes is set
3213 then allow chown to the currently authenticated user.
3214 ****************************************************************************/
3216 int try_chown(connection_struct
*conn
, const char *fname
, uid_t uid
, gid_t gid
)
3222 if(!CAN_WRITE(conn
)) {
3227 /* try the direct way first */
3228 ret
= SMB_VFS_CHOWN(conn
, fname
, uid
, gid
);
3232 /* Case (2) / (3) */
3233 if (lp_enable_privileges()) {
3235 bool has_take_ownership_priv
= user_has_privileges(current_user
.nt_user_token
,
3236 &se_take_ownership
);
3237 bool has_restore_priv
= user_has_privileges(current_user
.nt_user_token
,
3241 if ( ( has_take_ownership_priv
&& ( uid
== current_user
.ut
.uid
) ) ||
3243 ( has_restore_priv
) ) {
3246 /* Keep the current file gid the same - take ownership doesn't imply group change. */
3247 ret
= SMB_VFS_CHOWN(conn
, fname
, uid
, (gid_t
)-1);
3254 if (!lp_dos_filemode(SNUM(conn
))) {
3259 /* only allow chown to the current user. This is more secure,
3260 and also copes with the case where the SID in a take ownership ACL is
3261 a local SID on the users workstation
3263 if (uid
!= current_user
.ut
.uid
) {
3268 if (SMB_VFS_STAT(conn
,fname
,&st
)) {
3272 if (!NT_STATUS_IS_OK(open_file_fchmod(conn
,fname
,&st
,&fsp
))) {
3277 /* Keep the current file gid the same. */
3278 ret
= SMB_VFS_FCHOWN(fsp
, uid
, (gid_t
)-1);
3281 close_file_fchmod(fsp
);
3287 /* Disable this - prevents ACL inheritance from the ACL editor. JRA. */
3289 /****************************************************************************
3290 Take care of parent ACL inheritance.
3291 ****************************************************************************/
3293 NTSTATUS
append_parent_acl(files_struct
*fsp
,
3294 const SEC_DESC
*pcsd
,
3295 SEC_DESC
**pp_new_sd
)
3297 SEC_DESC
*parent_sd
= NULL
;
3298 files_struct
*parent_fsp
= NULL
;
3299 TALLOC_CTX
*mem_ctx
= talloc_tos();
3300 char *parent_name
= NULL
;
3301 SEC_ACE
*new_ace
= NULL
;
3302 unsigned int num_aces
= pcsd
->dacl
->num_aces
;
3303 SMB_STRUCT_STAT sbuf
;
3307 SEC_DESC
*psd
= dup_sec_desc(talloc_tos(), pcsd
);
3308 bool is_dacl_protected
= (pcsd
->type
& SE_DESC_DACL_PROTECTED
);
3313 return NT_STATUS_NO_MEMORY
;
3316 if (!parent_dirname_talloc(mem_ctx
,
3320 return NT_STATUS_NO_MEMORY
;
3323 status
= open_directory(fsp
->conn
,
3327 FILE_READ_ATTRIBUTES
, /* Just a stat open */
3328 FILE_SHARE_NONE
, /* Ignored for stat opens */
3335 if (!NT_STATUS_IS_OK(status
)) {
3339 status
= SMB_VFS_GET_NT_ACL(parent_fsp
->conn
, parent_fsp
->fsp_name
,
3340 DACL_SECURITY_INFORMATION
, &parent_sd
);
3342 close_file(parent_fsp
, NORMAL_CLOSE
);
3344 if (!NT_STATUS_IS_OK(status
)) {
3349 * Make room for potentially all the ACLs from
3350 * the parent. We used to add the ugw triple here,
3351 * as we knew we were dealing with POSIX ACLs.
3352 * We no longer need to do so as we can guarentee
3353 * that a default ACL from the parent directory will
3354 * be well formed for POSIX ACLs if it came from a
3355 * POSIX ACL source, and if we're not writing to a
3356 * POSIX ACL sink then we don't care if it's not well
3360 num_aces
+= parent_sd
->dacl
->num_aces
;
3362 if((new_ace
= TALLOC_ZERO_ARRAY(mem_ctx
, SEC_ACE
,
3363 num_aces
)) == NULL
) {
3364 return NT_STATUS_NO_MEMORY
;
3367 /* Start by copying in all the given ACE entries. */
3368 for (i
= 0; i
< psd
->dacl
->num_aces
; i
++) {
3369 sec_ace_copy(&new_ace
[i
], &psd
->dacl
->aces
[i
]);
3373 * Note that we're ignoring "inherit permissions" here
3374 * as that really only applies to newly created files. JRA.
3377 /* Finally append any inherited ACEs. */
3378 for (j
= 0; j
< parent_sd
->dacl
->num_aces
; j
++) {
3379 SEC_ACE
*se
= &parent_sd
->dacl
->aces
[j
];
3381 if (fsp
->is_directory
) {
3382 if (!(se
->flags
& SEC_ACE_FLAG_CONTAINER_INHERIT
)) {
3383 /* Doesn't apply to a directory - ignore. */
3384 DEBUG(10,("append_parent_acl: directory %s "
3385 "ignoring non container "
3386 "inherit flags %u on ACE with sid %s "
3389 (unsigned int)se
->flags
,
3390 sid_string_dbg(&se
->trustee
),
3395 if (!(se
->flags
& SEC_ACE_FLAG_OBJECT_INHERIT
)) {
3396 /* Doesn't apply to a file - ignore. */
3397 DEBUG(10,("append_parent_acl: file %s "
3398 "ignoring non object "
3399 "inherit flags %u on ACE with sid %s "
3402 (unsigned int)se
->flags
,
3403 sid_string_dbg(&se
->trustee
),
3409 if (is_dacl_protected
) {
3410 /* If the DACL is protected it means we must
3411 * not overwrite an existing ACE entry with the
3412 * same SID. This is order N^2. Ouch :-(. JRA. */
3414 for (k
= 0; k
< psd
->dacl
->num_aces
; k
++) {
3415 if (sid_equal(&psd
->dacl
->aces
[k
].trustee
,
3420 if (k
< psd
->dacl
->num_aces
) {
3421 /* SID matched. Ignore. */
3422 DEBUG(10,("append_parent_acl: path %s "
3423 "ignoring ACE with protected sid %s "
3426 sid_string_dbg(&se
->trustee
),
3432 sec_ace_copy(&new_ace
[i
], se
);
3433 if (se
->flags
& SEC_ACE_FLAG_NO_PROPAGATE_INHERIT
) {
3434 new_ace
[i
].flags
&= ~(SEC_ACE_FLAG_VALID_INHERIT
);
3436 new_ace
[i
].flags
|= SEC_ACE_FLAG_INHERITED_ACE
;
3438 if (fsp
->is_directory
) {
3440 * Strip off any inherit only. It's applied.
3442 new_ace
[i
].flags
&= ~(SEC_ACE_FLAG_INHERIT_ONLY
);
3443 if (se
->flags
& SEC_ACE_FLAG_NO_PROPAGATE_INHERIT
) {
3444 /* No further inheritance. */
3446 ~(SEC_ACE_FLAG_CONTAINER_INHERIT
|
3447 SEC_ACE_FLAG_OBJECT_INHERIT
);
3451 * Strip off any container or inherit
3452 * flags, they can't apply to objects.
3454 new_ace
[i
].flags
&= ~(SEC_ACE_FLAG_CONTAINER_INHERIT
|
3455 SEC_ACE_FLAG_INHERIT_ONLY
|
3456 SEC_ACE_FLAG_NO_PROPAGATE_INHERIT
);
3460 DEBUG(10,("append_parent_acl: path %s "
3461 "inheriting ACE with sid %s "
3464 sid_string_dbg(&se
->trustee
),
3468 psd
->dacl
->aces
= new_ace
;
3469 psd
->dacl
->num_aces
= i
;
3470 psd
->type
&= ~(SE_DESC_DACL_AUTO_INHERITED
|
3471 SE_DESC_DACL_AUTO_INHERIT_REQ
);
3478 /****************************************************************************
3479 Reply to set a security descriptor on an fsp. security_info_sent is the
3480 description of the following NT ACL.
3481 This should be the only external function needed for the UNIX style set ACL.
3482 ****************************************************************************/
3484 NTSTATUS
set_nt_acl(files_struct
*fsp
, uint32 security_info_sent
, const SEC_DESC
*psd
)
3486 connection_struct
*conn
= fsp
->conn
;
3487 uid_t user
= (uid_t
)-1;
3488 gid_t grp
= (gid_t
)-1;
3489 SMB_STRUCT_STAT sbuf
;
3490 DOM_SID file_owner_sid
;
3491 DOM_SID file_grp_sid
;
3492 canon_ace
*file_ace_list
= NULL
;
3493 canon_ace
*dir_ace_list
= NULL
;
3494 bool acl_perms
= False
;
3495 mode_t orig_mode
= (mode_t
)0;
3497 bool set_acl_as_root
= false;
3498 bool acl_set_support
= false;
3501 DEBUG(10,("set_nt_acl: called for file %s\n", fsp
->fsp_name
));
3503 if (!CAN_WRITE(conn
)) {
3504 DEBUG(10,("set acl rejected on read-only share\n"));
3505 return NT_STATUS_MEDIA_WRITE_PROTECTED
;
3509 * Get the current state of the file.
3512 if(fsp
->is_directory
|| fsp
->fh
->fd
== -1) {
3513 if(SMB_VFS_STAT(fsp
->conn
,fsp
->fsp_name
, &sbuf
) != 0)
3514 return map_nt_error_from_unix(errno
);
3516 if(SMB_VFS_FSTAT(fsp
, &sbuf
) != 0)
3517 return map_nt_error_from_unix(errno
);
3520 /* Save the original element we check against. */
3521 orig_mode
= sbuf
.st_mode
;
3524 * Unpack the user/group/world id's.
3527 status
= unpack_nt_owners( SNUM(conn
), &user
, &grp
, security_info_sent
, psd
);
3528 if (!NT_STATUS_IS_OK(status
)) {
3533 * Do we need to chown ? If so this must be done first as the incoming
3534 * CREATOR_OWNER acl will be relative to the *new* owner, not the old.
3538 if (((user
!= (uid_t
)-1) && (sbuf
.st_uid
!= user
)) || (( grp
!= (gid_t
)-1) && (sbuf
.st_gid
!= grp
))) {
3540 DEBUG(3,("set_nt_acl: chown %s. uid = %u, gid = %u.\n",
3541 fsp
->fsp_name
, (unsigned int)user
, (unsigned int)grp
));
3543 if(try_chown( fsp
->conn
, fsp
->fsp_name
, user
, grp
) == -1) {
3544 DEBUG(3,("set_nt_acl: chown %s, %u, %u failed. Error = %s.\n",
3545 fsp
->fsp_name
, (unsigned int)user
, (unsigned int)grp
, strerror(errno
) ));
3546 if (errno
== EPERM
) {
3547 return NT_STATUS_INVALID_OWNER
;
3549 return map_nt_error_from_unix(errno
);
3553 * Recheck the current state of the file, which may have changed.
3554 * (suid/sgid bits, for instance)
3557 if(fsp
->is_directory
) {
3558 if(SMB_VFS_STAT(fsp
->conn
, fsp
->fsp_name
, &sbuf
) != 0) {
3559 return map_nt_error_from_unix(errno
);
3565 if(fsp
->fh
->fd
== -1)
3566 sret
= SMB_VFS_STAT(fsp
->conn
, fsp
->fsp_name
, &sbuf
);
3568 sret
= SMB_VFS_FSTAT(fsp
, &sbuf
);
3571 return map_nt_error_from_unix(errno
);
3574 /* Save the original element we check against. */
3575 orig_mode
= sbuf
.st_mode
;
3577 /* If we successfully chowned, we know we must
3578 * be able to set the acl, so do it as root.
3580 set_acl_as_root
= true;
3583 create_file_sids(&sbuf
, &file_owner_sid
, &file_grp_sid
);
3585 acl_perms
= unpack_canon_ace( fsp
, &sbuf
, &file_owner_sid
, &file_grp_sid
,
3586 &file_ace_list
, &dir_ace_list
, security_info_sent
, psd
);
3588 /* Ignore W2K traverse DACL set. */
3589 if (!file_ace_list
&& !dir_ace_list
) {
3590 return NT_STATUS_OK
;
3594 DEBUG(3,("set_nt_acl: cannot set permissions\n"));
3595 free_canon_ace_list(file_ace_list
);
3596 free_canon_ace_list(dir_ace_list
);
3597 return NT_STATUS_ACCESS_DENIED
;
3601 * Only change security if we got a DACL.
3604 if(!(security_info_sent
& DACL_SECURITY_INFORMATION
) || (psd
->dacl
== NULL
)) {
3605 free_canon_ace_list(file_ace_list
);
3606 free_canon_ace_list(dir_ace_list
);
3607 return NT_STATUS_OK
;
3611 * Try using the POSIX ACL set first. Fall back to chmod if
3612 * we have no ACL support on this filesystem.
3615 if (acl_perms
&& file_ace_list
) {
3616 if (set_acl_as_root
) {
3619 ret
= set_canon_ace_list(fsp
, file_ace_list
, False
, &sbuf
, &acl_set_support
);
3620 if (set_acl_as_root
) {
3623 if (acl_set_support
&& ret
== false) {
3624 DEBUG(3,("set_nt_acl: failed to set file acl on file %s (%s).\n", fsp
->fsp_name
, strerror(errno
) ));
3625 free_canon_ace_list(file_ace_list
);
3626 free_canon_ace_list(dir_ace_list
);
3627 return map_nt_error_from_unix(errno
);
3631 if (acl_perms
&& acl_set_support
&& fsp
->is_directory
) {
3633 if (set_acl_as_root
) {
3636 ret
= set_canon_ace_list(fsp
, dir_ace_list
, True
, &sbuf
, &acl_set_support
);
3637 if (set_acl_as_root
) {
3641 DEBUG(3,("set_nt_acl: failed to set default acl on directory %s (%s).\n", fsp
->fsp_name
, strerror(errno
) ));
3642 free_canon_ace_list(file_ace_list
);
3643 free_canon_ace_list(dir_ace_list
);
3644 return map_nt_error_from_unix(errno
);
3650 * No default ACL - delete one if it exists.
3653 if (set_acl_as_root
) {
3656 sret
= SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn
, fsp
->fsp_name
);
3657 if (set_acl_as_root
) {
3661 if (acl_group_override(conn
, &sbuf
, fsp
->fsp_name
)) {
3662 DEBUG(5,("set_nt_acl: acl group control on and "
3663 "current user in file %s primary group. Override delete_def_acl\n",
3667 sret
= SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn
, fsp
->fsp_name
);
3672 DEBUG(3,("set_nt_acl: sys_acl_delete_def_file failed (%s)\n", strerror(errno
)));
3673 free_canon_ace_list(file_ace_list
);
3674 free_canon_ace_list(dir_ace_list
);
3675 return map_nt_error_from_unix(errno
);
3681 if (acl_set_support
) {
3682 if (set_acl_as_root
) {
3685 store_inheritance_attributes(fsp
, file_ace_list
, dir_ace_list
,
3686 (psd
->type
& SE_DESC_DACL_PROTECTED
) ? True
: False
);
3687 if (set_acl_as_root
) {
3693 * If we cannot set using POSIX ACLs we fall back to checking if we need to chmod.
3696 if(!acl_set_support
&& acl_perms
) {
3699 if (!convert_canon_ace_to_posix_perms( fsp
, file_ace_list
, &posix_perms
)) {
3700 free_canon_ace_list(file_ace_list
);
3701 free_canon_ace_list(dir_ace_list
);
3702 DEBUG(3,("set_nt_acl: failed to convert file acl to posix permissions for file %s.\n",
3704 return NT_STATUS_ACCESS_DENIED
;
3707 if (orig_mode
!= posix_perms
) {
3710 DEBUG(3,("set_nt_acl: chmod %s. perms = 0%o.\n",
3711 fsp
->fsp_name
, (unsigned int)posix_perms
));
3713 if (set_acl_as_root
) {
3716 sret
= SMB_VFS_CHMOD(conn
,fsp
->fsp_name
, posix_perms
);
3717 if (set_acl_as_root
) {
3721 if (acl_group_override(conn
, &sbuf
, fsp
->fsp_name
)) {
3722 DEBUG(5,("set_nt_acl: acl group control on and "
3723 "current user in file %s primary group. Override chmod\n",
3727 sret
= SMB_VFS_CHMOD(conn
,fsp
->fsp_name
, posix_perms
);
3732 DEBUG(3,("set_nt_acl: chmod %s, 0%o failed. Error = %s.\n",
3733 fsp
->fsp_name
, (unsigned int)posix_perms
, strerror(errno
) ));
3734 free_canon_ace_list(file_ace_list
);
3735 free_canon_ace_list(dir_ace_list
);
3736 return map_nt_error_from_unix(errno
);
3742 free_canon_ace_list(file_ace_list
);
3743 free_canon_ace_list(dir_ace_list
);
3745 return NT_STATUS_OK
;
3748 /****************************************************************************
3749 Get the actual group bits stored on a file with an ACL. Has no effect if
3750 the file has no ACL. Needed in dosmode code where the stat() will return
3751 the mask bits, not the real group bits, for a file with an ACL.
3752 ****************************************************************************/
3754 int get_acl_group_bits( connection_struct
*conn
, const char *fname
, mode_t
*mode
)
3756 int entry_id
= SMB_ACL_FIRST_ENTRY
;
3757 SMB_ACL_ENTRY_T entry
;
3758 SMB_ACL_T posix_acl
;
3761 posix_acl
= SMB_VFS_SYS_ACL_GET_FILE(conn
, fname
, SMB_ACL_TYPE_ACCESS
);
3762 if (posix_acl
== (SMB_ACL_T
)NULL
)
3765 while (SMB_VFS_SYS_ACL_GET_ENTRY(conn
, posix_acl
, entry_id
, &entry
) == 1) {
3766 SMB_ACL_TAG_T tagtype
;
3767 SMB_ACL_PERMSET_T permset
;
3769 entry_id
= SMB_ACL_NEXT_ENTRY
;
3771 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn
, entry
, &tagtype
) ==-1)
3774 if (tagtype
== SMB_ACL_GROUP_OBJ
) {
3775 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, entry
, &permset
) == -1) {
3778 *mode
&= ~(S_IRGRP
|S_IWGRP
|S_IXGRP
);
3779 *mode
|= (SMB_VFS_SYS_ACL_GET_PERM(conn
, permset
, SMB_ACL_READ
) ? S_IRGRP
: 0);
3780 *mode
|= (SMB_VFS_SYS_ACL_GET_PERM(conn
, permset
, SMB_ACL_WRITE
) ? S_IWGRP
: 0);
3781 *mode
|= (SMB_VFS_SYS_ACL_GET_PERM(conn
, permset
, SMB_ACL_EXECUTE
) ? S_IXGRP
: 0);
3787 SMB_VFS_SYS_ACL_FREE_ACL(conn
, posix_acl
);
3791 /****************************************************************************
3792 Do a chmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
3793 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
3794 ****************************************************************************/
3796 static int chmod_acl_internals( connection_struct
*conn
, SMB_ACL_T posix_acl
, mode_t mode
)
3798 int entry_id
= SMB_ACL_FIRST_ENTRY
;
3799 SMB_ACL_ENTRY_T entry
;
3800 int num_entries
= 0;
3802 while ( SMB_VFS_SYS_ACL_GET_ENTRY(conn
, posix_acl
, entry_id
, &entry
) == 1) {
3803 SMB_ACL_TAG_T tagtype
;
3804 SMB_ACL_PERMSET_T permset
;
3807 entry_id
= SMB_ACL_NEXT_ENTRY
;
3809 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn
, entry
, &tagtype
) == -1)
3812 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, entry
, &permset
) == -1)
3818 case SMB_ACL_USER_OBJ
:
3819 perms
= unix_perms_to_acl_perms(mode
, S_IRUSR
, S_IWUSR
, S_IXUSR
);
3821 case SMB_ACL_GROUP_OBJ
:
3822 perms
= unix_perms_to_acl_perms(mode
, S_IRGRP
, S_IWGRP
, S_IXGRP
);
3826 * FIXME: The ACL_MASK entry permissions should really be set to
3827 * the union of the permissions of all ACL_USER,
3828 * ACL_GROUP_OBJ, and ACL_GROUP entries. That's what
3829 * acl_calc_mask() does, but Samba ACLs doesn't provide it.
3831 perms
= S_IRUSR
|S_IWUSR
|S_IXUSR
;
3834 perms
= unix_perms_to_acl_perms(mode
, S_IROTH
, S_IWOTH
, S_IXOTH
);
3840 if (map_acl_perms_to_permset(conn
, perms
, &permset
) == -1)
3843 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, entry
, permset
) == -1)
3848 * If this is a simple 3 element ACL or no elements then it's a standard
3849 * UNIX permission set. Just use chmod...
3852 if ((num_entries
== 3) || (num_entries
== 0))
3858 /****************************************************************************
3859 Get the access ACL of FROM, do a chmod by setting the ACL USER_OBJ,
3860 GROUP_OBJ and OTHER bits in an ACL and set the mask to rwx. Set the
3861 resulting ACL on TO. Note that name is in UNIX character set.
3862 ****************************************************************************/
3864 static int copy_access_posix_acl(connection_struct
*conn
, const char *from
, const char *to
, mode_t mode
)
3866 SMB_ACL_T posix_acl
= NULL
;
3869 if ((posix_acl
= SMB_VFS_SYS_ACL_GET_FILE(conn
, from
, SMB_ACL_TYPE_ACCESS
)) == NULL
)
3872 if ((ret
= chmod_acl_internals(conn
, posix_acl
, mode
)) == -1)
3875 ret
= SMB_VFS_SYS_ACL_SET_FILE(conn
, to
, SMB_ACL_TYPE_ACCESS
, posix_acl
);
3879 SMB_VFS_SYS_ACL_FREE_ACL(conn
, posix_acl
);
3883 /****************************************************************************
3884 Do a chmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
3885 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
3886 Note that name is in UNIX character set.
3887 ****************************************************************************/
3889 int chmod_acl(connection_struct
*conn
, const char *name
, mode_t mode
)
3891 return copy_access_posix_acl(conn
, name
, name
, mode
);
3894 /****************************************************************************
3895 Check for an existing default POSIX ACL on a directory.
3896 ****************************************************************************/
3898 static bool directory_has_default_posix_acl(connection_struct
*conn
, const char *fname
)
3900 SMB_ACL_T def_acl
= SMB_VFS_SYS_ACL_GET_FILE( conn
, fname
, SMB_ACL_TYPE_DEFAULT
);
3901 bool has_acl
= False
;
3902 SMB_ACL_ENTRY_T entry
;
3904 if (def_acl
!= NULL
&& (SMB_VFS_SYS_ACL_GET_ENTRY(conn
, def_acl
, SMB_ACL_FIRST_ENTRY
, &entry
) == 1)) {
3909 SMB_VFS_SYS_ACL_FREE_ACL(conn
, def_acl
);
3914 /****************************************************************************
3915 If the parent directory has no default ACL but it does have an Access ACL,
3916 inherit this Access ACL to file name.
3917 ****************************************************************************/
3919 int inherit_access_posix_acl(connection_struct
*conn
, const char *inherit_from_dir
,
3920 const char *name
, mode_t mode
)
3922 if (directory_has_default_posix_acl(conn
, inherit_from_dir
))
3925 return copy_access_posix_acl(conn
, inherit_from_dir
, name
, mode
);
3928 /****************************************************************************
3929 Do an fchmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
3930 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
3931 ****************************************************************************/
3933 int fchmod_acl(files_struct
*fsp
, mode_t mode
)
3935 connection_struct
*conn
= fsp
->conn
;
3936 SMB_ACL_T posix_acl
= NULL
;
3939 if ((posix_acl
= SMB_VFS_SYS_ACL_GET_FD(fsp
)) == NULL
)
3942 if ((ret
= chmod_acl_internals(conn
, posix_acl
, mode
)) == -1)
3945 ret
= SMB_VFS_SYS_ACL_SET_FD(fsp
, posix_acl
);
3949 SMB_VFS_SYS_ACL_FREE_ACL(conn
, posix_acl
);
3953 /****************************************************************************
3954 Map from wire type to permset.
3955 ****************************************************************************/
3957 static bool unix_ex_wire_to_permset(connection_struct
*conn
, unsigned char wire_perm
, SMB_ACL_PERMSET_T
*p_permset
)
3959 if (wire_perm
& ~(SMB_POSIX_ACL_READ
|SMB_POSIX_ACL_WRITE
|SMB_POSIX_ACL_EXECUTE
)) {
3963 if (SMB_VFS_SYS_ACL_CLEAR_PERMS(conn
, *p_permset
) == -1) {
3967 if (wire_perm
& SMB_POSIX_ACL_READ
) {
3968 if (SMB_VFS_SYS_ACL_ADD_PERM(conn
, *p_permset
, SMB_ACL_READ
) == -1) {
3972 if (wire_perm
& SMB_POSIX_ACL_WRITE
) {
3973 if (SMB_VFS_SYS_ACL_ADD_PERM(conn
, *p_permset
, SMB_ACL_WRITE
) == -1) {
3977 if (wire_perm
& SMB_POSIX_ACL_EXECUTE
) {
3978 if (SMB_VFS_SYS_ACL_ADD_PERM(conn
, *p_permset
, SMB_ACL_EXECUTE
) == -1) {
3985 /****************************************************************************
3986 Map from wire type to tagtype.
3987 ****************************************************************************/
3989 static bool unix_ex_wire_to_tagtype(unsigned char wire_tt
, SMB_ACL_TAG_T
*p_tt
)
3992 case SMB_POSIX_ACL_USER_OBJ
:
3993 *p_tt
= SMB_ACL_USER_OBJ
;
3995 case SMB_POSIX_ACL_USER
:
3996 *p_tt
= SMB_ACL_USER
;
3998 case SMB_POSIX_ACL_GROUP_OBJ
:
3999 *p_tt
= SMB_ACL_GROUP_OBJ
;
4001 case SMB_POSIX_ACL_GROUP
:
4002 *p_tt
= SMB_ACL_GROUP
;
4004 case SMB_POSIX_ACL_MASK
:
4005 *p_tt
= SMB_ACL_MASK
;
4007 case SMB_POSIX_ACL_OTHER
:
4008 *p_tt
= SMB_ACL_OTHER
;
4016 /****************************************************************************
4017 Create a new POSIX acl from wire permissions.
4018 FIXME ! How does the share mask/mode fit into this.... ?
4019 ****************************************************************************/
4021 static SMB_ACL_T
create_posix_acl_from_wire(connection_struct
*conn
, uint16 num_acls
, const char *pdata
)
4024 SMB_ACL_T the_acl
= SMB_VFS_SYS_ACL_INIT(conn
, num_acls
);
4026 if (the_acl
== NULL
) {
4030 for (i
= 0; i
< num_acls
; i
++) {
4031 SMB_ACL_ENTRY_T the_entry
;
4032 SMB_ACL_PERMSET_T the_permset
;
4033 SMB_ACL_TAG_T tag_type
;
4035 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn
, &the_acl
, &the_entry
) == -1) {
4036 DEBUG(0,("create_posix_acl_from_wire: Failed to create entry %u. (%s)\n",
4037 i
, strerror(errno
) ));
4041 if (!unix_ex_wire_to_tagtype(CVAL(pdata
,(i
*SMB_POSIX_ACL_ENTRY_SIZE
)), &tag_type
)) {
4042 DEBUG(0,("create_posix_acl_from_wire: invalid wire tagtype %u on entry %u.\n",
4043 CVAL(pdata
,(i
*SMB_POSIX_ACL_ENTRY_SIZE
)), i
));
4047 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn
, the_entry
, tag_type
) == -1) {
4048 DEBUG(0,("create_posix_acl_from_wire: Failed to set tagtype on entry %u. (%s)\n",
4049 i
, strerror(errno
) ));
4053 /* Get the permset pointer from the new ACL entry. */
4054 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, the_entry
, &the_permset
) == -1) {
4055 DEBUG(0,("create_posix_acl_from_wire: Failed to get permset on entry %u. (%s)\n",
4056 i
, strerror(errno
) ));
4060 /* Map from wire to permissions. */
4061 if (!unix_ex_wire_to_permset(conn
, CVAL(pdata
,(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1), &the_permset
)) {
4062 DEBUG(0,("create_posix_acl_from_wire: invalid permset %u on entry %u.\n",
4063 CVAL(pdata
,(i
*SMB_POSIX_ACL_ENTRY_SIZE
) + 1), i
));
4067 /* Now apply to the new ACL entry. */
4068 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, the_entry
, the_permset
) == -1) {
4069 DEBUG(0,("create_posix_acl_from_wire: Failed to add permset on entry %u. (%s)\n",
4070 i
, strerror(errno
) ));
4074 if (tag_type
== SMB_ACL_USER
) {
4075 uint32 uidval
= IVAL(pdata
,(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
4076 uid_t uid
= (uid_t
)uidval
;
4077 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn
, the_entry
,(void *)&uid
) == -1) {
4078 DEBUG(0,("create_posix_acl_from_wire: Failed to set uid %u on entry %u. (%s)\n",
4079 (unsigned int)uid
, i
, strerror(errno
) ));
4084 if (tag_type
== SMB_ACL_GROUP
) {
4085 uint32 gidval
= IVAL(pdata
,(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
4086 gid_t gid
= (uid_t
)gidval
;
4087 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn
, the_entry
,(void *)&gid
) == -1) {
4088 DEBUG(0,("create_posix_acl_from_wire: Failed to set gid %u on entry %u. (%s)\n",
4089 (unsigned int)gid
, i
, strerror(errno
) ));
4099 if (the_acl
!= NULL
) {
4100 SMB_VFS_SYS_ACL_FREE_ACL(conn
, the_acl
);
4105 /****************************************************************************
4106 Calls from UNIX extensions - Default POSIX ACL set.
4107 If num_def_acls == 0 and not a directory just return. If it is a directory
4108 and num_def_acls == 0 then remove the default acl. Else set the default acl
4110 ****************************************************************************/
4112 bool set_unix_posix_default_acl(connection_struct
*conn
, const char *fname
, SMB_STRUCT_STAT
*psbuf
,
4113 uint16 num_def_acls
, const char *pdata
)
4115 SMB_ACL_T def_acl
= NULL
;
4117 if (!S_ISDIR(psbuf
->st_mode
)) {
4119 DEBUG(5,("set_unix_posix_default_acl: Can't set default ACL on non-directory file %s\n", fname
));
4127 if (!num_def_acls
) {
4128 /* Remove the default ACL. */
4129 if (SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn
, fname
) == -1) {
4130 DEBUG(5,("set_unix_posix_default_acl: acl_delete_def_file failed on directory %s (%s)\n",
4131 fname
, strerror(errno
) ));
4137 if ((def_acl
= create_posix_acl_from_wire(conn
, num_def_acls
, pdata
)) == NULL
) {
4141 if (SMB_VFS_SYS_ACL_SET_FILE(conn
, fname
, SMB_ACL_TYPE_DEFAULT
, def_acl
) == -1) {
4142 DEBUG(5,("set_unix_posix_default_acl: acl_set_file failed on directory %s (%s)\n",
4143 fname
, strerror(errno
) ));
4144 SMB_VFS_SYS_ACL_FREE_ACL(conn
, def_acl
);
4148 DEBUG(10,("set_unix_posix_default_acl: set default acl for file %s\n", fname
));
4149 SMB_VFS_SYS_ACL_FREE_ACL(conn
, def_acl
);
4153 /****************************************************************************
4154 Remove an ACL from a file. As we don't have acl_delete_entry() available
4155 we must read the current acl and copy all entries except MASK, USER and GROUP
4156 to a new acl, then set that. This (at least on Linux) causes any ACL to be
4158 FIXME ! How does the share mask/mode fit into this.... ?
4159 ****************************************************************************/
4161 static bool remove_posix_acl(connection_struct
*conn
, files_struct
*fsp
, const char *fname
)
4163 SMB_ACL_T file_acl
= NULL
;
4164 int entry_id
= SMB_ACL_FIRST_ENTRY
;
4165 SMB_ACL_ENTRY_T entry
;
4167 /* Create a new ACL with only 3 entries, u/g/w. */
4168 SMB_ACL_T new_file_acl
= SMB_VFS_SYS_ACL_INIT(conn
, 3);
4169 SMB_ACL_ENTRY_T user_ent
= NULL
;
4170 SMB_ACL_ENTRY_T group_ent
= NULL
;
4171 SMB_ACL_ENTRY_T other_ent
= NULL
;
4173 if (new_file_acl
== NULL
) {
4174 DEBUG(5,("remove_posix_acl: failed to init new ACL with 3 entries for file %s.\n", fname
));
4178 /* Now create the u/g/w entries. */
4179 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn
, &new_file_acl
, &user_ent
) == -1) {
4180 DEBUG(5,("remove_posix_acl: Failed to create user entry for file %s. (%s)\n",
4181 fname
, strerror(errno
) ));
4184 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn
, user_ent
, SMB_ACL_USER_OBJ
) == -1) {
4185 DEBUG(5,("remove_posix_acl: Failed to set user entry for file %s. (%s)\n",
4186 fname
, strerror(errno
) ));
4190 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn
, &new_file_acl
, &group_ent
) == -1) {
4191 DEBUG(5,("remove_posix_acl: Failed to create group entry for file %s. (%s)\n",
4192 fname
, strerror(errno
) ));
4195 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn
, group_ent
, SMB_ACL_GROUP_OBJ
) == -1) {
4196 DEBUG(5,("remove_posix_acl: Failed to set group entry for file %s. (%s)\n",
4197 fname
, strerror(errno
) ));
4201 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn
, &new_file_acl
, &other_ent
) == -1) {
4202 DEBUG(5,("remove_posix_acl: Failed to create other entry for file %s. (%s)\n",
4203 fname
, strerror(errno
) ));
4206 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn
, other_ent
, SMB_ACL_OTHER
) == -1) {
4207 DEBUG(5,("remove_posix_acl: Failed to set other entry for file %s. (%s)\n",
4208 fname
, strerror(errno
) ));
4212 /* Get the current file ACL. */
4213 if (fsp
&& fsp
->fh
->fd
!= -1) {
4214 file_acl
= SMB_VFS_SYS_ACL_GET_FD(fsp
);
4216 file_acl
= SMB_VFS_SYS_ACL_GET_FILE( conn
, fname
, SMB_ACL_TYPE_ACCESS
);
4219 if (file_acl
== NULL
) {
4220 /* This is only returned if an error occurred. Even for a file with
4221 no acl a u/g/w acl should be returned. */
4222 DEBUG(5,("remove_posix_acl: failed to get ACL from file %s (%s).\n",
4223 fname
, strerror(errno
) ));
4227 while ( SMB_VFS_SYS_ACL_GET_ENTRY(conn
, file_acl
, entry_id
, &entry
) == 1) {
4228 SMB_ACL_TAG_T tagtype
;
4229 SMB_ACL_PERMSET_T permset
;
4231 entry_id
= SMB_ACL_NEXT_ENTRY
;
4233 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn
, entry
, &tagtype
) == -1) {
4234 DEBUG(5,("remove_posix_acl: failed to get tagtype from ACL on file %s (%s).\n",
4235 fname
, strerror(errno
) ));
4239 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn
, entry
, &permset
) == -1) {
4240 DEBUG(5,("remove_posix_acl: failed to get permset from ACL on file %s (%s).\n",
4241 fname
, strerror(errno
) ));
4245 if (tagtype
== SMB_ACL_USER_OBJ
) {
4246 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, user_ent
, permset
) == -1) {
4247 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4248 fname
, strerror(errno
) ));
4250 } else if (tagtype
== SMB_ACL_GROUP_OBJ
) {
4251 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, group_ent
, permset
) == -1) {
4252 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4253 fname
, strerror(errno
) ));
4255 } else if (tagtype
== SMB_ACL_OTHER
) {
4256 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn
, other_ent
, permset
) == -1) {
4257 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4258 fname
, strerror(errno
) ));
4263 /* Set the new empty file ACL. */
4264 if (fsp
&& fsp
->fh
->fd
!= -1) {
4265 if (SMB_VFS_SYS_ACL_SET_FD(fsp
, new_file_acl
) == -1) {
4266 DEBUG(5,("remove_posix_acl: acl_set_file failed on %s (%s)\n",
4267 fname
, strerror(errno
) ));
4271 if (SMB_VFS_SYS_ACL_SET_FILE(conn
, fname
, SMB_ACL_TYPE_ACCESS
, new_file_acl
) == -1) {
4272 DEBUG(5,("remove_posix_acl: acl_set_file failed on %s (%s)\n",
4273 fname
, strerror(errno
) ));
4283 SMB_VFS_SYS_ACL_FREE_ACL(conn
, file_acl
);
4286 SMB_VFS_SYS_ACL_FREE_ACL(conn
, new_file_acl
);
4291 /****************************************************************************
4292 Calls from UNIX extensions - POSIX ACL set.
4293 If num_def_acls == 0 then read/modify/write acl after removing all entries
4294 except SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER.
4295 ****************************************************************************/
4297 bool set_unix_posix_acl(connection_struct
*conn
, files_struct
*fsp
, const char *fname
, uint16 num_acls
, const char *pdata
)
4299 SMB_ACL_T file_acl
= NULL
;
4302 /* Remove the ACL from the file. */
4303 return remove_posix_acl(conn
, fsp
, fname
);
4306 if ((file_acl
= create_posix_acl_from_wire(conn
, num_acls
, pdata
)) == NULL
) {
4310 if (fsp
&& fsp
->fh
->fd
!= -1) {
4311 /* The preferred way - use an open fd. */
4312 if (SMB_VFS_SYS_ACL_SET_FD(fsp
, file_acl
) == -1) {
4313 DEBUG(5,("set_unix_posix_acl: acl_set_file failed on %s (%s)\n",
4314 fname
, strerror(errno
) ));
4315 SMB_VFS_SYS_ACL_FREE_ACL(conn
, file_acl
);
4319 if (SMB_VFS_SYS_ACL_SET_FILE(conn
, fname
, SMB_ACL_TYPE_ACCESS
, file_acl
) == -1) {
4320 DEBUG(5,("set_unix_posix_acl: acl_set_file failed on %s (%s)\n",
4321 fname
, strerror(errno
) ));
4322 SMB_VFS_SYS_ACL_FREE_ACL(conn
, file_acl
);
4327 DEBUG(10,("set_unix_posix_acl: set acl for file %s\n", fname
));
4328 SMB_VFS_SYS_ACL_FREE_ACL(conn
, file_acl
);
4332 /********************************************************************
4333 Pull the NT ACL from a file on disk or the OpenEventlog() access
4334 check. Caller is responsible for freeing the returned security
4335 descriptor via TALLOC_FREE(). This is designed for dealing with
4336 user space access checks in smbd outside of the VFS. For example,
4337 checking access rights in OpenEventlog().
4339 Assume we are dealing with files (for now)
4340 ********************************************************************/
4342 SEC_DESC
*get_nt_acl_no_snum( TALLOC_CTX
*ctx
, const char *fname
)
4344 SEC_DESC
*psd
, *ret_sd
;
4345 connection_struct
*conn
;
4347 struct fd_handle fh
;
4349 conn
= TALLOC_ZERO_P(ctx
, connection_struct
);
4351 DEBUG(0, ("talloc failed\n"));
4355 if (!(conn
->params
= TALLOC_P(conn
, struct share_params
))) {
4356 DEBUG(0,("get_nt_acl_no_snum: talloc() failed!\n"));
4361 conn
->params
->service
= -1;
4363 set_conn_connectpath(conn
, "/");
4365 if (!smbd_vfs_init(conn
)) {
4366 DEBUG(0,("get_nt_acl_no_snum: Unable to create a fake connection struct!\n"));
4367 conn_free_internal( conn
);
4371 ZERO_STRUCT( finfo
);
4378 finfo
.fsp_name
= CONST_DISCARD(char *,fname
);
4380 if (!NT_STATUS_IS_OK(SMB_VFS_FGET_NT_ACL( &finfo
, DACL_SECURITY_INFORMATION
, &psd
))) {
4381 DEBUG(0,("get_nt_acl_no_snum: get_nt_acl returned zero.\n"));
4382 conn_free_internal( conn
);
4386 ret_sd
= dup_sec_desc( ctx
, psd
);
4388 conn_free_internal( conn
);