Make the posix ACL module cope with a NULL incoming DACL and a
[Samba/vl.git] / source3 / smbd / posix_acls.c
blob9713ec0b301669b9b29beec0460a35c8b0d2f028
1 /*
2 Unix SMB/CIFS implementation.
3 SMB NT Security Descriptor / Unix permission conversion.
4 Copyright (C) Jeremy Allison 1994-2009.
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"
23 #include "../libcli/security/dom_sid.h"
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 struct dom_sid trustee;
48 enum ace_owner owner_type;
49 enum ace_attribute attr;
50 posix_id unix_ug;
51 uint8_t ace_flags; /* From windows ACE entry. */
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 - version 1.
59 * All values are little endian.
61 * | 1 | 1 | 2 | 2 | ....
62 * +------+------+-------------+---------------------+-------------+--------------------+
63 * | vers | flag | num_entries | num_default_entries | ..entries.. | default_entries... |
64 * +------+------+-------------+---------------------+-------------+--------------------+
66 * Entry format is :
68 * | 1 | 4 |
69 * +------+-------------------+
70 * | value| uid/gid or world |
71 * | type | value |
72 * +------+-------------------+
74 * Version 2 format. Stores extra Windows metadata about an ACL.
76 * | 1 | 2 | 2 | 2 | ....
77 * +------+----------+-------------+---------------------+-------------+--------------------+
78 * | vers | ace | num_entries | num_default_entries | ..entries.. | default_entries... |
79 * | 2 | type | | | | |
80 * +------+----------+-------------+---------------------+-------------+--------------------+
82 * Entry format is :
84 * | 1 | 1 | 4 |
85 * +------+------+-------------------+
86 * | ace | value| uid/gid or world |
87 * | flag | type | value |
88 * +------+-------------------+------+
92 #define PAI_VERSION_OFFSET 0
94 #define PAI_V1_FLAG_OFFSET 1
95 #define PAI_V1_NUM_ENTRIES_OFFSET 2
96 #define PAI_V1_NUM_DEFAULT_ENTRIES_OFFSET 4
97 #define PAI_V1_ENTRIES_BASE 6
98 #define PAI_V1_ACL_FLAG_PROTECTED 0x1
99 #define PAI_V1_ENTRY_LENGTH 5
101 #define PAI_V1_VERSION 1
103 #define PAI_V2_TYPE_OFFSET 1
104 #define PAI_V2_NUM_ENTRIES_OFFSET 3
105 #define PAI_V2_NUM_DEFAULT_ENTRIES_OFFSET 5
106 #define PAI_V2_ENTRIES_BASE 7
107 #define PAI_V2_ENTRY_LENGTH 6
109 #define PAI_V2_VERSION 2
112 * In memory format of user.SAMBA_PAI attribute.
115 struct pai_entry {
116 struct pai_entry *next, *prev;
117 uint8_t ace_flags;
118 enum ace_owner owner_type;
119 posix_id unix_ug;
122 struct pai_val {
123 uint16_t sd_type;
124 unsigned int num_entries;
125 struct pai_entry *entry_list;
126 unsigned int num_def_entries;
127 struct pai_entry *def_entry_list;
130 /************************************************************************
131 Return a uint32 of the pai_entry principal.
132 ************************************************************************/
134 static uint32_t get_pai_entry_val(struct pai_entry *paie)
136 switch (paie->owner_type) {
137 case UID_ACE:
138 DEBUG(10,("get_pai_entry_val: uid = %u\n", (unsigned int)paie->unix_ug.uid ));
139 return (uint32_t)paie->unix_ug.uid;
140 case GID_ACE:
141 DEBUG(10,("get_pai_entry_val: gid = %u\n", (unsigned int)paie->unix_ug.gid ));
142 return (uint32_t)paie->unix_ug.gid;
143 case WORLD_ACE:
144 default:
145 DEBUG(10,("get_pai_entry_val: world ace\n"));
146 return (uint32_t)-1;
150 /************************************************************************
151 Return a uint32 of the entry principal.
152 ************************************************************************/
154 static uint32_t get_entry_val(canon_ace *ace_entry)
156 switch (ace_entry->owner_type) {
157 case UID_ACE:
158 DEBUG(10,("get_entry_val: uid = %u\n", (unsigned int)ace_entry->unix_ug.uid ));
159 return (uint32_t)ace_entry->unix_ug.uid;
160 case GID_ACE:
161 DEBUG(10,("get_entry_val: gid = %u\n", (unsigned int)ace_entry->unix_ug.gid ));
162 return (uint32_t)ace_entry->unix_ug.gid;
163 case WORLD_ACE:
164 default:
165 DEBUG(10,("get_entry_val: world ace\n"));
166 return (uint32_t)-1;
170 /************************************************************************
171 Create the on-disk format (always v2 now). Caller must free.
172 ************************************************************************/
174 static char *create_pai_buf_v2(canon_ace *file_ace_list,
175 canon_ace *dir_ace_list,
176 uint16_t sd_type,
177 size_t *store_size)
179 char *pai_buf = NULL;
180 canon_ace *ace_list = NULL;
181 char *entry_offset = NULL;
182 unsigned int num_entries = 0;
183 unsigned int num_def_entries = 0;
184 unsigned int i;
186 for (ace_list = file_ace_list; ace_list; ace_list = ace_list->next) {
187 num_entries++;
190 for (ace_list = dir_ace_list; ace_list; ace_list = ace_list->next) {
191 num_def_entries++;
194 DEBUG(10,("create_pai_buf_v2: num_entries = %u, num_def_entries = %u\n", num_entries, num_def_entries ));
196 *store_size = PAI_V2_ENTRIES_BASE +
197 ((num_entries + num_def_entries)*PAI_V2_ENTRY_LENGTH);
199 pai_buf = (char *)SMB_MALLOC(*store_size);
200 if (!pai_buf) {
201 return NULL;
204 /* Set up the header. */
205 memset(pai_buf, '\0', PAI_V2_ENTRIES_BASE);
206 SCVAL(pai_buf,PAI_VERSION_OFFSET,PAI_V2_VERSION);
207 SSVAL(pai_buf,PAI_V2_TYPE_OFFSET, sd_type);
208 SSVAL(pai_buf,PAI_V2_NUM_ENTRIES_OFFSET,num_entries);
209 SSVAL(pai_buf,PAI_V2_NUM_DEFAULT_ENTRIES_OFFSET,num_def_entries);
211 DEBUG(10,("create_pai_buf_v2: sd_type = 0x%x\n",
212 (unsigned int)sd_type ));
214 entry_offset = pai_buf + PAI_V2_ENTRIES_BASE;
216 i = 0;
217 for (ace_list = file_ace_list; ace_list; ace_list = ace_list->next) {
218 uint8_t type_val = (uint8_t)ace_list->owner_type;
219 uint32_t entry_val = get_entry_val(ace_list);
221 SCVAL(entry_offset,0,ace_list->ace_flags);
222 SCVAL(entry_offset,1,type_val);
223 SIVAL(entry_offset,2,entry_val);
224 DEBUG(10,("create_pai_buf_v2: entry %u [0x%x] [0x%x] [0x%x]\n",
226 (unsigned int)ace_list->ace_flags,
227 (unsigned int)type_val,
228 (unsigned int)entry_val ));
229 i++;
230 entry_offset += PAI_V2_ENTRY_LENGTH;
233 for (ace_list = dir_ace_list; ace_list; ace_list = ace_list->next) {
234 uint8_t type_val = (uint8_t)ace_list->owner_type;
235 uint32_t entry_val = get_entry_val(ace_list);
237 SCVAL(entry_offset,0,ace_list->ace_flags);
238 SCVAL(entry_offset,1,type_val);
239 SIVAL(entry_offset,2,entry_val);
240 DEBUG(10,("create_pai_buf_v2: entry %u [0x%x] [0x%x] [0x%x]\n",
242 (unsigned int)ace_list->ace_flags,
243 (unsigned int)type_val,
244 (unsigned int)entry_val ));
245 i++;
246 entry_offset += PAI_V2_ENTRY_LENGTH;
249 return pai_buf;
252 /************************************************************************
253 Store the user.SAMBA_PAI attribute on disk.
254 ************************************************************************/
256 static void store_inheritance_attributes(files_struct *fsp,
257 canon_ace *file_ace_list,
258 canon_ace *dir_ace_list,
259 uint16_t sd_type)
261 int ret;
262 size_t store_size;
263 char *pai_buf;
265 if (!lp_map_acl_inherit(SNUM(fsp->conn))) {
266 return;
269 pai_buf = create_pai_buf_v2(file_ace_list, dir_ace_list,
270 sd_type, &store_size);
272 if (fsp->fh->fd != -1) {
273 ret = SMB_VFS_FSETXATTR(fsp, SAMBA_POSIX_INHERITANCE_EA_NAME,
274 pai_buf, store_size, 0);
275 } else {
276 ret = SMB_VFS_SETXATTR(fsp->conn, fsp->fsp_name->base_name,
277 SAMBA_POSIX_INHERITANCE_EA_NAME,
278 pai_buf, store_size, 0);
281 SAFE_FREE(pai_buf);
283 DEBUG(10,("store_inheritance_attribute: type 0x%x for file %s\n",
284 (unsigned int)sd_type,
285 fsp_str_dbg(fsp)));
287 if (ret == -1 && !no_acl_syscall_error(errno)) {
288 DEBUG(1,("store_inheritance_attribute: Error %s\n", strerror(errno) ));
292 /************************************************************************
293 Delete the in memory inheritance info.
294 ************************************************************************/
296 static void free_inherited_info(struct pai_val *pal)
298 if (pal) {
299 struct pai_entry *paie, *paie_next;
300 for (paie = pal->entry_list; paie; paie = paie_next) {
301 paie_next = paie->next;
302 SAFE_FREE(paie);
304 for (paie = pal->def_entry_list; paie; paie = paie_next) {
305 paie_next = paie->next;
306 SAFE_FREE(paie);
308 SAFE_FREE(pal);
312 /************************************************************************
313 Get any stored ACE flags.
314 ************************************************************************/
316 static uint16_t get_pai_flags(struct pai_val *pal, canon_ace *ace_entry, bool default_ace)
318 struct pai_entry *paie;
320 if (!pal) {
321 return 0;
324 /* If the entry exists it is inherited. */
325 for (paie = (default_ace ? pal->def_entry_list : pal->entry_list); paie; paie = paie->next) {
326 if (ace_entry->owner_type == paie->owner_type &&
327 get_entry_val(ace_entry) == get_pai_entry_val(paie))
328 return paie->ace_flags;
330 return 0;
333 /************************************************************************
334 Ensure an attribute just read is valid - v1.
335 ************************************************************************/
337 static bool check_pai_ok_v1(const char *pai_buf, size_t pai_buf_data_size)
339 uint16 num_entries;
340 uint16 num_def_entries;
342 if (pai_buf_data_size < PAI_V1_ENTRIES_BASE) {
343 /* Corrupted - too small. */
344 return false;
347 if (CVAL(pai_buf,PAI_VERSION_OFFSET) != PAI_V1_VERSION) {
348 return false;
351 num_entries = SVAL(pai_buf,PAI_V1_NUM_ENTRIES_OFFSET);
352 num_def_entries = SVAL(pai_buf,PAI_V1_NUM_DEFAULT_ENTRIES_OFFSET);
354 /* Check the entry lists match. */
355 /* Each entry is 5 bytes (type plus 4 bytes of uid or gid). */
357 if (((num_entries + num_def_entries)*PAI_V1_ENTRY_LENGTH) +
358 PAI_V1_ENTRIES_BASE != pai_buf_data_size) {
359 return false;
362 return true;
365 /************************************************************************
366 Ensure an attribute just read is valid - v2.
367 ************************************************************************/
369 static bool check_pai_ok_v2(const char *pai_buf, size_t pai_buf_data_size)
371 uint16 num_entries;
372 uint16 num_def_entries;
374 if (pai_buf_data_size < PAI_V2_ENTRIES_BASE) {
375 /* Corrupted - too small. */
376 return false;
379 if (CVAL(pai_buf,PAI_VERSION_OFFSET) != PAI_V2_VERSION) {
380 return false;
383 num_entries = SVAL(pai_buf,PAI_V2_NUM_ENTRIES_OFFSET);
384 num_def_entries = SVAL(pai_buf,PAI_V2_NUM_DEFAULT_ENTRIES_OFFSET);
386 /* Check the entry lists match. */
387 /* Each entry is 6 bytes (flags + type + 4 bytes of uid or gid). */
389 if (((num_entries + num_def_entries)*PAI_V2_ENTRY_LENGTH) +
390 PAI_V2_ENTRIES_BASE != pai_buf_data_size) {
391 return false;
394 return true;
397 /************************************************************************
398 Decode the owner.
399 ************************************************************************/
401 static bool get_pai_owner_type(struct pai_entry *paie, const char *entry_offset)
403 paie->owner_type = (enum ace_owner)CVAL(entry_offset,0);
404 switch( paie->owner_type) {
405 case UID_ACE:
406 paie->unix_ug.uid = (uid_t)IVAL(entry_offset,1);
407 DEBUG(10,("get_pai_owner_type: uid = %u\n",
408 (unsigned int)paie->unix_ug.uid ));
409 break;
410 case GID_ACE:
411 paie->unix_ug.gid = (gid_t)IVAL(entry_offset,1);
412 DEBUG(10,("get_pai_owner_type: gid = %u\n",
413 (unsigned int)paie->unix_ug.gid ));
414 break;
415 case WORLD_ACE:
416 paie->unix_ug.world = -1;
417 DEBUG(10,("get_pai_owner_type: world ace\n"));
418 break;
419 default:
420 DEBUG(10,("get_pai_owner_type: unknown type %u\n",
421 (unsigned int)paie->owner_type ));
422 return false;
424 return true;
427 /************************************************************************
428 Process v2 entries.
429 ************************************************************************/
431 static const char *create_pai_v1_entries(struct pai_val *paiv,
432 const char *entry_offset,
433 bool def_entry)
435 int i;
437 for (i = 0; i < paiv->num_entries; i++) {
438 struct pai_entry *paie = SMB_MALLOC_P(struct pai_entry);
439 if (!paie) {
440 return NULL;
443 paie->ace_flags = SEC_ACE_FLAG_INHERITED_ACE;
444 if (!get_pai_owner_type(paie, entry_offset)) {
445 return NULL;
448 if (!def_entry) {
449 DLIST_ADD(paiv->entry_list, paie);
450 } else {
451 DLIST_ADD(paiv->def_entry_list, paie);
453 entry_offset += PAI_V1_ENTRY_LENGTH;
455 return entry_offset;
458 /************************************************************************
459 Convert to in-memory format from version 1.
460 ************************************************************************/
462 static struct pai_val *create_pai_val_v1(const char *buf, size_t size)
464 const char *entry_offset;
465 struct pai_val *paiv = NULL;
467 if (!check_pai_ok_v1(buf, size)) {
468 return NULL;
471 paiv = SMB_MALLOC_P(struct pai_val);
472 if (!paiv) {
473 return NULL;
476 memset(paiv, '\0', sizeof(struct pai_val));
478 paiv->sd_type = (CVAL(buf,PAI_V1_FLAG_OFFSET) == PAI_V1_ACL_FLAG_PROTECTED) ?
479 SEC_DESC_DACL_PROTECTED : 0;
481 paiv->num_entries = SVAL(buf,PAI_V1_NUM_ENTRIES_OFFSET);
482 paiv->num_def_entries = SVAL(buf,PAI_V1_NUM_DEFAULT_ENTRIES_OFFSET);
484 entry_offset = buf + PAI_V1_ENTRIES_BASE;
486 DEBUG(10,("create_pai_val: num_entries = %u, num_def_entries = %u\n",
487 paiv->num_entries, paiv->num_def_entries ));
489 entry_offset = create_pai_v1_entries(paiv, entry_offset, false);
490 if (entry_offset == NULL) {
491 free_inherited_info(paiv);
492 return NULL;
494 entry_offset = create_pai_v1_entries(paiv, entry_offset, true);
495 if (entry_offset == NULL) {
496 free_inherited_info(paiv);
497 return NULL;
500 return paiv;
503 /************************************************************************
504 Process v2 entries.
505 ************************************************************************/
507 static const char *create_pai_v2_entries(struct pai_val *paiv,
508 unsigned int num_entries,
509 const char *entry_offset,
510 bool def_entry)
512 unsigned int i;
514 for (i = 0; i < num_entries; i++) {
515 struct pai_entry *paie = SMB_MALLOC_P(struct pai_entry);
516 if (!paie) {
517 return NULL;
520 paie->ace_flags = CVAL(entry_offset,0);
522 if (!get_pai_owner_type(paie, entry_offset+1)) {
523 return NULL;
525 if (!def_entry) {
526 DLIST_ADD(paiv->entry_list, paie);
527 } else {
528 DLIST_ADD(paiv->def_entry_list, paie);
530 entry_offset += PAI_V2_ENTRY_LENGTH;
532 return entry_offset;
535 /************************************************************************
536 Convert to in-memory format from version 2.
537 ************************************************************************/
539 static struct pai_val *create_pai_val_v2(const char *buf, size_t size)
541 const char *entry_offset;
542 struct pai_val *paiv = NULL;
544 if (!check_pai_ok_v2(buf, size)) {
545 return NULL;
548 paiv = SMB_MALLOC_P(struct pai_val);
549 if (!paiv) {
550 return NULL;
553 memset(paiv, '\0', sizeof(struct pai_val));
555 paiv->sd_type = SVAL(buf,PAI_V2_TYPE_OFFSET);
557 paiv->num_entries = SVAL(buf,PAI_V2_NUM_ENTRIES_OFFSET);
558 paiv->num_def_entries = SVAL(buf,PAI_V2_NUM_DEFAULT_ENTRIES_OFFSET);
560 entry_offset = buf + PAI_V2_ENTRIES_BASE;
562 DEBUG(10,("create_pai_val_v2: sd_type = 0x%x num_entries = %u, num_def_entries = %u\n",
563 (unsigned int)paiv->sd_type,
564 paiv->num_entries, paiv->num_def_entries ));
566 entry_offset = create_pai_v2_entries(paiv, paiv->num_entries,
567 entry_offset, false);
568 if (entry_offset == NULL) {
569 free_inherited_info(paiv);
570 return NULL;
572 entry_offset = create_pai_v2_entries(paiv, paiv->num_def_entries,
573 entry_offset, true);
574 if (entry_offset == NULL) {
575 free_inherited_info(paiv);
576 return NULL;
579 return paiv;
582 /************************************************************************
583 Convert to in-memory format - from either version 1 or 2.
584 ************************************************************************/
586 static struct pai_val *create_pai_val(const char *buf, size_t size)
588 if (size < 1) {
589 return NULL;
591 if (CVAL(buf,PAI_VERSION_OFFSET) == PAI_V1_VERSION) {
592 return create_pai_val_v1(buf, size);
593 } else if (CVAL(buf,PAI_VERSION_OFFSET) == PAI_V2_VERSION) {
594 return create_pai_val_v2(buf, size);
595 } else {
596 return NULL;
600 /************************************************************************
601 Load the user.SAMBA_PAI attribute.
602 ************************************************************************/
604 static struct pai_val *fload_inherited_info(files_struct *fsp)
606 char *pai_buf;
607 size_t pai_buf_size = 1024;
608 struct pai_val *paiv = NULL;
609 ssize_t ret;
611 if (!lp_map_acl_inherit(SNUM(fsp->conn))) {
612 return NULL;
615 if ((pai_buf = (char *)SMB_MALLOC(pai_buf_size)) == NULL) {
616 return NULL;
619 do {
620 if (fsp->fh->fd != -1) {
621 ret = SMB_VFS_FGETXATTR(fsp, SAMBA_POSIX_INHERITANCE_EA_NAME,
622 pai_buf, pai_buf_size);
623 } else {
624 ret = SMB_VFS_GETXATTR(fsp->conn,
625 fsp->fsp_name->base_name,
626 SAMBA_POSIX_INHERITANCE_EA_NAME,
627 pai_buf, pai_buf_size);
630 if (ret == -1) {
631 if (errno != ERANGE) {
632 break;
634 /* Buffer too small - enlarge it. */
635 pai_buf_size *= 2;
636 SAFE_FREE(pai_buf);
637 if (pai_buf_size > 1024*1024) {
638 return NULL; /* Limit malloc to 1mb. */
640 if ((pai_buf = (char *)SMB_MALLOC(pai_buf_size)) == NULL)
641 return NULL;
643 } while (ret == -1);
645 DEBUG(10,("load_inherited_info: ret = %lu for file %s\n",
646 (unsigned long)ret, fsp_str_dbg(fsp)));
648 if (ret == -1) {
649 /* No attribute or not supported. */
650 #if defined(ENOATTR)
651 if (errno != ENOATTR)
652 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
653 #else
654 if (errno != ENOSYS)
655 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
656 #endif
657 SAFE_FREE(pai_buf);
658 return NULL;
661 paiv = create_pai_val(pai_buf, ret);
663 if (paiv) {
664 DEBUG(10,("load_inherited_info: ACL type is 0x%x for file %s\n",
665 (unsigned int)paiv->sd_type, fsp_str_dbg(fsp)));
668 SAFE_FREE(pai_buf);
669 return paiv;
672 /************************************************************************
673 Load the user.SAMBA_PAI attribute.
674 ************************************************************************/
676 static struct pai_val *load_inherited_info(const struct connection_struct *conn,
677 const char *fname)
679 char *pai_buf;
680 size_t pai_buf_size = 1024;
681 struct pai_val *paiv = NULL;
682 ssize_t ret;
684 if (!lp_map_acl_inherit(SNUM(conn))) {
685 return NULL;
688 if ((pai_buf = (char *)SMB_MALLOC(pai_buf_size)) == NULL) {
689 return NULL;
692 do {
693 ret = SMB_VFS_GETXATTR(conn, fname,
694 SAMBA_POSIX_INHERITANCE_EA_NAME,
695 pai_buf, pai_buf_size);
697 if (ret == -1) {
698 if (errno != ERANGE) {
699 break;
701 /* Buffer too small - enlarge it. */
702 pai_buf_size *= 2;
703 SAFE_FREE(pai_buf);
704 if (pai_buf_size > 1024*1024) {
705 return NULL; /* Limit malloc to 1mb. */
707 if ((pai_buf = (char *)SMB_MALLOC(pai_buf_size)) == NULL)
708 return NULL;
710 } while (ret == -1);
712 DEBUG(10,("load_inherited_info: ret = %lu for file %s\n", (unsigned long)ret, fname));
714 if (ret == -1) {
715 /* No attribute or not supported. */
716 #if defined(ENOATTR)
717 if (errno != ENOATTR)
718 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
719 #else
720 if (errno != ENOSYS)
721 DEBUG(10,("load_inherited_info: Error %s\n", strerror(errno) ));
722 #endif
723 SAFE_FREE(pai_buf);
724 return NULL;
727 paiv = create_pai_val(pai_buf, ret);
729 if (paiv) {
730 DEBUG(10,("load_inherited_info: ACL type 0x%x for file %s\n",
731 (unsigned int)paiv->sd_type,
732 fname));
735 SAFE_FREE(pai_buf);
736 return paiv;
739 /****************************************************************************
740 Functions to manipulate the internal ACE format.
741 ****************************************************************************/
743 /****************************************************************************
744 Count a linked list of canonical ACE entries.
745 ****************************************************************************/
747 static size_t count_canon_ace_list( canon_ace *l_head )
749 size_t count = 0;
750 canon_ace *ace;
752 for (ace = l_head; ace; ace = ace->next)
753 count++;
755 return count;
758 /****************************************************************************
759 Free a linked list of canonical ACE entries.
760 ****************************************************************************/
762 static void free_canon_ace_list( canon_ace *l_head )
764 canon_ace *list, *next;
766 for (list = l_head; list; list = next) {
767 next = list->next;
768 DLIST_REMOVE(l_head, list);
769 SAFE_FREE(list);
773 /****************************************************************************
774 Function to duplicate a canon_ace entry.
775 ****************************************************************************/
777 static canon_ace *dup_canon_ace( canon_ace *src_ace)
779 canon_ace *dst_ace = SMB_MALLOC_P(canon_ace);
781 if (dst_ace == NULL)
782 return NULL;
784 *dst_ace = *src_ace;
785 dst_ace->prev = dst_ace->next = NULL;
786 return dst_ace;
789 /****************************************************************************
790 Print out a canon ace.
791 ****************************************************************************/
793 static void print_canon_ace(canon_ace *pace, int num)
795 dbgtext( "canon_ace index %d. Type = %s ", num, pace->attr == ALLOW_ACE ? "allow" : "deny" );
796 dbgtext( "SID = %s ", sid_string_dbg(&pace->trustee));
797 if (pace->owner_type == UID_ACE) {
798 const char *u_name = uidtoname(pace->unix_ug.uid);
799 dbgtext( "uid %u (%s) ", (unsigned int)pace->unix_ug.uid, u_name );
800 } else if (pace->owner_type == GID_ACE) {
801 char *g_name = gidtoname(pace->unix_ug.gid);
802 dbgtext( "gid %u (%s) ", (unsigned int)pace->unix_ug.gid, g_name );
803 } else
804 dbgtext( "other ");
805 switch (pace->type) {
806 case SMB_ACL_USER:
807 dbgtext( "SMB_ACL_USER ");
808 break;
809 case SMB_ACL_USER_OBJ:
810 dbgtext( "SMB_ACL_USER_OBJ ");
811 break;
812 case SMB_ACL_GROUP:
813 dbgtext( "SMB_ACL_GROUP ");
814 break;
815 case SMB_ACL_GROUP_OBJ:
816 dbgtext( "SMB_ACL_GROUP_OBJ ");
817 break;
818 case SMB_ACL_OTHER:
819 dbgtext( "SMB_ACL_OTHER ");
820 break;
821 default:
822 dbgtext( "MASK " );
823 break;
826 dbgtext( "ace_flags = 0x%x ", (unsigned int)pace->ace_flags);
827 dbgtext( "perms ");
828 dbgtext( "%c", pace->perms & S_IRUSR ? 'r' : '-');
829 dbgtext( "%c", pace->perms & S_IWUSR ? 'w' : '-');
830 dbgtext( "%c\n", pace->perms & S_IXUSR ? 'x' : '-');
833 /****************************************************************************
834 Print out a canon ace list.
835 ****************************************************************************/
837 static void print_canon_ace_list(const char *name, canon_ace *ace_list)
839 int count = 0;
841 if( DEBUGLVL( 10 )) {
842 dbgtext( "print_canon_ace_list: %s\n", name );
843 for (;ace_list; ace_list = ace_list->next, count++)
844 print_canon_ace(ace_list, count );
848 /****************************************************************************
849 Map POSIX ACL perms to canon_ace permissions (a mode_t containing only S_(R|W|X)USR bits).
850 ****************************************************************************/
852 static mode_t convert_permset_to_mode_t(connection_struct *conn, SMB_ACL_PERMSET_T permset)
854 mode_t ret = 0;
856 ret |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_READ) ? S_IRUSR : 0);
857 ret |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_WRITE) ? S_IWUSR : 0);
858 ret |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_EXECUTE) ? S_IXUSR : 0);
860 return ret;
863 /****************************************************************************
864 Map generic UNIX permissions to canon_ace permissions (a mode_t containing only S_(R|W|X)USR bits).
865 ****************************************************************************/
867 static mode_t unix_perms_to_acl_perms(mode_t mode, int r_mask, int w_mask, int x_mask)
869 mode_t ret = 0;
871 if (mode & r_mask)
872 ret |= S_IRUSR;
873 if (mode & w_mask)
874 ret |= S_IWUSR;
875 if (mode & x_mask)
876 ret |= S_IXUSR;
878 return ret;
881 /****************************************************************************
882 Map canon_ace permissions (a mode_t containing only S_(R|W|X)USR bits) to
883 an SMB_ACL_PERMSET_T.
884 ****************************************************************************/
886 static int map_acl_perms_to_permset(connection_struct *conn, mode_t mode, SMB_ACL_PERMSET_T *p_permset)
888 if (SMB_VFS_SYS_ACL_CLEAR_PERMS(conn, *p_permset) == -1)
889 return -1;
890 if (mode & S_IRUSR) {
891 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_READ) == -1)
892 return -1;
894 if (mode & S_IWUSR) {
895 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_WRITE) == -1)
896 return -1;
898 if (mode & S_IXUSR) {
899 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_EXECUTE) == -1)
900 return -1;
902 return 0;
905 /****************************************************************************
906 Function to create owner and group SIDs from a SMB_STRUCT_STAT.
907 ****************************************************************************/
909 void create_file_sids(const SMB_STRUCT_STAT *psbuf, struct dom_sid *powner_sid, struct dom_sid *pgroup_sid)
911 uid_to_sid( powner_sid, psbuf->st_ex_uid );
912 gid_to_sid( pgroup_sid, psbuf->st_ex_gid );
915 /****************************************************************************
916 Merge aces with a common sid - if both are allow or deny, OR the permissions together and
917 delete the second one. If the first is deny, mask the permissions off and delete the allow
918 if the permissions become zero, delete the deny if the permissions are non zero.
919 ****************************************************************************/
921 static void merge_aces( canon_ace **pp_list_head, bool dir_acl)
923 canon_ace *l_head = *pp_list_head;
924 canon_ace *curr_ace_outer;
925 canon_ace *curr_ace_outer_next;
928 * First, merge allow entries with identical SIDs, and deny entries
929 * with identical SIDs.
932 for (curr_ace_outer = l_head; curr_ace_outer; curr_ace_outer = curr_ace_outer_next) {
933 canon_ace *curr_ace;
934 canon_ace *curr_ace_next;
936 curr_ace_outer_next = curr_ace_outer->next; /* Save the link in case we delete. */
938 for (curr_ace = curr_ace_outer->next; curr_ace; curr_ace = curr_ace_next) {
939 bool can_merge = false;
941 curr_ace_next = curr_ace->next; /* Save the link in case of delete. */
943 /* For file ACLs we can merge if the SIDs and ALLOW/DENY
944 * types are the same. For directory acls we must also
945 * ensure the POSIX ACL types are the same. */
947 if (!dir_acl) {
948 can_merge = (dom_sid_equal(&curr_ace->trustee, &curr_ace_outer->trustee) &&
949 (curr_ace->attr == curr_ace_outer->attr));
950 } else {
951 can_merge = (dom_sid_equal(&curr_ace->trustee, &curr_ace_outer->trustee) &&
952 (curr_ace->type == curr_ace_outer->type) &&
953 (curr_ace->attr == curr_ace_outer->attr));
956 if (can_merge) {
957 if( DEBUGLVL( 10 )) {
958 dbgtext("merge_aces: Merging ACE's\n");
959 print_canon_ace( curr_ace_outer, 0);
960 print_canon_ace( curr_ace, 0);
963 /* Merge two allow or two deny ACE's. */
965 /* Theoretically we shouldn't merge a dir ACE if
966 * one ACE has the CI flag set, and the other
967 * ACE has the OI flag set, but this is rare
968 * enough we can ignore it. */
970 curr_ace_outer->perms |= curr_ace->perms;
971 curr_ace_outer->ace_flags |= curr_ace->ace_flags;
972 DLIST_REMOVE(l_head, curr_ace);
973 SAFE_FREE(curr_ace);
974 curr_ace_outer_next = curr_ace_outer->next; /* We may have deleted the link. */
980 * Now go through and mask off allow permissions with deny permissions.
981 * We can delete either the allow or deny here as we know that each SID
982 * appears only once in the list.
985 for (curr_ace_outer = l_head; curr_ace_outer; curr_ace_outer = curr_ace_outer_next) {
986 canon_ace *curr_ace;
987 canon_ace *curr_ace_next;
989 curr_ace_outer_next = curr_ace_outer->next; /* Save the link in case we delete. */
991 for (curr_ace = curr_ace_outer->next; curr_ace; curr_ace = curr_ace_next) {
993 curr_ace_next = curr_ace->next; /* Save the link in case of delete. */
996 * Subtract ACE's with different entries. Due to the ordering constraints
997 * we've put on the ACL, we know the deny must be the first one.
1000 if (dom_sid_equal(&curr_ace->trustee, &curr_ace_outer->trustee) &&
1001 (curr_ace_outer->attr == DENY_ACE) && (curr_ace->attr == ALLOW_ACE)) {
1003 if( DEBUGLVL( 10 )) {
1004 dbgtext("merge_aces: Masking ACE's\n");
1005 print_canon_ace( curr_ace_outer, 0);
1006 print_canon_ace( curr_ace, 0);
1009 curr_ace->perms &= ~curr_ace_outer->perms;
1011 if (curr_ace->perms == 0) {
1014 * The deny overrides the allow. Remove the allow.
1017 DLIST_REMOVE(l_head, curr_ace);
1018 SAFE_FREE(curr_ace);
1019 curr_ace_outer_next = curr_ace_outer->next; /* We may have deleted the link. */
1021 } else {
1024 * Even after removing permissions, there
1025 * are still allow permissions - delete the deny.
1026 * It is safe to delete the deny here,
1027 * as we are guarenteed by the deny first
1028 * ordering that all the deny entries for
1029 * this SID have already been merged into one
1030 * before we can get to an allow ace.
1033 DLIST_REMOVE(l_head, curr_ace_outer);
1034 SAFE_FREE(curr_ace_outer);
1035 break;
1039 } /* end for curr_ace */
1040 } /* end for curr_ace_outer */
1042 /* We may have modified the list. */
1044 *pp_list_head = l_head;
1047 /****************************************************************************
1048 Check if we need to return NT4.x compatible ACL entries.
1049 ****************************************************************************/
1051 bool nt4_compatible_acls(void)
1053 int compat = lp_acl_compatibility();
1055 if (compat == ACL_COMPAT_AUTO) {
1056 enum remote_arch_types ra_type = get_remote_arch();
1058 /* Automatically adapt to client */
1059 return (ra_type <= RA_WINNT);
1060 } else
1061 return (compat == ACL_COMPAT_WINNT);
1065 /****************************************************************************
1066 Map canon_ace perms to permission bits NT.
1067 The attr element is not used here - we only process deny entries on set,
1068 not get. Deny entries are implicit on get with ace->perms = 0.
1069 ****************************************************************************/
1071 uint32_t map_canon_ace_perms(int snum,
1072 enum security_ace_type *pacl_type,
1073 mode_t perms,
1074 bool directory_ace)
1076 uint32_t nt_mask = 0;
1078 *pacl_type = SEC_ACE_TYPE_ACCESS_ALLOWED;
1080 if (lp_acl_map_full_control(snum) && ((perms & ALL_ACE_PERMS) == ALL_ACE_PERMS)) {
1081 if (directory_ace) {
1082 nt_mask = UNIX_DIRECTORY_ACCESS_RWX;
1083 } else {
1084 nt_mask = (UNIX_ACCESS_RWX & ~DELETE_ACCESS);
1086 } else if ((perms & ALL_ACE_PERMS) == (mode_t)0) {
1088 * Windows NT refuses to display ACEs with no permissions in them (but
1089 * they are perfectly legal with Windows 2000). If the ACE has empty
1090 * permissions we cannot use 0, so we use the otherwise unused
1091 * WRITE_OWNER permission, which we ignore when we set an ACL.
1092 * We abstract this into a #define of UNIX_ACCESS_NONE to allow this
1093 * to be changed in the future.
1096 if (nt4_compatible_acls())
1097 nt_mask = UNIX_ACCESS_NONE;
1098 else
1099 nt_mask = 0;
1100 } else {
1101 if (directory_ace) {
1102 nt_mask |= ((perms & S_IRUSR) ? UNIX_DIRECTORY_ACCESS_R : 0 );
1103 nt_mask |= ((perms & S_IWUSR) ? UNIX_DIRECTORY_ACCESS_W : 0 );
1104 nt_mask |= ((perms & S_IXUSR) ? UNIX_DIRECTORY_ACCESS_X : 0 );
1105 } else {
1106 nt_mask |= ((perms & S_IRUSR) ? UNIX_ACCESS_R : 0 );
1107 nt_mask |= ((perms & S_IWUSR) ? UNIX_ACCESS_W : 0 );
1108 nt_mask |= ((perms & S_IXUSR) ? UNIX_ACCESS_X : 0 );
1112 if ((perms & S_IWUSR) && lp_dos_filemode(snum)) {
1113 nt_mask |= (SEC_STD_WRITE_DAC|SEC_STD_WRITE_OWNER|DELETE_ACCESS);
1116 DEBUG(10,("map_canon_ace_perms: Mapped (UNIX) %x to (NT) %x\n",
1117 (unsigned int)perms, (unsigned int)nt_mask ));
1119 return nt_mask;
1122 /****************************************************************************
1123 Map NT perms to a UNIX mode_t.
1124 ****************************************************************************/
1126 #define FILE_SPECIFIC_READ_BITS (FILE_READ_DATA|FILE_READ_EA|FILE_READ_ATTRIBUTES)
1127 #define FILE_SPECIFIC_WRITE_BITS (FILE_WRITE_DATA|FILE_APPEND_DATA|FILE_WRITE_EA|FILE_WRITE_ATTRIBUTES)
1128 #define FILE_SPECIFIC_EXECUTE_BITS (FILE_EXECUTE)
1130 static mode_t map_nt_perms( uint32 *mask, int type)
1132 mode_t mode = 0;
1134 switch(type) {
1135 case S_IRUSR:
1136 if((*mask) & GENERIC_ALL_ACCESS)
1137 mode = S_IRUSR|S_IWUSR|S_IXUSR;
1138 else {
1139 mode |= ((*mask) & (GENERIC_READ_ACCESS|FILE_SPECIFIC_READ_BITS)) ? S_IRUSR : 0;
1140 mode |= ((*mask) & (GENERIC_WRITE_ACCESS|FILE_SPECIFIC_WRITE_BITS)) ? S_IWUSR : 0;
1141 mode |= ((*mask) & (GENERIC_EXECUTE_ACCESS|FILE_SPECIFIC_EXECUTE_BITS)) ? S_IXUSR : 0;
1143 break;
1144 case S_IRGRP:
1145 if((*mask) & GENERIC_ALL_ACCESS)
1146 mode = S_IRGRP|S_IWGRP|S_IXGRP;
1147 else {
1148 mode |= ((*mask) & (GENERIC_READ_ACCESS|FILE_SPECIFIC_READ_BITS)) ? S_IRGRP : 0;
1149 mode |= ((*mask) & (GENERIC_WRITE_ACCESS|FILE_SPECIFIC_WRITE_BITS)) ? S_IWGRP : 0;
1150 mode |= ((*mask) & (GENERIC_EXECUTE_ACCESS|FILE_SPECIFIC_EXECUTE_BITS)) ? S_IXGRP : 0;
1152 break;
1153 case S_IROTH:
1154 if((*mask) & GENERIC_ALL_ACCESS)
1155 mode = S_IROTH|S_IWOTH|S_IXOTH;
1156 else {
1157 mode |= ((*mask) & (GENERIC_READ_ACCESS|FILE_SPECIFIC_READ_BITS)) ? S_IROTH : 0;
1158 mode |= ((*mask) & (GENERIC_WRITE_ACCESS|FILE_SPECIFIC_WRITE_BITS)) ? S_IWOTH : 0;
1159 mode |= ((*mask) & (GENERIC_EXECUTE_ACCESS|FILE_SPECIFIC_EXECUTE_BITS)) ? S_IXOTH : 0;
1161 break;
1164 return mode;
1167 /****************************************************************************
1168 Unpack a struct security_descriptor into a UNIX owner and group.
1169 ****************************************************************************/
1171 NTSTATUS unpack_nt_owners(struct connection_struct *conn,
1172 uid_t *puser, gid_t *pgrp,
1173 uint32 security_info_sent, const struct
1174 security_descriptor *psd)
1176 struct dom_sid owner_sid;
1177 struct dom_sid grp_sid;
1179 *puser = (uid_t)-1;
1180 *pgrp = (gid_t)-1;
1182 if(security_info_sent == 0) {
1183 DEBUG(0,("unpack_nt_owners: no security info sent !\n"));
1184 return NT_STATUS_OK;
1188 * Validate the owner and group SID's.
1191 memset(&owner_sid, '\0', sizeof(owner_sid));
1192 memset(&grp_sid, '\0', sizeof(grp_sid));
1194 DEBUG(5,("unpack_nt_owners: validating owner_sids.\n"));
1197 * Don't immediately fail if the owner sid cannot be validated.
1198 * This may be a group chown only set.
1201 if (security_info_sent & SECINFO_OWNER) {
1202 sid_copy(&owner_sid, psd->owner_sid);
1203 if (!sid_to_uid(&owner_sid, puser)) {
1204 if (lp_force_unknown_acl_user(SNUM(conn))) {
1205 /* this allows take ownership to work
1206 * reasonably */
1207 *puser = get_current_uid(conn);
1208 } else {
1209 DEBUG(3,("unpack_nt_owners: unable to validate"
1210 " owner sid for %s\n",
1211 sid_string_dbg(&owner_sid)));
1212 return NT_STATUS_INVALID_OWNER;
1215 DEBUG(3,("unpack_nt_owners: owner sid mapped to uid %u\n",
1216 (unsigned int)*puser ));
1220 * Don't immediately fail if the group sid cannot be validated.
1221 * This may be an owner chown only set.
1224 if (security_info_sent & SECINFO_GROUP) {
1225 sid_copy(&grp_sid, psd->group_sid);
1226 if (!sid_to_gid( &grp_sid, pgrp)) {
1227 if (lp_force_unknown_acl_user(SNUM(conn))) {
1228 /* this allows take group ownership to work
1229 * reasonably */
1230 *pgrp = get_current_gid(conn);
1231 } else {
1232 DEBUG(3,("unpack_nt_owners: unable to validate"
1233 " group sid.\n"));
1234 return NT_STATUS_INVALID_OWNER;
1237 DEBUG(3,("unpack_nt_owners: group sid mapped to gid %u\n",
1238 (unsigned int)*pgrp));
1241 DEBUG(5,("unpack_nt_owners: owner_sids validated.\n"));
1243 return NT_STATUS_OK;
1246 /****************************************************************************
1247 Ensure the enforced permissions for this share apply.
1248 ****************************************************************************/
1250 static void apply_default_perms(const struct share_params *params,
1251 const bool is_directory, canon_ace *pace,
1252 mode_t type)
1254 mode_t and_bits = (mode_t)0;
1255 mode_t or_bits = (mode_t)0;
1257 /* Get the initial bits to apply. */
1259 if (is_directory) {
1260 and_bits = lp_dir_security_mask(params->service);
1261 or_bits = lp_force_dir_security_mode(params->service);
1262 } else {
1263 and_bits = lp_security_mask(params->service);
1264 or_bits = lp_force_security_mode(params->service);
1267 /* Now bounce them into the S_USR space. */
1268 switch(type) {
1269 case S_IRUSR:
1270 /* Ensure owner has read access. */
1271 pace->perms |= S_IRUSR;
1272 if (is_directory)
1273 pace->perms |= (S_IWUSR|S_IXUSR);
1274 and_bits = unix_perms_to_acl_perms(and_bits, S_IRUSR, S_IWUSR, S_IXUSR);
1275 or_bits = unix_perms_to_acl_perms(or_bits, S_IRUSR, S_IWUSR, S_IXUSR);
1276 break;
1277 case S_IRGRP:
1278 and_bits = unix_perms_to_acl_perms(and_bits, S_IRGRP, S_IWGRP, S_IXGRP);
1279 or_bits = unix_perms_to_acl_perms(or_bits, S_IRGRP, S_IWGRP, S_IXGRP);
1280 break;
1281 case S_IROTH:
1282 and_bits = unix_perms_to_acl_perms(and_bits, S_IROTH, S_IWOTH, S_IXOTH);
1283 or_bits = unix_perms_to_acl_perms(or_bits, S_IROTH, S_IWOTH, S_IXOTH);
1284 break;
1287 pace->perms = ((pace->perms & and_bits)|or_bits);
1290 /****************************************************************************
1291 Check if a given uid/SID is in a group gid/SID. This is probably very
1292 expensive and will need optimisation. A *lot* of optimisation :-). JRA.
1293 ****************************************************************************/
1295 static bool uid_entry_in_group(connection_struct *conn, canon_ace *uid_ace, canon_ace *group_ace )
1297 const char *u_name = NULL;
1299 /* "Everyone" always matches every uid. */
1301 if (dom_sid_equal(&group_ace->trustee, &global_sid_World))
1302 return True;
1305 * if it's the current user, we already have the unix token
1306 * and don't need to do the complex user_in_group_sid() call
1308 if (uid_ace->unix_ug.uid == get_current_uid(conn)) {
1309 const UNIX_USER_TOKEN *curr_utok = NULL;
1310 size_t i;
1312 if (group_ace->unix_ug.gid == get_current_gid(conn)) {
1313 return True;
1316 curr_utok = get_current_utok(conn);
1317 for (i=0; i < curr_utok->ngroups; i++) {
1318 if (group_ace->unix_ug.gid == curr_utok->groups[i]) {
1319 return True;
1324 /* u_name talloc'ed off tos. */
1325 u_name = uidtoname(uid_ace->unix_ug.uid);
1326 if (!u_name) {
1327 return False;
1331 * user_in_group_sid() uses create_token_from_username()
1332 * which creates an artificial NT token given just a username,
1333 * so this is not reliable for users from foreign domains
1334 * exported by winbindd!
1336 return user_in_group_sid(u_name, &group_ace->trustee);
1339 /****************************************************************************
1340 A well formed POSIX file or default ACL has at least 3 entries, a
1341 SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER_OBJ.
1342 In addition, the owner must always have at least read access.
1343 When using this call on get_acl, the pst struct is valid and contains
1344 the mode of the file. When using this call on set_acl, the pst struct has
1345 been modified to have a mode containing the default for this file or directory
1346 type.
1347 ****************************************************************************/
1349 static bool ensure_canon_entry_valid(connection_struct *conn, canon_ace **pp_ace,
1350 const struct share_params *params,
1351 const bool is_directory,
1352 const struct dom_sid *pfile_owner_sid,
1353 const struct dom_sid *pfile_grp_sid,
1354 const SMB_STRUCT_STAT *pst,
1355 bool setting_acl)
1357 canon_ace *pace;
1358 bool got_user = False;
1359 bool got_grp = False;
1360 bool got_other = False;
1361 canon_ace *pace_other = NULL;
1363 for (pace = *pp_ace; pace; pace = pace->next) {
1364 if (pace->type == SMB_ACL_USER_OBJ) {
1366 if (setting_acl)
1367 apply_default_perms(params, is_directory, pace, S_IRUSR);
1368 got_user = True;
1370 } else if (pace->type == SMB_ACL_GROUP_OBJ) {
1373 * Ensure create mask/force create mode is respected on set.
1376 if (setting_acl)
1377 apply_default_perms(params, is_directory, pace, S_IRGRP);
1378 got_grp = True;
1380 } else if (pace->type == SMB_ACL_OTHER) {
1383 * Ensure create mask/force create mode is respected on set.
1386 if (setting_acl)
1387 apply_default_perms(params, is_directory, pace, S_IROTH);
1388 got_other = True;
1389 pace_other = pace;
1393 if (!got_user) {
1394 if ((pace = SMB_MALLOC_P(canon_ace)) == NULL) {
1395 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1396 return False;
1399 ZERO_STRUCTP(pace);
1400 pace->type = SMB_ACL_USER_OBJ;
1401 pace->owner_type = UID_ACE;
1402 pace->unix_ug.uid = pst->st_ex_uid;
1403 pace->trustee = *pfile_owner_sid;
1404 pace->attr = ALLOW_ACE;
1406 if (setting_acl) {
1407 /* See if the owning user is in any of the other groups in
1408 the ACE. If so, OR in the permissions from that group. */
1410 bool group_matched = False;
1411 canon_ace *pace_iter;
1413 for (pace_iter = *pp_ace; pace_iter; pace_iter = pace_iter->next) {
1414 if (pace_iter->type == SMB_ACL_GROUP_OBJ || pace_iter->type == SMB_ACL_GROUP) {
1415 if (uid_entry_in_group(conn, pace, pace_iter)) {
1416 pace->perms |= pace_iter->perms;
1417 group_matched = True;
1422 /* If we only got an "everyone" perm, just use that. */
1423 if (!group_matched) {
1424 if (got_other)
1425 pace->perms = pace_other->perms;
1426 else
1427 pace->perms = 0;
1430 apply_default_perms(params, is_directory, pace, S_IRUSR);
1431 } else {
1432 pace->perms = unix_perms_to_acl_perms(pst->st_ex_mode, S_IRUSR, S_IWUSR, S_IXUSR);
1435 DLIST_ADD(*pp_ace, pace);
1438 if (!got_grp) {
1439 if ((pace = SMB_MALLOC_P(canon_ace)) == NULL) {
1440 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1441 return False;
1444 ZERO_STRUCTP(pace);
1445 pace->type = SMB_ACL_GROUP_OBJ;
1446 pace->owner_type = GID_ACE;
1447 pace->unix_ug.uid = pst->st_ex_gid;
1448 pace->trustee = *pfile_grp_sid;
1449 pace->attr = ALLOW_ACE;
1450 if (setting_acl) {
1451 /* If we only got an "everyone" perm, just use that. */
1452 if (got_other)
1453 pace->perms = pace_other->perms;
1454 else
1455 pace->perms = 0;
1456 apply_default_perms(params, is_directory, pace, S_IRGRP);
1457 } else {
1458 pace->perms = unix_perms_to_acl_perms(pst->st_ex_mode, S_IRGRP, S_IWGRP, S_IXGRP);
1461 DLIST_ADD(*pp_ace, pace);
1464 if (!got_other) {
1465 if ((pace = SMB_MALLOC_P(canon_ace)) == NULL) {
1466 DEBUG(0,("ensure_canon_entry_valid: malloc fail.\n"));
1467 return False;
1470 ZERO_STRUCTP(pace);
1471 pace->type = SMB_ACL_OTHER;
1472 pace->owner_type = WORLD_ACE;
1473 pace->unix_ug.world = -1;
1474 pace->trustee = global_sid_World;
1475 pace->attr = ALLOW_ACE;
1476 if (setting_acl) {
1477 pace->perms = 0;
1478 apply_default_perms(params, is_directory, pace, S_IROTH);
1479 } else
1480 pace->perms = unix_perms_to_acl_perms(pst->st_ex_mode, S_IROTH, S_IWOTH, S_IXOTH);
1482 DLIST_ADD(*pp_ace, pace);
1485 return True;
1488 /****************************************************************************
1489 Check if a POSIX ACL has the required SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ entries.
1490 If it does not have them, check if there are any entries where the trustee is the
1491 file owner or the owning group, and map these to SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ.
1492 ****************************************************************************/
1494 static void check_owning_objs(canon_ace *ace, struct dom_sid *pfile_owner_sid, struct dom_sid *pfile_grp_sid)
1496 bool got_user_obj, got_group_obj;
1497 canon_ace *current_ace;
1498 int i, entries;
1500 entries = count_canon_ace_list(ace);
1501 got_user_obj = False;
1502 got_group_obj = False;
1504 for (i=0, current_ace = ace; i < entries; i++, current_ace = current_ace->next) {
1505 if (current_ace->type == SMB_ACL_USER_OBJ)
1506 got_user_obj = True;
1507 else if (current_ace->type == SMB_ACL_GROUP_OBJ)
1508 got_group_obj = True;
1510 if (got_user_obj && got_group_obj) {
1511 DEBUG(10,("check_owning_objs: ACL had owning user/group entries.\n"));
1512 return;
1515 for (i=0, current_ace = ace; i < entries; i++, current_ace = current_ace->next) {
1516 if (!got_user_obj && current_ace->owner_type == UID_ACE &&
1517 dom_sid_equal(&current_ace->trustee, pfile_owner_sid)) {
1518 current_ace->type = SMB_ACL_USER_OBJ;
1519 got_user_obj = True;
1521 if (!got_group_obj && current_ace->owner_type == GID_ACE &&
1522 dom_sid_equal(&current_ace->trustee, pfile_grp_sid)) {
1523 current_ace->type = SMB_ACL_GROUP_OBJ;
1524 got_group_obj = True;
1527 if (!got_user_obj)
1528 DEBUG(10,("check_owning_objs: ACL is missing an owner entry.\n"));
1529 if (!got_group_obj)
1530 DEBUG(10,("check_owning_objs: ACL is missing an owning group entry.\n"));
1533 /****************************************************************************
1534 If an ACE entry is SMB_ACL_USER_OBJ and not CREATOR_OWNER, map to SMB_ACL_USER.
1535 If an ACE entry is SMB_ACL_GROUP_OBJ and not CREATOR_GROUP, map to SMB_ACL_GROUP
1536 ****************************************************************************/
1538 static bool dup_owning_ace(canon_ace *dir_ace, canon_ace *ace)
1540 /* dir ace must be followings.
1541 SMB_ACL_USER_OBJ : trustee(CREATOR_OWNER) -> Posix ACL d:u::perm
1542 SMB_ACL_USER : not trustee -> Posix ACL u:user:perm
1543 SMB_ACL_USER_OBJ : trustee -> convert to SMB_ACL_USER : trustee
1544 Posix ACL u:trustee:perm
1546 SMB_ACL_GROUP_OBJ: trustee(CREATOR_GROUP) -> Posix ACL d:g::perm
1547 SMB_ACL_GROUP : not trustee -> Posix ACL g:group:perm
1548 SMB_ACL_GROUP_OBJ: trustee -> convert to SMB_ACL_GROUP : trustee
1549 Posix ACL g:trustee:perm
1552 if (ace->type == SMB_ACL_USER_OBJ &&
1553 !(dom_sid_equal(&ace->trustee, &global_sid_Creator_Owner))) {
1554 canon_ace *dup_ace = dup_canon_ace(ace);
1556 if (dup_ace == NULL) {
1557 return false;
1559 dup_ace->type = SMB_ACL_USER;
1560 DLIST_ADD_END(dir_ace, dup_ace, canon_ace *);
1563 if (ace->type == SMB_ACL_GROUP_OBJ &&
1564 !(dom_sid_equal(&ace->trustee, &global_sid_Creator_Group))) {
1565 canon_ace *dup_ace = dup_canon_ace(ace);
1567 if (dup_ace == NULL) {
1568 return false;
1570 dup_ace->type = SMB_ACL_GROUP;
1571 DLIST_ADD_END(dir_ace, dup_ace, canon_ace *);
1574 return true;
1577 /****************************************************************************
1578 Unpack a struct security_descriptor into two canonical ace lists.
1579 ****************************************************************************/
1581 static bool create_canon_ace_lists(files_struct *fsp,
1582 const SMB_STRUCT_STAT *pst,
1583 struct dom_sid *pfile_owner_sid,
1584 struct dom_sid *pfile_grp_sid,
1585 canon_ace **ppfile_ace,
1586 canon_ace **ppdir_ace,
1587 const struct security_acl *dacl)
1589 bool all_aces_are_inherit_only = (fsp->is_directory ? True : False);
1590 canon_ace *file_ace = NULL;
1591 canon_ace *dir_ace = NULL;
1592 canon_ace *current_ace = NULL;
1593 bool got_dir_allow = False;
1594 bool got_file_allow = False;
1595 int i, j;
1597 *ppfile_ace = NULL;
1598 *ppdir_ace = NULL;
1601 * Convert the incoming ACL into a more regular form.
1604 for(i = 0; i < dacl->num_aces; i++) {
1605 struct security_ace *psa = &dacl->aces[i];
1607 if((psa->type != SEC_ACE_TYPE_ACCESS_ALLOWED) && (psa->type != SEC_ACE_TYPE_ACCESS_DENIED)) {
1608 DEBUG(3,("create_canon_ace_lists: unable to set anything but an ALLOW or DENY ACE.\n"));
1609 return False;
1612 if (nt4_compatible_acls()) {
1614 * The security mask may be UNIX_ACCESS_NONE which should map into
1615 * no permissions (we overload the WRITE_OWNER bit for this) or it
1616 * should be one of the ALL/EXECUTE/READ/WRITE bits. Arrange for this
1617 * to be so. Any other bits override the UNIX_ACCESS_NONE bit.
1621 * Convert GENERIC bits to specific bits.
1624 se_map_generic(&psa->access_mask, &file_generic_mapping);
1626 psa->access_mask &= (UNIX_ACCESS_NONE|FILE_ALL_ACCESS);
1628 if(psa->access_mask != UNIX_ACCESS_NONE)
1629 psa->access_mask &= ~UNIX_ACCESS_NONE;
1634 * Deal with the fact that NT 4.x re-writes the canonical format
1635 * that we return for default ACLs. If a directory ACE is identical
1636 * to a inherited directory ACE then NT changes the bits so that the
1637 * first ACE is set to OI|IO and the second ACE for this SID is set
1638 * to CI. We need to repair this. JRA.
1641 for(i = 0; i < dacl->num_aces; i++) {
1642 struct security_ace *psa1 = &dacl->aces[i];
1644 for (j = i + 1; j < dacl->num_aces; j++) {
1645 struct security_ace *psa2 = &dacl->aces[j];
1647 if (psa1->access_mask != psa2->access_mask)
1648 continue;
1650 if (!dom_sid_equal(&psa1->trustee, &psa2->trustee))
1651 continue;
1654 * Ok - permission bits and SIDs are equal.
1655 * Check if flags were re-written.
1658 if (psa1->flags & SEC_ACE_FLAG_INHERIT_ONLY) {
1660 psa1->flags |= (psa2->flags & (SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT));
1661 psa2->flags &= ~(SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT);
1663 } else if (psa2->flags & SEC_ACE_FLAG_INHERIT_ONLY) {
1665 psa2->flags |= (psa1->flags & (SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT));
1666 psa1->flags &= ~(SEC_ACE_FLAG_CONTAINER_INHERIT|SEC_ACE_FLAG_OBJECT_INHERIT);
1672 for(i = 0; i < dacl->num_aces; i++) {
1673 struct security_ace *psa = &dacl->aces[i];
1676 * Create a canon_ace entry representing this NT DACL ACE.
1679 if ((current_ace = SMB_MALLOC_P(canon_ace)) == NULL) {
1680 free_canon_ace_list(file_ace);
1681 free_canon_ace_list(dir_ace);
1682 DEBUG(0,("create_canon_ace_lists: malloc fail.\n"));
1683 return False;
1686 ZERO_STRUCTP(current_ace);
1688 sid_copy(&current_ace->trustee, &psa->trustee);
1691 * Try and work out if the SID is a user or group
1692 * as we need to flag these differently for POSIX.
1693 * Note what kind of a POSIX ACL this should map to.
1696 if( dom_sid_equal(&current_ace->trustee, &global_sid_World)) {
1697 current_ace->owner_type = WORLD_ACE;
1698 current_ace->unix_ug.world = -1;
1699 current_ace->type = SMB_ACL_OTHER;
1700 } else if (dom_sid_equal(&current_ace->trustee, &global_sid_Creator_Owner)) {
1701 current_ace->owner_type = UID_ACE;
1702 current_ace->unix_ug.uid = pst->st_ex_uid;
1703 current_ace->type = SMB_ACL_USER_OBJ;
1706 * The Creator Owner entry only specifies inheritable permissions,
1707 * never access permissions. WinNT doesn't always set the ACE to
1708 * INHERIT_ONLY, though.
1711 psa->flags |= SEC_ACE_FLAG_INHERIT_ONLY;
1713 } else if (dom_sid_equal(&current_ace->trustee, &global_sid_Creator_Group)) {
1714 current_ace->owner_type = GID_ACE;
1715 current_ace->unix_ug.gid = pst->st_ex_gid;
1716 current_ace->type = SMB_ACL_GROUP_OBJ;
1719 * The Creator Group entry only specifies inheritable permissions,
1720 * never access permissions. WinNT doesn't always set the ACE to
1721 * INHERIT_ONLY, though.
1723 psa->flags |= SEC_ACE_FLAG_INHERIT_ONLY;
1725 } else if (sid_to_uid( &current_ace->trustee, &current_ace->unix_ug.uid)) {
1726 current_ace->owner_type = UID_ACE;
1727 /* If it's the owning user, this is a user_obj, not
1728 * a user. */
1729 if (current_ace->unix_ug.uid == pst->st_ex_uid) {
1730 current_ace->type = SMB_ACL_USER_OBJ;
1731 } else {
1732 current_ace->type = SMB_ACL_USER;
1734 } else if (sid_to_gid( &current_ace->trustee, &current_ace->unix_ug.gid)) {
1735 current_ace->owner_type = GID_ACE;
1736 /* If it's the primary group, this is a group_obj, not
1737 * a group. */
1738 if (current_ace->unix_ug.gid == pst->st_ex_gid) {
1739 current_ace->type = SMB_ACL_GROUP_OBJ;
1740 } else {
1741 current_ace->type = SMB_ACL_GROUP;
1743 } else {
1745 * Silently ignore map failures in non-mappable SIDs (NT Authority, BUILTIN etc).
1748 if (non_mappable_sid(&psa->trustee)) {
1749 DEBUG(10, ("create_canon_ace_lists: ignoring "
1750 "non-mappable SID %s\n",
1751 sid_string_dbg(&psa->trustee)));
1752 SAFE_FREE(current_ace);
1753 continue;
1756 free_canon_ace_list(file_ace);
1757 free_canon_ace_list(dir_ace);
1758 DEBUG(0, ("create_canon_ace_lists: unable to map SID "
1759 "%s to uid or gid.\n",
1760 sid_string_dbg(&current_ace->trustee)));
1761 SAFE_FREE(current_ace);
1762 return False;
1766 * Map the given NT permissions into a UNIX mode_t containing only
1767 * S_I(R|W|X)USR bits.
1770 current_ace->perms |= map_nt_perms( &psa->access_mask, S_IRUSR);
1771 current_ace->attr = (psa->type == SEC_ACE_TYPE_ACCESS_ALLOWED) ? ALLOW_ACE : DENY_ACE;
1773 /* Store the ace_flag. */
1774 current_ace->ace_flags = psa->flags;
1777 * Now add the created ace to either the file list, the directory
1778 * list, or both. We *MUST* preserve the order here (hence we use
1779 * DLIST_ADD_END) as NT ACLs are order dependent.
1782 if (fsp->is_directory) {
1785 * We can only add to the default POSIX ACE list if the ACE is
1786 * designed to be inherited by both files and directories.
1789 if ((psa->flags & (SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT)) ==
1790 (SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT)) {
1792 DLIST_ADD_END(dir_ace, current_ace, canon_ace *);
1795 * Note if this was an allow ace. We can't process
1796 * any further deny ace's after this.
1799 if (current_ace->attr == ALLOW_ACE)
1800 got_dir_allow = True;
1802 if ((current_ace->attr == DENY_ACE) && got_dir_allow) {
1803 DEBUG(0,("create_canon_ace_lists: "
1804 "malformed ACL in "
1805 "inheritable ACL! Deny entry "
1806 "after Allow entry. Failing "
1807 "to set on file %s.\n",
1808 fsp_str_dbg(fsp)));
1809 free_canon_ace_list(file_ace);
1810 free_canon_ace_list(dir_ace);
1811 return False;
1814 if( DEBUGLVL( 10 )) {
1815 dbgtext("create_canon_ace_lists: adding dir ACL:\n");
1816 print_canon_ace( current_ace, 0);
1820 * We have a lossy mapping: directory ACE entries
1821 * CREATOR_OWNER ------\
1822 * (map to) +---> SMB_ACL_USER_OBJ
1823 * owning sid ------/
1825 * CREATOR_GROUP ------\
1826 * (map to) +---> SMB_ACL_GROUP_OBJ
1827 * primary group sid --/
1829 * on set. And on read of a directory ACL
1831 * SMB_ACL_USER_OBJ ----> CREATOR_OWNER
1832 * SMB_ACL_GROUP_OBJ ---> CREATOR_GROUP.
1834 * Deal with this on set by duplicating
1835 * owning sid and primary group sid ACE
1836 * entries into the directory ACL.
1837 * Fix from Tsukasa Hamano <hamano@osstech.co.jp>.
1840 if (!dup_owning_ace(dir_ace, current_ace)) {
1841 DEBUG(0,("create_canon_ace_lists: malloc fail !\n"));
1842 free_canon_ace_list(file_ace);
1843 free_canon_ace_list(dir_ace);
1844 return false;
1848 * If this is not an inherit only ACE we need to add a duplicate
1849 * to the file acl.
1852 if (!(psa->flags & SEC_ACE_FLAG_INHERIT_ONLY)) {
1853 canon_ace *dup_ace = dup_canon_ace(current_ace);
1855 if (!dup_ace) {
1856 DEBUG(0,("create_canon_ace_lists: malloc fail !\n"));
1857 free_canon_ace_list(file_ace);
1858 free_canon_ace_list(dir_ace);
1859 return False;
1863 * We must not free current_ace here as its
1864 * pointer is now owned by the dir_ace list.
1866 current_ace = dup_ace;
1867 /* We've essentially split this ace into two,
1868 * and added the ace with inheritance request
1869 * bits to the directory ACL. Drop those bits for
1870 * the ACE we're adding to the file list. */
1871 current_ace->ace_flags &= ~(SEC_ACE_FLAG_OBJECT_INHERIT|
1872 SEC_ACE_FLAG_CONTAINER_INHERIT|
1873 SEC_ACE_FLAG_INHERIT_ONLY);
1874 } else {
1876 * We must not free current_ace here as its
1877 * pointer is now owned by the dir_ace list.
1879 current_ace = NULL;
1885 * Only add to the file ACL if not inherit only.
1888 if (current_ace && !(psa->flags & SEC_ACE_FLAG_INHERIT_ONLY)) {
1889 DLIST_ADD_END(file_ace, current_ace, canon_ace *);
1892 * Note if this was an allow ace. We can't process
1893 * any further deny ace's after this.
1896 if (current_ace->attr == ALLOW_ACE)
1897 got_file_allow = True;
1899 if ((current_ace->attr == DENY_ACE) && got_file_allow) {
1900 DEBUG(0,("create_canon_ace_lists: malformed "
1901 "ACL in file ACL ! Deny entry after "
1902 "Allow entry. Failing to set on file "
1903 "%s.\n", fsp_str_dbg(fsp)));
1904 free_canon_ace_list(file_ace);
1905 free_canon_ace_list(dir_ace);
1906 return False;
1909 if( DEBUGLVL( 10 )) {
1910 dbgtext("create_canon_ace_lists: adding file ACL:\n");
1911 print_canon_ace( current_ace, 0);
1913 all_aces_are_inherit_only = False;
1915 * We must not free current_ace here as its
1916 * pointer is now owned by the file_ace list.
1918 current_ace = NULL;
1922 * Free if ACE was not added.
1925 SAFE_FREE(current_ace);
1928 if (fsp->is_directory && all_aces_are_inherit_only) {
1930 * Windows 2000 is doing one of these weird 'inherit acl'
1931 * traverses to conserve NTFS ACL resources. Just pretend
1932 * there was no DACL sent. JRA.
1935 DEBUG(10,("create_canon_ace_lists: Win2k inherit acl traverse. Ignoring DACL.\n"));
1936 free_canon_ace_list(file_ace);
1937 free_canon_ace_list(dir_ace);
1938 file_ace = NULL;
1939 dir_ace = NULL;
1940 } else {
1942 * Check if we have SMB_ACL_USER_OBJ and SMB_ACL_GROUP_OBJ entries in each
1943 * ACL. If we don't have them, check if any SMB_ACL_USER/SMB_ACL_GROUP
1944 * entries can be converted to *_OBJ. Usually we will already have these
1945 * entries in the Default ACL, and the Access ACL will not have them.
1947 if (file_ace) {
1948 check_owning_objs(file_ace, pfile_owner_sid, pfile_grp_sid);
1950 if (dir_ace) {
1951 check_owning_objs(dir_ace, pfile_owner_sid, pfile_grp_sid);
1955 *ppfile_ace = file_ace;
1956 *ppdir_ace = dir_ace;
1958 return True;
1961 /****************************************************************************
1962 ASCII art time again... JRA :-).
1964 We have 4 cases to process when moving from an NT ACL to a POSIX ACL. Firstly,
1965 we insist the ACL is in canonical form (ie. all DENY entries preceede ALLOW
1966 entries). Secondly, the merge code has ensured that all duplicate SID entries for
1967 allow or deny have been merged, so the same SID can only appear once in the deny
1968 list or once in the allow list.
1970 We then process as follows :
1972 ---------------------------------------------------------------------------
1973 First pass - look for a Everyone DENY entry.
1975 If it is deny all (rwx) trunate the list at this point.
1976 Else, walk the list from this point and use the deny permissions of this
1977 entry as a mask on all following allow entries. Finally, delete
1978 the Everyone DENY entry (we have applied it to everything possible).
1980 In addition, in this pass we remove any DENY entries that have
1981 no permissions (ie. they are a DENY nothing).
1982 ---------------------------------------------------------------------------
1983 Second pass - only deal with deny user entries.
1985 DENY user1 (perms XXX)
1987 new_perms = 0
1988 for all following allow group entries where user1 is in group
1989 new_perms |= group_perms;
1991 user1 entry perms = new_perms & ~ XXX;
1993 Convert the deny entry to an allow entry with the new perms and
1994 push to the end of the list. Note if the user was in no groups
1995 this maps to a specific allow nothing entry for this user.
1997 The common case from the NT ACL choser (userX deny all) is
1998 optimised so we don't do the group lookup - we just map to
1999 an allow nothing entry.
2001 What we're doing here is inferring the allow permissions the
2002 person setting the ACE on user1 wanted by looking at the allow
2003 permissions on the groups the user is currently in. This will
2004 be a snapshot, depending on group membership but is the best
2005 we can do and has the advantage of failing closed rather than
2006 open.
2007 ---------------------------------------------------------------------------
2008 Third pass - only deal with deny group entries.
2010 DENY group1 (perms XXX)
2012 for all following allow user entries where user is in group1
2013 user entry perms = user entry perms & ~ XXX;
2015 If there is a group Everyone allow entry with permissions YYY,
2016 convert the group1 entry to an allow entry and modify its
2017 permissions to be :
2019 new_perms = YYY & ~ XXX
2021 and push to the end of the list.
2023 If there is no group Everyone allow entry then convert the
2024 group1 entry to a allow nothing entry and push to the end of the list.
2026 Note that the common case from the NT ACL choser (groupX deny all)
2027 cannot be optimised here as we need to modify user entries who are
2028 in the group to change them to a deny all also.
2030 What we're doing here is modifying the allow permissions of
2031 user entries (which are more specific in POSIX ACLs) to mask
2032 out the explicit deny set on the group they are in. This will
2033 be a snapshot depending on current group membership but is the
2034 best we can do and has the advantage of failing closed rather
2035 than open.
2036 ---------------------------------------------------------------------------
2037 Fourth pass - cope with cumulative permissions.
2039 for all allow user entries, if there exists an allow group entry with
2040 more permissive permissions, and the user is in that group, rewrite the
2041 allow user permissions to contain both sets of permissions.
2043 Currently the code for this is #ifdef'ed out as these semantics make
2044 no sense to me. JRA.
2045 ---------------------------------------------------------------------------
2047 Note we *MUST* do the deny user pass first as this will convert deny user
2048 entries into allow user entries which can then be processed by the deny
2049 group pass.
2051 The above algorithm took a *lot* of thinking about - hence this
2052 explaination :-). JRA.
2053 ****************************************************************************/
2055 /****************************************************************************
2056 Process a canon_ace list entries. This is very complex code. We need
2057 to go through and remove the "deny" permissions from any allow entry that matches
2058 the id of this entry. We have already refused any NT ACL that wasn't in correct
2059 order (DENY followed by ALLOW). If any allow entry ends up with zero permissions,
2060 we just remove it (to fail safe). We have already removed any duplicate ace
2061 entries. Treat an "Everyone" DENY_ACE as a special case - use it to mask all
2062 allow entries.
2063 ****************************************************************************/
2065 static void process_deny_list(connection_struct *conn, canon_ace **pp_ace_list )
2067 canon_ace *ace_list = *pp_ace_list;
2068 canon_ace *curr_ace = NULL;
2069 canon_ace *curr_ace_next = NULL;
2071 /* Pass 1 above - look for an Everyone, deny entry. */
2073 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
2074 canon_ace *allow_ace_p;
2076 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
2078 if (curr_ace->attr != DENY_ACE)
2079 continue;
2081 if (curr_ace->perms == (mode_t)0) {
2083 /* Deny nothing entry - delete. */
2085 DLIST_REMOVE(ace_list, curr_ace);
2086 continue;
2089 if (!dom_sid_equal(&curr_ace->trustee, &global_sid_World))
2090 continue;
2092 /* JRATEST - assert. */
2093 SMB_ASSERT(curr_ace->owner_type == WORLD_ACE);
2095 if (curr_ace->perms == ALL_ACE_PERMS) {
2098 * Optimisation. This is a DENY_ALL to Everyone. Truncate the
2099 * list at this point including this entry.
2102 canon_ace *prev_entry = DLIST_PREV(curr_ace);
2104 free_canon_ace_list( curr_ace );
2105 if (prev_entry)
2106 DLIST_REMOVE(ace_list, prev_entry);
2107 else {
2108 /* We deleted the entire list. */
2109 ace_list = NULL;
2111 break;
2114 for (allow_ace_p = curr_ace->next; allow_ace_p; allow_ace_p = allow_ace_p->next) {
2117 * Only mask off allow entries.
2120 if (allow_ace_p->attr != ALLOW_ACE)
2121 continue;
2123 allow_ace_p->perms &= ~curr_ace->perms;
2127 * Now it's been applied, remove it.
2130 DLIST_REMOVE(ace_list, curr_ace);
2133 /* Pass 2 above - deal with deny user entries. */
2135 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
2136 mode_t new_perms = (mode_t)0;
2137 canon_ace *allow_ace_p;
2139 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
2141 if (curr_ace->attr != DENY_ACE)
2142 continue;
2144 if (curr_ace->owner_type != UID_ACE)
2145 continue;
2147 if (curr_ace->perms == ALL_ACE_PERMS) {
2150 * Optimisation - this is a deny everything to this user.
2151 * Convert to an allow nothing and push to the end of the list.
2154 curr_ace->attr = ALLOW_ACE;
2155 curr_ace->perms = (mode_t)0;
2156 DLIST_DEMOTE(ace_list, curr_ace, canon_ace *);
2157 continue;
2160 for (allow_ace_p = curr_ace->next; allow_ace_p; allow_ace_p = allow_ace_p->next) {
2162 if (allow_ace_p->attr != ALLOW_ACE)
2163 continue;
2165 /* We process GID_ACE and WORLD_ACE entries only. */
2167 if (allow_ace_p->owner_type == UID_ACE)
2168 continue;
2170 if (uid_entry_in_group(conn, curr_ace, allow_ace_p))
2171 new_perms |= allow_ace_p->perms;
2175 * Convert to a allow entry, modify the perms and push to the end
2176 * of the list.
2179 curr_ace->attr = ALLOW_ACE;
2180 curr_ace->perms = (new_perms & ~curr_ace->perms);
2181 DLIST_DEMOTE(ace_list, curr_ace, canon_ace *);
2184 /* Pass 3 above - deal with deny group entries. */
2186 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
2187 canon_ace *allow_ace_p;
2188 canon_ace *allow_everyone_p = NULL;
2190 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
2192 if (curr_ace->attr != DENY_ACE)
2193 continue;
2195 if (curr_ace->owner_type != GID_ACE)
2196 continue;
2198 for (allow_ace_p = curr_ace->next; allow_ace_p; allow_ace_p = allow_ace_p->next) {
2200 if (allow_ace_p->attr != ALLOW_ACE)
2201 continue;
2203 /* Store a pointer to the Everyone allow, if it exists. */
2204 if (allow_ace_p->owner_type == WORLD_ACE)
2205 allow_everyone_p = allow_ace_p;
2207 /* We process UID_ACE entries only. */
2209 if (allow_ace_p->owner_type != UID_ACE)
2210 continue;
2212 /* Mask off the deny group perms. */
2214 if (uid_entry_in_group(conn, allow_ace_p, curr_ace))
2215 allow_ace_p->perms &= ~curr_ace->perms;
2219 * Convert the deny to an allow with the correct perms and
2220 * push to the end of the list.
2223 curr_ace->attr = ALLOW_ACE;
2224 if (allow_everyone_p)
2225 curr_ace->perms = allow_everyone_p->perms & ~curr_ace->perms;
2226 else
2227 curr_ace->perms = (mode_t)0;
2228 DLIST_DEMOTE(ace_list, curr_ace, canon_ace *);
2231 /* Doing this fourth pass allows Windows semantics to be layered
2232 * on top of POSIX semantics. I'm not sure if this is desirable.
2233 * For example, in W2K ACLs there is no way to say, "Group X no
2234 * access, user Y full access" if user Y is a member of group X.
2235 * This seems completely broken semantics to me.... JRA.
2238 #if 0
2239 /* Pass 4 above - deal with allow entries. */
2241 for (curr_ace = ace_list; curr_ace; curr_ace = curr_ace_next) {
2242 canon_ace *allow_ace_p;
2244 curr_ace_next = curr_ace->next; /* So we can't lose the link. */
2246 if (curr_ace->attr != ALLOW_ACE)
2247 continue;
2249 if (curr_ace->owner_type != UID_ACE)
2250 continue;
2252 for (allow_ace_p = ace_list; allow_ace_p; allow_ace_p = allow_ace_p->next) {
2254 if (allow_ace_p->attr != ALLOW_ACE)
2255 continue;
2257 /* We process GID_ACE entries only. */
2259 if (allow_ace_p->owner_type != GID_ACE)
2260 continue;
2262 /* OR in the group perms. */
2264 if (uid_entry_in_group(conn, curr_ace, allow_ace_p))
2265 curr_ace->perms |= allow_ace_p->perms;
2268 #endif
2270 *pp_ace_list = ace_list;
2273 /****************************************************************************
2274 Create a default mode that will be used if a security descriptor entry has
2275 no user/group/world entries.
2276 ****************************************************************************/
2278 static mode_t create_default_mode(files_struct *fsp, bool interitable_mode)
2280 int snum = SNUM(fsp->conn);
2281 mode_t and_bits = (mode_t)0;
2282 mode_t or_bits = (mode_t)0;
2283 mode_t mode;
2285 if (interitable_mode) {
2286 mode = unix_mode(fsp->conn, FILE_ATTRIBUTE_ARCHIVE,
2287 fsp->fsp_name, NULL);
2288 } else {
2289 mode = S_IRUSR;
2292 if (fsp->is_directory)
2293 mode |= (S_IWUSR|S_IXUSR);
2296 * Now AND with the create mode/directory mode bits then OR with the
2297 * force create mode/force directory mode bits.
2300 if (fsp->is_directory) {
2301 and_bits = lp_dir_security_mask(snum);
2302 or_bits = lp_force_dir_security_mode(snum);
2303 } else {
2304 and_bits = lp_security_mask(snum);
2305 or_bits = lp_force_security_mode(snum);
2308 return ((mode & and_bits)|or_bits);
2311 /****************************************************************************
2312 Unpack a struct security_descriptor into two canonical ace lists. We don't depend on this
2313 succeeding.
2314 ****************************************************************************/
2316 static bool unpack_canon_ace(files_struct *fsp,
2317 const SMB_STRUCT_STAT *pst,
2318 struct dom_sid *pfile_owner_sid,
2319 struct dom_sid *pfile_grp_sid,
2320 canon_ace **ppfile_ace,
2321 canon_ace **ppdir_ace,
2322 uint32 security_info_sent,
2323 const struct security_descriptor *psd)
2325 SMB_STRUCT_STAT st;
2326 canon_ace *file_ace = NULL;
2327 canon_ace *dir_ace = NULL;
2329 *ppfile_ace = NULL;
2330 *ppdir_ace = NULL;
2332 if(security_info_sent == 0) {
2333 DEBUG(0,("unpack_canon_ace: no security info sent !\n"));
2334 return False;
2338 * If no DACL then this is a chown only security descriptor.
2341 if(!(security_info_sent & SECINFO_DACL) || !psd->dacl)
2342 return True;
2345 * Now go through the DACL and create the canon_ace lists.
2348 if (!create_canon_ace_lists( fsp, pst, pfile_owner_sid, pfile_grp_sid,
2349 &file_ace, &dir_ace, psd->dacl))
2350 return False;
2352 if ((file_ace == NULL) && (dir_ace == NULL)) {
2353 /* W2K traverse DACL set - ignore. */
2354 return True;
2358 * Go through the canon_ace list and merge entries
2359 * belonging to identical users of identical allow or deny type.
2360 * We can do this as all deny entries come first, followed by
2361 * all allow entries (we have mandated this before accepting this acl).
2364 print_canon_ace_list( "file ace - before merge", file_ace);
2365 merge_aces( &file_ace, false);
2367 print_canon_ace_list( "dir ace - before merge", dir_ace);
2368 merge_aces( &dir_ace, true);
2371 * NT ACLs are order dependent. Go through the acl lists and
2372 * process DENY entries by masking the allow entries.
2375 print_canon_ace_list( "file ace - before deny", file_ace);
2376 process_deny_list(fsp->conn, &file_ace);
2378 print_canon_ace_list( "dir ace - before deny", dir_ace);
2379 process_deny_list(fsp->conn, &dir_ace);
2382 * A well formed POSIX file or default ACL has at least 3 entries, a
2383 * SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER_OBJ
2384 * and optionally a mask entry. Ensure this is the case.
2387 print_canon_ace_list( "file ace - before valid", file_ace);
2389 st = *pst;
2392 * A default 3 element mode entry for a file should be r-- --- ---.
2393 * A default 3 element mode entry for a directory should be rwx --- ---.
2396 st.st_ex_mode = create_default_mode(fsp, False);
2398 if (!ensure_canon_entry_valid(fsp->conn, &file_ace, fsp->conn->params,
2399 fsp->is_directory, pfile_owner_sid, pfile_grp_sid, &st, True)) {
2400 free_canon_ace_list(file_ace);
2401 free_canon_ace_list(dir_ace);
2402 return False;
2405 print_canon_ace_list( "dir ace - before valid", dir_ace);
2408 * A default inheritable 3 element mode entry for a directory should be the
2409 * mode Samba will use to create a file within. Ensure user rwx bits are set if
2410 * it's a directory.
2413 st.st_ex_mode = create_default_mode(fsp, True);
2415 if (dir_ace && !ensure_canon_entry_valid(fsp->conn, &dir_ace, fsp->conn->params,
2416 fsp->is_directory, pfile_owner_sid, pfile_grp_sid, &st, True)) {
2417 free_canon_ace_list(file_ace);
2418 free_canon_ace_list(dir_ace);
2419 return False;
2422 print_canon_ace_list( "file ace - return", file_ace);
2423 print_canon_ace_list( "dir ace - return", dir_ace);
2425 *ppfile_ace = file_ace;
2426 *ppdir_ace = dir_ace;
2427 return True;
2431 /******************************************************************************
2432 When returning permissions, try and fit NT display
2433 semantics if possible. Note the the canon_entries here must have been malloced.
2434 The list format should be - first entry = owner, followed by group and other user
2435 entries, last entry = other.
2437 Note that this doesn't exactly match the NT semantics for an ACL. As POSIX entries
2438 are not ordered, and match on the most specific entry rather than walking a list,
2439 then a simple POSIX permission of rw-r--r-- should really map to 5 entries,
2441 Entry 0: owner : deny all except read and write.
2442 Entry 1: owner : allow read and write.
2443 Entry 2: group : deny all except read.
2444 Entry 3: group : allow read.
2445 Entry 4: Everyone : allow read.
2447 But NT cannot display this in their ACL editor !
2448 ********************************************************************************/
2450 static void arrange_posix_perms(const char *filename, canon_ace **pp_list_head)
2452 canon_ace *l_head = *pp_list_head;
2453 canon_ace *owner_ace = NULL;
2454 canon_ace *other_ace = NULL;
2455 canon_ace *ace = NULL;
2457 for (ace = l_head; ace; ace = ace->next) {
2458 if (ace->type == SMB_ACL_USER_OBJ)
2459 owner_ace = ace;
2460 else if (ace->type == SMB_ACL_OTHER) {
2461 /* Last ace - this is "other" */
2462 other_ace = ace;
2466 if (!owner_ace || !other_ace) {
2467 DEBUG(0,("arrange_posix_perms: Invalid POSIX permissions for file %s, missing owner or other.\n",
2468 filename ));
2469 return;
2473 * The POSIX algorithm applies to owner first, and other last,
2474 * so ensure they are arranged in this order.
2477 if (owner_ace) {
2478 DLIST_PROMOTE(l_head, owner_ace);
2481 if (other_ace) {
2482 DLIST_DEMOTE(l_head, other_ace, canon_ace *);
2485 /* We have probably changed the head of the list. */
2487 *pp_list_head = l_head;
2490 /****************************************************************************
2491 Create a linked list of canonical ACE entries.
2492 ****************************************************************************/
2494 static canon_ace *canonicalise_acl(struct connection_struct *conn,
2495 const char *fname, SMB_ACL_T posix_acl,
2496 const SMB_STRUCT_STAT *psbuf,
2497 const struct dom_sid *powner, const struct dom_sid *pgroup, struct pai_val *pal, SMB_ACL_TYPE_T the_acl_type)
2499 mode_t acl_mask = (S_IRUSR|S_IWUSR|S_IXUSR);
2500 canon_ace *l_head = NULL;
2501 canon_ace *ace = NULL;
2502 canon_ace *next_ace = NULL;
2503 int entry_id = SMB_ACL_FIRST_ENTRY;
2504 SMB_ACL_ENTRY_T entry;
2505 size_t ace_count;
2507 while ( posix_acl && (SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1)) {
2508 SMB_ACL_TAG_T tagtype;
2509 SMB_ACL_PERMSET_T permset;
2510 struct dom_sid sid;
2511 posix_id unix_ug;
2512 enum ace_owner owner_type;
2514 entry_id = SMB_ACL_NEXT_ENTRY;
2516 /* Is this a MASK entry ? */
2517 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1)
2518 continue;
2520 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1)
2521 continue;
2523 /* Decide which SID to use based on the ACL type. */
2524 switch(tagtype) {
2525 case SMB_ACL_USER_OBJ:
2526 /* Get the SID from the owner. */
2527 sid_copy(&sid, powner);
2528 unix_ug.uid = psbuf->st_ex_uid;
2529 owner_type = UID_ACE;
2530 break;
2531 case SMB_ACL_USER:
2533 uid_t *puid = (uid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry);
2534 if (puid == NULL) {
2535 DEBUG(0,("canonicalise_acl: Failed to get uid.\n"));
2536 continue;
2538 uid_to_sid( &sid, *puid);
2539 unix_ug.uid = *puid;
2540 owner_type = UID_ACE;
2541 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)puid,tagtype);
2542 break;
2544 case SMB_ACL_GROUP_OBJ:
2545 /* Get the SID from the owning group. */
2546 sid_copy(&sid, pgroup);
2547 unix_ug.gid = psbuf->st_ex_gid;
2548 owner_type = GID_ACE;
2549 break;
2550 case SMB_ACL_GROUP:
2552 gid_t *pgid = (gid_t *)SMB_VFS_SYS_ACL_GET_QUALIFIER(conn, entry);
2553 if (pgid == NULL) {
2554 DEBUG(0,("canonicalise_acl: Failed to get gid.\n"));
2555 continue;
2557 gid_to_sid( &sid, *pgid);
2558 unix_ug.gid = *pgid;
2559 owner_type = GID_ACE;
2560 SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)pgid,tagtype);
2561 break;
2563 case SMB_ACL_MASK:
2564 acl_mask = convert_permset_to_mode_t(conn, permset);
2565 continue; /* Don't count the mask as an entry. */
2566 case SMB_ACL_OTHER:
2567 /* Use the Everyone SID */
2568 sid = global_sid_World;
2569 unix_ug.world = -1;
2570 owner_type = WORLD_ACE;
2571 break;
2572 default:
2573 DEBUG(0,("canonicalise_acl: Unknown tagtype %u\n", (unsigned int)tagtype));
2574 continue;
2578 * Add this entry to the list.
2581 if ((ace = SMB_MALLOC_P(canon_ace)) == NULL)
2582 goto fail;
2584 ZERO_STRUCTP(ace);
2585 ace->type = tagtype;
2586 ace->perms = convert_permset_to_mode_t(conn, permset);
2587 ace->attr = ALLOW_ACE;
2588 ace->trustee = sid;
2589 ace->unix_ug = unix_ug;
2590 ace->owner_type = owner_type;
2591 ace->ace_flags = get_pai_flags(pal, ace, (the_acl_type == SMB_ACL_TYPE_DEFAULT));
2593 DLIST_ADD(l_head, ace);
2597 * This next call will ensure we have at least a user/group/world set.
2600 if (!ensure_canon_entry_valid(conn, &l_head, conn->params,
2601 S_ISDIR(psbuf->st_ex_mode), powner, pgroup,
2602 psbuf, False))
2603 goto fail;
2606 * Now go through the list, masking the permissions with the
2607 * acl_mask. Ensure all DENY Entries are at the start of the list.
2610 DEBUG(10,("canonicalise_acl: %s ace entries before arrange :\n", the_acl_type == SMB_ACL_TYPE_ACCESS ? "Access" : "Default" ));
2612 for ( ace_count = 0, ace = l_head; ace; ace = next_ace, ace_count++) {
2613 next_ace = ace->next;
2615 /* Masks are only applied to entries other than USER_OBJ and OTHER. */
2616 if (ace->type != SMB_ACL_OTHER && ace->type != SMB_ACL_USER_OBJ)
2617 ace->perms &= acl_mask;
2619 if (ace->perms == 0) {
2620 DLIST_PROMOTE(l_head, ace);
2623 if( DEBUGLVL( 10 ) ) {
2624 print_canon_ace(ace, ace_count);
2628 arrange_posix_perms(fname,&l_head );
2630 print_canon_ace_list( "canonicalise_acl: ace entries after arrange", l_head );
2632 return l_head;
2634 fail:
2636 free_canon_ace_list(l_head);
2637 return NULL;
2640 /****************************************************************************
2641 Check if the current user group list contains a given group.
2642 ****************************************************************************/
2644 static bool current_user_in_group(connection_struct *conn, gid_t gid)
2646 int i;
2647 const UNIX_USER_TOKEN *utok = get_current_utok(conn);
2649 for (i = 0; i < utok->ngroups; i++) {
2650 if (utok->groups[i] == gid) {
2651 return True;
2655 return False;
2658 /****************************************************************************
2659 Should we override a deny ? Check 'acl group control' and 'dos filemode'.
2660 ****************************************************************************/
2662 static bool acl_group_override(connection_struct *conn,
2663 const struct smb_filename *smb_fname)
2665 if ((errno != EPERM) && (errno != EACCES)) {
2666 return false;
2669 /* file primary group == user primary or supplementary group */
2670 if (lp_acl_group_control(SNUM(conn)) &&
2671 current_user_in_group(conn, smb_fname->st.st_ex_gid)) {
2672 return true;
2675 /* user has writeable permission */
2676 if (lp_dos_filemode(SNUM(conn)) &&
2677 can_write_to_file(conn, smb_fname)) {
2678 return true;
2681 return false;
2684 /****************************************************************************
2685 Attempt to apply an ACL to a file or directory.
2686 ****************************************************************************/
2688 static bool set_canon_ace_list(files_struct *fsp,
2689 canon_ace *the_ace,
2690 bool default_ace,
2691 const SMB_STRUCT_STAT *psbuf,
2692 bool *pacl_set_support)
2694 connection_struct *conn = fsp->conn;
2695 bool ret = False;
2696 SMB_ACL_T the_acl = SMB_VFS_SYS_ACL_INIT(conn, (int)count_canon_ace_list(the_ace) + 1);
2697 canon_ace *p_ace;
2698 int i;
2699 SMB_ACL_ENTRY_T mask_entry;
2700 bool got_mask_entry = False;
2701 SMB_ACL_PERMSET_T mask_permset;
2702 SMB_ACL_TYPE_T the_acl_type = (default_ace ? SMB_ACL_TYPE_DEFAULT : SMB_ACL_TYPE_ACCESS);
2703 bool needs_mask = False;
2704 mode_t mask_perms = 0;
2706 /* Use the psbuf that was passed in. */
2707 if (psbuf != &fsp->fsp_name->st) {
2708 fsp->fsp_name->st = *psbuf;
2711 #if defined(POSIX_ACL_NEEDS_MASK)
2712 /* HP-UX always wants to have a mask (called "class" there). */
2713 needs_mask = True;
2714 #endif
2716 if (the_acl == NULL) {
2718 if (!no_acl_syscall_error(errno)) {
2720 * Only print this error message if we have some kind of ACL
2721 * support that's not working. Otherwise we would always get this.
2723 DEBUG(0,("set_canon_ace_list: Unable to init %s ACL. (%s)\n",
2724 default_ace ? "default" : "file", strerror(errno) ));
2726 *pacl_set_support = False;
2727 goto fail;
2730 if( DEBUGLVL( 10 )) {
2731 dbgtext("set_canon_ace_list: setting ACL:\n");
2732 for (i = 0, p_ace = the_ace; p_ace; p_ace = p_ace->next, i++ ) {
2733 print_canon_ace( p_ace, i);
2737 for (i = 0, p_ace = the_ace; p_ace; p_ace = p_ace->next, i++ ) {
2738 SMB_ACL_ENTRY_T the_entry;
2739 SMB_ACL_PERMSET_T the_permset;
2742 * ACLs only "need" an ACL_MASK entry if there are any named user or
2743 * named group entries. But if there is an ACL_MASK entry, it applies
2744 * to ACL_USER, ACL_GROUP, and ACL_GROUP_OBJ entries. Set the mask
2745 * so that it doesn't deny (i.e., mask off) any permissions.
2748 if (p_ace->type == SMB_ACL_USER || p_ace->type == SMB_ACL_GROUP) {
2749 needs_mask = True;
2750 mask_perms |= p_ace->perms;
2751 } else if (p_ace->type == SMB_ACL_GROUP_OBJ) {
2752 mask_perms |= p_ace->perms;
2756 * Get the entry for this ACE.
2759 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &the_acl, &the_entry) == -1) {
2760 DEBUG(0,("set_canon_ace_list: Failed to create entry %d. (%s)\n",
2761 i, strerror(errno) ));
2762 goto fail;
2765 if (p_ace->type == SMB_ACL_MASK) {
2766 mask_entry = the_entry;
2767 got_mask_entry = True;
2771 * Ok - we now know the ACL calls should be working, don't
2772 * allow fallback to chmod.
2775 *pacl_set_support = True;
2778 * Initialise the entry from the canon_ace.
2782 * First tell the entry what type of ACE this is.
2785 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, the_entry, p_ace->type) == -1) {
2786 DEBUG(0,("set_canon_ace_list: Failed to set tag type on entry %d. (%s)\n",
2787 i, strerror(errno) ));
2788 goto fail;
2792 * Only set the qualifier (user or group id) if the entry is a user
2793 * or group id ACE.
2796 if ((p_ace->type == SMB_ACL_USER) || (p_ace->type == SMB_ACL_GROUP)) {
2797 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn, the_entry,(void *)&p_ace->unix_ug.uid) == -1) {
2798 DEBUG(0,("set_canon_ace_list: Failed to set qualifier on entry %d. (%s)\n",
2799 i, strerror(errno) ));
2800 goto fail;
2805 * Convert the mode_t perms in the canon_ace to a POSIX permset.
2808 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, the_entry, &the_permset) == -1) {
2809 DEBUG(0,("set_canon_ace_list: Failed to get permset on entry %d. (%s)\n",
2810 i, strerror(errno) ));
2811 goto fail;
2814 if (map_acl_perms_to_permset(conn, p_ace->perms, &the_permset) == -1) {
2815 DEBUG(0,("set_canon_ace_list: Failed to create permset for mode (%u) on entry %d. (%s)\n",
2816 (unsigned int)p_ace->perms, i, strerror(errno) ));
2817 goto fail;
2821 * ..and apply them to the entry.
2824 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, the_entry, the_permset) == -1) {
2825 DEBUG(0,("set_canon_ace_list: Failed to add permset on entry %d. (%s)\n",
2826 i, strerror(errno) ));
2827 goto fail;
2830 if( DEBUGLVL( 10 ))
2831 print_canon_ace( p_ace, i);
2835 if (needs_mask && !got_mask_entry) {
2836 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &the_acl, &mask_entry) == -1) {
2837 DEBUG(0,("set_canon_ace_list: Failed to create mask entry. (%s)\n", strerror(errno) ));
2838 goto fail;
2841 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, mask_entry, SMB_ACL_MASK) == -1) {
2842 DEBUG(0,("set_canon_ace_list: Failed to set tag type on mask entry. (%s)\n",strerror(errno) ));
2843 goto fail;
2846 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, mask_entry, &mask_permset) == -1) {
2847 DEBUG(0,("set_canon_ace_list: Failed to get mask permset. (%s)\n", strerror(errno) ));
2848 goto fail;
2851 if (map_acl_perms_to_permset(conn, S_IRUSR|S_IWUSR|S_IXUSR, &mask_permset) == -1) {
2852 DEBUG(0,("set_canon_ace_list: Failed to create mask permset. (%s)\n", strerror(errno) ));
2853 goto fail;
2856 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, mask_entry, mask_permset) == -1) {
2857 DEBUG(0,("set_canon_ace_list: Failed to add mask permset. (%s)\n", strerror(errno) ));
2858 goto fail;
2863 * Finally apply it to the file or directory.
2866 if(default_ace || fsp->is_directory || fsp->fh->fd == -1) {
2867 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fsp->fsp_name->base_name,
2868 the_acl_type, the_acl) == -1) {
2870 * Some systems allow all the above calls and only fail with no ACL support
2871 * when attempting to apply the acl. HPUX with HFS is an example of this. JRA.
2873 if (no_acl_syscall_error(errno)) {
2874 *pacl_set_support = False;
2877 if (acl_group_override(conn, fsp->fsp_name)) {
2878 int sret;
2880 DEBUG(5,("set_canon_ace_list: acl group "
2881 "control on and current user in file "
2882 "%s primary group.\n",
2883 fsp_str_dbg(fsp)));
2885 become_root();
2886 sret = SMB_VFS_SYS_ACL_SET_FILE(conn,
2887 fsp->fsp_name->base_name, the_acl_type,
2888 the_acl);
2889 unbecome_root();
2890 if (sret == 0) {
2891 ret = True;
2895 if (ret == False) {
2896 DEBUG(2,("set_canon_ace_list: "
2897 "sys_acl_set_file type %s failed for "
2898 "file %s (%s).\n",
2899 the_acl_type == SMB_ACL_TYPE_DEFAULT ?
2900 "directory default" : "file",
2901 fsp_str_dbg(fsp), strerror(errno)));
2902 goto fail;
2905 } else {
2906 if (SMB_VFS_SYS_ACL_SET_FD(fsp, the_acl) == -1) {
2908 * Some systems allow all the above calls and only fail with no ACL support
2909 * when attempting to apply the acl. HPUX with HFS is an example of this. JRA.
2911 if (no_acl_syscall_error(errno)) {
2912 *pacl_set_support = False;
2915 if (acl_group_override(conn, fsp->fsp_name)) {
2916 int sret;
2918 DEBUG(5,("set_canon_ace_list: acl group "
2919 "control on and current user in file "
2920 "%s primary group.\n",
2921 fsp_str_dbg(fsp)));
2923 become_root();
2924 sret = SMB_VFS_SYS_ACL_SET_FD(fsp, the_acl);
2925 unbecome_root();
2926 if (sret == 0) {
2927 ret = True;
2931 if (ret == False) {
2932 DEBUG(2,("set_canon_ace_list: "
2933 "sys_acl_set_file failed for file %s "
2934 "(%s).\n",
2935 fsp_str_dbg(fsp), strerror(errno)));
2936 goto fail;
2941 ret = True;
2943 fail:
2945 if (the_acl != NULL) {
2946 SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
2949 return ret;
2952 /****************************************************************************
2953 Find a particular canon_ace entry.
2954 ****************************************************************************/
2956 static struct canon_ace *canon_ace_entry_for(struct canon_ace *list, SMB_ACL_TAG_T type, posix_id *id)
2958 while (list) {
2959 if (list->type == type && ((type != SMB_ACL_USER && type != SMB_ACL_GROUP) ||
2960 (type == SMB_ACL_USER && id && id->uid == list->unix_ug.uid) ||
2961 (type == SMB_ACL_GROUP && id && id->gid == list->unix_ug.gid)))
2962 break;
2963 list = list->next;
2965 return list;
2968 /****************************************************************************
2970 ****************************************************************************/
2972 SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T the_acl)
2974 SMB_ACL_ENTRY_T entry;
2976 if (!the_acl)
2977 return NULL;
2978 if (SMB_VFS_SYS_ACL_GET_ENTRY(conn, the_acl, SMB_ACL_FIRST_ENTRY, &entry) != 1) {
2979 SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
2980 return NULL;
2982 return the_acl;
2985 /****************************************************************************
2986 Convert a canon_ace to a generic 3 element permission - if possible.
2987 ****************************************************************************/
2989 #define MAP_PERM(p,mask,result) (((p) & (mask)) ? (result) : 0 )
2991 static bool convert_canon_ace_to_posix_perms( files_struct *fsp, canon_ace *file_ace_list, mode_t *posix_perms)
2993 int snum = SNUM(fsp->conn);
2994 size_t ace_count = count_canon_ace_list(file_ace_list);
2995 canon_ace *ace_p;
2996 canon_ace *owner_ace = NULL;
2997 canon_ace *group_ace = NULL;
2998 canon_ace *other_ace = NULL;
2999 mode_t and_bits;
3000 mode_t or_bits;
3002 if (ace_count != 3) {
3003 DEBUG(3,("convert_canon_ace_to_posix_perms: Too many ACE "
3004 "entries for file %s to convert to posix perms.\n",
3005 fsp_str_dbg(fsp)));
3006 return False;
3009 for (ace_p = file_ace_list; ace_p; ace_p = ace_p->next) {
3010 if (ace_p->owner_type == UID_ACE)
3011 owner_ace = ace_p;
3012 else if (ace_p->owner_type == GID_ACE)
3013 group_ace = ace_p;
3014 else if (ace_p->owner_type == WORLD_ACE)
3015 other_ace = ace_p;
3018 if (!owner_ace || !group_ace || !other_ace) {
3019 DEBUG(3,("convert_canon_ace_to_posix_perms: Can't get "
3020 "standard entries for file %s.\n", fsp_str_dbg(fsp)));
3021 return False;
3024 *posix_perms = (mode_t)0;
3026 *posix_perms |= owner_ace->perms;
3027 *posix_perms |= MAP_PERM(group_ace->perms, S_IRUSR, S_IRGRP);
3028 *posix_perms |= MAP_PERM(group_ace->perms, S_IWUSR, S_IWGRP);
3029 *posix_perms |= MAP_PERM(group_ace->perms, S_IXUSR, S_IXGRP);
3030 *posix_perms |= MAP_PERM(other_ace->perms, S_IRUSR, S_IROTH);
3031 *posix_perms |= MAP_PERM(other_ace->perms, S_IWUSR, S_IWOTH);
3032 *posix_perms |= MAP_PERM(other_ace->perms, S_IXUSR, S_IXOTH);
3034 /* The owner must have at least read access. */
3036 *posix_perms |= S_IRUSR;
3037 if (fsp->is_directory)
3038 *posix_perms |= (S_IWUSR|S_IXUSR);
3040 /* If requested apply the masks. */
3042 /* Get the initial bits to apply. */
3044 if (fsp->is_directory) {
3045 and_bits = lp_dir_security_mask(snum);
3046 or_bits = lp_force_dir_security_mode(snum);
3047 } else {
3048 and_bits = lp_security_mask(snum);
3049 or_bits = lp_force_security_mode(snum);
3052 *posix_perms = (((*posix_perms) & and_bits)|or_bits);
3054 DEBUG(10,("convert_canon_ace_to_posix_perms: converted u=%o,g=%o,w=%o "
3055 "to perm=0%o for file %s.\n", (int)owner_ace->perms,
3056 (int)group_ace->perms, (int)other_ace->perms,
3057 (int)*posix_perms, fsp_str_dbg(fsp)));
3059 return True;
3062 /****************************************************************************
3063 Incoming NT ACLs on a directory can be split into a default POSIX acl (CI|OI|IO) and
3064 a normal POSIX acl. Win2k needs these split acls re-merging into one ACL
3065 with CI|OI set so it is inherited and also applies to the directory.
3066 Based on code from "Jim McDonough" <jmcd@us.ibm.com>.
3067 ****************************************************************************/
3069 static size_t merge_default_aces( struct security_ace *nt_ace_list, size_t num_aces)
3071 size_t i, j;
3073 for (i = 0; i < num_aces; i++) {
3074 for (j = i+1; j < num_aces; j++) {
3075 uint32 i_flags_ni = (nt_ace_list[i].flags & ~SEC_ACE_FLAG_INHERITED_ACE);
3076 uint32 j_flags_ni = (nt_ace_list[j].flags & ~SEC_ACE_FLAG_INHERITED_ACE);
3077 bool i_inh = (nt_ace_list[i].flags & SEC_ACE_FLAG_INHERITED_ACE) ? True : False;
3078 bool j_inh = (nt_ace_list[j].flags & SEC_ACE_FLAG_INHERITED_ACE) ? True : False;
3080 /* We know the lower number ACE's are file entries. */
3081 if ((nt_ace_list[i].type == nt_ace_list[j].type) &&
3082 (nt_ace_list[i].size == nt_ace_list[j].size) &&
3083 (nt_ace_list[i].access_mask == nt_ace_list[j].access_mask) &&
3084 dom_sid_equal(&nt_ace_list[i].trustee, &nt_ace_list[j].trustee) &&
3085 (i_inh == j_inh) &&
3086 (i_flags_ni == 0) &&
3087 (j_flags_ni == (SEC_ACE_FLAG_OBJECT_INHERIT|
3088 SEC_ACE_FLAG_CONTAINER_INHERIT|
3089 SEC_ACE_FLAG_INHERIT_ONLY))) {
3091 * W2K wants to have access allowed zero access ACE's
3092 * at the end of the list. If the mask is zero, merge
3093 * the non-inherited ACE onto the inherited ACE.
3096 if (nt_ace_list[i].access_mask == 0) {
3097 nt_ace_list[j].flags = SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT|
3098 (i_inh ? SEC_ACE_FLAG_INHERITED_ACE : 0);
3099 if (num_aces - i - 1 > 0)
3100 memmove(&nt_ace_list[i], &nt_ace_list[i+1], (num_aces-i-1) *
3101 sizeof(struct security_ace));
3103 DEBUG(10,("merge_default_aces: Merging zero access ACE %u onto ACE %u.\n",
3104 (unsigned int)i, (unsigned int)j ));
3105 } else {
3107 * These are identical except for the flags.
3108 * Merge the inherited ACE onto the non-inherited ACE.
3111 nt_ace_list[i].flags = SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT|
3112 (i_inh ? SEC_ACE_FLAG_INHERITED_ACE : 0);
3113 if (num_aces - j - 1 > 0)
3114 memmove(&nt_ace_list[j], &nt_ace_list[j+1], (num_aces-j-1) *
3115 sizeof(struct security_ace));
3117 DEBUG(10,("merge_default_aces: Merging ACE %u onto ACE %u.\n",
3118 (unsigned int)j, (unsigned int)i ));
3120 num_aces--;
3121 break;
3126 return num_aces;
3130 * Add or Replace ACE entry.
3131 * In some cases we need to add a specific ACE for compatibility reasons.
3132 * When doing that we must make sure we are not actually creating a duplicate
3133 * entry. So we need to search whether an ACE entry already exist and eventually
3134 * replacce the access mask, or add a completely new entry if none was found.
3136 * This function assumes the array has enough space to add a new entry without
3137 * any reallocation of memory.
3140 static void add_or_replace_ace(struct security_ace *nt_ace_list, size_t *num_aces,
3141 const struct dom_sid *sid, enum security_ace_type type,
3142 uint32_t mask, uint8_t flags)
3144 int i;
3146 /* first search for a duplicate */
3147 for (i = 0; i < *num_aces; i++) {
3148 if (dom_sid_equal(&nt_ace_list[i].trustee, sid) &&
3149 (nt_ace_list[i].flags == flags)) break;
3152 if (i < *num_aces) { /* found */
3153 nt_ace_list[i].type = type;
3154 nt_ace_list[i].access_mask = mask;
3155 DEBUG(10, ("Replacing ACE %d with SID %s and flags %02x\n",
3156 i, sid_string_dbg(sid), flags));
3157 return;
3160 /* not found, append it */
3161 init_sec_ace(&nt_ace_list[(*num_aces)++], sid, type, mask, flags);
3165 /****************************************************************************
3166 Reply to query a security descriptor from an fsp. If it succeeds it allocates
3167 the space for the return elements and returns the size needed to return the
3168 security descriptor. This should be the only external function needed for
3169 the UNIX style get ACL.
3170 ****************************************************************************/
3172 static NTSTATUS posix_get_nt_acl_common(struct connection_struct *conn,
3173 const char *name,
3174 const SMB_STRUCT_STAT *sbuf,
3175 struct pai_val *pal,
3176 SMB_ACL_T posix_acl,
3177 SMB_ACL_T def_acl,
3178 uint32_t security_info,
3179 struct security_descriptor **ppdesc)
3181 struct dom_sid owner_sid;
3182 struct dom_sid group_sid;
3183 size_t sd_size = 0;
3184 struct security_acl *psa = NULL;
3185 size_t num_acls = 0;
3186 size_t num_def_acls = 0;
3187 size_t num_aces = 0;
3188 canon_ace *file_ace = NULL;
3189 canon_ace *dir_ace = NULL;
3190 struct security_ace *nt_ace_list = NULL;
3191 size_t num_profile_acls = 0;
3192 struct dom_sid orig_owner_sid;
3193 struct security_descriptor *psd = NULL;
3194 int i;
3197 * Get the owner, group and world SIDs.
3200 create_file_sids(sbuf, &owner_sid, &group_sid);
3202 if (lp_profile_acls(SNUM(conn))) {
3203 /* For WXP SP1 the owner must be administrators. */
3204 sid_copy(&orig_owner_sid, &owner_sid);
3205 sid_copy(&owner_sid, &global_sid_Builtin_Administrators);
3206 sid_copy(&group_sid, &global_sid_Builtin_Users);
3207 num_profile_acls = 3;
3210 if ((security_info & SECINFO_DACL) && !(security_info & SECINFO_PROTECTED_DACL)) {
3213 * In the optimum case Creator Owner and Creator Group would be used for
3214 * the ACL_USER_OBJ and ACL_GROUP_OBJ entries, respectively, but this
3215 * would lead to usability problems under Windows: The Creator entries
3216 * are only available in browse lists of directories and not for files;
3217 * additionally the identity of the owning group couldn't be determined.
3218 * We therefore use those identities only for Default ACLs.
3221 /* Create the canon_ace lists. */
3222 file_ace = canonicalise_acl(conn, name, posix_acl, sbuf,
3223 &owner_sid, &group_sid, pal,
3224 SMB_ACL_TYPE_ACCESS);
3226 /* We must have *some* ACLS. */
3228 if (count_canon_ace_list(file_ace) == 0) {
3229 DEBUG(0,("get_nt_acl : No ACLs on file (%s) !\n", name));
3230 goto done;
3233 if (S_ISDIR(sbuf->st_ex_mode) && def_acl) {
3234 dir_ace = canonicalise_acl(conn, name, def_acl,
3235 sbuf,
3236 &global_sid_Creator_Owner,
3237 &global_sid_Creator_Group,
3238 pal, SMB_ACL_TYPE_DEFAULT);
3242 * Create the NT ACE list from the canonical ace lists.
3246 canon_ace *ace;
3247 enum security_ace_type nt_acl_type;
3249 if (nt4_compatible_acls() && dir_ace) {
3251 * NT 4 chokes if an ACL contains an INHERIT_ONLY entry
3252 * but no non-INHERIT_ONLY entry for one SID. So we only
3253 * remove entries from the Access ACL if the
3254 * corresponding Default ACL entries have also been
3255 * removed. ACEs for CREATOR-OWNER and CREATOR-GROUP
3256 * are exceptions. We can do nothing
3257 * intelligent if the Default ACL contains entries that
3258 * are not also contained in the Access ACL, so this
3259 * case will still fail under NT 4.
3262 ace = canon_ace_entry_for(dir_ace, SMB_ACL_OTHER, NULL);
3263 if (ace && !ace->perms) {
3264 DLIST_REMOVE(dir_ace, ace);
3265 SAFE_FREE(ace);
3267 ace = canon_ace_entry_for(file_ace, SMB_ACL_OTHER, NULL);
3268 if (ace && !ace->perms) {
3269 DLIST_REMOVE(file_ace, ace);
3270 SAFE_FREE(ace);
3275 * WinNT doesn't usually have Creator Group
3276 * in browse lists, so we send this entry to
3277 * WinNT even if it contains no relevant
3278 * permissions. Once we can add
3279 * Creator Group to browse lists we can
3280 * re-enable this.
3283 #if 0
3284 ace = canon_ace_entry_for(dir_ace, SMB_ACL_GROUP_OBJ, NULL);
3285 if (ace && !ace->perms) {
3286 DLIST_REMOVE(dir_ace, ace);
3287 SAFE_FREE(ace);
3289 #endif
3291 ace = canon_ace_entry_for(file_ace, SMB_ACL_GROUP_OBJ, NULL);
3292 if (ace && !ace->perms) {
3293 DLIST_REMOVE(file_ace, ace);
3294 SAFE_FREE(ace);
3298 num_acls = count_canon_ace_list(file_ace);
3299 num_def_acls = count_canon_ace_list(dir_ace);
3301 /* Allocate the ace list. */
3302 if ((nt_ace_list = SMB_MALLOC_ARRAY(struct security_ace,num_acls + num_profile_acls + num_def_acls)) == NULL) {
3303 DEBUG(0,("get_nt_acl: Unable to malloc space for nt_ace_list.\n"));
3304 goto done;
3307 memset(nt_ace_list, '\0', (num_acls + num_def_acls) * sizeof(struct security_ace) );
3310 * Create the NT ACE list from the canonical ace lists.
3313 for (ace = file_ace; ace != NULL; ace = ace->next) {
3314 uint32_t acc = map_canon_ace_perms(SNUM(conn),
3315 &nt_acl_type,
3316 ace->perms,
3317 S_ISDIR(sbuf->st_ex_mode));
3318 init_sec_ace(&nt_ace_list[num_aces++],
3319 &ace->trustee,
3320 nt_acl_type,
3321 acc,
3322 ace->ace_flags);
3325 /* The User must have access to a profile share - even
3326 * if we can't map the SID. */
3327 if (lp_profile_acls(SNUM(conn))) {
3328 add_or_replace_ace(nt_ace_list, &num_aces,
3329 &global_sid_Builtin_Users,
3330 SEC_ACE_TYPE_ACCESS_ALLOWED,
3331 FILE_GENERIC_ALL, 0);
3334 for (ace = dir_ace; ace != NULL; ace = ace->next) {
3335 uint32_t acc = map_canon_ace_perms(SNUM(conn),
3336 &nt_acl_type,
3337 ace->perms,
3338 S_ISDIR(sbuf->st_ex_mode));
3339 init_sec_ace(&nt_ace_list[num_aces++],
3340 &ace->trustee,
3341 nt_acl_type,
3342 acc,
3343 ace->ace_flags |
3344 SEC_ACE_FLAG_OBJECT_INHERIT|
3345 SEC_ACE_FLAG_CONTAINER_INHERIT|
3346 SEC_ACE_FLAG_INHERIT_ONLY);
3349 /* The User must have access to a profile share - even
3350 * if we can't map the SID. */
3351 if (lp_profile_acls(SNUM(conn))) {
3352 add_or_replace_ace(nt_ace_list, &num_aces,
3353 &global_sid_Builtin_Users,
3354 SEC_ACE_TYPE_ACCESS_ALLOWED,
3355 FILE_GENERIC_ALL,
3356 SEC_ACE_FLAG_OBJECT_INHERIT |
3357 SEC_ACE_FLAG_CONTAINER_INHERIT |
3358 SEC_ACE_FLAG_INHERIT_ONLY);
3362 * Merge POSIX default ACLs and normal ACLs into one NT ACE.
3363 * Win2K needs this to get the inheritance correct when replacing ACLs
3364 * on a directory tree. Based on work by Jim @ IBM.
3367 num_aces = merge_default_aces(nt_ace_list, num_aces);
3369 if (lp_profile_acls(SNUM(conn))) {
3370 for (i = 0; i < num_aces; i++) {
3371 if (dom_sid_equal(&nt_ace_list[i].trustee, &owner_sid)) {
3372 add_or_replace_ace(nt_ace_list, &num_aces,
3373 &orig_owner_sid,
3374 nt_ace_list[i].type,
3375 nt_ace_list[i].access_mask,
3376 nt_ace_list[i].flags);
3377 break;
3383 if (num_aces) {
3384 if((psa = make_sec_acl( talloc_tos(), NT4_ACL_REVISION, num_aces, nt_ace_list)) == NULL) {
3385 DEBUG(0,("get_nt_acl: Unable to malloc space for acl.\n"));
3386 goto done;
3389 } /* security_info & SECINFO_DACL */
3391 psd = make_standard_sec_desc( talloc_tos(),
3392 (security_info & SECINFO_OWNER) ? &owner_sid : NULL,
3393 (security_info & SECINFO_GROUP) ? &group_sid : NULL,
3394 psa,
3395 &sd_size);
3397 if(!psd) {
3398 DEBUG(0,("get_nt_acl: Unable to malloc space for security descriptor.\n"));
3399 sd_size = 0;
3400 goto done;
3404 * Windows 2000: The DACL_PROTECTED flag in the security
3405 * descriptor marks the ACL as non-inheriting, i.e., no
3406 * ACEs from higher level directories propagate to this
3407 * ACL. In the POSIX ACL model permissions are only
3408 * inherited at file create time, so ACLs never contain
3409 * any ACEs that are inherited dynamically. The DACL_PROTECTED
3410 * flag doesn't seem to bother Windows NT.
3411 * Always set this if map acl inherit is turned off.
3413 if (pal == NULL || !lp_map_acl_inherit(SNUM(conn))) {
3414 psd->type |= SEC_DESC_DACL_PROTECTED;
3415 } else {
3416 psd->type |= pal->sd_type;
3419 if (psd->dacl) {
3420 dacl_sort_into_canonical_order(psd->dacl->aces, (unsigned int)psd->dacl->num_aces);
3423 *ppdesc = psd;
3425 done:
3427 if (posix_acl) {
3428 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
3430 if (def_acl) {
3431 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
3433 free_canon_ace_list(file_ace);
3434 free_canon_ace_list(dir_ace);
3435 free_inherited_info(pal);
3436 SAFE_FREE(nt_ace_list);
3438 return NT_STATUS_OK;
3441 NTSTATUS posix_fget_nt_acl(struct files_struct *fsp, uint32_t security_info,
3442 struct security_descriptor **ppdesc)
3444 SMB_STRUCT_STAT sbuf;
3445 SMB_ACL_T posix_acl = NULL;
3446 struct pai_val *pal;
3448 *ppdesc = NULL;
3450 DEBUG(10,("posix_fget_nt_acl: called for file %s\n",
3451 fsp_str_dbg(fsp)));
3453 /* can it happen that fsp_name == NULL ? */
3454 if (fsp->is_directory || fsp->fh->fd == -1) {
3455 return posix_get_nt_acl(fsp->conn, fsp->fsp_name->base_name,
3456 security_info, ppdesc);
3459 /* Get the stat struct for the owner info. */
3460 if(SMB_VFS_FSTAT(fsp, &sbuf) != 0) {
3461 return map_nt_error_from_unix(errno);
3464 /* Get the ACL from the fd. */
3465 posix_acl = SMB_VFS_SYS_ACL_GET_FD(fsp);
3467 pal = fload_inherited_info(fsp);
3469 return posix_get_nt_acl_common(fsp->conn, fsp->fsp_name->base_name,
3470 &sbuf, pal, posix_acl, NULL,
3471 security_info, ppdesc);
3474 NTSTATUS posix_get_nt_acl(struct connection_struct *conn, const char *name,
3475 uint32_t security_info, struct security_descriptor **ppdesc)
3477 SMB_ACL_T posix_acl = NULL;
3478 SMB_ACL_T def_acl = NULL;
3479 struct pai_val *pal;
3480 struct smb_filename smb_fname;
3481 int ret;
3483 *ppdesc = NULL;
3485 DEBUG(10,("posix_get_nt_acl: called for file %s\n", name ));
3487 ZERO_STRUCT(smb_fname);
3488 smb_fname.base_name = discard_const_p(char, name);
3490 /* Get the stat struct for the owner info. */
3491 if (lp_posix_pathnames()) {
3492 ret = SMB_VFS_LSTAT(conn, &smb_fname);
3493 } else {
3494 ret = SMB_VFS_STAT(conn, &smb_fname);
3497 if (ret == -1) {
3498 return map_nt_error_from_unix(errno);
3501 /* Get the ACL from the path. */
3502 posix_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, name, SMB_ACL_TYPE_ACCESS);
3504 /* If it's a directory get the default POSIX ACL. */
3505 if(S_ISDIR(smb_fname.st.st_ex_mode)) {
3506 def_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, name, SMB_ACL_TYPE_DEFAULT);
3507 def_acl = free_empty_sys_acl(conn, def_acl);
3510 pal = load_inherited_info(conn, name);
3512 return posix_get_nt_acl_common(conn, name, &smb_fname.st, pal,
3513 posix_acl, def_acl, security_info,
3514 ppdesc);
3517 /****************************************************************************
3518 Try to chown a file. We will be able to chown it under the following conditions.
3520 1) If we have root privileges, then it will just work.
3521 2) If we have SeTakeOwnershipPrivilege we can change the user to the current user.
3522 3) If we have SeRestorePrivilege we can change the user to any other user.
3523 4) If we have write permission to the file and dos_filemodes is set
3524 then allow chown to the currently authenticated user.
3525 ****************************************************************************/
3527 int try_chown(connection_struct *conn, struct smb_filename *smb_fname,
3528 uid_t uid, gid_t gid)
3530 int ret;
3531 files_struct *fsp;
3533 if(!CAN_WRITE(conn)) {
3534 return -1;
3537 /* Case (1). */
3538 /* try the direct way first */
3539 if (lp_posix_pathnames()) {
3540 ret = SMB_VFS_LCHOWN(conn, smb_fname->base_name, uid, gid);
3541 } else {
3542 ret = SMB_VFS_CHOWN(conn, smb_fname->base_name, uid, gid);
3545 if (ret == 0)
3546 return 0;
3548 /* Case (2) / (3) */
3549 if (lp_enable_privileges()) {
3551 bool has_take_ownership_priv = security_token_has_privilege(get_current_nttok(conn), SEC_PRIV_TAKE_OWNERSHIP);
3552 bool has_restore_priv = security_token_has_privilege(get_current_nttok(conn), SEC_PRIV_RESTORE);
3554 /* Case (2) */
3555 if ( ( has_take_ownership_priv && ( uid == get_current_uid(conn) ) ) ||
3556 /* Case (3) */
3557 ( has_restore_priv ) ) {
3559 become_root();
3560 /* Keep the current file gid the same - take ownership doesn't imply group change. */
3561 if (lp_posix_pathnames()) {
3562 ret = SMB_VFS_LCHOWN(conn, smb_fname->base_name, uid,
3563 (gid_t)-1);
3564 } else {
3565 ret = SMB_VFS_CHOWN(conn, smb_fname->base_name, uid,
3566 (gid_t)-1);
3568 unbecome_root();
3569 return ret;
3573 /* Case (4). */
3574 if (!lp_dos_filemode(SNUM(conn))) {
3575 errno = EPERM;
3576 return -1;
3579 /* only allow chown to the current user. This is more secure,
3580 and also copes with the case where the SID in a take ownership ACL is
3581 a local SID on the users workstation
3583 if (uid != get_current_uid(conn)) {
3584 errno = EPERM;
3585 return -1;
3588 if (lp_posix_pathnames()) {
3589 ret = SMB_VFS_LSTAT(conn, smb_fname);
3590 } else {
3591 ret = SMB_VFS_STAT(conn, smb_fname);
3594 if (ret == -1) {
3595 return -1;
3598 if (!NT_STATUS_IS_OK(open_file_fchmod(NULL, conn, smb_fname, &fsp))) {
3599 return -1;
3602 become_root();
3603 /* Keep the current file gid the same. */
3604 if (fsp->fh->fd == -1) {
3605 if (lp_posix_pathnames()) {
3606 ret = SMB_VFS_LCHOWN(conn, smb_fname->base_name, uid,
3607 (gid_t)-1);
3608 } else {
3609 ret = SMB_VFS_CHOWN(conn, smb_fname->base_name, uid,
3610 (gid_t)-1);
3612 } else {
3613 ret = SMB_VFS_FCHOWN(fsp, uid, (gid_t)-1);
3615 unbecome_root();
3617 close_file_fchmod(NULL, fsp);
3619 return ret;
3622 #if 0
3623 /* Disable this - prevents ACL inheritance from the ACL editor. JRA. */
3625 /****************************************************************************
3626 Take care of parent ACL inheritance.
3627 ****************************************************************************/
3629 NTSTATUS append_parent_acl(files_struct *fsp,
3630 const struct security_descriptor *pcsd,
3631 struct security_descriptor **pp_new_sd)
3633 struct smb_filename *smb_dname = NULL;
3634 struct security_descriptor *parent_sd = NULL;
3635 files_struct *parent_fsp = NULL;
3636 TALLOC_CTX *mem_ctx = talloc_tos();
3637 char *parent_name = NULL;
3638 struct security_ace *new_ace = NULL;
3639 unsigned int num_aces = pcsd->dacl->num_aces;
3640 NTSTATUS status;
3641 int info;
3642 unsigned int i, j;
3643 struct security_descriptor *psd = dup_sec_desc(talloc_tos(), pcsd);
3644 bool is_dacl_protected = (pcsd->type & SEC_DESC_DACL_PROTECTED);
3646 if (psd == NULL) {
3647 return NT_STATUS_NO_MEMORY;
3650 if (!parent_dirname(mem_ctx, fsp->fsp_name->base_name, &parent_name,
3651 NULL)) {
3652 return NT_STATUS_NO_MEMORY;
3655 status = create_synthetic_smb_fname(mem_ctx, parent_name, NULL, NULL,
3656 &smb_dname);
3657 if (!NT_STATUS_IS_OK(status)) {
3658 goto fail;
3661 status = SMB_VFS_CREATE_FILE(
3662 fsp->conn, /* conn */
3663 NULL, /* req */
3664 0, /* root_dir_fid */
3665 smb_dname, /* fname */
3666 FILE_READ_ATTRIBUTES, /* access_mask */
3667 FILE_SHARE_NONE, /* share_access */
3668 FILE_OPEN, /* create_disposition*/
3669 FILE_DIRECTORY_FILE, /* create_options */
3670 0, /* file_attributes */
3671 INTERNAL_OPEN_ONLY, /* oplock_request */
3672 0, /* allocation_size */
3673 NULL, /* sd */
3674 NULL, /* ea_list */
3675 &parent_fsp, /* result */
3676 &info); /* pinfo */
3678 if (!NT_STATUS_IS_OK(status)) {
3679 TALLOC_FREE(smb_dname);
3680 return status;
3683 status = SMB_VFS_GET_NT_ACL(parent_fsp->conn, smb_dname->base_name,
3684 SECINFO_DACL, &parent_sd );
3686 close_file(NULL, parent_fsp, NORMAL_CLOSE);
3687 TALLOC_FREE(smb_dname);
3689 if (!NT_STATUS_IS_OK(status)) {
3690 return status;
3694 * Make room for potentially all the ACLs from
3695 * the parent. We used to add the ugw triple here,
3696 * as we knew we were dealing with POSIX ACLs.
3697 * We no longer need to do so as we can guarentee
3698 * that a default ACL from the parent directory will
3699 * be well formed for POSIX ACLs if it came from a
3700 * POSIX ACL source, and if we're not writing to a
3701 * POSIX ACL sink then we don't care if it's not well
3702 * formed. JRA.
3705 num_aces += parent_sd->dacl->num_aces;
3707 if((new_ace = TALLOC_ZERO_ARRAY(mem_ctx, struct security_ace,
3708 num_aces)) == NULL) {
3709 return NT_STATUS_NO_MEMORY;
3712 /* Start by copying in all the given ACE entries. */
3713 for (i = 0; i < psd->dacl->num_aces; i++) {
3714 sec_ace_copy(&new_ace[i], &psd->dacl->aces[i]);
3718 * Note that we're ignoring "inherit permissions" here
3719 * as that really only applies to newly created files. JRA.
3722 /* Finally append any inherited ACEs. */
3723 for (j = 0; j < parent_sd->dacl->num_aces; j++) {
3724 struct security_ace *se = &parent_sd->dacl->aces[j];
3726 if (fsp->is_directory) {
3727 if (!(se->flags & SEC_ACE_FLAG_CONTAINER_INHERIT)) {
3728 /* Doesn't apply to a directory - ignore. */
3729 DEBUG(10,("append_parent_acl: directory %s "
3730 "ignoring non container "
3731 "inherit flags %u on ACE with sid %s "
3732 "from parent %s\n",
3733 fsp_str_dbg(fsp),
3734 (unsigned int)se->flags,
3735 sid_string_dbg(&se->trustee),
3736 parent_name));
3737 continue;
3739 } else {
3740 if (!(se->flags & SEC_ACE_FLAG_OBJECT_INHERIT)) {
3741 /* Doesn't apply to a file - ignore. */
3742 DEBUG(10,("append_parent_acl: file %s "
3743 "ignoring non object "
3744 "inherit flags %u on ACE with sid %s "
3745 "from parent %s\n",
3746 fsp_str_dbg(fsp),
3747 (unsigned int)se->flags,
3748 sid_string_dbg(&se->trustee),
3749 parent_name));
3750 continue;
3754 if (is_dacl_protected) {
3755 /* If the DACL is protected it means we must
3756 * not overwrite an existing ACE entry with the
3757 * same SID. This is order N^2. Ouch :-(. JRA. */
3758 unsigned int k;
3759 for (k = 0; k < psd->dacl->num_aces; k++) {
3760 if (dom_sid_equal(&psd->dacl->aces[k].trustee,
3761 &se->trustee)) {
3762 break;
3765 if (k < psd->dacl->num_aces) {
3766 /* SID matched. Ignore. */
3767 DEBUG(10,("append_parent_acl: path %s "
3768 "ignoring ACE with protected sid %s "
3769 "from parent %s\n",
3770 fsp_str_dbg(fsp),
3771 sid_string_dbg(&se->trustee),
3772 parent_name));
3773 continue;
3777 sec_ace_copy(&new_ace[i], se);
3778 if (se->flags & SEC_ACE_FLAG_NO_PROPAGATE_INHERIT) {
3779 new_ace[i].flags &= ~(SEC_ACE_FLAG_VALID_INHERIT);
3781 new_ace[i].flags |= SEC_ACE_FLAG_INHERITED_ACE;
3783 if (fsp->is_directory) {
3785 * Strip off any inherit only. It's applied.
3787 new_ace[i].flags &= ~(SEC_ACE_FLAG_INHERIT_ONLY);
3788 if (se->flags & SEC_ACE_FLAG_NO_PROPAGATE_INHERIT) {
3789 /* No further inheritance. */
3790 new_ace[i].flags &=
3791 ~(SEC_ACE_FLAG_CONTAINER_INHERIT|
3792 SEC_ACE_FLAG_OBJECT_INHERIT);
3794 } else {
3796 * Strip off any container or inherit
3797 * flags, they can't apply to objects.
3799 new_ace[i].flags &= ~(SEC_ACE_FLAG_CONTAINER_INHERIT|
3800 SEC_ACE_FLAG_INHERIT_ONLY|
3801 SEC_ACE_FLAG_NO_PROPAGATE_INHERIT);
3803 i++;
3805 DEBUG(10,("append_parent_acl: path %s "
3806 "inheriting ACE with sid %s "
3807 "from parent %s\n",
3808 fsp_str_dbg(fsp),
3809 sid_string_dbg(&se->trustee),
3810 parent_name));
3813 psd->dacl->aces = new_ace;
3814 psd->dacl->num_aces = i;
3815 psd->type &= ~(SEC_DESC_DACL_AUTO_INHERITED|
3816 SEC_DESC_DACL_AUTO_INHERIT_REQ);
3818 *pp_new_sd = psd;
3819 return status;
3821 #endif
3823 /****************************************************************************
3824 Reply to set a security descriptor on an fsp. security_info_sent is the
3825 description of the following NT ACL.
3826 This should be the only external function needed for the UNIX style set ACL.
3827 We make a copy of psd_orig as internal functions modify the elements inside
3828 it, even though it's a const pointer.
3829 ****************************************************************************/
3831 NTSTATUS set_nt_acl(files_struct *fsp, uint32 security_info_sent, const struct security_descriptor *psd_orig)
3833 connection_struct *conn = fsp->conn;
3834 uid_t user = (uid_t)-1;
3835 gid_t grp = (gid_t)-1;
3836 struct dom_sid file_owner_sid;
3837 struct dom_sid file_grp_sid;
3838 canon_ace *file_ace_list = NULL;
3839 canon_ace *dir_ace_list = NULL;
3840 bool acl_perms = False;
3841 mode_t orig_mode = (mode_t)0;
3842 NTSTATUS status;
3843 bool set_acl_as_root = false;
3844 bool acl_set_support = false;
3845 bool ret = false;
3846 struct security_descriptor *psd = NULL;
3848 DEBUG(10,("set_nt_acl: called for file %s\n",
3849 fsp_str_dbg(fsp)));
3851 if (!CAN_WRITE(conn)) {
3852 DEBUG(10,("set acl rejected on read-only share\n"));
3853 return NT_STATUS_MEDIA_WRITE_PROTECTED;
3856 if (!psd_orig) {
3857 return NT_STATUS_INVALID_PARAMETER;
3860 psd = dup_sec_desc(talloc_tos(), psd_orig);
3861 if (!psd) {
3862 return NT_STATUS_NO_MEMORY;
3865 if((security_info_sent & SECINFO_DACL) &&
3866 (psd->type & SEC_DESC_DACL_PRESENT) &&
3867 (psd->dacl == NULL)) {
3868 struct security_ace ace;
3870 /* We can't have NULL DACL in POSIX.
3871 Use Everyone -> full access. */
3873 init_sec_ace(&ace,
3874 &global_sid_World,
3875 SEC_ACE_TYPE_ACCESS_ALLOWED,
3876 GENERIC_ALL_ACCESS,
3878 psd->dacl = make_sec_acl(talloc_tos(),
3879 NT4_ACL_REVISION,
3881 &ace);
3882 if (psd->dacl == NULL) {
3883 return NT_STATUS_NO_MEMORY;
3885 security_acl_map_generic(psd->dacl, &file_generic_mapping);
3889 * Get the current state of the file.
3892 status = vfs_stat_fsp(fsp);
3893 if (!NT_STATUS_IS_OK(status)) {
3894 return status;
3897 /* Save the original element we check against. */
3898 orig_mode = fsp->fsp_name->st.st_ex_mode;
3901 * Unpack the user/group/world id's.
3904 /* POSIX can't cope with missing owner/group. */
3905 if ((security_info_sent & SECINFO_OWNER) && (psd->owner_sid == NULL)) {
3906 security_info_sent &= ~SECINFO_OWNER;
3908 if ((security_info_sent & SECINFO_GROUP) && (psd->group_sid == NULL)) {
3909 security_info_sent &= ~SECINFO_GROUP;
3912 status = unpack_nt_owners( conn, &user, &grp, security_info_sent, psd);
3913 if (!NT_STATUS_IS_OK(status)) {
3914 return status;
3918 * Do we need to chown ? If so this must be done first as the incoming
3919 * CREATOR_OWNER acl will be relative to the *new* owner, not the old.
3920 * Noticed by Simo.
3923 if (((user != (uid_t)-1) && (fsp->fsp_name->st.st_ex_uid != user)) ||
3924 (( grp != (gid_t)-1) && (fsp->fsp_name->st.st_ex_gid != grp))) {
3926 DEBUG(3,("set_nt_acl: chown %s. uid = %u, gid = %u.\n",
3927 fsp_str_dbg(fsp), (unsigned int)user,
3928 (unsigned int)grp));
3930 if(try_chown(fsp->conn, fsp->fsp_name, user, grp) == -1) {
3931 DEBUG(3,("set_nt_acl: chown %s, %u, %u failed. Error "
3932 "= %s.\n", fsp_str_dbg(fsp),
3933 (unsigned int)user, (unsigned int)grp,
3934 strerror(errno)));
3935 if (errno == EPERM) {
3936 return NT_STATUS_INVALID_OWNER;
3938 return map_nt_error_from_unix(errno);
3942 * Recheck the current state of the file, which may have changed.
3943 * (suid/sgid bits, for instance)
3946 status = vfs_stat_fsp(fsp);
3947 if (!NT_STATUS_IS_OK(status)) {
3948 return status;
3951 /* Save the original element we check against. */
3952 orig_mode = fsp->fsp_name->st.st_ex_mode;
3954 /* If we successfully chowned, we know we must
3955 * be able to set the acl, so do it as root.
3957 set_acl_as_root = true;
3960 create_file_sids(&fsp->fsp_name->st, &file_owner_sid, &file_grp_sid);
3962 acl_perms = unpack_canon_ace(fsp, &fsp->fsp_name->st, &file_owner_sid,
3963 &file_grp_sid, &file_ace_list,
3964 &dir_ace_list, security_info_sent, psd);
3966 /* Ignore W2K traverse DACL set. */
3967 if (!file_ace_list && !dir_ace_list) {
3968 return NT_STATUS_OK;
3971 if (!acl_perms) {
3972 DEBUG(3,("set_nt_acl: cannot set permissions\n"));
3973 free_canon_ace_list(file_ace_list);
3974 free_canon_ace_list(dir_ace_list);
3975 return NT_STATUS_ACCESS_DENIED;
3979 * Only change security if we got a DACL.
3982 if(!(security_info_sent & SECINFO_DACL) || (psd->dacl == NULL)) {
3983 free_canon_ace_list(file_ace_list);
3984 free_canon_ace_list(dir_ace_list);
3985 return NT_STATUS_OK;
3989 * Try using the POSIX ACL set first. Fall back to chmod if
3990 * we have no ACL support on this filesystem.
3993 if (acl_perms && file_ace_list) {
3994 if (set_acl_as_root) {
3995 become_root();
3997 ret = set_canon_ace_list(fsp, file_ace_list, false,
3998 &fsp->fsp_name->st, &acl_set_support);
3999 if (set_acl_as_root) {
4000 unbecome_root();
4002 if (acl_set_support && ret == false) {
4003 DEBUG(3,("set_nt_acl: failed to set file acl on file "
4004 "%s (%s).\n", fsp_str_dbg(fsp),
4005 strerror(errno)));
4006 free_canon_ace_list(file_ace_list);
4007 free_canon_ace_list(dir_ace_list);
4008 return map_nt_error_from_unix(errno);
4012 if (acl_perms && acl_set_support && fsp->is_directory) {
4013 if (dir_ace_list) {
4014 if (set_acl_as_root) {
4015 become_root();
4017 ret = set_canon_ace_list(fsp, dir_ace_list, true,
4018 &fsp->fsp_name->st,
4019 &acl_set_support);
4020 if (set_acl_as_root) {
4021 unbecome_root();
4023 if (ret == false) {
4024 DEBUG(3,("set_nt_acl: failed to set default "
4025 "acl on directory %s (%s).\n",
4026 fsp_str_dbg(fsp), strerror(errno)));
4027 free_canon_ace_list(file_ace_list);
4028 free_canon_ace_list(dir_ace_list);
4029 return map_nt_error_from_unix(errno);
4031 } else {
4032 int sret = -1;
4035 * No default ACL - delete one if it exists.
4038 if (set_acl_as_root) {
4039 become_root();
4041 sret = SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn,
4042 fsp->fsp_name->base_name);
4043 if (set_acl_as_root) {
4044 unbecome_root();
4046 if (sret == -1) {
4047 if (acl_group_override(conn, fsp->fsp_name)) {
4048 DEBUG(5,("set_nt_acl: acl group "
4049 "control on and current user "
4050 "in file %s primary group. "
4051 "Override delete_def_acl\n",
4052 fsp_str_dbg(fsp)));
4054 become_root();
4055 sret =
4056 SMB_VFS_SYS_ACL_DELETE_DEF_FILE(
4057 conn,
4058 fsp->fsp_name->base_name);
4059 unbecome_root();
4062 if (sret == -1) {
4063 DEBUG(3,("set_nt_acl: sys_acl_delete_def_file failed (%s)\n", strerror(errno)));
4064 free_canon_ace_list(file_ace_list);
4065 free_canon_ace_list(dir_ace_list);
4066 return map_nt_error_from_unix(errno);
4072 if (acl_set_support) {
4073 if (set_acl_as_root) {
4074 become_root();
4076 store_inheritance_attributes(fsp,
4077 file_ace_list,
4078 dir_ace_list,
4079 psd->type);
4080 if (set_acl_as_root) {
4081 unbecome_root();
4086 * If we cannot set using POSIX ACLs we fall back to checking if we need to chmod.
4089 if(!acl_set_support && acl_perms) {
4090 mode_t posix_perms;
4092 if (!convert_canon_ace_to_posix_perms( fsp, file_ace_list, &posix_perms)) {
4093 free_canon_ace_list(file_ace_list);
4094 free_canon_ace_list(dir_ace_list);
4095 DEBUG(3,("set_nt_acl: failed to convert file acl to "
4096 "posix permissions for file %s.\n",
4097 fsp_str_dbg(fsp)));
4098 return NT_STATUS_ACCESS_DENIED;
4101 if (orig_mode != posix_perms) {
4102 int sret = -1;
4104 DEBUG(3,("set_nt_acl: chmod %s. perms = 0%o.\n",
4105 fsp_str_dbg(fsp), (unsigned int)posix_perms));
4107 if (set_acl_as_root) {
4108 become_root();
4110 sret = SMB_VFS_CHMOD(conn, fsp->fsp_name->base_name,
4111 posix_perms);
4112 if (set_acl_as_root) {
4113 unbecome_root();
4115 if(sret == -1) {
4116 if (acl_group_override(conn, fsp->fsp_name)) {
4117 DEBUG(5,("set_nt_acl: acl group "
4118 "control on and current user "
4119 "in file %s primary group. "
4120 "Override chmod\n",
4121 fsp_str_dbg(fsp)));
4123 become_root();
4124 sret = SMB_VFS_CHMOD(conn,
4125 fsp->fsp_name->base_name,
4126 posix_perms);
4127 unbecome_root();
4130 if (sret == -1) {
4131 DEBUG(3,("set_nt_acl: chmod %s, 0%o "
4132 "failed. Error = %s.\n",
4133 fsp_str_dbg(fsp),
4134 (unsigned int)posix_perms,
4135 strerror(errno)));
4136 free_canon_ace_list(file_ace_list);
4137 free_canon_ace_list(dir_ace_list);
4138 return map_nt_error_from_unix(errno);
4144 free_canon_ace_list(file_ace_list);
4145 free_canon_ace_list(dir_ace_list);
4147 /* Ensure the stat struct in the fsp is correct. */
4148 status = vfs_stat_fsp(fsp);
4150 return NT_STATUS_OK;
4153 /****************************************************************************
4154 Get the actual group bits stored on a file with an ACL. Has no effect if
4155 the file has no ACL. Needed in dosmode code where the stat() will return
4156 the mask bits, not the real group bits, for a file with an ACL.
4157 ****************************************************************************/
4159 int get_acl_group_bits( connection_struct *conn, const char *fname, mode_t *mode )
4161 int entry_id = SMB_ACL_FIRST_ENTRY;
4162 SMB_ACL_ENTRY_T entry;
4163 SMB_ACL_T posix_acl;
4164 int result = -1;
4166 posix_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS);
4167 if (posix_acl == (SMB_ACL_T)NULL)
4168 return -1;
4170 while (SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1) {
4171 SMB_ACL_TAG_T tagtype;
4172 SMB_ACL_PERMSET_T permset;
4174 entry_id = SMB_ACL_NEXT_ENTRY;
4176 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) ==-1)
4177 break;
4179 if (tagtype == SMB_ACL_GROUP_OBJ) {
4180 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1) {
4181 break;
4182 } else {
4183 *mode &= ~(S_IRGRP|S_IWGRP|S_IXGRP);
4184 *mode |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_READ) ? S_IRGRP : 0);
4185 *mode |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_WRITE) ? S_IWGRP : 0);
4186 *mode |= (SMB_VFS_SYS_ACL_GET_PERM(conn, permset, SMB_ACL_EXECUTE) ? S_IXGRP : 0);
4187 result = 0;
4188 break;
4192 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
4193 return result;
4196 /****************************************************************************
4197 Do a chmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
4198 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
4199 ****************************************************************************/
4201 static int chmod_acl_internals( connection_struct *conn, SMB_ACL_T posix_acl, mode_t mode)
4203 int entry_id = SMB_ACL_FIRST_ENTRY;
4204 SMB_ACL_ENTRY_T entry;
4205 int num_entries = 0;
4207 while ( SMB_VFS_SYS_ACL_GET_ENTRY(conn, posix_acl, entry_id, &entry) == 1) {
4208 SMB_ACL_TAG_T tagtype;
4209 SMB_ACL_PERMSET_T permset;
4210 mode_t perms;
4212 entry_id = SMB_ACL_NEXT_ENTRY;
4214 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1)
4215 return -1;
4217 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1)
4218 return -1;
4220 num_entries++;
4222 switch(tagtype) {
4223 case SMB_ACL_USER_OBJ:
4224 perms = unix_perms_to_acl_perms(mode, S_IRUSR, S_IWUSR, S_IXUSR);
4225 break;
4226 case SMB_ACL_GROUP_OBJ:
4227 perms = unix_perms_to_acl_perms(mode, S_IRGRP, S_IWGRP, S_IXGRP);
4228 break;
4229 case SMB_ACL_MASK:
4231 * FIXME: The ACL_MASK entry permissions should really be set to
4232 * the union of the permissions of all ACL_USER,
4233 * ACL_GROUP_OBJ, and ACL_GROUP entries. That's what
4234 * acl_calc_mask() does, but Samba ACLs doesn't provide it.
4236 perms = S_IRUSR|S_IWUSR|S_IXUSR;
4237 break;
4238 case SMB_ACL_OTHER:
4239 perms = unix_perms_to_acl_perms(mode, S_IROTH, S_IWOTH, S_IXOTH);
4240 break;
4241 default:
4242 continue;
4245 if (map_acl_perms_to_permset(conn, perms, &permset) == -1)
4246 return -1;
4248 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, entry, permset) == -1)
4249 return -1;
4253 * If this is a simple 3 element ACL or no elements then it's a standard
4254 * UNIX permission set. Just use chmod...
4257 if ((num_entries == 3) || (num_entries == 0))
4258 return -1;
4260 return 0;
4263 /****************************************************************************
4264 Get the access ACL of FROM, do a chmod by setting the ACL USER_OBJ,
4265 GROUP_OBJ and OTHER bits in an ACL and set the mask to rwx. Set the
4266 resulting ACL on TO. Note that name is in UNIX character set.
4267 ****************************************************************************/
4269 static int copy_access_posix_acl(connection_struct *conn, const char *from, const char *to, mode_t mode)
4271 SMB_ACL_T posix_acl = NULL;
4272 int ret = -1;
4274 if ((posix_acl = SMB_VFS_SYS_ACL_GET_FILE(conn, from, SMB_ACL_TYPE_ACCESS)) == NULL)
4275 return -1;
4277 if ((ret = chmod_acl_internals(conn, posix_acl, mode)) == -1)
4278 goto done;
4280 ret = SMB_VFS_SYS_ACL_SET_FILE(conn, to, SMB_ACL_TYPE_ACCESS, posix_acl);
4282 done:
4284 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
4285 return ret;
4288 /****************************************************************************
4289 Do a chmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
4290 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
4291 Note that name is in UNIX character set.
4292 ****************************************************************************/
4294 int chmod_acl(connection_struct *conn, const char *name, mode_t mode)
4296 return copy_access_posix_acl(conn, name, name, mode);
4299 /****************************************************************************
4300 Check for an existing default POSIX ACL on a directory.
4301 ****************************************************************************/
4303 static bool directory_has_default_posix_acl(connection_struct *conn, const char *fname)
4305 SMB_ACL_T def_acl = SMB_VFS_SYS_ACL_GET_FILE( conn, fname, SMB_ACL_TYPE_DEFAULT);
4306 bool has_acl = False;
4307 SMB_ACL_ENTRY_T entry;
4309 if (def_acl != NULL && (SMB_VFS_SYS_ACL_GET_ENTRY(conn, def_acl, SMB_ACL_FIRST_ENTRY, &entry) == 1)) {
4310 has_acl = True;
4313 if (def_acl) {
4314 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4316 return has_acl;
4319 /****************************************************************************
4320 If the parent directory has no default ACL but it does have an Access ACL,
4321 inherit this Access ACL to file name.
4322 ****************************************************************************/
4324 int inherit_access_posix_acl(connection_struct *conn, const char *inherit_from_dir,
4325 const char *name, mode_t mode)
4327 if (directory_has_default_posix_acl(conn, inherit_from_dir))
4328 return 0;
4330 return copy_access_posix_acl(conn, inherit_from_dir, name, mode);
4333 /****************************************************************************
4334 Do an fchmod by setting the ACL USER_OBJ, GROUP_OBJ and OTHER bits in an ACL
4335 and set the mask to rwx. Needed to preserve complex ACLs set by NT.
4336 ****************************************************************************/
4338 int fchmod_acl(files_struct *fsp, mode_t mode)
4340 connection_struct *conn = fsp->conn;
4341 SMB_ACL_T posix_acl = NULL;
4342 int ret = -1;
4344 if ((posix_acl = SMB_VFS_SYS_ACL_GET_FD(fsp)) == NULL)
4345 return -1;
4347 if ((ret = chmod_acl_internals(conn, posix_acl, mode)) == -1)
4348 goto done;
4350 ret = SMB_VFS_SYS_ACL_SET_FD(fsp, posix_acl);
4352 done:
4354 SMB_VFS_SYS_ACL_FREE_ACL(conn, posix_acl);
4355 return ret;
4358 /****************************************************************************
4359 Map from wire type to permset.
4360 ****************************************************************************/
4362 static bool unix_ex_wire_to_permset(connection_struct *conn, unsigned char wire_perm, SMB_ACL_PERMSET_T *p_permset)
4364 if (wire_perm & ~(SMB_POSIX_ACL_READ|SMB_POSIX_ACL_WRITE|SMB_POSIX_ACL_EXECUTE)) {
4365 return False;
4368 if (SMB_VFS_SYS_ACL_CLEAR_PERMS(conn, *p_permset) == -1) {
4369 return False;
4372 if (wire_perm & SMB_POSIX_ACL_READ) {
4373 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_READ) == -1) {
4374 return False;
4377 if (wire_perm & SMB_POSIX_ACL_WRITE) {
4378 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_WRITE) == -1) {
4379 return False;
4382 if (wire_perm & SMB_POSIX_ACL_EXECUTE) {
4383 if (SMB_VFS_SYS_ACL_ADD_PERM(conn, *p_permset, SMB_ACL_EXECUTE) == -1) {
4384 return False;
4387 return True;
4390 /****************************************************************************
4391 Map from wire type to tagtype.
4392 ****************************************************************************/
4394 static bool unix_ex_wire_to_tagtype(unsigned char wire_tt, SMB_ACL_TAG_T *p_tt)
4396 switch (wire_tt) {
4397 case SMB_POSIX_ACL_USER_OBJ:
4398 *p_tt = SMB_ACL_USER_OBJ;
4399 break;
4400 case SMB_POSIX_ACL_USER:
4401 *p_tt = SMB_ACL_USER;
4402 break;
4403 case SMB_POSIX_ACL_GROUP_OBJ:
4404 *p_tt = SMB_ACL_GROUP_OBJ;
4405 break;
4406 case SMB_POSIX_ACL_GROUP:
4407 *p_tt = SMB_ACL_GROUP;
4408 break;
4409 case SMB_POSIX_ACL_MASK:
4410 *p_tt = SMB_ACL_MASK;
4411 break;
4412 case SMB_POSIX_ACL_OTHER:
4413 *p_tt = SMB_ACL_OTHER;
4414 break;
4415 default:
4416 return False;
4418 return True;
4421 /****************************************************************************
4422 Create a new POSIX acl from wire permissions.
4423 FIXME ! How does the share mask/mode fit into this.... ?
4424 ****************************************************************************/
4426 static SMB_ACL_T create_posix_acl_from_wire(connection_struct *conn, uint16 num_acls, const char *pdata)
4428 unsigned int i;
4429 SMB_ACL_T the_acl = SMB_VFS_SYS_ACL_INIT(conn, num_acls);
4431 if (the_acl == NULL) {
4432 return NULL;
4435 for (i = 0; i < num_acls; i++) {
4436 SMB_ACL_ENTRY_T the_entry;
4437 SMB_ACL_PERMSET_T the_permset;
4438 SMB_ACL_TAG_T tag_type;
4440 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &the_acl, &the_entry) == -1) {
4441 DEBUG(0,("create_posix_acl_from_wire: Failed to create entry %u. (%s)\n",
4442 i, strerror(errno) ));
4443 goto fail;
4446 if (!unix_ex_wire_to_tagtype(CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)), &tag_type)) {
4447 DEBUG(0,("create_posix_acl_from_wire: invalid wire tagtype %u on entry %u.\n",
4448 CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)), i ));
4449 goto fail;
4452 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, the_entry, tag_type) == -1) {
4453 DEBUG(0,("create_posix_acl_from_wire: Failed to set tagtype on entry %u. (%s)\n",
4454 i, strerror(errno) ));
4455 goto fail;
4458 /* Get the permset pointer from the new ACL entry. */
4459 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, the_entry, &the_permset) == -1) {
4460 DEBUG(0,("create_posix_acl_from_wire: Failed to get permset on entry %u. (%s)\n",
4461 i, strerror(errno) ));
4462 goto fail;
4465 /* Map from wire to permissions. */
4466 if (!unix_ex_wire_to_permset(conn, CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)+1), &the_permset)) {
4467 DEBUG(0,("create_posix_acl_from_wire: invalid permset %u on entry %u.\n",
4468 CVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE) + 1), i ));
4469 goto fail;
4472 /* Now apply to the new ACL entry. */
4473 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, the_entry, the_permset) == -1) {
4474 DEBUG(0,("create_posix_acl_from_wire: Failed to add permset on entry %u. (%s)\n",
4475 i, strerror(errno) ));
4476 goto fail;
4479 if (tag_type == SMB_ACL_USER) {
4480 uint32 uidval = IVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
4481 uid_t uid = (uid_t)uidval;
4482 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn, the_entry,(void *)&uid) == -1) {
4483 DEBUG(0,("create_posix_acl_from_wire: Failed to set uid %u on entry %u. (%s)\n",
4484 (unsigned int)uid, i, strerror(errno) ));
4485 goto fail;
4489 if (tag_type == SMB_ACL_GROUP) {
4490 uint32 gidval = IVAL(pdata,(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
4491 gid_t gid = (uid_t)gidval;
4492 if (SMB_VFS_SYS_ACL_SET_QUALIFIER(conn, the_entry,(void *)&gid) == -1) {
4493 DEBUG(0,("create_posix_acl_from_wire: Failed to set gid %u on entry %u. (%s)\n",
4494 (unsigned int)gid, i, strerror(errno) ));
4495 goto fail;
4500 return the_acl;
4502 fail:
4504 if (the_acl != NULL) {
4505 SMB_VFS_SYS_ACL_FREE_ACL(conn, the_acl);
4507 return NULL;
4510 /****************************************************************************
4511 Calls from UNIX extensions - Default POSIX ACL set.
4512 If num_def_acls == 0 and not a directory just return. If it is a directory
4513 and num_def_acls == 0 then remove the default acl. Else set the default acl
4514 on the directory.
4515 ****************************************************************************/
4517 bool set_unix_posix_default_acl(connection_struct *conn, const char *fname, const SMB_STRUCT_STAT *psbuf,
4518 uint16 num_def_acls, const char *pdata)
4520 SMB_ACL_T def_acl = NULL;
4522 if (!S_ISDIR(psbuf->st_ex_mode)) {
4523 if (num_def_acls) {
4524 DEBUG(5,("set_unix_posix_default_acl: Can't set default ACL on non-directory file %s\n", fname ));
4525 errno = EISDIR;
4526 return False;
4527 } else {
4528 return True;
4532 if (!num_def_acls) {
4533 /* Remove the default ACL. */
4534 if (SMB_VFS_SYS_ACL_DELETE_DEF_FILE(conn, fname) == -1) {
4535 DEBUG(5,("set_unix_posix_default_acl: acl_delete_def_file failed on directory %s (%s)\n",
4536 fname, strerror(errno) ));
4537 return False;
4539 return True;
4542 if ((def_acl = create_posix_acl_from_wire(conn, num_def_acls, pdata)) == NULL) {
4543 return False;
4546 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fname, SMB_ACL_TYPE_DEFAULT, def_acl) == -1) {
4547 DEBUG(5,("set_unix_posix_default_acl: acl_set_file failed on directory %s (%s)\n",
4548 fname, strerror(errno) ));
4549 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4550 return False;
4553 DEBUG(10,("set_unix_posix_default_acl: set default acl for file %s\n", fname ));
4554 SMB_VFS_SYS_ACL_FREE_ACL(conn, def_acl);
4555 return True;
4558 /****************************************************************************
4559 Remove an ACL from a file. As we don't have acl_delete_entry() available
4560 we must read the current acl and copy all entries except MASK, USER and GROUP
4561 to a new acl, then set that. This (at least on Linux) causes any ACL to be
4562 removed.
4563 FIXME ! How does the share mask/mode fit into this.... ?
4564 ****************************************************************************/
4566 static bool remove_posix_acl(connection_struct *conn, files_struct *fsp, const char *fname)
4568 SMB_ACL_T file_acl = NULL;
4569 int entry_id = SMB_ACL_FIRST_ENTRY;
4570 SMB_ACL_ENTRY_T entry;
4571 bool ret = False;
4572 /* Create a new ACL with only 3 entries, u/g/w. */
4573 SMB_ACL_T new_file_acl = SMB_VFS_SYS_ACL_INIT(conn, 3);
4574 SMB_ACL_ENTRY_T user_ent = NULL;
4575 SMB_ACL_ENTRY_T group_ent = NULL;
4576 SMB_ACL_ENTRY_T other_ent = NULL;
4578 if (new_file_acl == NULL) {
4579 DEBUG(5,("remove_posix_acl: failed to init new ACL with 3 entries for file %s.\n", fname));
4580 return False;
4583 /* Now create the u/g/w entries. */
4584 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &new_file_acl, &user_ent) == -1) {
4585 DEBUG(5,("remove_posix_acl: Failed to create user entry for file %s. (%s)\n",
4586 fname, strerror(errno) ));
4587 goto done;
4589 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, user_ent, SMB_ACL_USER_OBJ) == -1) {
4590 DEBUG(5,("remove_posix_acl: Failed to set user entry for file %s. (%s)\n",
4591 fname, strerror(errno) ));
4592 goto done;
4595 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &new_file_acl, &group_ent) == -1) {
4596 DEBUG(5,("remove_posix_acl: Failed to create group entry for file %s. (%s)\n",
4597 fname, strerror(errno) ));
4598 goto done;
4600 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, group_ent, SMB_ACL_GROUP_OBJ) == -1) {
4601 DEBUG(5,("remove_posix_acl: Failed to set group entry for file %s. (%s)\n",
4602 fname, strerror(errno) ));
4603 goto done;
4606 if (SMB_VFS_SYS_ACL_CREATE_ENTRY(conn, &new_file_acl, &other_ent) == -1) {
4607 DEBUG(5,("remove_posix_acl: Failed to create other entry for file %s. (%s)\n",
4608 fname, strerror(errno) ));
4609 goto done;
4611 if (SMB_VFS_SYS_ACL_SET_TAG_TYPE(conn, other_ent, SMB_ACL_OTHER) == -1) {
4612 DEBUG(5,("remove_posix_acl: Failed to set other entry for file %s. (%s)\n",
4613 fname, strerror(errno) ));
4614 goto done;
4617 /* Get the current file ACL. */
4618 if (fsp && fsp->fh->fd != -1) {
4619 file_acl = SMB_VFS_SYS_ACL_GET_FD(fsp);
4620 } else {
4621 file_acl = SMB_VFS_SYS_ACL_GET_FILE( conn, fname, SMB_ACL_TYPE_ACCESS);
4624 if (file_acl == NULL) {
4625 /* This is only returned if an error occurred. Even for a file with
4626 no acl a u/g/w acl should be returned. */
4627 DEBUG(5,("remove_posix_acl: failed to get ACL from file %s (%s).\n",
4628 fname, strerror(errno) ));
4629 goto done;
4632 while ( SMB_VFS_SYS_ACL_GET_ENTRY(conn, file_acl, entry_id, &entry) == 1) {
4633 SMB_ACL_TAG_T tagtype;
4634 SMB_ACL_PERMSET_T permset;
4636 entry_id = SMB_ACL_NEXT_ENTRY;
4638 if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1) {
4639 DEBUG(5,("remove_posix_acl: failed to get tagtype from ACL on file %s (%s).\n",
4640 fname, strerror(errno) ));
4641 goto done;
4644 if (SMB_VFS_SYS_ACL_GET_PERMSET(conn, entry, &permset) == -1) {
4645 DEBUG(5,("remove_posix_acl: failed to get permset from ACL on file %s (%s).\n",
4646 fname, strerror(errno) ));
4647 goto done;
4650 if (tagtype == SMB_ACL_USER_OBJ) {
4651 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, user_ent, permset) == -1) {
4652 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4653 fname, strerror(errno) ));
4655 } else if (tagtype == SMB_ACL_GROUP_OBJ) {
4656 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, group_ent, permset) == -1) {
4657 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4658 fname, strerror(errno) ));
4660 } else if (tagtype == SMB_ACL_OTHER) {
4661 if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, other_ent, permset) == -1) {
4662 DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n",
4663 fname, strerror(errno) ));
4668 /* Set the new empty file ACL. */
4669 if (fsp && fsp->fh->fd != -1) {
4670 if (SMB_VFS_SYS_ACL_SET_FD(fsp, new_file_acl) == -1) {
4671 DEBUG(5,("remove_posix_acl: acl_set_file failed on %s (%s)\n",
4672 fname, strerror(errno) ));
4673 goto done;
4675 } else {
4676 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS, new_file_acl) == -1) {
4677 DEBUG(5,("remove_posix_acl: acl_set_file failed on %s (%s)\n",
4678 fname, strerror(errno) ));
4679 goto done;
4683 ret = True;
4685 done:
4687 if (file_acl) {
4688 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4690 if (new_file_acl) {
4691 SMB_VFS_SYS_ACL_FREE_ACL(conn, new_file_acl);
4693 return ret;
4696 /****************************************************************************
4697 Calls from UNIX extensions - POSIX ACL set.
4698 If num_def_acls == 0 then read/modify/write acl after removing all entries
4699 except SMB_ACL_USER_OBJ, SMB_ACL_GROUP_OBJ, SMB_ACL_OTHER.
4700 ****************************************************************************/
4702 bool set_unix_posix_acl(connection_struct *conn, files_struct *fsp, const char *fname, uint16 num_acls, const char *pdata)
4704 SMB_ACL_T file_acl = NULL;
4706 if (!num_acls) {
4707 /* Remove the ACL from the file. */
4708 return remove_posix_acl(conn, fsp, fname);
4711 if ((file_acl = create_posix_acl_from_wire(conn, num_acls, pdata)) == NULL) {
4712 return False;
4715 if (fsp && fsp->fh->fd != -1) {
4716 /* The preferred way - use an open fd. */
4717 if (SMB_VFS_SYS_ACL_SET_FD(fsp, file_acl) == -1) {
4718 DEBUG(5,("set_unix_posix_acl: acl_set_file failed on %s (%s)\n",
4719 fname, strerror(errno) ));
4720 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4721 return False;
4723 } else {
4724 if (SMB_VFS_SYS_ACL_SET_FILE(conn, fname, SMB_ACL_TYPE_ACCESS, file_acl) == -1) {
4725 DEBUG(5,("set_unix_posix_acl: acl_set_file failed on %s (%s)\n",
4726 fname, strerror(errno) ));
4727 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4728 return False;
4732 DEBUG(10,("set_unix_posix_acl: set acl for file %s\n", fname ));
4733 SMB_VFS_SYS_ACL_FREE_ACL(conn, file_acl);
4734 return True;
4737 /********************************************************************
4738 Pull the NT ACL from a file on disk or the OpenEventlog() access
4739 check. Caller is responsible for freeing the returned security
4740 descriptor via TALLOC_FREE(). This is designed for dealing with
4741 user space access checks in smbd outside of the VFS. For example,
4742 checking access rights in OpenEventlog().
4744 Assume we are dealing with files (for now)
4745 ********************************************************************/
4747 struct security_descriptor *get_nt_acl_no_snum( TALLOC_CTX *ctx, const char *fname)
4749 struct security_descriptor *psd, *ret_sd;
4750 connection_struct *conn;
4751 files_struct finfo;
4752 struct fd_handle fh;
4753 NTSTATUS status;
4755 conn = TALLOC_ZERO_P(ctx, connection_struct);
4756 if (conn == NULL) {
4757 DEBUG(0, ("talloc failed\n"));
4758 return NULL;
4761 if (!(conn->params = TALLOC_P(conn, struct share_params))) {
4762 DEBUG(0,("get_nt_acl_no_snum: talloc() failed!\n"));
4763 TALLOC_FREE(conn);
4764 return NULL;
4767 conn->params->service = -1;
4769 set_conn_connectpath(conn, "/");
4771 if (!smbd_vfs_init(conn)) {
4772 DEBUG(0,("get_nt_acl_no_snum: Unable to create a fake connection struct!\n"));
4773 conn_free(conn);
4774 return NULL;
4777 ZERO_STRUCT( finfo );
4778 ZERO_STRUCT( fh );
4780 finfo.fnum = -1;
4781 finfo.conn = conn;
4782 finfo.fh = &fh;
4783 finfo.fh->fd = -1;
4785 status = create_synthetic_smb_fname(talloc_tos(), fname, NULL, NULL,
4786 &finfo.fsp_name);
4787 if (!NT_STATUS_IS_OK(status)) {
4788 conn_free(conn);
4789 return NULL;
4792 if (!NT_STATUS_IS_OK(SMB_VFS_FGET_NT_ACL( &finfo, SECINFO_DACL, &psd))) {
4793 DEBUG(0,("get_nt_acl_no_snum: get_nt_acl returned zero.\n"));
4794 TALLOC_FREE(finfo.fsp_name);
4795 conn_free(conn);
4796 return NULL;
4799 ret_sd = dup_sec_desc( ctx, psd );
4801 TALLOC_FREE(finfo.fsp_name);
4802 conn_free(conn);
4804 return ret_sd;