Fix profile acls in some corner cases
[Samba/bb.git] / source / smbd / posix_acls.c
bloba319c58aa309d3a5a76279f197dfe2d31e2d53c6
1 /*
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/>.
22 #include "includes.h"
24 extern struct current_user current_user;
25 extern const struct generic_mapping file_generic_mapping;
27 #undef DBGC_CLASS
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 {
38 uid_t uid;
39 gid_t gid;
40 int world;
41 } posix_id;
43 typedef struct canon_ace {
44 struct canon_ace *next, *prev;
45 SMB_ACL_TAG_T type;
46 mode_t perms; /* Only use S_I(R|W|X)USR mode bits here. */
47 DOM_SID trustee;
48 enum ace_owner owner_type;
49 enum ace_attribute attr;
50 posix_id unix_ug;
51 bool inherited;
52 } canon_ace;
54 #define ALL_ACE_PERMS (S_IRUSR|S_IWUSR|S_IXUSR)
57 * EA format of user.SAMBA_PAI (Samba_Posix_Acl_Interitance)
58 * attribute on disk.
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
72 #define PAI_VERSION 1
73 #define PAI_ACL_FLAG_PROTECTED 0x1
74 #define PAI_ENTRY_LENGTH 5
77 * In memory format of user.SAMBA_PAI attribute.
80 struct pai_entry {
81 struct pai_entry *next, *prev;
82 enum ace_owner owner_type;
83 posix_id unix_ug;
86 struct pai_val {
87 bool pai_protected;
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) {
101 case UID_ACE:
102 DEBUG(10,("get_pai_entry_val: uid = %u\n", (unsigned int)paie->unix_ug.uid ));
103 return (uint32)paie->unix_ug.uid;
104 case GID_ACE:
105 DEBUG(10,("get_pai_entry_val: gid = %u\n", (unsigned int)paie->unix_ug.gid ));
106 return (uint32)paie->unix_ug.gid;
107 case WORLD_ACE:
108 default:
109 DEBUG(10,("get_pai_entry_val: world ace\n"));
110 return (uint32)-1;
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) {
121 case UID_ACE:
122 DEBUG(10,("get_entry_val: uid = %u\n", (unsigned int)ace_entry->unix_ug.uid ));
123 return (uint32)ace_entry->unix_ug.uid;
124 case GID_ACE:
125 DEBUG(10,("get_entry_val: gid = %u\n", (unsigned int)ace_entry->unix_ug.gid ));
126 return (uint32)ace_entry->unix_ug.gid;
127 case WORLD_ACE:
128 default:
129 DEBUG(10,("get_entry_val: world ace\n"));
130 return (uint32)-1;
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)
144 num_entries++;
145 return num_entries;
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)
162 num_entries++;
164 for (ace_list = dir_ace_list; ace_list; ace_list = ace_list->next)
165 if (ace_list->inherited)
166 num_def_entries++;
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);
173 if (!pai_buf) {
174 return NULL;
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;
208 return pai_buf;
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)
218 int ret;
219 size_t store_size;
220 char *pai_buf;
222 if (!lp_map_acl_inherit(SNUM(fsp->conn)))
223 return;
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);
234 else
235 SMB_VFS_REMOVEXATTR(fsp->conn, fsp->fsp_name, SAMBA_POSIX_INHERITANCE_EA_NAME);
236 return;
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);
244 else
245 ret = SMB_VFS_SETXATTR(fsp->conn,fsp->fsp_name, SAMBA_POSIX_INHERITANCE_EA_NAME,
246 pai_buf, store_size, 0);
248 SAFE_FREE(pai_buf);
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)
261 if (pal) {
262 struct pai_entry *paie, *paie_next;
263 for (paie = pal->entry_list; paie; paie = paie_next) {
264 paie_next = paie->next;
265 SAFE_FREE(paie);
267 for (paie = pal->def_entry_list; paie; paie = paie_next) {
268 paie_next = paie->next;
269 SAFE_FREE(paie);
271 SAFE_FREE(pal);
275 /************************************************************************
276 Was this ACL protected ?
277 ************************************************************************/
279 static bool get_protected_flag(struct pai_val *pal)
281 if (!pal)
282 return False;
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;
294 if (!pal)
295 return False;
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))
301 return True;
303 return False;
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)
312 uint16 num_entries;
313 uint16 num_def_entries;
315 if (pai_buf_data_size < PAI_ENTRIES_BASE) {
316 /* Corrupted - too small. */
317 return False;
320 if (CVAL(pai_buf,PAI_VERSION_OFFSET) != PAI_VERSION)
321 return False;
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)
330 return False;
332 return True;
336 /************************************************************************
337 Convert to in-memory format.
338 ************************************************************************/
340 static struct pai_val *create_pai_val(char *buf, size_t size)
342 char *entry_offset;
343 struct pai_val *paiv = NULL;
344 int i;
346 if (!check_pai_ok(buf, size))
347 return NULL;
349 paiv = SMB_MALLOC_P(struct pai_val);
350 if (!paiv)
351 return NULL;
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);
369 if (!paie) {
370 free_inherited_info(paiv);
371 return NULL;
374 paie->owner_type = (enum ace_owner)CVAL(entry_offset,0);
375 switch( paie->owner_type) {
376 case UID_ACE:
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 ));
379 break;
380 case GID_ACE:
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 ));
383 break;
384 case WORLD_ACE:
385 paie->unix_ug.world = -1;
386 DEBUG(10,("create_pai_val: world ace\n"));
387 break;
388 default:
389 free_inherited_info(paiv);
390 return NULL;
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);
400 if (!paie) {
401 free_inherited_info(paiv);
402 return NULL;
405 paie->owner_type = (enum ace_owner)CVAL(entry_offset,0);
406 switch( paie->owner_type) {
407 case UID_ACE:
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 ));
410 break;
411 case GID_ACE:
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 ));
414 break;
415 case WORLD_ACE:
416 paie->unix_ug.world = -1;
417 DEBUG(10,("create_pai_val: (def) world ace\n"));
418 break;
419 default:
420 free_inherited_info(paiv);
421 return NULL;
423 entry_offset += PAI_ENTRY_LENGTH;
424 DLIST_ADD(paiv->def_entry_list, paie);
427 return paiv;
430 /************************************************************************
431 Load the user.SAMBA_PAI attribute.
432 ************************************************************************/
434 static struct pai_val *fload_inherited_info(files_struct *fsp)
436 char *pai_buf;
437 size_t pai_buf_size = 1024;
438 struct pai_val *paiv = NULL;
439 ssize_t ret;
441 if (!lp_map_acl_inherit(SNUM(fsp->conn)))
442 return NULL;
444 if ((pai_buf = (char *)SMB_MALLOC(pai_buf_size)) == NULL)
445 return NULL;
447 do {
448 if (fsp->fh->fd != -1)
449 ret = SMB_VFS_FGETXATTR(fsp, SAMBA_POSIX_INHERITANCE_EA_NAME,
450 pai_buf, pai_buf_size);
451 else
452 ret = SMB_VFS_GETXATTR(fsp->conn,fsp->fsp_name,SAMBA_POSIX_INHERITANCE_EA_NAME,
453 pai_buf, pai_buf_size);
455 if (ret == -1) {
456 if (errno != ERANGE) {
457 break;
459 /* Buffer too small - enlarge it. */
460 pai_buf_size *= 2;
461 SAFE_FREE(pai_buf);
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)
466 return NULL;
468 } while (ret == -1);
470 DEBUG(10,("load_inherited_info: ret = %lu for file %s\n", (unsigned long)ret, fsp->fsp_name));
472 if (ret == -1) {
473 /* No attribute or not supported. */
474 #if defined(ENOATTR)
475 if (errno != ENOATTR)
476 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
477 #else
478 if (errno != ENOSYS)
479 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
480 #endif
481 SAFE_FREE(pai_buf);
482 return NULL;
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));
490 SAFE_FREE(pai_buf);
491 return paiv;
494 /************************************************************************
495 Load the user.SAMBA_PAI attribute.
496 ************************************************************************/
498 static struct pai_val *load_inherited_info(const struct connection_struct *conn,
499 const char *fname)
501 char *pai_buf;
502 size_t pai_buf_size = 1024;
503 struct pai_val *paiv = NULL;
504 ssize_t ret;
506 if (!lp_map_acl_inherit(SNUM(conn))) {
507 return NULL;
510 if ((pai_buf = (char *)SMB_MALLOC(pai_buf_size)) == NULL) {
511 return NULL;
514 do {
515 ret = SMB_VFS_GETXATTR(conn, fname,
516 SAMBA_POSIX_INHERITANCE_EA_NAME,
517 pai_buf, pai_buf_size);
519 if (ret == -1) {
520 if (errno != ERANGE) {
521 break;
523 /* Buffer too small - enlarge it. */
524 pai_buf_size *= 2;
525 SAFE_FREE(pai_buf);
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)
530 return NULL;
532 } while (ret == -1);
534 DEBUG(10,("load_inherited_info: ret = %lu for file %s\n", (unsigned long)ret, fname));
536 if (ret == -1) {
537 /* No attribute or not supported. */
538 #if defined(ENOATTR)
539 if (errno != ENOATTR)
540 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
541 #else
542 if (errno != ENOSYS)
543 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
544 #endif
545 SAFE_FREE(pai_buf);
546 return NULL;
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));
555 SAFE_FREE(pai_buf);
556 return paiv;
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 )
569 size_t count = 0;
570 canon_ace *ace;
572 for (ace = l_head; ace; ace = ace->next)
573 count++;
575 return count;
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) {
587 next = list->next;
588 DLIST_REMOVE(l_head, list);
589 SAFE_FREE(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);
601 if (dst_ace == NULL)
602 return NULL;
604 *dst_ace = *src_ace;
605 dst_ace->prev = dst_ace->next = NULL;
606 return dst_ace;
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 );
623 } else
624 dbgtext( "other ");
625 switch (pace->type) {
626 case SMB_ACL_USER:
627 dbgtext( "SMB_ACL_USER ");
628 break;
629 case SMB_ACL_USER_OBJ:
630 dbgtext( "SMB_ACL_USER_OBJ ");
631 break;
632 case SMB_ACL_GROUP:
633 dbgtext( "SMB_ACL_GROUP ");
634 break;
635 case SMB_ACL_GROUP_OBJ:
636 dbgtext( "SMB_ACL_GROUP_OBJ ");
637 break;
638 case SMB_ACL_OTHER:
639 dbgtext( "SMB_ACL_OTHER ");
640 break;
641 default:
642 dbgtext( "MASK " );
643 break;
645 if (pace->inherited)
646 dbgtext( "(inherited) ");
647 dbgtext( "perms ");
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)
659 int count = 0;
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)
674 mode_t ret = 0;
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);
680 return ret;
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)
689 mode_t ret = 0;
691 if (mode & r_mask)
692 ret |= S_IRUSR;
693 if (mode & w_mask)
694 ret |= S_IWUSR;
695 if (mode & x_mask)
696 ret |= S_IXUSR;
698 return ret;
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)
709 return -1;
710 if (mode & S_IRUSR) {
711 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_READ) == -1)
712 return -1;
714 if (mode & S_IWUSR) {
715 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_WRITE) == -1)
716 return -1;
718 if (mode & S_IXUSR) {
719 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_EXECUTE) == -1)
720 return -1;
722 return 0;
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)) {
742 return True;
744 if (ace1->owner_type == ace2->owner_type) {
745 if (ace1->owner_type == UID_ACE &&
746 ace1->unix_ug.uid == ace2->unix_ug.uid) {
747 return True;
748 } else if (ace1->owner_type == GID_ACE &&
749 ace1->unix_ug.gid == ace2->unix_ug.gid) {
750 return True;
753 return False;
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) {
774 canon_ace *curr_ace;
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);
796 SAFE_FREE(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) {
809 canon_ace *curr_ace;
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);
841 SAFE_FREE(curr_ace);
842 curr_ace_outer_next = curr_ace_outer->next; /* We may have deleted the link. */
844 } else {
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);
858 break;
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);
883 } else
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,
896 mode_t perms,
897 bool directory_ace)
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)) {
904 if (directory_ace) {
905 nt_mask = UNIX_DIRECTORY_ACCESS_RWX;
906 } else {
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;
921 else
922 nt_mask = 0;
923 } else {
924 if (directory_ace) {
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 );
928 } else {
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 ));
938 return 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)
951 mode_t mode = 0;
953 switch(type) {
954 case S_IRUSR:
955 if((*mask) & GENERIC_ALL_ACCESS)
956 mode = S_IRUSR|S_IWUSR|S_IXUSR;
957 else {
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;
962 break;
963 case S_IRGRP:
964 if((*mask) & GENERIC_ALL_ACCESS)
965 mode = S_IRGRP|S_IWGRP|S_IXGRP;
966 else {
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;
971 break;
972 case S_IROTH:
973 if((*mask) & GENERIC_ALL_ACCESS)
974 mode = S_IROTH|S_IWOTH|S_IXOTH;
975 else {
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;
980 break;
983 return mode;
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)
992 DOM_SID owner_sid;
993 DOM_SID grp_sid;
995 *puser = (uid_t)-1;
996 *pgrp = (gid_t)-1;
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
1022 * reasonably */
1023 *puser = current_user.ut.uid;
1024 } else {
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
1045 * reasonably */
1046 *pgrp = current_user.ut.gid;
1047 } else {
1048 DEBUG(3,("unpack_nt_owners: unable to validate"
1049 " group sid.\n"));
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,
1068 mode_t type)
1070 mode_t and_bits = (mode_t)0;
1071 mode_t or_bits = (mode_t)0;
1073 /* Get the initial bits to apply. */
1075 if (is_directory) {
1076 and_bits = lp_dir_security_mask(params->service);
1077 or_bits = lp_force_dir_security_mode(params->service);
1078 } else {
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. */
1084 switch(type) {
1085 case S_IRUSR:
1086 /* Ensure owner has read access. */
1087 pace->perms |= S_IRUSR;
1088 if (is_directory)
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);
1092 break;
1093 case S_IRGRP:
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);
1096 break;
1097 case S_IROTH:
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);
1100 break;
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))
1118 return True;
1120 /* Assume that the current user is in the current group (force group) */
1122 if (uid_ace->unix_ug.uid == current_user.ut.uid && group_ace->unix_ug.gid == current_user.ut.gid)
1123 return True;
1125 /* u_name talloc'ed off tos. */
1126 u_name = uidtoname(uid_ace->unix_ug.uid);
1127 if (!u_name) {
1128 return False;
1130 return user_in_group_sid(u_name, &group_ace->trustee);
1133 /****************************************************************************
1134 A well formed POSIX file or default ACL has at least 3 entries, a
1135 SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER_OBJ.
1136 In addition, the owner must always have at least read access.
1137 When using this call on get_acl, the pst struct is valid and contains
1138 the mode of the file. When using this call on set_acl, the pst struct has
1139 been modified to have a mode containing the default for this file or directory
1140 type.
1141 ****************************************************************************/
1143 static bool ensure_canon_entry_valid(canon_ace **pp_ace,
1144 const struct share_params *params,
1145 const bool is_directory,
1146 const DOM_SID *pfile_owner_sid,
1147 const DOM_SID *pfile_grp_sid,
1148 const SMB_STRUCT_STAT *pst,
1149 bool setting_acl)
1151 canon_ace *pace;
1152 bool got_user = False;
1153 bool got_grp = False;
1154 bool got_other = False;
1155 canon_ace *pace_other = NULL;
1157 for (pace = *pp_ace; pace; pace = pace->next) {
1158 if (pace->type == SMB_ACL_USER_OBJ) {
1160 if (setting_acl)
1161 apply_default_perms(params, is_directory, pace, S_IRUSR);
1162 got_user = True;
1164 } else if (pace->type == SMB_ACL_GROUP_OBJ) {
1167 * Ensure create mask/force create mode is respected on set.
1170 if (setting_acl)
1171 apply_default_perms(params, is_directory, pace, S_IRGRP);
1172 got_grp = True;
1174 } else if (pace->type == SMB_ACL_OTHER) {
1177 * Ensure create mask/force create mode is respected on set.
1180 if (setting_acl)
1181 apply_default_perms(params, is_directory, pace, S_IROTH);
1182 got_other = True;
1183 pace_other = pace;
1187 if (!got_user) {
1188 if ((pace = SMB_MALLOC_P(canon_ace)) == NULL) {
1189 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1190 return False;
1193 ZERO_STRUCTP(pace);
1194 pace->type = SMB_ACL_USER_OBJ;
1195 pace->owner_type = UID_ACE;
1196 pace->unix_ug.uid = pst->st_uid;
1197 pace->trustee = *pfile_owner_sid;
1198 pace->attr = ALLOW_ACE;
1200 if (setting_acl) {
1201 /* See if the owning user is in any of the other groups in
1202 the ACE. If so, OR in the permissions from that group. */
1204 bool group_matched = False;
1205 canon_ace *pace_iter;
1207 for (pace_iter = *pp_ace; pace_iter; pace_iter = pace_iter->next) {
1208 if (pace_iter->type == SMB_ACL_GROUP_OBJ || pace_iter->type == SMB_ACL_GROUP) {
1209 if (uid_entry_in_group(pace, pace_iter)) {
1210 pace->perms |= pace_iter->perms;
1211 group_matched = True;
1216 /* If we only got an "everyone" perm, just use that. */
1217 if (!group_matched) {
1218 if (got_other)
1219 pace->perms = pace_other->perms;
1220 else
1221 pace->perms = 0;
1224 apply_default_perms(params, is_directory, pace, S_IRUSR);
1225 } else {
1226 pace->perms = unix_perms_to_acl_perms(pst->st_mode, S_IRUSR, S_IWUSR, S_IXUSR);
1229 DLIST_ADD(*pp_ace, pace);
1232 if (!got_grp) {
1233 if ((pace = SMB_MALLOC_P(canon_ace)) == NULL) {
1234 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1235 return False;
1238 ZERO_STRUCTP(pace);
1239 pace->type = SMB_ACL_GROUP_OBJ;
1240 pace->owner_type = GID_ACE;
1241 pace->unix_ug.uid = pst->st_gid;
1242 pace->trustee = *pfile_grp_sid;
1243 pace->attr = ALLOW_ACE;
1244 if (setting_acl) {
1245 /* If we only got an "everyone" perm, just use that. */
1246 if (got_other)
1247 pace->perms = pace_other->perms;
1248 else
1249 pace->perms = 0;
1250 apply_default_perms(params, is_directory, pace, S_IRGRP);
1251 } else {
1252 pace->perms = unix_perms_to_acl_perms(pst->st_mode, S_IRGRP, S_IWGRP, S_IXGRP);
1255 DLIST_ADD(*pp_ace, pace);
1258 if (!got_other) {
1259 if ((pace = SMB_MALLOC_P(canon_ace)) == NULL) {
1260 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1261 return False;
1264 ZERO_STRUCTP(pace);
1265 pace->type = SMB_ACL_OTHER;
1266 pace->owner_type = WORLD_ACE;
1267 pace->unix_ug.world = -1;
1268 pace->trustee = global_sid_World;
1269 pace->attr = ALLOW_ACE;
1270 if (setting_acl) {
1271 pace->perms = 0;
1272 apply_default_perms(params, is_directory, pace, S_IROTH);
1273 } else
1274 pace->perms = unix_perms_to_acl_perms(pst->st_mode, S_IROTH, S_IWOTH, S_IXOTH);
1276 DLIST_ADD(*pp_ace, pace);
1279 return True;
1282 /****************************************************************************
1283 Check if a POSIX ACL has the required SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ entries.
1284 If it does not have them, check if there are any entries where the trustee is the
1285 file owner or the owning group, and map these to SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ.
1286 ****************************************************************************/
1288 static void check_owning_objs(canon_ace *ace, DOM_SID *pfile_owner_sid, DOM_SID *pfile_grp_sid)
1290 bool got_user_obj, got_group_obj;
1291 canon_ace *current_ace;
1292 int i, entries;
1294 entries = count_canon_ace_list(ace);
1295 got_user_obj = False;
1296 got_group_obj = False;
1298 for (i=0, current_ace = ace; i < entries; i++, current_ace = current_ace->next) {
1299 if (current_ace->type == SMB_ACL_USER_OBJ)
1300 got_user_obj = True;
1301 else if (current_ace->type == SMB_ACL_GROUP_OBJ)
1302 got_group_obj = True;
1304 if (got_user_obj && got_group_obj) {
1305 DEBUG(10,("check_owning_objs: ACL had owning user/group entries.\n"));
1306 return;
1309 for (i=0, current_ace = ace; i < entries; i++, current_ace = current_ace->next) {
1310 if (!got_user_obj && current_ace->owner_type == UID_ACE &&
1311 sid_equal(&current_ace->trustee, pfile_owner_sid)) {
1312 current_ace->type = SMB_ACL_USER_OBJ;
1313 got_user_obj = True;
1315 if (!got_group_obj && current_ace->owner_type == GID_ACE &&
1316 sid_equal(&current_ace->trustee, pfile_grp_sid)) {
1317 current_ace->type = SMB_ACL_GROUP_OBJ;
1318 got_group_obj = True;
1321 if (!got_user_obj)
1322 DEBUG(10,("check_owning_objs: ACL is missing an owner entry.\n"));
1323 if (!got_group_obj)
1324 DEBUG(10,("check_owning_objs: ACL is missing an owning group entry.\n"));
1327 /****************************************************************************
1328 Unpack a SEC_DESC into two canonical ace lists.
1329 ****************************************************************************/
1331 static bool create_canon_ace_lists(files_struct *fsp,
1332 SMB_STRUCT_STAT *pst,
1333 DOM_SID *pfile_owner_sid,
1334 DOM_SID *pfile_grp_sid,
1335 canon_ace **ppfile_ace,
1336 canon_ace **ppdir_ace,
1337 const SEC_ACL *dacl)
1339 bool all_aces_are_inherit_only = (fsp->is_directory ? True : False);
1340 canon_ace *file_ace = NULL;
1341 canon_ace *dir_ace = NULL;
1342 canon_ace *current_ace = NULL;
1343 bool got_dir_allow = False;
1344 bool got_file_allow = False;
1345 int i, j;
1347 *ppfile_ace = NULL;
1348 *ppdir_ace = NULL;
1351 * Convert the incoming ACL into a more regular form.
1354 for(i = 0; i < dacl->num_aces; i++) {
1355 SEC_ACE *psa = &dacl->aces[i];
1357 if((psa->type != SEC_ACE_TYPE_ACCESS_ALLOWED) && (psa->type != SEC_ACE_TYPE_ACCESS_DENIED)) {
1358 DEBUG(3,("create_canon_ace_lists: unable to set anything but an ALLOW or DENY ACE.\n"));
1359 return False;
1362 if (nt4_compatible_acls()) {
1364 * The security mask may be UNIX_ACCESS_NONE which should map into
1365 * no permissions (we overload the WRITE_OWNER bit for this) or it
1366 * should be one of the ALL/EXECUTE/READ/WRITE bits. Arrange for this
1367 * to be so. Any other bits override the UNIX_ACCESS_NONE bit.
1371 * Convert GENERIC bits to specific bits.
1374 se_map_generic(&psa->access_mask, &file_generic_mapping);
1376 psa->access_mask &= (UNIX_ACCESS_NONE|FILE_ALL_ACCESS);
1378 if(psa->access_mask != UNIX_ACCESS_NONE)
1379 psa->access_mask &= ~UNIX_ACCESS_NONE;
1384 * Deal with the fact that NT 4.x re-writes the canonical format
1385 * that we return for default ACLs. If a directory ACE is identical
1386 * to a inherited directory ACE then NT changes the bits so that the
1387 * first ACE is set to OI|IO and the second ACE for this SID is set
1388 * to CI. We need to repair this. JRA.
1391 for(i = 0; i < dacl->num_aces; i++) {
1392 SEC_ACE *psa1 = &dacl->aces[i];
1394 for (j = i + 1; j < dacl->num_aces; j++) {
1395 SEC_ACE *psa2 = &dacl->aces[j];
1397 if (psa1->access_mask != psa2->access_mask)
1398 continue;
1400 if (!sid_equal(&psa1->trustee, &psa2->trustee))
1401 continue;
1404 * Ok - permission bits and SIDs are equal.
1405 * Check if flags were re-written.
1408 if (psa1->flags & SEC_ACE_FLAG_INHERIT_ONLY) {
1410 psa1->flags |= (psa2->flags & (SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT));
1411 psa2->flags &= ~(SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT);
1413 } else if (psa2->flags & SEC_ACE_FLAG_INHERIT_ONLY) {
1415 psa2->flags |= (psa1->flags & (SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT));
1416 psa1->flags &= ~(SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT);
1422 for(i = 0; i < dacl->num_aces; i++) {
1423 SEC_ACE *psa = &dacl->aces[i];
1426 * Create a cannon_ace entry representing this NT DACL ACE.
1429 if ((current_ace = SMB_MALLOC_P(canon_ace)) == NULL) {
1430 free_canon_ace_list(file_ace);
1431 free_canon_ace_list(dir_ace);
1432 DEBUG(0,("create_canon_ace_lists: malloc fail.\n"));
1433 return False;
1436 ZERO_STRUCTP(current_ace);
1438 sid_copy(&current_ace->trustee, &psa->trustee);
1441 * Try and work out if the SID is a user or group
1442 * as we need to flag these differently for POSIX.
1443 * Note what kind of a POSIX ACL this should map to.
1446 if( sid_equal(&current_ace->trustee, &global_sid_World)) {
1447 current_ace->owner_type = WORLD_ACE;
1448 current_ace->unix_ug.world = -1;
1449 current_ace->type = SMB_ACL_OTHER;
1450 } else if (sid_equal(&current_ace->trustee, &global_sid_Creator_Owner)) {
1451 current_ace->owner_type = UID_ACE;
1452 current_ace->unix_ug.uid = pst->st_uid;
1453 current_ace->type = SMB_ACL_USER_OBJ;
1456 * The Creator Owner entry only specifies inheritable permissions,
1457 * never access permissions. WinNT doesn't always set the ACE to
1458 *INHERIT_ONLY, though.
1461 if (nt4_compatible_acls())
1462 psa->flags |= SEC_ACE_FLAG_INHERIT_ONLY;
1463 } else if (sid_equal(&current_ace->trustee, &global_sid_Creator_Group)) {
1464 current_ace->owner_type = GID_ACE;
1465 current_ace->unix_ug.gid = pst->st_gid;
1466 current_ace->type = SMB_ACL_GROUP_OBJ;
1469 * The Creator Group entry only specifies inheritable permissions,
1470 * never access permissions. WinNT doesn't always set the ACE to
1471 *INHERIT_ONLY, though.
1473 if (nt4_compatible_acls())
1474 psa->flags |= SEC_ACE_FLAG_INHERIT_ONLY;
1476 } else if (sid_to_uid( &current_ace->trustee, &current_ace->unix_ug.uid)) {
1477 current_ace->owner_type = UID_ACE;
1478 /* If it's the owning user, this is a user_obj, not
1479 * a user. */
1480 if (current_ace->unix_ug.uid == pst->st_uid) {
1481 current_ace->type = SMB_ACL_USER_OBJ;
1482 } else {
1483 current_ace->type = SMB_ACL_USER;
1485 } else if (sid_to_gid( &current_ace->trustee, &current_ace->unix_ug.gid)) {
1486 current_ace->owner_type = GID_ACE;
1487 /* If it's the primary group, this is a group_obj, not
1488 * a group. */
1489 if (current_ace->unix_ug.gid == pst->st_gid) {
1490 current_ace->type = SMB_ACL_GROUP_OBJ;
1491 } else {
1492 current_ace->type = SMB_ACL_GROUP;
1494 } else {
1496 * Silently ignore map failures in non-mappable SIDs (NT Authority, BUILTIN etc).
1499 if (non_mappable_sid(&psa->trustee)) {
1500 DEBUG(10, ("create_canon_ace_lists: ignoring "
1501 "non-mappable SID %s\n",
1502 sid_string_dbg(&psa->trustee)));
1503 SAFE_FREE(current_ace);
1504 continue;
1507 free_canon_ace_list(file_ace);
1508 free_canon_ace_list(dir_ace);
1509 DEBUG(0, ("create_canon_ace_lists: unable to map SID "
1510 "%s to uid or gid.\n",
1511 sid_string_dbg(&current_ace->trustee)));
1512 SAFE_FREE(current_ace);
1513 return False;
1517 * Map the given NT permissions into a UNIX mode_t containing only
1518 * S_I(R|W|X)USR bits.
1521 current_ace->perms |= map_nt_perms( &psa->access_mask, S_IRUSR);
1522 current_ace->attr = (psa->type == SEC_ACE_TYPE_ACCESS_ALLOWED) ? ALLOW_ACE : DENY_ACE;
1523 current_ace->inherited = ((psa->flags & SEC_ACE_FLAG_INHERITED_ACE) ? True : False);
1526 * Now add the created ace to either the file list, the directory
1527 * list, or both. We *MUST* preserve the order here (hence we use
1528 * DLIST_ADD_END) as NT ACLs are order dependent.
1531 if (fsp->is_directory) {
1534 * We can only add to the default POSIX ACE list if the ACE is
1535 * designed to be inherited by both files and directories.
1538 if ((psa->flags & (SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT)) ==
1539 (SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT)) {
1541 DLIST_ADD_END(dir_ace, current_ace, canon_ace *);
1544 * Note if this was an allow ace. We can't process
1545 * any further deny ace's after this.
1548 if (current_ace->attr == ALLOW_ACE)
1549 got_dir_allow = True;
1551 if ((current_ace->attr == DENY_ACE) && got_dir_allow) {
1552 DEBUG(0,("create_canon_ace_lists: malformed ACL in inheritable ACL ! \
1553 Deny entry after Allow entry. Failing to set on file %s.\n", fsp->fsp_name ));
1554 free_canon_ace_list(file_ace);
1555 free_canon_ace_list(dir_ace);
1556 return False;
1559 if( DEBUGLVL( 10 )) {
1560 dbgtext("create_canon_ace_lists: adding dir ACL:\n");
1561 print_canon_ace( current_ace, 0);
1565 * If this is not an inherit only ACE we need to add a duplicate
1566 * to the file acl.
1569 if (!(psa->flags & SEC_ACE_FLAG_INHERIT_ONLY)) {
1570 canon_ace *dup_ace = dup_canon_ace(current_ace);
1572 if (!dup_ace) {
1573 DEBUG(0,("create_canon_ace_lists: malloc fail !\n"));
1574 free_canon_ace_list(file_ace);
1575 free_canon_ace_list(dir_ace);
1576 return False;
1580 * We must not free current_ace here as its
1581 * pointer is now owned by the dir_ace list.
1583 current_ace = dup_ace;
1584 } else {
1586 * We must not free current_ace here as its
1587 * pointer is now owned by the dir_ace list.
1589 current_ace = NULL;
1595 * Only add to the file ACL if not inherit only.
1598 if (current_ace && !(psa->flags & SEC_ACE_FLAG_INHERIT_ONLY)) {
1599 DLIST_ADD_END(file_ace, current_ace, canon_ace *);
1602 * Note if this was an allow ace. We can't process
1603 * any further deny ace's after this.
1606 if (current_ace->attr == ALLOW_ACE)
1607 got_file_allow = True;
1609 if ((current_ace->attr == DENY_ACE) && got_file_allow) {
1610 DEBUG(0,("create_canon_ace_lists: malformed ACL in file ACL ! \
1611 Deny entry after Allow entry. Failing to set on file %s.\n", fsp->fsp_name ));
1612 free_canon_ace_list(file_ace);
1613 free_canon_ace_list(dir_ace);
1614 return False;
1617 if( DEBUGLVL( 10 )) {
1618 dbgtext("create_canon_ace_lists: adding file ACL:\n");
1619 print_canon_ace( current_ace, 0);
1621 all_aces_are_inherit_only = False;
1623 * We must not free current_ace here as its
1624 * pointer is now owned by the file_ace list.
1626 current_ace = NULL;
1630 * Free if ACE was not added.
1633 SAFE_FREE(current_ace);
1636 if (fsp->is_directory && all_aces_are_inherit_only) {
1638 * Windows 2000 is doing one of these weird 'inherit acl'
1639 * traverses to conserve NTFS ACL resources. Just pretend
1640 * there was no DACL sent. JRA.
1643 DEBUG(10,("create_canon_ace_lists: Win2k inherit acl traverse. Ignoring DACL.\n"));
1644 free_canon_ace_list(file_ace);
1645 free_canon_ace_list(dir_ace);
1646 file_ace = NULL;
1647 dir_ace = NULL;
1648 } else {
1650 * Check if we have SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ entries in each
1651 * ACL. If we don't have them, check if any SMB_ACL_USER/SMB_ACL_GROUP
1652 * entries can be converted to *_OBJ. Usually we will already have these
1653 * entries in the Default ACL, and the Access ACL will not have them.
1655 if (file_ace) {
1656 check_owning_objs(file_ace, pfile_owner_sid, pfile_grp_sid);
1658 if (dir_ace) {
1659 check_owning_objs(dir_ace, pfile_owner_sid, pfile_grp_sid);
1663 *ppfile_ace = file_ace;
1664 *ppdir_ace = dir_ace;
1666 return True;
1669 /****************************************************************************
1670 ASCII art time again... JRA :-).
1672 We have 4 cases to process when moving from an NT ACL to a POSIX ACL. Firstly,
1673 we insist the ACL is in canonical form (ie. all DENY entries preceede ALLOW
1674 entries). Secondly, the merge code has ensured that all duplicate SID entries for
1675 allow or deny have been merged, so the same SID can only appear once in the deny
1676 list or once in the allow list.
1678 We then process as follows :
1680 ---------------------------------------------------------------------------
1681 First pass - look for a Everyone DENY entry.
1683 If it is deny all (rwx) trunate the list at this point.
1684 Else, walk the list from this point and use the deny permissions of this
1685 entry as a mask on all following allow entries. Finally, delete
1686 the Everyone DENY entry (we have applied it to everything possible).
1688 In addition, in this pass we remove any DENY entries that have
1689 no permissions (ie. they are a DENY nothing).
1690 ---------------------------------------------------------------------------
1691 Second pass - only deal with deny user entries.
1693 DENY user1 (perms XXX)
1695 new_perms = 0
1696 for all following allow group entries where user1 is in group
1697 new_perms |= group_perms;
1699 user1 entry perms = new_perms & ~ XXX;
1701 Convert the deny entry to an allow entry with the new perms and
1702 push to the end of the list. Note if the user was in no groups
1703 this maps to a specific allow nothing entry for this user.
1705 The common case from the NT ACL choser (userX deny all) is
1706 optimised so we don't do the group lookup - we just map to
1707 an allow nothing entry.
1709 What we're doing here is inferring the allow permissions the
1710 person setting the ACE on user1 wanted by looking at the allow
1711 permissions on the groups the user is currently in. This will
1712 be a snapshot, depending on group membership but is the best
1713 we can do and has the advantage of failing closed rather than
1714 open.
1715 ---------------------------------------------------------------------------
1716 Third pass - only deal with deny group entries.
1718 DENY group1 (perms XXX)
1720 for all following allow user entries where user is in group1
1721 user entry perms = user entry perms & ~ XXX;
1723 If there is a group Everyone allow entry with permissions YYY,
1724 convert the group1 entry to an allow entry and modify its
1725 permissions to be :
1727 new_perms = YYY & ~ XXX
1729 and push to the end of the list.
1731 If there is no group Everyone allow entry then convert the
1732 group1 entry to a allow nothing entry and push to the end of the list.
1734 Note that the common case from the NT ACL choser (groupX deny all)
1735 cannot be optimised here as we need to modify user entries who are
1736 in the group to change them to a deny all also.
1738 What we're doing here is modifying the allow permissions of
1739 user entries (which are more specific in POSIX ACLs) to mask
1740 out the explicit deny set on the group they are in. This will
1741 be a snapshot depending on current group membership but is the
1742 best we can do and has the advantage of failing closed rather
1743 than open.
1744 ---------------------------------------------------------------------------
1745 Fourth pass - cope with cumulative permissions.
1747 for all allow user entries, if there exists an allow group entry with
1748 more permissive permissions, and the user is in that group, rewrite the
1749 allow user permissions to contain both sets of permissions.
1751 Currently the code for this is #ifdef'ed out as these semantics make
1752 no sense to me. JRA.
1753 ---------------------------------------------------------------------------
1755 Note we *MUST* do the deny user pass first as this will convert deny user
1756 entries into allow user entries which can then be processed by the deny
1757 group pass.
1759 The above algorithm took a *lot* of thinking about - hence this
1760 explaination :-). JRA.
1761 ****************************************************************************/
1763 /****************************************************************************
1764 Process a canon_ace list entries. This is very complex code. We need
1765 to go through and remove the "deny" permissions from any allow entry that matches
1766 the id of this entry. We have already refused any NT ACL that wasn't in correct
1767 order (DENY followed by ALLOW). If any allow entry ends up with zero permissions,
1768 we just remove it (to fail safe). We have already removed any duplicate ace
1769 entries. Treat an "Everyone" DENY_ACE as a special case - use it to mask all
1770 allow entries.
1771 ****************************************************************************/
1773 static void process_deny_list( canon_ace **pp_ace_list )
1775 canon_ace *ace_list = *pp_ace_list;
1776 canon_ace *curr_ace = NULL;
1777 canon_ace *curr_ace_next = NULL;
1779 /* Pass 1 above - look for an Everyone, deny entry. */
1781 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
1782 canon_ace *allow_ace_p;
1784 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
1786 if (curr_ace->attr != DENY_ACE)
1787 continue;
1789 if (curr_ace->perms == (mode_t)0) {
1791 /* Deny nothing entry - delete. */
1793 DLIST_REMOVE(ace_list, curr_ace);
1794 continue;
1797 if (!sid_equal(&curr_ace->trustee, &global_sid_World))
1798 continue;
1800 /* JRATEST - assert. */
1801 SMB_ASSERT(curr_ace->owner_type == WORLD_ACE);
1803 if (curr_ace->perms == ALL_ACE_PERMS) {
1806 * Optimisation. This is a DENY_ALL to Everyone. Truncate the
1807 * list at this point including this entry.
1810 canon_ace *prev_entry = curr_ace->prev;
1812 free_canon_ace_list( curr_ace );
1813 if (prev_entry)
1814 prev_entry->next = NULL;
1815 else {
1816 /* We deleted the entire list. */
1817 ace_list = NULL;
1819 break;
1822 for (allow_ace_p = curr_ace->next; allow_ace_p; allow_ace_p = allow_ace_p->next) {
1825 * Only mask off allow entries.
1828 if (allow_ace_p->attr != ALLOW_ACE)
1829 continue;
1831 allow_ace_p->perms &= ~curr_ace->perms;
1835 * Now it's been applied, remove it.
1838 DLIST_REMOVE(ace_list, curr_ace);
1841 /* Pass 2 above - deal with deny user entries. */
1843 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
1844 mode_t new_perms = (mode_t)0;
1845 canon_ace *allow_ace_p;
1847 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
1849 if (curr_ace->attr != DENY_ACE)
1850 continue;
1852 if (curr_ace->owner_type != UID_ACE)
1853 continue;
1855 if (curr_ace->perms == ALL_ACE_PERMS) {
1858 * Optimisation - this is a deny everything to this user.
1859 * Convert to an allow nothing and push to the end of the list.
1862 curr_ace->attr = ALLOW_ACE;
1863 curr_ace->perms = (mode_t)0;
1864 DLIST_DEMOTE(ace_list, curr_ace, canon_ace *);
1865 continue;
1868 for (allow_ace_p = curr_ace->next; allow_ace_p; allow_ace_p = allow_ace_p->next) {
1870 if (allow_ace_p->attr != ALLOW_ACE)
1871 continue;
1873 /* We process GID_ACE and WORLD_ACE entries only. */
1875 if (allow_ace_p->owner_type == UID_ACE)
1876 continue;
1878 if (uid_entry_in_group( curr_ace, allow_ace_p))
1879 new_perms |= allow_ace_p->perms;
1883 * Convert to a allow entry, modify the perms and push to the end
1884 * of the list.
1887 curr_ace->attr = ALLOW_ACE;
1888 curr_ace->perms = (new_perms & ~curr_ace->perms);
1889 DLIST_DEMOTE(ace_list, curr_ace, canon_ace *);
1892 /* Pass 3 above - deal with deny group entries. */
1894 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
1895 canon_ace *allow_ace_p;
1896 canon_ace *allow_everyone_p = NULL;
1898 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
1900 if (curr_ace->attr != DENY_ACE)
1901 continue;
1903 if (curr_ace->owner_type != GID_ACE)
1904 continue;
1906 for (allow_ace_p = curr_ace->next; allow_ace_p; allow_ace_p = allow_ace_p->next) {
1908 if (allow_ace_p->attr != ALLOW_ACE)
1909 continue;
1911 /* Store a pointer to the Everyone allow, if it exists. */
1912 if (allow_ace_p->owner_type == WORLD_ACE)
1913 allow_everyone_p = allow_ace_p;
1915 /* We process UID_ACE entries only. */
1917 if (allow_ace_p->owner_type != UID_ACE)
1918 continue;
1920 /* Mask off the deny group perms. */
1922 if (uid_entry_in_group( allow_ace_p, curr_ace))
1923 allow_ace_p->perms &= ~curr_ace->perms;
1927 * Convert the deny to an allow with the correct perms and
1928 * push to the end of the list.
1931 curr_ace->attr = ALLOW_ACE;
1932 if (allow_everyone_p)
1933 curr_ace->perms = allow_everyone_p->perms & ~curr_ace->perms;
1934 else
1935 curr_ace->perms = (mode_t)0;
1936 DLIST_DEMOTE(ace_list, curr_ace, canon_ace *);
1939 /* Doing this fourth pass allows Windows semantics to be layered
1940 * on top of POSIX semantics. I'm not sure if this is desirable.
1941 * For example, in W2K ACLs there is no way to say, "Group X no
1942 * access, user Y full access" if user Y is a member of group X.
1943 * This seems completely broken semantics to me.... JRA.
1946 #if 0
1947 /* Pass 4 above - deal with allow entries. */
1949 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
1950 canon_ace *allow_ace_p;
1952 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
1954 if (curr_ace->attr != ALLOW_ACE)
1955 continue;
1957 if (curr_ace->owner_type != UID_ACE)
1958 continue;
1960 for (allow_ace_p = ace_list; allow_ace_p; allow_ace_p = allow_ace_p->next) {
1962 if (allow_ace_p->attr != ALLOW_ACE)
1963 continue;
1965 /* We process GID_ACE entries only. */
1967 if (allow_ace_p->owner_type != GID_ACE)
1968 continue;
1970 /* OR in the group perms. */
1972 if (uid_entry_in_group( curr_ace, allow_ace_p))
1973 curr_ace->perms |= allow_ace_p->perms;
1976 #endif
1978 *pp_ace_list = ace_list;
1981 /****************************************************************************
1982 Create a default mode that will be used if a security descriptor entry has
1983 no user/group/world entries.
1984 ****************************************************************************/
1986 static mode_t create_default_mode(files_struct *fsp, bool interitable_mode)
1988 int snum = SNUM(fsp->conn);
1989 mode_t and_bits = (mode_t)0;
1990 mode_t or_bits = (mode_t)0;
1991 mode_t mode = interitable_mode
1992 ? unix_mode( fsp->conn, FILE_ATTRIBUTE_ARCHIVE, fsp->fsp_name,
1993 NULL )
1994 : S_IRUSR;
1996 if (fsp->is_directory)
1997 mode |= (S_IWUSR|S_IXUSR);
2000 * Now AND with the create mode/directory mode bits then OR with the
2001 * force create mode/force directory mode bits.
2004 if (fsp->is_directory) {
2005 and_bits = lp_dir_security_mask(snum);
2006 or_bits = lp_force_dir_security_mode(snum);
2007 } else {
2008 and_bits = lp_security_mask(snum);
2009 or_bits = lp_force_security_mode(snum);
2012 return ((mode & and_bits)|or_bits);
2015 /****************************************************************************
2016 Unpack a SEC_DESC into two canonical ace lists. We don't depend on this
2017 succeeding.
2018 ****************************************************************************/
2020 static bool unpack_canon_ace(files_struct *fsp,
2021 SMB_STRUCT_STAT *pst,
2022 DOM_SID *pfile_owner_sid,
2023 DOM_SID *pfile_grp_sid,
2024 canon_ace **ppfile_ace,
2025 canon_ace **ppdir_ace,
2026 uint32 security_info_sent,
2027 const SEC_DESC *psd)
2029 canon_ace *file_ace = NULL;
2030 canon_ace *dir_ace = NULL;
2032 *ppfile_ace = NULL;
2033 *ppdir_ace = NULL;
2035 if(security_info_sent == 0) {
2036 DEBUG(0,("unpack_canon_ace: no security info sent !\n"));
2037 return False;
2041 * If no DACL then this is a chown only security descriptor.
2044 if(!(security_info_sent & DACL_SECURITY_INFORMATION) || !psd->dacl)
2045 return True;
2048 * Now go through the DACL and create the canon_ace lists.
2051 if (!create_canon_ace_lists( fsp, pst, pfile_owner_sid, pfile_grp_sid,
2052 &file_ace, &dir_ace, psd->dacl))
2053 return False;
2055 if ((file_ace == NULL) && (dir_ace == NULL)) {
2056 /* W2K traverse DACL set - ignore. */
2057 return True;
2061 * Go through the canon_ace list and merge entries
2062 * belonging to identical users of identical allow or deny type.
2063 * We can do this as all deny entries come first, followed by
2064 * all allow entries (we have mandated this before accepting this acl).
2067 print_canon_ace_list( "file ace - before merge", file_ace);
2068 merge_aces( &file_ace );
2070 print_canon_ace_list( "dir ace - before merge", dir_ace);
2071 merge_aces( &dir_ace );
2074 * NT ACLs are order dependent. Go through the acl lists and
2075 * process DENY entries by masking the allow entries.
2078 print_canon_ace_list( "file ace - before deny", file_ace);
2079 process_deny_list( &file_ace);
2081 print_canon_ace_list( "dir ace - before deny", dir_ace);
2082 process_deny_list( &dir_ace);
2085 * A well formed POSIX file or default ACL has at least 3 entries, a
2086 * SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER_OBJ
2087 * and optionally a mask entry. Ensure this is the case.
2090 print_canon_ace_list( "file ace - before valid", file_ace);
2093 * A default 3 element mode entry for a file should be r-- --- ---.
2094 * A default 3 element mode entry for a directory should be rwx --- ---.
2097 pst->st_mode = create_default_mode(fsp, False);
2099 if (!ensure_canon_entry_valid(&file_ace, fsp->conn->params, fsp->is_directory, pfile_owner_sid, pfile_grp_sid, pst, True)) {
2100 free_canon_ace_list(file_ace);
2101 free_canon_ace_list(dir_ace);
2102 return False;
2105 print_canon_ace_list( "dir ace - before valid", dir_ace);
2108 * A default inheritable 3 element mode entry for a directory should be the
2109 * mode Samba will use to create a file within. Ensure user rwx bits are set if
2110 * it's a directory.
2113 pst->st_mode = create_default_mode(fsp, True);
2115 if (dir_ace && !ensure_canon_entry_valid(&dir_ace, fsp->conn->params, fsp->is_directory, pfile_owner_sid, pfile_grp_sid, pst, True)) {
2116 free_canon_ace_list(file_ace);
2117 free_canon_ace_list(dir_ace);
2118 return False;
2121 print_canon_ace_list( "file ace - return", file_ace);
2122 print_canon_ace_list( "dir ace - return", dir_ace);
2124 *ppfile_ace = file_ace;
2125 *ppdir_ace = dir_ace;
2126 return True;
2130 /******************************************************************************
2131 When returning permissions, try and fit NT display
2132 semantics if possible. Note the the canon_entries here must have been malloced.
2133 The list format should be - first entry = owner, followed by group and other user
2134 entries, last entry = other.
2136 Note that this doesn't exactly match the NT semantics for an ACL. As POSIX entries
2137 are not ordered, and match on the most specific entry rather than walking a list,
2138 then a simple POSIX permission of rw-r--r-- should really map to 5 entries,
2140 Entry 0: owner : deny all except read and write.
2141 Entry 1: owner : allow read and write.
2142 Entry 2: group : deny all except read.
2143 Entry 3: group : allow read.
2144 Entry 4: Everyone : allow read.
2146 But NT cannot display this in their ACL editor !
2147 ********************************************************************************/
2149 static void arrange_posix_perms(const char *filename, canon_ace **pp_list_head)
2151 canon_ace *l_head = *pp_list_head;
2152 canon_ace *owner_ace = NULL;
2153 canon_ace *other_ace = NULL;
2154 canon_ace *ace = NULL;
2156 for (ace = l_head; ace; ace = ace->next) {
2157 if (ace->type == SMB_ACL_USER_OBJ)
2158 owner_ace = ace;
2159 else if (ace->type == SMB_ACL_OTHER) {
2160 /* Last ace - this is "other" */
2161 other_ace = ace;
2165 if (!owner_ace || !other_ace) {
2166 DEBUG(0,("arrange_posix_perms: Invalid POSIX permissions for file %s, missing owner or other.\n",
2167 filename ));
2168 return;
2172 * The POSIX algorithm applies to owner first, and other last,
2173 * so ensure they are arranged in this order.
2176 if (owner_ace) {
2177 DLIST_PROMOTE(l_head, owner_ace);
2180 if (other_ace) {
2181 DLIST_DEMOTE(l_head, other_ace, canon_ace *);
2184 /* We have probably changed the head of the list. */
2186 *pp_list_head = l_head;
2189 /****************************************************************************
2190 Create a linked list of canonical ACE entries.
2191 ****************************************************************************/
2193 static canon_ace *canonicalise_acl(struct connection_struct *conn,
2194 const char *fname, SMB_ACL_T posix_acl,
2195 const SMB_STRUCT_STAT *psbuf,
2196 const DOM_SID *powner, const DOM_SID *pgroup, struct pai_val *pal, SMB_ACL_TYPE_T the_acl_type)
2198 mode_t acl_mask = (S_IRUSR|S_IWUSR|S_IXUSR);
2199 canon_ace *l_head = NULL;
2200 canon_ace *ace = NULL;
2201 canon_ace *next_ace = NULL;
2202 int entry_id = SMB_ACL_FIRST_ENTRY;
2203 SMB_ACL_ENTRY_T entry;
2204 size_t ace_count;
2206 while ( posix_acl && (SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1)) {
2207 SMB_ACL_TAG_T tagtype;
2208 SMB_ACL_PERMSET_T permset;
2209 DOM_SID sid;
2210 posix_id unix_ug;
2211 enum ace_owner owner_type;
2213 entry_id = SMB_ACL_NEXT_ENTRY;
2215 /* Is this a MASK entry ? */
2216 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1)
2217 continue;
2219 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1)
2220 continue;
2222 /* Decide which SID to use based on the ACL type. */
2223 switch(tagtype) {
2224 case SMB_ACL_USER_OBJ:
2225 /* Get the SID from the owner. */
2226 sid_copy(&sid, powner);
2227 unix_ug.uid = psbuf->st_uid;
2228 owner_type = UID_ACE;
2229 break;
2230 case SMB_ACL_USER:
2232 uid_t *puid = (uid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry);
2233 if (puid == NULL) {
2234 DEBUG(0,("canonicalise_acl: Failed to get uid.\n"));
2235 continue;
2238 * A SMB_ACL_USER entry for the owner is shadowed by the
2239 * SMB_ACL_USER_OBJ entry and Windows also cannot represent
2240 * that entry, so we ignore it. We also don't create such
2241 * entries out of the blue when setting ACLs, so a get/set
2242 * cycle will drop them.
2244 if (the_acl_type == SMB_ACL_TYPE_ACCESS && *puid == psbuf->st_uid) {
2245 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)puid,tagtype);
2246 continue;
2248 uid_to_sid( &sid, *puid);
2249 unix_ug.uid = *puid;
2250 owner_type = UID_ACE;
2251 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)puid,tagtype);
2252 break;
2254 case SMB_ACL_GROUP_OBJ:
2255 /* Get the SID from the owning group. */
2256 sid_copy(&sid, pgroup);
2257 unix_ug.gid = psbuf->st_gid;
2258 owner_type = GID_ACE;
2259 break;
2260 case SMB_ACL_GROUP:
2262 gid_t *pgid = (gid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry);
2263 if (pgid == NULL) {
2264 DEBUG(0,("canonicalise_acl: Failed to get gid.\n"));
2265 continue;
2267 gid_to_sid( &sid, *pgid);
2268 unix_ug.gid = *pgid;
2269 owner_type = GID_ACE;
2270 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)pgid,tagtype);
2271 break;
2273 case SMB_ACL_MASK:
2274 acl_mask = convert_permset_to_mode_t(conn, permset);
2275 continue; /* Don't count the mask as an entry. */
2276 case SMB_ACL_OTHER:
2277 /* Use the Everyone SID */
2278 sid = global_sid_World;
2279 unix_ug.world = -1;
2280 owner_type = WORLD_ACE;
2281 break;
2282 default:
2283 DEBUG(0,("canonicalise_acl: Unknown tagtype %u\n", (unsigned int)tagtype));
2284 continue;
2288 * Add this entry to the list.
2291 if ((ace = SMB_MALLOC_P(canon_ace)) == NULL)
2292 goto fail;
2294 ZERO_STRUCTP(ace);
2295 ace->type = tagtype;
2296 ace->perms = convert_permset_to_mode_t(conn, permset);
2297 ace->attr = ALLOW_ACE;
2298 ace->trustee = sid;
2299 ace->unix_ug = unix_ug;
2300 ace->owner_type = owner_type;
2301 ace->inherited = get_inherited_flag(pal, ace, (the_acl_type == SMB_ACL_TYPE_DEFAULT));
2303 DLIST_ADD(l_head, ace);
2307 * This next call will ensure we have at least a user/group/world set.
2310 if (!ensure_canon_entry_valid(&l_head, conn->params,
2311 S_ISDIR(psbuf->st_mode), powner, pgroup,
2312 psbuf, False))
2313 goto fail;
2316 * Now go through the list, masking the permissions with the
2317 * acl_mask. Ensure all DENY Entries are at the start of the list.
2320 DEBUG(10,("canonicalise_acl: %s ace entries before arrange :\n", the_acl_type == SMB_ACL_TYPE_ACCESS ? "Access" : "Default" ));
2322 for ( ace_count = 0, ace = l_head; ace; ace = next_ace, ace_count++) {
2323 next_ace = ace->next;
2325 /* Masks are only applied to entries other than USER_OBJ and OTHER. */
2326 if (ace->type != SMB_ACL_OTHER && ace->type != SMB_ACL_USER_OBJ)
2327 ace->perms &= acl_mask;
2329 if (ace->perms == 0) {
2330 DLIST_PROMOTE(l_head, ace);
2333 if( DEBUGLVL( 10 ) ) {
2334 print_canon_ace(ace, ace_count);
2338 arrange_posix_perms(fname,&l_head );
2340 print_canon_ace_list( "canonicalise_acl: ace entries after arrange", l_head );
2342 return l_head;
2344 fail:
2346 free_canon_ace_list(l_head);
2347 return NULL;
2350 /****************************************************************************
2351 Check if the current user group list contains a given group.
2352 ****************************************************************************/
2354 static bool current_user_in_group(gid_t gid)
2356 int i;
2358 for (i = 0; i < current_user.ut.ngroups; i++) {
2359 if (current_user.ut.groups[i] == gid) {
2360 return True;
2364 return False;
2367 /****************************************************************************
2368 Should we override a deny ? Check 'acl group control' and 'dos filemode'.
2369 ****************************************************************************/
2371 static bool acl_group_override(connection_struct *conn,
2372 gid_t prim_gid,
2373 const char *fname)
2375 SMB_STRUCT_STAT sbuf;
2377 if ((errno != EPERM) && (errno != EACCES)) {
2378 return false;
2381 /* file primary group == user primary or supplementary group */
2382 if (lp_acl_group_control(SNUM(conn)) &&
2383 current_user_in_group(prim_gid)) {
2384 return true;
2387 /* user has writeable permission */
2388 if (lp_dos_filemode(SNUM(conn)) &&
2389 can_write_to_file(conn, fname, &sbuf)) {
2390 return true;
2393 return false;
2396 /****************************************************************************
2397 Attempt to apply an ACL to a file or directory.
2398 ****************************************************************************/
2400 static bool set_canon_ace_list(files_struct *fsp, canon_ace *the_ace, bool default_ace, gid_t prim_gid, bool *pacl_set_support)
2402 connection_struct *conn = fsp->conn;
2403 bool ret = False;
2404 SMB_ACL_T the_acl = SMB_VFS_SYS_ACL_INIT(conn, (int)count_canon_ace_list(the_ace) + 1);
2405 canon_ace *p_ace;
2406 int i;
2407 SMB_ACL_ENTRY_T mask_entry;
2408 bool got_mask_entry = False;
2409 SMB_ACL_PERMSET_T mask_permset;
2410 SMB_ACL_TYPE_T the_acl_type = (default_ace ? SMB_ACL_TYPE_DEFAULT : SMB_ACL_TYPE_ACCESS);
2411 bool needs_mask = False;
2412 mode_t mask_perms = 0;
2414 #if defined(POSIX_ACL_NEEDS_MASK)
2415 /* HP-UX always wants to have a mask (called "class" there). */
2416 needs_mask = True;
2417 #endif
2419 if (the_acl == NULL) {
2421 if (!no_acl_syscall_error(errno)) {
2423 * Only print this error message if we have some kind of ACL
2424 * support that's not working. Otherwise we would always get this.
2426 DEBUG(0,("set_canon_ace_list: Unable to init %s ACL. (%s)\n",
2427 default_ace ? "default" : "file", strerror(errno) ));
2429 *pacl_set_support = False;
2430 return False;
2433 if( DEBUGLVL( 10 )) {
2434 dbgtext("set_canon_ace_list: setting ACL:\n");
2435 for (i = 0, p_ace = the_ace; p_ace; p_ace = p_ace->next, i++ ) {
2436 print_canon_ace( p_ace, i);
2440 for (i = 0, p_ace = the_ace; p_ace; p_ace = p_ace->next, i++ ) {
2441 SMB_ACL_ENTRY_T the_entry;
2442 SMB_ACL_PERMSET_T the_permset;
2445 * ACLs only "need" an ACL_MASK entry if there are any named user or
2446 * named group entries. But if there is an ACL_MASK entry, it applies
2447 * to ACL_USER, ACL_GROUP, and ACL_GROUP_OBJ entries. Set the mask
2448 * so that it doesn't deny (i.e., mask off) any permissions.
2451 if (p_ace->type == SMB_ACL_USER || p_ace->type == SMB_ACL_GROUP) {
2452 needs_mask = True;
2453 mask_perms |= p_ace->perms;
2454 } else if (p_ace->type == SMB_ACL_GROUP_OBJ) {
2455 mask_perms |= p_ace->perms;
2459 * Get the entry for this ACE.
2462 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &the_acl, &the_entry) == -1) {
2463 DEBUG(0,("set_canon_ace_list: Failed to create entry %d. (%s)\n",
2464 i, strerror(errno) ));
2465 goto fail;
2468 if (p_ace->type == SMB_ACL_MASK) {
2469 mask_entry = the_entry;
2470 got_mask_entry = True;
2474 * Ok - we now know the ACL calls should be working, don't
2475 * allow fallback to chmod.
2478 *pacl_set_support = True;
2481 * Initialise the entry from the canon_ace.
2485 * First tell the entry what type of ACE this is.
2488 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, the_entry, p_ace->type) == -1) {
2489 DEBUG(0,("set_canon_ace_list: Failed to set tag type on entry %d. (%s)\n",
2490 i, strerror(errno) ));
2491 goto fail;
2495 * Only set the qualifier (user or group id) if the entry is a user
2496 * or group id ACE.
2499 if ((p_ace->type == SMB_ACL_USER) || (p_ace->type == SMB_ACL_GROUP)) {
2500 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn, the_entry,(void *)&p_ace->unix_ug.uid) == -1) {
2501 DEBUG(0,("set_canon_ace_list: Failed to set qualifier on entry %d. (%s)\n",
2502 i, strerror(errno) ));
2503 goto fail;
2508 * Convert the mode_t perms in the canon_ace to a POSIX permset.
2511 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, the_entry, &the_permset) == -1) {
2512 DEBUG(0,("set_canon_ace_list: Failed to get permset on entry %d. (%s)\n",
2513 i, strerror(errno) ));
2514 goto fail;
2517 if (map_acl_perms_to_permset(conn, p_ace->perms, &the_permset) == -1) {
2518 DEBUG(0,("set_canon_ace_list: Failed to create permset for mode (%u) on entry %d. (%s)\n",
2519 (unsigned int)p_ace->perms, i, strerror(errno) ));
2520 goto fail;
2524 * ..and apply them to the entry.
2527 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, the_entry, the_permset) == -1) {
2528 DEBUG(0,("set_canon_ace_list: Failed to add permset on entry %d. (%s)\n",
2529 i, strerror(errno) ));
2530 goto fail;
2533 if( DEBUGLVL( 10 ))
2534 print_canon_ace( p_ace, i);
2538 if (needs_mask && !got_mask_entry) {
2539 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &the_acl, &mask_entry) == -1) {
2540 DEBUG(0,("set_canon_ace_list: Failed to create mask entry. (%s)\n", strerror(errno) ));
2541 goto fail;
2544 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, mask_entry, SMB_ACL_MASK) == -1) {
2545 DEBUG(0,("set_canon_ace_list: Failed to set tag type on mask entry. (%s)\n",strerror(errno) ));
2546 goto fail;
2549 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, mask_entry, &mask_permset) == -1) {
2550 DEBUG(0,("set_canon_ace_list: Failed to get mask permset. (%s)\n", strerror(errno) ));
2551 goto fail;
2554 if (map_acl_perms_to_permset(conn, S_IRUSR|S_IWUSR|S_IXUSR, &mask_permset) == -1) {
2555 DEBUG(0,("set_canon_ace_list: Failed to create mask permset. (%s)\n", strerror(errno) ));
2556 goto fail;
2559 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, mask_entry, mask_permset) == -1) {
2560 DEBUG(0,("set_canon_ace_list: Failed to add mask permset. (%s)\n", strerror(errno) ));
2561 goto fail;
2566 * Finally apply it to the file or directory.
2569 if(default_ace || fsp->is_directory || fsp->fh->fd == -1) {
2570 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fsp->fsp_name, the_acl_type, the_acl) == -1) {
2572 * Some systems allow all the above calls and only fail with no ACL support
2573 * when attempting to apply the acl. HPUX with HFS is an example of this. JRA.
2575 if (no_acl_syscall_error(errno)) {
2576 *pacl_set_support = False;
2579 if (acl_group_override(conn, prim_gid, fsp->fsp_name)) {
2580 int sret;
2582 DEBUG(5,("set_canon_ace_list: acl group control on and current user in file %s primary group.\n",
2583 fsp->fsp_name ));
2585 become_root();
2586 sret = SMB_VFS_SYS_ACL_SET_FILE(conn, fsp->fsp_name, the_acl_type, the_acl);
2587 unbecome_root();
2588 if (sret == 0) {
2589 ret = True;
2593 if (ret == False) {
2594 DEBUG(2,("set_canon_ace_list: sys_acl_set_file type %s failed for file %s (%s).\n",
2595 the_acl_type == SMB_ACL_TYPE_DEFAULT ? "directory default" : "file",
2596 fsp->fsp_name, strerror(errno) ));
2597 goto fail;
2600 } else {
2601 if (SMB_VFS_SYS_ACL_SET_FD(fsp, the_acl) == -1) {
2603 * Some systems allow all the above calls and only fail with no ACL support
2604 * when attempting to apply the acl. HPUX with HFS is an example of this. JRA.
2606 if (no_acl_syscall_error(errno)) {
2607 *pacl_set_support = False;
2610 if (acl_group_override(conn, prim_gid, fsp->fsp_name)) {
2611 int sret;
2613 DEBUG(5,("set_canon_ace_list: acl group control on and current user in file %s primary group.\n",
2614 fsp->fsp_name ));
2616 become_root();
2617 sret = SMB_VFS_SYS_ACL_SET_FD(fsp, the_acl);
2618 unbecome_root();
2619 if (sret == 0) {
2620 ret = True;
2624 if (ret == False) {
2625 DEBUG(2,("set_canon_ace_list: sys_acl_set_file failed for file %s (%s).\n",
2626 fsp->fsp_name, strerror(errno) ));
2627 goto fail;
2632 ret = True;
2634 fail:
2636 if (the_acl != NULL) {
2637 SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
2640 return ret;
2643 /****************************************************************************
2644 Find a particular canon_ace entry.
2645 ****************************************************************************/
2647 static struct canon_ace *canon_ace_entry_for(struct canon_ace *list, SMB_ACL_TAG_T type, posix_id *id)
2649 while (list) {
2650 if (list->type == type && ((type != SMB_ACL_USER && type != SMB_ACL_GROUP) ||
2651 (type == SMB_ACL_USER && id && id->uid == list->unix_ug.uid) ||
2652 (type == SMB_ACL_GROUP && id && id->gid == list->unix_ug.gid)))
2653 break;
2654 list = list->next;
2656 return list;
2659 /****************************************************************************
2661 ****************************************************************************/
2663 SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T the_acl)
2665 SMB_ACL_ENTRY_T entry;
2667 if (!the_acl)
2668 return NULL;
2669 if (SMB_VFS_SYS_ACL_GET_ENTRY(conn, the_acl, SMB_ACL_FIRST_ENTRY, &entry) != 1) {
2670 SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
2671 return NULL;
2673 return the_acl;
2676 /****************************************************************************
2677 Convert a canon_ace to a generic 3 element permission - if possible.
2678 ****************************************************************************/
2680 #define MAP_PERM(p,mask,result) (((p) & (mask)) ? (result) : 0 )
2682 static bool convert_canon_ace_to_posix_perms( files_struct *fsp, canon_ace *file_ace_list, mode_t *posix_perms)
2684 int snum = SNUM(fsp->conn);
2685 size_t ace_count = count_canon_ace_list(file_ace_list);
2686 canon_ace *ace_p;
2687 canon_ace *owner_ace = NULL;
2688 canon_ace *group_ace = NULL;
2689 canon_ace *other_ace = NULL;
2690 mode_t and_bits;
2691 mode_t or_bits;
2693 if (ace_count != 3) {
2694 DEBUG(3,("convert_canon_ace_to_posix_perms: Too many ACE entries for file %s to convert to \
2695 posix perms.\n", fsp->fsp_name ));
2696 return False;
2699 for (ace_p = file_ace_list; ace_p; ace_p = ace_p->next) {
2700 if (ace_p->owner_type == UID_ACE)
2701 owner_ace = ace_p;
2702 else if (ace_p->owner_type == GID_ACE)
2703 group_ace = ace_p;
2704 else if (ace_p->owner_type == WORLD_ACE)
2705 other_ace = ace_p;
2708 if (!owner_ace || !group_ace || !other_ace) {
2709 DEBUG(3,("convert_canon_ace_to_posix_perms: Can't get standard entries for file %s.\n",
2710 fsp->fsp_name ));
2711 return False;
2714 *posix_perms = (mode_t)0;
2716 *posix_perms |= owner_ace->perms;
2717 *posix_perms |= MAP_PERM(group_ace->perms, S_IRUSR, S_IRGRP);
2718 *posix_perms |= MAP_PERM(group_ace->perms, S_IWUSR, S_IWGRP);
2719 *posix_perms |= MAP_PERM(group_ace->perms, S_IXUSR, S_IXGRP);
2720 *posix_perms |= MAP_PERM(other_ace->perms, S_IRUSR, S_IROTH);
2721 *posix_perms |= MAP_PERM(other_ace->perms, S_IWUSR, S_IWOTH);
2722 *posix_perms |= MAP_PERM(other_ace->perms, S_IXUSR, S_IXOTH);
2724 /* The owner must have at least read access. */
2726 *posix_perms |= S_IRUSR;
2727 if (fsp->is_directory)
2728 *posix_perms |= (S_IWUSR|S_IXUSR);
2730 /* If requested apply the masks. */
2732 /* Get the initial bits to apply. */
2734 if (fsp->is_directory) {
2735 and_bits = lp_dir_security_mask(snum);
2736 or_bits = lp_force_dir_security_mode(snum);
2737 } else {
2738 and_bits = lp_security_mask(snum);
2739 or_bits = lp_force_security_mode(snum);
2742 *posix_perms = (((*posix_perms) & and_bits)|or_bits);
2744 DEBUG(10,("convert_canon_ace_to_posix_perms: converted u=%o,g=%o,w=%o to perm=0%o for file %s.\n",
2745 (int)owner_ace->perms, (int)group_ace->perms, (int)other_ace->perms, (int)*posix_perms,
2746 fsp->fsp_name ));
2748 return True;
2751 /****************************************************************************
2752 Incoming NT ACLs on a directory can be split into a default POSIX acl (CI|OI|IO) and
2753 a normal POSIX acl. Win2k needs these split acls re-merging into one ACL
2754 with CI|OI set so it is inherited and also applies to the directory.
2755 Based on code from "Jim McDonough" <jmcd@us.ibm.com>.
2756 ****************************************************************************/
2758 static size_t merge_default_aces( SEC_ACE *nt_ace_list, size_t num_aces)
2760 size_t i, j;
2762 for (i = 0; i < num_aces; i++) {
2763 for (j = i+1; j < num_aces; j++) {
2764 uint32 i_flags_ni = (nt_ace_list[i].flags & ~SEC_ACE_FLAG_INHERITED_ACE);
2765 uint32 j_flags_ni = (nt_ace_list[j].flags & ~SEC_ACE_FLAG_INHERITED_ACE);
2766 bool i_inh = (nt_ace_list[i].flags & SEC_ACE_FLAG_INHERITED_ACE) ? True : False;
2767 bool j_inh = (nt_ace_list[j].flags & SEC_ACE_FLAG_INHERITED_ACE) ? True : False;
2769 /* We know the lower number ACE's are file entries. */
2770 if ((nt_ace_list[i].type == nt_ace_list[j].type) &&
2771 (nt_ace_list[i].size == nt_ace_list[j].size) &&
2772 (nt_ace_list[i].access_mask == nt_ace_list[j].access_mask) &&
2773 sid_equal(&nt_ace_list[i].trustee, &nt_ace_list[j].trustee) &&
2774 (i_inh == j_inh) &&
2775 (i_flags_ni == 0) &&
2776 (j_flags_ni == (SEC_ACE_FLAG_OBJECT_INHERIT|
2777 SEC_ACE_FLAG_CONTAINER_INHERIT|
2778 SEC_ACE_FLAG_INHERIT_ONLY))) {
2780 * W2K wants to have access allowed zero access ACE's
2781 * at the end of the list. If the mask is zero, merge
2782 * the non-inherited ACE onto the inherited ACE.
2785 if (nt_ace_list[i].access_mask == 0) {
2786 nt_ace_list[j].flags = SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT|
2787 (i_inh ? SEC_ACE_FLAG_INHERITED_ACE : 0);
2788 if (num_aces - i - 1 > 0)
2789 memmove(&nt_ace_list[i], &nt_ace_list[i+1], (num_aces-i-1) *
2790 sizeof(SEC_ACE));
2792 DEBUG(10,("merge_default_aces: Merging zero access ACE %u onto ACE %u.\n",
2793 (unsigned int)i, (unsigned int)j ));
2794 } else {
2796 * These are identical except for the flags.
2797 * Merge the inherited ACE onto the non-inherited ACE.
2800 nt_ace_list[i].flags = SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT|
2801 (i_inh ? SEC_ACE_FLAG_INHERITED_ACE : 0);
2802 if (num_aces - j - 1 > 0)
2803 memmove(&nt_ace_list[j], &nt_ace_list[j+1], (num_aces-j-1) *
2804 sizeof(SEC_ACE));
2806 DEBUG(10,("merge_default_aces: Merging ACE %u onto ACE %u.\n",
2807 (unsigned int)j, (unsigned int)i ));
2809 num_aces--;
2810 break;
2815 return num_aces;
2819 * Add or Replace ACE entry.
2820 * In some cases we need to add a specific ACE for compatibility reasons.
2821 * When doing that we must make sure we are not actually creating a duplicate
2822 * entry. So we need to search whether an ACE entry already exist and eventually
2823 * replacce the access mask, or add a completely new entry if none was found.
2825 * This function assumes the array has enough space to add a new entry without
2826 * any reallocation of memory.
2829 static void add_or_replace_ace(SEC_ACE *nt_ace_list, size_t *num_aces,
2830 const DOM_SID *sid, enum security_ace_type type,
2831 uint32_t mask, uint8_t flags)
2833 int i;
2835 /* first search for a duplicate */
2836 for (i = 0; i < *num_aces; i++) {
2837 if (sid_equal(&nt_ace_list[i].trustee, sid) &&
2838 (nt_ace_list[i].flags == flags)) break;
2841 if (i < *num_aces) { /* found */
2842 nt_ace_list[i].type = type;
2843 nt_ace_list[i].access_mask = mask;
2844 DEBUG(10, ("Replacing ACE %d with SID %s and flags %02x\n",
2845 i, sid_string_dbg(sid), flags));
2846 return;
2849 /* not found, append it */
2850 init_sec_ace(&nt_ace_list[(*num_aces)++], sid, type, mask, flags);
2854 /****************************************************************************
2855 Reply to query a security descriptor from an fsp. If it succeeds it allocates
2856 the space for the return elements and returns the size needed to return the
2857 security descriptor. This should be the only external function needed for
2858 the UNIX style get ACL.
2859 ****************************************************************************/
2861 static NTSTATUS posix_get_nt_acl_common(struct connection_struct *conn,
2862 const char *name,
2863 const SMB_STRUCT_STAT *sbuf,
2864 struct pai_val *pal,
2865 SMB_ACL_T posix_acl,
2866 SMB_ACL_T def_acl,
2867 uint32_t security_info,
2868 SEC_DESC **ppdesc)
2870 DOM_SID owner_sid;
2871 DOM_SID group_sid;
2872 size_t sd_size = 0;
2873 SEC_ACL *psa = NULL;
2874 size_t num_acls = 0;
2875 size_t num_def_acls = 0;
2876 size_t num_aces = 0;
2877 canon_ace *file_ace = NULL;
2878 canon_ace *dir_ace = NULL;
2879 SEC_ACE *nt_ace_list = NULL;
2880 size_t num_profile_acls = 0;
2881 DOM_SID orig_owner_sid;
2882 SEC_DESC *psd = NULL;
2883 int i;
2886 * Get the owner, group and world SIDs.
2889 create_file_sids(sbuf, &owner_sid, &group_sid);
2891 if (lp_profile_acls(SNUM(conn))) {
2892 /* For WXP SP1 the owner must be administrators. */
2893 sid_copy(&orig_owner_sid, &owner_sid);
2894 sid_copy(&owner_sid, &global_sid_Builtin_Administrators);
2895 sid_copy(&group_sid, &global_sid_Builtin_Users);
2896 num_profile_acls = 3;
2899 if ((security_info & DACL_SECURITY_INFORMATION) && !(security_info & PROTECTED_DACL_SECURITY_INFORMATION)) {
2902 * In the optimum case Creator Owner and Creator Group would be used for
2903 * the ACL_USER_OBJ and ACL_GROUP_OBJ entries, respectively, but this
2904 * would lead to usability problems under Windows: The Creator entries
2905 * are only available in browse lists of directories and not for files;
2906 * additionally the identity of the owning group couldn't be determined.
2907 * We therefore use those identities only for Default ACLs.
2910 /* Create the canon_ace lists. */
2911 file_ace = canonicalise_acl(conn, name, posix_acl, sbuf,
2912 &owner_sid, &group_sid, pal,
2913 SMB_ACL_TYPE_ACCESS);
2915 /* We must have *some* ACLS. */
2917 if (count_canon_ace_list(file_ace) == 0) {
2918 DEBUG(0,("get_nt_acl : No ACLs on file (%s) !\n", name));
2919 goto done;
2922 if (S_ISDIR(sbuf->st_mode) && def_acl) {
2923 dir_ace = canonicalise_acl(conn, name, def_acl,
2924 sbuf,
2925 &global_sid_Creator_Owner,
2926 &global_sid_Creator_Group,
2927 pal, SMB_ACL_TYPE_DEFAULT);
2931 * Create the NT ACE list from the canonical ace lists.
2935 canon_ace *ace;
2936 enum security_ace_type nt_acl_type;
2938 if (nt4_compatible_acls() && dir_ace) {
2940 * NT 4 chokes if an ACL contains an INHERIT_ONLY entry
2941 * but no non-INHERIT_ONLY entry for one SID. So we only
2942 * remove entries from the Access ACL if the
2943 * corresponding Default ACL entries have also been
2944 * removed. ACEs for CREATOR-OWNER and CREATOR-GROUP
2945 * are exceptions. We can do nothing
2946 * intelligent if the Default ACL contains entries that
2947 * are not also contained in the Access ACL, so this
2948 * case will still fail under NT 4.
2951 ace = canon_ace_entry_for(dir_ace, SMB_ACL_OTHER, NULL);
2952 if (ace && !ace->perms) {
2953 DLIST_REMOVE(dir_ace, ace);
2954 SAFE_FREE(ace);
2956 ace = canon_ace_entry_for(file_ace, SMB_ACL_OTHER, NULL);
2957 if (ace && !ace->perms) {
2958 DLIST_REMOVE(file_ace, ace);
2959 SAFE_FREE(ace);
2964 * WinNT doesn't usually have Creator Group
2965 * in browse lists, so we send this entry to
2966 * WinNT even if it contains no relevant
2967 * permissions. Once we can add
2968 * Creator Group to browse lists we can
2969 * re-enable this.
2972 #if 0
2973 ace = canon_ace_entry_for(dir_ace, SMB_ACL_GROUP_OBJ, NULL);
2974 if (ace && !ace->perms) {
2975 DLIST_REMOVE(dir_ace, ace);
2976 SAFE_FREE(ace);
2978 #endif
2980 ace = canon_ace_entry_for(file_ace, SMB_ACL_GROUP_OBJ, NULL);
2981 if (ace && !ace->perms) {
2982 DLIST_REMOVE(file_ace, ace);
2983 SAFE_FREE(ace);
2987 num_acls = count_canon_ace_list(file_ace);
2988 num_def_acls = count_canon_ace_list(dir_ace);
2990 /* Allocate the ace list. */
2991 if ((nt_ace_list = SMB_MALLOC_ARRAY(SEC_ACE,num_acls + num_profile_acls + num_def_acls)) == NULL) {
2992 DEBUG(0,("get_nt_acl: Unable to malloc space for nt_ace_list.\n"));
2993 goto done;
2996 memset(nt_ace_list, '\0', (num_acls + num_def_acls) * sizeof(SEC_ACE) );
2999 * Create the NT ACE list from the canonical ace lists.
3002 for (ace = file_ace; ace != NULL; ace = ace->next) {
3003 uint32_t acc = map_canon_ace_perms(SNUM(conn),
3004 &nt_acl_type,
3005 ace->perms,
3006 S_ISDIR(sbuf->st_mode));
3007 init_sec_ace(&nt_ace_list[num_aces++],
3008 &ace->trustee,
3009 nt_acl_type,
3010 acc,
3011 ace->inherited ?
3012 SEC_ACE_FLAG_INHERITED_ACE : 0);
3015 /* The User must have access to a profile share - even
3016 * if we can't map the SID. */
3017 if (lp_profile_acls(SNUM(conn))) {
3018 add_or_replace_ace(nt_ace_list, &num_aces,
3019 &global_sid_Builtin_Users,
3020 SEC_ACE_TYPE_ACCESS_ALLOWED,
3021 FILE_GENERIC_ALL, 0);
3024 for (ace = dir_ace; ace != NULL; ace = ace->next) {
3025 uint32_t acc = map_canon_ace_perms(SNUM(conn),
3026 &nt_acl_type,
3027 ace->perms,
3028 S_ISDIR(sbuf->st_mode));
3029 init_sec_ace(&nt_ace_list[num_aces++],
3030 &ace->trustee,
3031 nt_acl_type,
3032 acc,
3033 SEC_ACE_FLAG_OBJECT_INHERIT|
3034 SEC_ACE_FLAG_CONTAINER_INHERIT|
3035 SEC_ACE_FLAG_INHERIT_ONLY|
3036 (ace->inherited ?
3037 SEC_ACE_FLAG_INHERITED_ACE : 0));
3040 /* The User must have access to a profile share - even
3041 * if we can't map the SID. */
3042 if (lp_profile_acls(SNUM(conn))) {
3043 add_or_replace_ace(nt_ace_list, &num_aces,
3044 &global_sid_Builtin_Users,
3045 SEC_ACE_TYPE_ACCESS_ALLOWED,
3046 FILE_GENERIC_ALL,
3047 SEC_ACE_FLAG_OBJECT_INHERIT |
3048 SEC_ACE_FLAG_CONTAINER_INHERIT |
3049 SEC_ACE_FLAG_INHERIT_ONLY);
3053 * Merge POSIX default ACLs and normal ACLs into one NT ACE.
3054 * Win2K needs this to get the inheritance correct when replacing ACLs
3055 * on a directory tree. Based on work by Jim @ IBM.
3058 num_aces = merge_default_aces(nt_ace_list, num_aces);
3060 if (lp_profile_acls(SNUM(conn))) {
3061 for (i = 0; i < num_aces; i++) {
3062 if (sid_equal(&nt_ace_list[i].trustee, &owner_sid)) {
3063 add_or_replace_ace(nt_ace_list, &num_aces,
3064 &orig_owner_sid,
3065 nt_ace_list[i].type,
3066 nt_ace_list[i].access_mask,
3067 nt_ace_list[i].flags);
3068 break;
3074 if (num_aces) {
3075 if((psa = make_sec_acl( talloc_tos(), NT4_ACL_REVISION, num_aces, nt_ace_list)) == NULL) {
3076 DEBUG(0,("get_nt_acl: Unable to malloc space for acl.\n"));
3077 goto done;
3080 } /* security_info & DACL_SECURITY_INFORMATION */
3082 psd = make_standard_sec_desc( talloc_tos(),
3083 (security_info & OWNER_SECURITY_INFORMATION) ? &owner_sid : NULL,
3084 (security_info & GROUP_SECURITY_INFORMATION) ? &group_sid : NULL,
3085 psa,
3086 &sd_size);
3088 if(!psd) {
3089 DEBUG(0,("get_nt_acl: Unable to malloc space for security descriptor.\n"));
3090 sd_size = 0;
3091 goto done;
3095 * Windows 2000: The DACL_PROTECTED flag in the security
3096 * descriptor marks the ACL as non-inheriting, i.e., no
3097 * ACEs from higher level directories propagate to this
3098 * ACL. In the POSIX ACL model permissions are only
3099 * inherited at file create time, so ACLs never contain
3100 * any ACEs that are inherited dynamically. The DACL_PROTECTED
3101 * flag doesn't seem to bother Windows NT.
3102 * Always set this if map acl inherit is turned off.
3104 if (get_protected_flag(pal) || !lp_map_acl_inherit(SNUM(conn))) {
3105 psd->type |= SE_DESC_DACL_PROTECTED;
3108 if (psd->dacl) {
3109 dacl_sort_into_canonical_order(psd->dacl->aces, (unsigned int)psd->dacl->num_aces);
3112 *ppdesc = psd;
3114 done:
3116 if (posix_acl) {
3117 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
3119 if (def_acl) {
3120 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
3122 free_canon_ace_list(file_ace);
3123 free_canon_ace_list(dir_ace);
3124 free_inherited_info(pal);
3125 SAFE_FREE(nt_ace_list);
3127 return NT_STATUS_OK;
3130 NTSTATUS posix_fget_nt_acl(struct files_struct *fsp, uint32_t security_info,
3131 SEC_DESC **ppdesc)
3133 SMB_STRUCT_STAT sbuf;
3134 SMB_ACL_T posix_acl = NULL;
3135 struct pai_val *pal;
3137 *ppdesc = NULL;
3139 DEBUG(10,("posix_fget_nt_acl: called for file %s\n", fsp->fsp_name ));
3141 /* can it happen that fsp_name == NULL ? */
3142 if (fsp->is_directory || fsp->fh->fd == -1) {
3143 return posix_get_nt_acl(fsp->conn, fsp->fsp_name,
3144 security_info, ppdesc);
3147 /* Get the stat struct for the owner info. */
3148 if(SMB_VFS_FSTAT(fsp, &sbuf) != 0) {
3149 return map_nt_error_from_unix(errno);
3152 /* Get the ACL from the fd. */
3153 posix_acl = SMB_VFS_SYS_ACL_GET_FD(fsp);
3155 pal = fload_inherited_info(fsp);
3157 return posix_get_nt_acl_common(fsp->conn, fsp->fsp_name, &sbuf, pal,
3158 posix_acl, NULL, security_info, ppdesc);
3161 NTSTATUS posix_get_nt_acl(struct connection_struct *conn, const char *name,
3162 uint32_t security_info, SEC_DESC **ppdesc)
3164 SMB_STRUCT_STAT sbuf;
3165 SMB_ACL_T posix_acl = NULL;
3166 SMB_ACL_T def_acl = NULL;
3167 struct pai_val *pal;
3169 *ppdesc = NULL;
3171 DEBUG(10,("posix_get_nt_acl: called for file %s\n", name ));
3173 /* Get the stat struct for the owner info. */
3174 if(SMB_VFS_STAT(conn, name, &sbuf) != 0) {
3175 return map_nt_error_from_unix(errno);
3178 /* Get the ACL from the path. */
3179 posix_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, name, SMB_ACL_TYPE_ACCESS);
3181 /* If it's a directory get the default POSIX ACL. */
3182 if(S_ISDIR(sbuf.st_mode)) {
3183 def_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, name, SMB_ACL_TYPE_DEFAULT);
3184 def_acl = free_empty_sys_acl(conn, def_acl);
3187 pal = load_inherited_info(conn, name);
3189 return posix_get_nt_acl_common(conn, name, &sbuf, pal, posix_acl,
3190 def_acl, security_info, ppdesc);
3193 /****************************************************************************
3194 Try to chown a file. We will be able to chown it under the following conditions.
3196 1) If we have root privileges, then it will just work.
3197 2) If we have SeTakeOwnershipPrivilege we can change the user to the current user.
3198 3) If we have SeRestorePrivilege we can change the user to any other user.
3199 4) If we have write permission to the file and dos_filemodes is set
3200 then allow chown to the currently authenticated user.
3201 ****************************************************************************/
3203 int try_chown(connection_struct *conn, const char *fname, uid_t uid, gid_t gid)
3205 int ret;
3206 files_struct *fsp;
3207 SMB_STRUCT_STAT st;
3209 if(!CAN_WRITE(conn)) {
3210 return -1;
3213 /* Case (1). */
3214 /* try the direct way first */
3215 ret = SMB_VFS_CHOWN(conn, fname, uid, gid);
3216 if (ret == 0)
3217 return 0;
3219 /* Case (2) / (3) */
3220 if (lp_enable_privileges()) {
3222 bool has_take_ownership_priv = user_has_privileges(current_user.nt_user_token,
3223 &se_take_ownership);
3224 bool has_restore_priv = user_has_privileges(current_user.nt_user_token,
3225 &se_restore);
3227 /* Case (2) */
3228 if ( ( has_take_ownership_priv && ( uid == current_user.ut.uid ) ) ||
3229 /* Case (3) */
3230 ( has_restore_priv ) ) {
3232 become_root();
3233 /* Keep the current file gid the same - take ownership doesn't imply group change. */
3234 ret = SMB_VFS_CHOWN(conn, fname, uid, (gid_t)-1);
3235 unbecome_root();
3236 return ret;
3240 /* Case (4). */
3241 if (!lp_dos_filemode(SNUM(conn))) {
3242 errno = EPERM;
3243 return -1;
3246 /* only allow chown to the current user. This is more secure,
3247 and also copes with the case where the SID in a take ownership ACL is
3248 a local SID on the users workstation
3250 if (uid != current_user.ut.uid) {
3251 errno = EPERM;
3252 return -1;
3255 if (SMB_VFS_STAT(conn,fname,&st)) {
3256 return -1;
3259 if (!NT_STATUS_IS_OK(open_file_fchmod(conn,fname,&st,&fsp))) {
3260 return -1;
3263 become_root();
3264 /* Keep the current file gid the same. */
3265 ret = SMB_VFS_FCHOWN(fsp, uid, (gid_t)-1);
3266 unbecome_root();
3268 close_file_fchmod(fsp);
3270 return ret;
3273 #if 0
3274 /* Disable this - prevents ACL inheritance from the ACL editor. JRA. */
3276 /****************************************************************************
3277 Take care of parent ACL inheritance.
3278 ****************************************************************************/
3280 NTSTATUS append_parent_acl(files_struct *fsp,
3281 const SEC_DESC *pcsd,
3282 SEC_DESC **pp_new_sd)
3284 SEC_DESC *parent_sd = NULL;
3285 files_struct *parent_fsp = NULL;
3286 TALLOC_CTX *mem_ctx = talloc_tos();
3287 char *parent_name = NULL;
3288 SEC_ACE *new_ace = NULL;
3289 unsigned int num_aces = pcsd->dacl->num_aces;
3290 SMB_STRUCT_STAT sbuf;
3291 NTSTATUS status;
3292 int info;
3293 unsigned int i, j;
3294 SEC_DESC *psd = dup_sec_desc(talloc_tos(), pcsd);
3295 bool is_dacl_protected = (pcsd->type & SE_DESC_DACL_PROTECTED);
3297 ZERO_STRUCT(sbuf);
3299 if (psd == NULL) {
3300 return NT_STATUS_NO_MEMORY;
3303 if (!parent_dirname_talloc(mem_ctx,
3304 fsp->fsp_name,
3305 &parent_name,
3306 NULL)) {
3307 return NT_STATUS_NO_MEMORY;
3310 status = open_directory(fsp->conn,
3311 NULL,
3312 parent_name,
3313 &sbuf,
3314 FILE_READ_ATTRIBUTES, /* Just a stat open */
3315 FILE_SHARE_NONE, /* Ignored for stat opens */
3316 FILE_OPEN,
3318 INTERNAL_OPEN_ONLY,
3319 &info,
3320 &parent_fsp);
3322 if (!NT_STATUS_IS_OK(status)) {
3323 return status;
3326 status = SMB_VFS_GET_NT_ACL(parent_fsp->conn, parent_fsp->fsp_name,
3327 DACL_SECURITY_INFORMATION, &parent_sd );
3329 close_file(parent_fsp, NORMAL_CLOSE);
3331 if (!NT_STATUS_IS_OK(status)) {
3332 return status;
3336 * Make room for potentially all the ACLs from
3337 * the parent. We used to add the ugw triple here,
3338 * as we knew we were dealing with POSIX ACLs.
3339 * We no longer need to do so as we can guarentee
3340 * that a default ACL from the parent directory will
3341 * be well formed for POSIX ACLs if it came from a
3342 * POSIX ACL source, and if we're not writing to a
3343 * POSIX ACL sink then we don't care if it's not well
3344 * formed. JRA.
3347 num_aces += parent_sd->dacl->num_aces;
3349 if((new_ace = TALLOC_ZERO_ARRAY(mem_ctx, SEC_ACE,
3350 num_aces)) == NULL) {
3351 return NT_STATUS_NO_MEMORY;
3354 /* Start by copying in all the given ACE entries. */
3355 for (i = 0; i < psd->dacl->num_aces; i++) {
3356 sec_ace_copy(&new_ace[i], &psd->dacl->aces[i]);
3360 * Note that we're ignoring "inherit permissions" here
3361 * as that really only applies to newly created files. JRA.
3364 /* Finally append any inherited ACEs. */
3365 for (j = 0; j < parent_sd->dacl->num_aces; j++) {
3366 SEC_ACE *se = &parent_sd->dacl->aces[j];
3368 if (fsp->is_directory) {
3369 if (!(se->flags & SEC_ACE_FLAG_CONTAINER_INHERIT)) {
3370 /* Doesn't apply to a directory - ignore. */
3371 DEBUG(10,("append_parent_acl: directory %s "
3372 "ignoring non container "
3373 "inherit flags %u on ACE with sid %s "
3374 "from parent %s\n",
3375 fsp->fsp_name,
3376 (unsigned int)se->flags,
3377 sid_string_dbg(&se->trustee),
3378 parent_name));
3379 continue;
3381 } else {
3382 if (!(se->flags & SEC_ACE_FLAG_OBJECT_INHERIT)) {
3383 /* Doesn't apply to a file - ignore. */
3384 DEBUG(10,("append_parent_acl: file %s "
3385 "ignoring non object "
3386 "inherit flags %u on ACE with sid %s "
3387 "from parent %s\n",
3388 fsp->fsp_name,
3389 (unsigned int)se->flags,
3390 sid_string_dbg(&se->trustee),
3391 parent_name));
3392 continue;
3396 if (is_dacl_protected) {
3397 /* If the DACL is protected it means we must
3398 * not overwrite an existing ACE entry with the
3399 * same SID. This is order N^2. Ouch :-(. JRA. */
3400 unsigned int k;
3401 for (k = 0; k < psd->dacl->num_aces; k++) {
3402 if (sid_equal(&psd->dacl->aces[k].trustee,
3403 &se->trustee)) {
3404 break;
3407 if (k < psd->dacl->num_aces) {
3408 /* SID matched. Ignore. */
3409 DEBUG(10,("append_parent_acl: path %s "
3410 "ignoring ACE with protected sid %s "
3411 "from parent %s\n",
3412 fsp->fsp_name,
3413 sid_string_dbg(&se->trustee),
3414 parent_name));
3415 continue;
3419 sec_ace_copy(&new_ace[i], se);
3420 if (se->flags & SEC_ACE_FLAG_NO_PROPAGATE_INHERIT) {
3421 new_ace[i].flags &= ~(SEC_ACE_FLAG_VALID_INHERIT);
3423 new_ace[i].flags |= SEC_ACE_FLAG_INHERITED_ACE;
3425 if (fsp->is_directory) {
3427 * Strip off any inherit only. It's applied.
3429 new_ace[i].flags &= ~(SEC_ACE_FLAG_INHERIT_ONLY);
3430 if (se->flags & SEC_ACE_FLAG_NO_PROPAGATE_INHERIT) {
3431 /* No further inheritance. */
3432 new_ace[i].flags &=
3433 ~(SEC_ACE_FLAG_CONTAINER_INHERIT|
3434 SEC_ACE_FLAG_OBJECT_INHERIT);
3436 } else {
3438 * Strip off any container or inherit
3439 * flags, they can't apply to objects.
3441 new_ace[i].flags &= ~(SEC_ACE_FLAG_CONTAINER_INHERIT|
3442 SEC_ACE_FLAG_INHERIT_ONLY|
3443 SEC_ACE_FLAG_NO_PROPAGATE_INHERIT);
3445 i++;
3447 DEBUG(10,("append_parent_acl: path %s "
3448 "inheriting ACE with sid %s "
3449 "from parent %s\n",
3450 fsp->fsp_name,
3451 sid_string_dbg(&se->trustee),
3452 parent_name));
3455 psd->dacl->aces = new_ace;
3456 psd->dacl->num_aces = i;
3457 psd->type &= ~(SE_DESC_DACL_AUTO_INHERITED|
3458 SE_DESC_DACL_AUTO_INHERIT_REQ);
3460 *pp_new_sd = psd;
3461 return status;
3463 #endif
3465 /****************************************************************************
3466 Reply to set a security descriptor on an fsp. security_info_sent is the
3467 description of the following NT ACL.
3468 This should be the only external function needed for the UNIX style set ACL.
3469 ****************************************************************************/
3471 NTSTATUS set_nt_acl(files_struct *fsp, uint32 security_info_sent, const SEC_DESC *psd)
3473 connection_struct *conn = fsp->conn;
3474 uid_t user = (uid_t)-1;
3475 gid_t grp = (gid_t)-1;
3476 SMB_STRUCT_STAT sbuf;
3477 DOM_SID file_owner_sid;
3478 DOM_SID file_grp_sid;
3479 canon_ace *file_ace_list = NULL;
3480 canon_ace *dir_ace_list = NULL;
3481 bool acl_perms = False;
3482 mode_t orig_mode = (mode_t)0;
3483 NTSTATUS status;
3484 bool set_acl_as_root = false;
3485 bool acl_set_support = false;
3486 bool ret = false;
3488 DEBUG(10,("set_nt_acl: called for file %s\n", fsp->fsp_name ));
3490 if (!CAN_WRITE(conn)) {
3491 DEBUG(10,("set acl rejected on read-only share\n"));
3492 return NT_STATUS_MEDIA_WRITE_PROTECTED;
3496 * Get the current state of the file.
3499 if(fsp->is_directory || fsp->fh->fd == -1) {
3500 if(SMB_VFS_STAT(fsp->conn,fsp->fsp_name, &sbuf) != 0)
3501 return map_nt_error_from_unix(errno);
3502 } else {
3503 if(SMB_VFS_FSTAT(fsp, &sbuf) != 0)
3504 return map_nt_error_from_unix(errno);
3507 /* Save the original element we check against. */
3508 orig_mode = sbuf.st_mode;
3511 * Unpack the user/group/world id's.
3514 status = unpack_nt_owners( SNUM(conn), &user, &grp, security_info_sent, psd);
3515 if (!NT_STATUS_IS_OK(status)) {
3516 return status;
3520 * Do we need to chown ? If so this must be done first as the incoming
3521 * CREATOR_OWNER acl will be relative to the *new* owner, not the old.
3522 * Noticed by Simo.
3525 if (((user != (uid_t)-1) && (sbuf.st_uid != user)) || (( grp != (gid_t)-1) && (sbuf.st_gid != grp))) {
3527 DEBUG(3,("set_nt_acl: chown %s. uid = %u, gid = %u.\n",
3528 fsp->fsp_name, (unsigned int)user, (unsigned int)grp ));
3530 if(try_chown( fsp->conn, fsp->fsp_name, user, grp) == -1) {
3531 DEBUG(3,("set_nt_acl: chown %s, %u, %u failed. Error = %s.\n",
3532 fsp->fsp_name, (unsigned int)user, (unsigned int)grp, strerror(errno) ));
3533 if (errno == EPERM) {
3534 return NT_STATUS_INVALID_OWNER;
3536 return map_nt_error_from_unix(errno);
3540 * Recheck the current state of the file, which may have changed.
3541 * (suid/sgid bits, for instance)
3544 if(fsp->is_directory) {
3545 if(SMB_VFS_STAT(fsp->conn, fsp->fsp_name, &sbuf) != 0) {
3546 return map_nt_error_from_unix(errno);
3548 } else {
3550 int sret;
3552 if(fsp->fh->fd == -1)
3553 sret = SMB_VFS_STAT(fsp->conn, fsp->fsp_name, &sbuf);
3554 else
3555 sret = SMB_VFS_FSTAT(fsp, &sbuf);
3557 if(sret != 0)
3558 return map_nt_error_from_unix(errno);
3561 /* Save the original element we check against. */
3562 orig_mode = sbuf.st_mode;
3564 /* If we successfully chowned, we know we must
3565 * be able to set the acl, so do it as root.
3567 set_acl_as_root = true;
3570 create_file_sids(&sbuf, &file_owner_sid, &file_grp_sid);
3572 acl_perms = unpack_canon_ace( fsp, &sbuf, &file_owner_sid, &file_grp_sid,
3573 &file_ace_list, &dir_ace_list, security_info_sent, psd);
3575 /* Ignore W2K traverse DACL set. */
3576 if (!file_ace_list && !dir_ace_list) {
3577 return NT_STATUS_OK;
3580 if (!acl_perms) {
3581 DEBUG(3,("set_nt_acl: cannot set permissions\n"));
3582 free_canon_ace_list(file_ace_list);
3583 free_canon_ace_list(dir_ace_list);
3584 return NT_STATUS_ACCESS_DENIED;
3588 * Only change security if we got a DACL.
3591 if(!(security_info_sent & DACL_SECURITY_INFORMATION) || (psd->dacl == NULL)) {
3592 free_canon_ace_list(file_ace_list);
3593 free_canon_ace_list(dir_ace_list);
3594 return NT_STATUS_OK;
3598 * Try using the POSIX ACL set first. Fall back to chmod if
3599 * we have no ACL support on this filesystem.
3602 if (acl_perms && file_ace_list) {
3603 if (set_acl_as_root) {
3604 become_root();
3606 ret = set_canon_ace_list(fsp, file_ace_list, False, sbuf.st_gid, &acl_set_support);
3607 if (set_acl_as_root) {
3608 unbecome_root();
3610 if (acl_set_support && ret == false) {
3611 DEBUG(3,("set_nt_acl: failed to set file acl on file %s (%s).\n", fsp->fsp_name, strerror(errno) ));
3612 free_canon_ace_list(file_ace_list);
3613 free_canon_ace_list(dir_ace_list);
3614 return map_nt_error_from_unix(errno);
3618 if (acl_perms && acl_set_support && fsp->is_directory) {
3619 if (dir_ace_list) {
3620 if (set_acl_as_root) {
3621 become_root();
3623 ret = set_canon_ace_list(fsp, dir_ace_list, True, sbuf.st_gid, &acl_set_support);
3624 if (set_acl_as_root) {
3625 unbecome_root();
3627 if (ret == false) {
3628 DEBUG(3,("set_nt_acl: failed to set default acl on directory %s (%s).\n", fsp->fsp_name, strerror(errno) ));
3629 free_canon_ace_list(file_ace_list);
3630 free_canon_ace_list(dir_ace_list);
3631 return map_nt_error_from_unix(errno);
3633 } else {
3634 int sret = -1;
3637 * No default ACL - delete one if it exists.
3640 if (set_acl_as_root) {
3641 become_root();
3643 sret = SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn, fsp->fsp_name);
3644 if (set_acl_as_root) {
3645 unbecome_root();
3647 if (sret == -1) {
3648 if (acl_group_override(conn, sbuf.st_gid, fsp->fsp_name)) {
3649 DEBUG(5,("set_nt_acl: acl group control on and "
3650 "current user in file %s primary group. Override delete_def_acl\n",
3651 fsp->fsp_name ));
3653 become_root();
3654 sret = SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn, fsp->fsp_name);
3655 unbecome_root();
3658 if (sret == -1) {
3659 DEBUG(3,("set_nt_acl: sys_acl_delete_def_file failed (%s)\n", strerror(errno)));
3660 free_canon_ace_list(file_ace_list);
3661 free_canon_ace_list(dir_ace_list);
3662 return map_nt_error_from_unix(errno);
3668 if (acl_set_support) {
3669 if (set_acl_as_root) {
3670 become_root();
3672 store_inheritance_attributes(fsp, file_ace_list, dir_ace_list,
3673 (psd->type & SE_DESC_DACL_PROTECTED) ? True : False);
3674 if (set_acl_as_root) {
3675 unbecome_root();
3680 * If we cannot set using POSIX ACLs we fall back to checking if we need to chmod.
3683 if(!acl_set_support && acl_perms) {
3684 mode_t posix_perms;
3686 if (!convert_canon_ace_to_posix_perms( fsp, file_ace_list, &posix_perms)) {
3687 free_canon_ace_list(file_ace_list);
3688 free_canon_ace_list(dir_ace_list);
3689 DEBUG(3,("set_nt_acl: failed to convert file acl to posix permissions for file %s.\n",
3690 fsp->fsp_name ));
3691 return NT_STATUS_ACCESS_DENIED;
3694 if (orig_mode != posix_perms) {
3695 int sret = -1;
3697 DEBUG(3,("set_nt_acl: chmod %s. perms = 0%o.\n",
3698 fsp->fsp_name, (unsigned int)posix_perms ));
3700 if (set_acl_as_root) {
3701 become_root();
3703 sret = SMB_VFS_CHMOD(conn,fsp->fsp_name, posix_perms);
3704 if (set_acl_as_root) {
3705 unbecome_root();
3707 if(sret == -1) {
3708 if (acl_group_override(conn, sbuf.st_gid, fsp->fsp_name)) {
3709 DEBUG(5,("set_nt_acl: acl group control on and "
3710 "current user in file %s primary group. Override chmod\n",
3711 fsp->fsp_name ));
3713 become_root();
3714 sret = SMB_VFS_CHMOD(conn,fsp->fsp_name, posix_perms);
3715 unbecome_root();
3718 if (sret == -1) {
3719 DEBUG(3,("set_nt_acl: chmod %s, 0%o failed. Error = %s.\n",
3720 fsp->fsp_name, (unsigned int)posix_perms, strerror(errno) ));
3721 free_canon_ace_list(file_ace_list);
3722 free_canon_ace_list(dir_ace_list);
3723 return map_nt_error_from_unix(errno);
3729 free_canon_ace_list(file_ace_list);
3730 free_canon_ace_list(dir_ace_list);
3732 return NT_STATUS_OK;
3735 /****************************************************************************
3736 Get the actual group bits stored on a file with an ACL. Has no effect if
3737 the file has no ACL. Needed in dosmode code where the stat() will return
3738 the mask bits, not the real group bits, for a file with an ACL.
3739 ****************************************************************************/
3741 int get_acl_group_bits( connection_struct *conn, const char *fname, mode_t *mode )
3743 int entry_id = SMB_ACL_FIRST_ENTRY;
3744 SMB_ACL_ENTRY_T entry;
3745 SMB_ACL_T posix_acl;
3746 int result = -1;
3748 posix_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS);
3749 if (posix_acl == (SMB_ACL_T)NULL)
3750 return -1;
3752 while (SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1) {
3753 SMB_ACL_TAG_T tagtype;
3754 SMB_ACL_PERMSET_T permset;
3756 entry_id = SMB_ACL_NEXT_ENTRY;
3758 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) ==-1)
3759 break;
3761 if (tagtype == SMB_ACL_GROUP_OBJ) {
3762 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1) {
3763 break;
3764 } else {
3765 *mode &= ~(S_IRGRP|S_IWGRP|S_IXGRP);
3766 *mode |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_READ) ? S_IRGRP : 0);
3767 *mode |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_WRITE) ? S_IWGRP : 0);
3768 *mode |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_EXECUTE) ? S_IXGRP : 0);
3769 result = 0;
3770 break;
3774 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
3775 return result;
3778 /****************************************************************************
3779 Do a chmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
3780 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
3781 ****************************************************************************/
3783 static int chmod_acl_internals( connection_struct *conn, SMB_ACL_T posix_acl, mode_t mode)
3785 int entry_id = SMB_ACL_FIRST_ENTRY;
3786 SMB_ACL_ENTRY_T entry;
3787 int num_entries = 0;
3789 while ( SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1) {
3790 SMB_ACL_TAG_T tagtype;
3791 SMB_ACL_PERMSET_T permset;
3792 mode_t perms;
3794 entry_id = SMB_ACL_NEXT_ENTRY;
3796 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1)
3797 return -1;
3799 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1)
3800 return -1;
3802 num_entries++;
3804 switch(tagtype) {
3805 case SMB_ACL_USER_OBJ:
3806 perms = unix_perms_to_acl_perms(mode, S_IRUSR, S_IWUSR, S_IXUSR);
3807 break;
3808 case SMB_ACL_GROUP_OBJ:
3809 perms = unix_perms_to_acl_perms(mode, S_IRGRP, S_IWGRP, S_IXGRP);
3810 break;
3811 case SMB_ACL_MASK:
3813 * FIXME: The ACL_MASK entry permissions should really be set to
3814 * the union of the permissions of all ACL_USER,
3815 * ACL_GROUP_OBJ, and ACL_GROUP entries. That's what
3816 * acl_calc_mask() does, but Samba ACLs doesn't provide it.
3818 perms = S_IRUSR|S_IWUSR|S_IXUSR;
3819 break;
3820 case SMB_ACL_OTHER:
3821 perms = unix_perms_to_acl_perms(mode, S_IROTH, S_IWOTH, S_IXOTH);
3822 break;
3823 default:
3824 continue;
3827 if (map_acl_perms_to_permset(conn, perms, &permset) == -1)
3828 return -1;
3830 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, entry, permset) == -1)
3831 return -1;
3835 * If this is a simple 3 element ACL or no elements then it's a standard
3836 * UNIX permission set. Just use chmod...
3839 if ((num_entries == 3) || (num_entries == 0))
3840 return -1;
3842 return 0;
3845 /****************************************************************************
3846 Get the access ACL of FROM, do a chmod by setting the ACL USER_OBJ,
3847 GROUP_OBJ and OTHER bits in an ACL and set the mask to rwx. Set the
3848 resulting ACL on TO. Note that name is in UNIX character set.
3849 ****************************************************************************/
3851 static int copy_access_posix_acl(connection_struct *conn, const char *from, const char *to, mode_t mode)
3853 SMB_ACL_T posix_acl = NULL;
3854 int ret = -1;
3856 if ((posix_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, from, SMB_ACL_TYPE_ACCESS)) == NULL)
3857 return -1;
3859 if ((ret = chmod_acl_internals(conn, posix_acl, mode)) == -1)
3860 goto done;
3862 ret = SMB_VFS_SYS_ACL_SET_FILE(conn, to, SMB_ACL_TYPE_ACCESS, posix_acl);
3864 done:
3866 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
3867 return ret;
3870 /****************************************************************************
3871 Do a chmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
3872 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
3873 Note that name is in UNIX character set.
3874 ****************************************************************************/
3876 int chmod_acl(connection_struct *conn, const char *name, mode_t mode)
3878 return copy_access_posix_acl(conn, name, name, mode);
3881 /****************************************************************************
3882 Check for an existing default POSIX ACL on a directory.
3883 ****************************************************************************/
3885 static bool directory_has_default_posix_acl(connection_struct *conn, const char *fname)
3887 SMB_ACL_T def_acl = SMB_VFS_SYS_ACL_GET_FILE( conn, fname, SMB_ACL_TYPE_DEFAULT);
3888 bool has_acl = False;
3889 SMB_ACL_ENTRY_T entry;
3891 if (def_acl != NULL && (SMB_VFS_SYS_ACL_GET_ENTRY(conn, def_acl, SMB_ACL_FIRST_ENTRY, &entry) == 1)) {
3892 has_acl = True;
3895 if (def_acl) {
3896 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
3898 return has_acl;
3901 /****************************************************************************
3902 If the parent directory has no default ACL but it does have an Access ACL,
3903 inherit this Access ACL to file name.
3904 ****************************************************************************/
3906 int inherit_access_posix_acl(connection_struct *conn, const char *inherit_from_dir,
3907 const char *name, mode_t mode)
3909 if (directory_has_default_posix_acl(conn, inherit_from_dir))
3910 return 0;
3912 return copy_access_posix_acl(conn, inherit_from_dir, name, mode);
3915 /****************************************************************************
3916 Do an fchmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
3917 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
3918 ****************************************************************************/
3920 int fchmod_acl(files_struct *fsp, mode_t mode)
3922 connection_struct *conn = fsp->conn;
3923 SMB_ACL_T posix_acl = NULL;
3924 int ret = -1;
3926 if ((posix_acl = SMB_VFS_SYS_ACL_GET_FD(fsp)) == NULL)
3927 return -1;
3929 if ((ret = chmod_acl_internals(conn, posix_acl, mode)) == -1)
3930 goto done;
3932 ret = SMB_VFS_SYS_ACL_SET_FD(fsp, posix_acl);
3934 done:
3936 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
3937 return ret;
3940 /****************************************************************************
3941 Map from wire type to permset.
3942 ****************************************************************************/
3944 static bool unix_ex_wire_to_permset(connection_struct *conn, unsigned char wire_perm, SMB_ACL_PERMSET_T *p_permset)
3946 if (wire_perm & ~(SMB_POSIX_ACL_READ|SMB_POSIX_ACL_WRITE|SMB_POSIX_ACL_EXECUTE)) {
3947 return False;
3950 if (SMB_VFS_SYS_ACL_CLEAR_PERMS(conn, *p_permset) == -1) {
3951 return False;
3954 if (wire_perm & SMB_POSIX_ACL_READ) {
3955 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_READ) == -1) {
3956 return False;
3959 if (wire_perm & SMB_POSIX_ACL_WRITE) {
3960 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_WRITE) == -1) {
3961 return False;
3964 if (wire_perm & SMB_POSIX_ACL_EXECUTE) {
3965 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_EXECUTE) == -1) {
3966 return False;
3969 return True;
3972 /****************************************************************************
3973 Map from wire type to tagtype.
3974 ****************************************************************************/
3976 static bool unix_ex_wire_to_tagtype(unsigned char wire_tt, SMB_ACL_TAG_T *p_tt)
3978 switch (wire_tt) {
3979 case SMB_POSIX_ACL_USER_OBJ:
3980 *p_tt = SMB_ACL_USER_OBJ;
3981 break;
3982 case SMB_POSIX_ACL_USER:
3983 *p_tt = SMB_ACL_USER;
3984 break;
3985 case SMB_POSIX_ACL_GROUP_OBJ:
3986 *p_tt = SMB_ACL_GROUP_OBJ;
3987 break;
3988 case SMB_POSIX_ACL_GROUP:
3989 *p_tt = SMB_ACL_GROUP;
3990 break;
3991 case SMB_POSIX_ACL_MASK:
3992 *p_tt = SMB_ACL_MASK;
3993 break;
3994 case SMB_POSIX_ACL_OTHER:
3995 *p_tt = SMB_ACL_OTHER;
3996 break;
3997 default:
3998 return False;
4000 return True;
4003 /****************************************************************************
4004 Create a new POSIX acl from wire permissions.
4005 FIXME ! How does the share mask/mode fit into this.... ?
4006 ****************************************************************************/
4008 static SMB_ACL_T create_posix_acl_from_wire(connection_struct *conn, uint16 num_acls, const char *pdata)
4010 unsigned int i;
4011 SMB_ACL_T the_acl = SMB_VFS_SYS_ACL_INIT(conn, num_acls);
4013 if (the_acl == NULL) {
4014 return NULL;
4017 for (i = 0; i < num_acls; i++) {
4018 SMB_ACL_ENTRY_T the_entry;
4019 SMB_ACL_PERMSET_T the_permset;
4020 SMB_ACL_TAG_T tag_type;
4022 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &the_acl, &the_entry) == -1) {
4023 DEBUG(0,("create_posix_acl_from_wire: Failed to create entry %u. (%s)\n",
4024 i, strerror(errno) ));
4025 goto fail;
4028 if (!unix_ex_wire_to_tagtype(CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)), &tag_type)) {
4029 DEBUG(0,("create_posix_acl_from_wire: invalid wire tagtype %u on entry %u.\n",
4030 CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)), i ));
4031 goto fail;
4034 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, the_entry, tag_type) == -1) {
4035 DEBUG(0,("create_posix_acl_from_wire: Failed to set tagtype on entry %u. (%s)\n",
4036 i, strerror(errno) ));
4037 goto fail;
4040 /* Get the permset pointer from the new ACL entry. */
4041 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, the_entry, &the_permset) == -1) {
4042 DEBUG(0,("create_posix_acl_from_wire: Failed to get permset on entry %u. (%s)\n",
4043 i, strerror(errno) ));
4044 goto fail;
4047 /* Map from wire to permissions. */
4048 if (!unix_ex_wire_to_permset(conn, CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)+1), &the_permset)) {
4049 DEBUG(0,("create_posix_acl_from_wire: invalid permset %u on entry %u.\n",
4050 CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE) + 1), i ));
4051 goto fail;
4054 /* Now apply to the new ACL entry. */
4055 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, the_entry, the_permset) == -1) {
4056 DEBUG(0,("create_posix_acl_from_wire: Failed to add permset on entry %u. (%s)\n",
4057 i, strerror(errno) ));
4058 goto fail;
4061 if (tag_type == SMB_ACL_USER) {
4062 uint32 uidval = IVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
4063 uid_t uid = (uid_t)uidval;
4064 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn, the_entry,(void *)&uid) == -1) {
4065 DEBUG(0,("create_posix_acl_from_wire: Failed to set uid %u on entry %u. (%s)\n",
4066 (unsigned int)uid, i, strerror(errno) ));
4067 goto fail;
4071 if (tag_type == SMB_ACL_GROUP) {
4072 uint32 gidval = IVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
4073 gid_t gid = (uid_t)gidval;
4074 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn, the_entry,(void *)&gid) == -1) {
4075 DEBUG(0,("create_posix_acl_from_wire: Failed to set gid %u on entry %u. (%s)\n",
4076 (unsigned int)gid, i, strerror(errno) ));
4077 goto fail;
4082 return the_acl;
4084 fail:
4086 if (the_acl != NULL) {
4087 SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
4089 return NULL;
4092 /****************************************************************************
4093 Calls from UNIX extensions - Default POSIX ACL set.
4094 If num_def_acls == 0 and not a directory just return. If it is a directory
4095 and num_def_acls == 0 then remove the default acl. Else set the default acl
4096 on the directory.
4097 ****************************************************************************/
4099 bool set_unix_posix_default_acl(connection_struct *conn, const char *fname, SMB_STRUCT_STAT *psbuf,
4100 uint16 num_def_acls, const char *pdata)
4102 SMB_ACL_T def_acl = NULL;
4104 if (!S_ISDIR(psbuf->st_mode)) {
4105 if (num_def_acls) {
4106 DEBUG(5,("set_unix_posix_default_acl: Can't set default ACL on non-directory file %s\n", fname ));
4107 errno = EISDIR;
4108 return False;
4109 } else {
4110 return True;
4114 if (!num_def_acls) {
4115 /* Remove the default ACL. */
4116 if (SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn, fname) == -1) {
4117 DEBUG(5,("set_unix_posix_default_acl: acl_delete_def_file failed on directory %s (%s)\n",
4118 fname, strerror(errno) ));
4119 return False;
4121 return True;
4124 if ((def_acl = create_posix_acl_from_wire(conn, num_def_acls, pdata)) == NULL) {
4125 return False;
4128 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fname, SMB_ACL_TYPE_DEFAULT, def_acl) == -1) {
4129 DEBUG(5,("set_unix_posix_default_acl: acl_set_file failed on directory %s (%s)\n",
4130 fname, strerror(errno) ));
4131 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4132 return False;
4135 DEBUG(10,("set_unix_posix_default_acl: set default acl for file %s\n", fname ));
4136 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4137 return True;
4140 /****************************************************************************
4141 Remove an ACL from a file. As we don't have acl_delete_entry() available
4142 we must read the current acl and copy all entries except MASK, USER and GROUP
4143 to a new acl, then set that. This (at least on Linux) causes any ACL to be
4144 removed.
4145 FIXME ! How does the share mask/mode fit into this.... ?
4146 ****************************************************************************/
4148 static bool remove_posix_acl(connection_struct *conn, files_struct *fsp, const char *fname)
4150 SMB_ACL_T file_acl = NULL;
4151 int entry_id = SMB_ACL_FIRST_ENTRY;
4152 SMB_ACL_ENTRY_T entry;
4153 bool ret = False;
4154 /* Create a new ACL with only 3 entries, u/g/w. */
4155 SMB_ACL_T new_file_acl = SMB_VFS_SYS_ACL_INIT(conn, 3);
4156 SMB_ACL_ENTRY_T user_ent = NULL;
4157 SMB_ACL_ENTRY_T group_ent = NULL;
4158 SMB_ACL_ENTRY_T other_ent = NULL;
4160 if (new_file_acl == NULL) {
4161 DEBUG(5,("remove_posix_acl: failed to init new ACL with 3 entries for file %s.\n", fname));
4162 return False;
4165 /* Now create the u/g/w entries. */
4166 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &new_file_acl, &user_ent) == -1) {
4167 DEBUG(5,("remove_posix_acl: Failed to create user entry for file %s. (%s)\n",
4168 fname, strerror(errno) ));
4169 goto done;
4171 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, user_ent, SMB_ACL_USER_OBJ) == -1) {
4172 DEBUG(5,("remove_posix_acl: Failed to set user entry for file %s. (%s)\n",
4173 fname, strerror(errno) ));
4174 goto done;
4177 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &new_file_acl, &group_ent) == -1) {
4178 DEBUG(5,("remove_posix_acl: Failed to create group entry for file %s. (%s)\n",
4179 fname, strerror(errno) ));
4180 goto done;
4182 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, group_ent, SMB_ACL_GROUP_OBJ) == -1) {
4183 DEBUG(5,("remove_posix_acl: Failed to set group entry for file %s. (%s)\n",
4184 fname, strerror(errno) ));
4185 goto done;
4188 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &new_file_acl, &other_ent) == -1) {
4189 DEBUG(5,("remove_posix_acl: Failed to create other entry for file %s. (%s)\n",
4190 fname, strerror(errno) ));
4191 goto done;
4193 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, other_ent, SMB_ACL_OTHER) == -1) {
4194 DEBUG(5,("remove_posix_acl: Failed to set other entry for file %s. (%s)\n",
4195 fname, strerror(errno) ));
4196 goto done;
4199 /* Get the current file ACL. */
4200 if (fsp && fsp->fh->fd != -1) {
4201 file_acl = SMB_VFS_SYS_ACL_GET_FD(fsp);
4202 } else {
4203 file_acl = SMB_VFS_SYS_ACL_GET_FILE( conn, fname, SMB_ACL_TYPE_ACCESS);
4206 if (file_acl == NULL) {
4207 /* This is only returned if an error occurred. Even for a file with
4208 no acl a u/g/w acl should be returned. */
4209 DEBUG(5,("remove_posix_acl: failed to get ACL from file %s (%s).\n",
4210 fname, strerror(errno) ));
4211 goto done;
4214 while ( SMB_VFS_SYS_ACL_GET_ENTRY(conn, file_acl, entry_id, &entry) == 1) {
4215 SMB_ACL_TAG_T tagtype;
4216 SMB_ACL_PERMSET_T permset;
4218 entry_id = SMB_ACL_NEXT_ENTRY;
4220 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1) {
4221 DEBUG(5,("remove_posix_acl: failed to get tagtype from ACL on file %s (%s).\n",
4222 fname, strerror(errno) ));
4223 goto done;
4226 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1) {
4227 DEBUG(5,("remove_posix_acl: failed to get permset from ACL on file %s (%s).\n",
4228 fname, strerror(errno) ));
4229 goto done;
4232 if (tagtype == SMB_ACL_USER_OBJ) {
4233 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, user_ent, permset) == -1) {
4234 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4235 fname, strerror(errno) ));
4237 } else if (tagtype == SMB_ACL_GROUP_OBJ) {
4238 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, group_ent, permset) == -1) {
4239 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4240 fname, strerror(errno) ));
4242 } else if (tagtype == SMB_ACL_OTHER) {
4243 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, other_ent, permset) == -1) {
4244 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4245 fname, strerror(errno) ));
4250 /* Set the new empty file ACL. */
4251 if (fsp && fsp->fh->fd != -1) {
4252 if (SMB_VFS_SYS_ACL_SET_FD(fsp, new_file_acl) == -1) {
4253 DEBUG(5,("remove_posix_acl: acl_set_file failed on %s (%s)\n",
4254 fname, strerror(errno) ));
4255 goto done;
4257 } else {
4258 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS, new_file_acl) == -1) {
4259 DEBUG(5,("remove_posix_acl: acl_set_file failed on %s (%s)\n",
4260 fname, strerror(errno) ));
4261 goto done;
4265 ret = True;
4267 done:
4269 if (file_acl) {
4270 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4272 if (new_file_acl) {
4273 SMB_VFS_SYS_ACL_FREE_ACL(conn, new_file_acl);
4275 return ret;
4278 /****************************************************************************
4279 Calls from UNIX extensions - POSIX ACL set.
4280 If num_def_acls == 0 then read/modify/write acl after removing all entries
4281 except SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER.
4282 ****************************************************************************/
4284 bool set_unix_posix_acl(connection_struct *conn, files_struct *fsp, const char *fname, uint16 num_acls, const char *pdata)
4286 SMB_ACL_T file_acl = NULL;
4288 if (!num_acls) {
4289 /* Remove the ACL from the file. */
4290 return remove_posix_acl(conn, fsp, fname);
4293 if ((file_acl = create_posix_acl_from_wire(conn, num_acls, pdata)) == NULL) {
4294 return False;
4297 if (fsp && fsp->fh->fd != -1) {
4298 /* The preferred way - use an open fd. */
4299 if (SMB_VFS_SYS_ACL_SET_FD(fsp, file_acl) == -1) {
4300 DEBUG(5,("set_unix_posix_acl: acl_set_file failed on %s (%s)\n",
4301 fname, strerror(errno) ));
4302 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4303 return False;
4305 } else {
4306 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS, file_acl) == -1) {
4307 DEBUG(5,("set_unix_posix_acl: acl_set_file failed on %s (%s)\n",
4308 fname, strerror(errno) ));
4309 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4310 return False;
4314 DEBUG(10,("set_unix_posix_acl: set acl for file %s\n", fname ));
4315 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4316 return True;
4319 /********************************************************************
4320 Pull the NT ACL from a file on disk or the OpenEventlog() access
4321 check. Caller is responsible for freeing the returned security
4322 descriptor via TALLOC_FREE(). This is designed for dealing with
4323 user space access checks in smbd outside of the VFS. For example,
4324 checking access rights in OpenEventlog().
4326 Assume we are dealing with files (for now)
4327 ********************************************************************/
4329 SEC_DESC *get_nt_acl_no_snum( TALLOC_CTX *ctx, const char *fname)
4331 SEC_DESC *psd, *ret_sd;
4332 connection_struct *conn;
4333 files_struct finfo;
4334 struct fd_handle fh;
4336 conn = TALLOC_ZERO_P(ctx, connection_struct);
4337 if (conn == NULL) {
4338 DEBUG(0, ("talloc failed\n"));
4339 return NULL;
4342 if (!(conn->params = TALLOC_P(conn, struct share_params))) {
4343 DEBUG(0,("get_nt_acl_no_snum: talloc() failed!\n"));
4344 TALLOC_FREE(conn);
4345 return NULL;
4348 conn->params->service = -1;
4350 set_conn_connectpath(conn, "/");
4352 if (!smbd_vfs_init(conn)) {
4353 DEBUG(0,("get_nt_acl_no_snum: Unable to create a fake connection struct!\n"));
4354 conn_free_internal( conn );
4355 return NULL;
4358 ZERO_STRUCT( finfo );
4359 ZERO_STRUCT( fh );
4361 finfo.fnum = -1;
4362 finfo.conn = conn;
4363 finfo.fh = &fh;
4364 finfo.fh->fd = -1;
4365 finfo.fsp_name = CONST_DISCARD(char *,fname);
4367 if (!NT_STATUS_IS_OK(SMB_VFS_FGET_NT_ACL( &finfo, DACL_SECURITY_INFORMATION, &psd))) {
4368 DEBUG(0,("get_nt_acl_no_snum: get_nt_acl returned zero.\n"));
4369 conn_free_internal( conn );
4370 return NULL;
4373 ret_sd = dup_sec_desc( ctx, psd );
4375 conn_free_internal( conn );
4377 return ret_sd;