4 * Copyright (C) Jim McDonough, 2006
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "smbd/smbd.h"
22 #include "nfs4_acls.h"
23 #include "librpc/gen_ndr/ndr_security.h"
24 #include "../libcli/security/dom_sid.h"
25 #include "../libcli/security/security.h"
26 #include "include/dbwrap.h"
27 #include "system/filesys.h"
28 #include "passdb/lookup_sid.h"
32 #define DBGC_CLASS DBGC_ACLS
34 #define SMBACL4_PARAM_TYPE_NAME "nfs4"
36 extern const struct generic_mapping file_generic_mapping
;
38 #define SMB_ACE4_INT_MAGIC 0x76F8A967
39 typedef struct _SMB_ACE4_INT_T
46 #define SMB_ACL4_INT_MAGIC 0x29A3E792
47 typedef struct _SMB_ACL4_INT_T
51 SMB_ACE4_INT_T
*first
;
55 static SMB_ACL4_INT_T
*get_validated_aclint(SMB4ACL_T
*theacl
)
57 SMB_ACL4_INT_T
*aclint
= (SMB_ACL4_INT_T
*)theacl
;
60 DEBUG(2, ("acl is NULL\n"));
64 if (aclint
->magic
!=SMB_ACL4_INT_MAGIC
)
66 DEBUG(2, ("aclint bad magic 0x%x\n", aclint
->magic
));
73 static SMB_ACE4_INT_T
*get_validated_aceint(SMB4ACE_T
*ace
)
75 SMB_ACE4_INT_T
*aceint
= (SMB_ACE4_INT_T
*)ace
;
78 DEBUG(2, ("ace is NULL\n"));
82 if (aceint
->magic
!=SMB_ACE4_INT_MAGIC
)
84 DEBUG(2, ("aceint bad magic 0x%x\n", aceint
->magic
));
91 SMB4ACL_T
*smb_create_smb4acl(void)
93 TALLOC_CTX
*mem_ctx
= talloc_tos();
94 SMB_ACL4_INT_T
*theacl
= (SMB_ACL4_INT_T
*)TALLOC_ZERO_SIZE(mem_ctx
, sizeof(SMB_ACL4_INT_T
));
97 DEBUG(0, ("TALLOC_SIZE failed\n"));
101 theacl
->magic
= SMB_ACL4_INT_MAGIC
;
102 /* theacl->first, last = NULL not needed */
103 return (SMB4ACL_T
*)theacl
;
106 SMB4ACE_T
*smb_add_ace4(SMB4ACL_T
*theacl
, SMB_ACE4PROP_T
*prop
)
108 SMB_ACL4_INT_T
*aclint
= get_validated_aclint(theacl
);
109 TALLOC_CTX
*mem_ctx
= talloc_tos();
112 ace
= (SMB_ACE4_INT_T
*)TALLOC_ZERO_SIZE(mem_ctx
, sizeof(SMB_ACE4_INT_T
));
115 DEBUG(0, ("TALLOC_SIZE failed\n"));
119 ace
->magic
= SMB_ACE4_INT_MAGIC
;
120 /* ace->next = NULL not needed */
121 memcpy(&ace
->prop
, prop
, sizeof(SMB_ACE4PROP_T
));
123 if (aclint
->first
==NULL
)
128 aclint
->last
->next
= (void *)ace
;
133 return (SMB4ACE_T
*)ace
;
136 SMB_ACE4PROP_T
*smb_get_ace4(SMB4ACE_T
*ace
)
138 SMB_ACE4_INT_T
*aceint
= get_validated_aceint(ace
);
142 return &aceint
->prop
;
145 SMB4ACE_T
*smb_next_ace4(SMB4ACE_T
*ace
)
147 SMB_ACE4_INT_T
*aceint
= get_validated_aceint(ace
);
151 return (SMB4ACE_T
*)aceint
->next
;
154 SMB4ACE_T
*smb_first_ace4(SMB4ACL_T
*theacl
)
156 SMB_ACL4_INT_T
*aclint
= get_validated_aclint(theacl
);
160 return (SMB4ACE_T
*)aclint
->first
;
163 uint32
smb_get_naces(SMB4ACL_T
*theacl
)
165 SMB_ACL4_INT_T
*aclint
= get_validated_aclint(theacl
);
169 return aclint
->naces
;
172 static int smbacl4_GetFileOwner(struct connection_struct
*conn
,
173 const char *filename
,
174 SMB_STRUCT_STAT
*psbuf
)
176 memset(psbuf
, 0, sizeof(SMB_STRUCT_STAT
));
178 /* Get the stat struct for the owner info. */
179 if (vfs_stat_smb_fname(conn
, filename
, psbuf
) != 0)
181 DEBUG(8, ("vfs_stat_smb_fname failed with error %s\n",
189 static int smbacl4_fGetFileOwner(files_struct
*fsp
, SMB_STRUCT_STAT
*psbuf
)
191 memset(psbuf
, 0, sizeof(SMB_STRUCT_STAT
));
193 if (fsp
->fh
->fd
== -1) {
194 return smbacl4_GetFileOwner(fsp
->conn
,
195 fsp
->fsp_name
->base_name
, psbuf
);
197 if (SMB_VFS_FSTAT(fsp
, psbuf
) != 0)
199 DEBUG(8, ("SMB_VFS_FSTAT failed with error %s\n",
207 static bool smbacl4_nfs42win(TALLOC_CTX
*mem_ctx
, SMB4ACL_T
*theacl
, /* in */
208 struct dom_sid
*psid_owner
, /* in */
209 struct dom_sid
*psid_group
, /* in */
210 bool is_directory
, /* in */
211 struct security_ace
**ppnt_ace_list
, /* out */
212 int *pgood_aces
/* out */
215 SMB_ACL4_INT_T
*aclint
= (SMB_ACL4_INT_T
*)theacl
;
216 SMB_ACE4_INT_T
*aceint
;
217 struct security_ace
*nt_ace_list
= NULL
;
220 DEBUG(10, ("smbacl_nfs42win entered\n"));
222 aclint
= get_validated_aclint(theacl
);
223 /* We do not check for naces being 0 or theacl being NULL here because it is done upstream */
224 /* in smb_get_nt_acl_nfs4(). */
225 nt_ace_list
= (struct security_ace
*)TALLOC_ZERO_SIZE(mem_ctx
, aclint
->naces
* sizeof(struct security_ace
));
226 if (nt_ace_list
==NULL
)
228 DEBUG(10, ("talloc error"));
233 for (aceint
=aclint
->first
; aceint
!=NULL
; aceint
=(SMB_ACE4_INT_T
*)aceint
->next
) {
236 SMB_ACE4PROP_T
*ace
= &aceint
->prop
;
237 uint32_t mapped_ace_flags
;
239 DEBUG(10, ("magic: 0x%x, type: %d, iflags: %x, flags: %x, mask: %x, "
240 "who: %d\n", aceint
->magic
, ace
->aceType
, ace
->flags
,
241 ace
->aceFlags
, ace
->aceMask
, ace
->who
.id
));
243 SMB_ASSERT(aceint
->magic
==SMB_ACE4_INT_MAGIC
);
245 if (ace
->flags
& SMB_ACE4_ID_SPECIAL
) {
246 switch (ace
->who
.special_id
) {
247 case SMB_ACE4_WHO_OWNER
:
248 sid_copy(&sid
, psid_owner
);
250 case SMB_ACE4_WHO_GROUP
:
251 sid_copy(&sid
, psid_group
);
253 case SMB_ACE4_WHO_EVERYONE
:
254 sid_copy(&sid
, &global_sid_World
);
257 DEBUG(8, ("invalid special who id %d "
258 "ignored\n", ace
->who
.special_id
));
261 if (ace
->aceFlags
& SMB_ACE4_IDENTIFIER_GROUP
) {
262 gid_to_sid(&sid
, ace
->who
.gid
);
264 uid_to_sid(&sid
, ace
->who
.uid
);
267 DEBUG(10, ("mapped %d to %s\n", ace
->who
.id
,
268 sid_string_dbg(&sid
)));
270 if (is_directory
&& (ace
->aceMask
& SMB_ACE4_ADD_FILE
)) {
271 ace
->aceMask
|= SMB_ACE4_DELETE_CHILD
;
274 mapped_ace_flags
= ace
->aceFlags
& 0xf;
275 if (ace
->aceFlags
& SMB_ACE4_INHERITED_ACE
) {
276 mapped_ace_flags
|= SEC_ACE_FLAG_INHERITED_ACE
;
278 if (!is_directory
&& (mapped_ace_flags
& (SMB_ACE4_FILE_INHERIT_ACE
|SMB_ACE4_DIRECTORY_INHERIT_ACE
))) {
280 * GPFS sets inherits dir_inhert and file_inherit flags
281 * to files, too, which confuses windows, and seems to
282 * be wrong anyways. ==> Map these bits away for files.
284 DEBUG(10, ("removing inherit flags from nfs4 ace\n"));
285 mapped_ace_flags
&= ~(SMB_ACE4_FILE_INHERIT_ACE
|SMB_ACE4_DIRECTORY_INHERIT_ACE
);
287 DEBUG(10, ("mapped ace flags: 0x%x => 0x%x\n",
288 ace
->aceFlags
, mapped_ace_flags
));
290 /* Windows clients expect SYNC on acls to
291 correctly allow rename. See bug #7909. */
292 mask
= ace
->aceMask
| SMB_ACE4_SYNCHRONIZE
;
293 init_sec_ace(&nt_ace_list
[good_aces
++], &sid
,
298 *ppnt_ace_list
= nt_ace_list
;
299 *pgood_aces
= good_aces
;
304 static NTSTATUS
smb_get_nt_acl_nfs4_common(const SMB_STRUCT_STAT
*sbuf
,
305 uint32 security_info
,
306 struct security_descriptor
**ppdesc
, SMB4ACL_T
*theacl
)
309 struct dom_sid sid_owner
, sid_group
;
311 struct security_ace
*nt_ace_list
= NULL
;
312 struct security_acl
*psa
= NULL
;
313 TALLOC_CTX
*mem_ctx
= talloc_tos();
315 if (theacl
==NULL
|| smb_get_naces(theacl
)==0)
316 return NT_STATUS_ACCESS_DENIED
; /* special because we
317 * shouldn't alloc 0 for
320 uid_to_sid(&sid_owner
, sbuf
->st_ex_uid
);
321 gid_to_sid(&sid_group
, sbuf
->st_ex_gid
);
323 if (smbacl4_nfs42win(mem_ctx
, theacl
, &sid_owner
, &sid_group
,
324 S_ISDIR(sbuf
->st_ex_mode
),
325 &nt_ace_list
, &good_aces
)==False
) {
326 DEBUG(8,("smbacl4_nfs42win failed\n"));
327 return map_nt_error_from_unix(errno
);
330 psa
= make_sec_acl(mem_ctx
, NT4_ACL_REVISION
, good_aces
, nt_ace_list
);
332 DEBUG(2,("make_sec_acl failed\n"));
333 return NT_STATUS_NO_MEMORY
;
336 DEBUG(10,("after make sec_acl\n"));
337 *ppdesc
= make_sec_desc(mem_ctx
, SD_REVISION
, SEC_DESC_SELF_RELATIVE
,
338 (security_info
& SECINFO_OWNER
) ? &sid_owner
: NULL
,
339 (security_info
& SECINFO_GROUP
) ? &sid_group
: NULL
,
340 NULL
, psa
, &sd_size
);
342 DEBUG(2,("make_sec_desc failed\n"));
343 return NT_STATUS_NO_MEMORY
;
346 DEBUG(10, ("smb_get_nt_acl_nfs4_common successfully exited with sd_size %d\n",
347 (int)ndr_size_security_descriptor(*ppdesc
, 0)));
352 NTSTATUS
smb_fget_nt_acl_nfs4(files_struct
*fsp
,
353 uint32 security_info
,
354 struct security_descriptor
**ppdesc
, SMB4ACL_T
*theacl
)
356 SMB_STRUCT_STAT sbuf
;
358 DEBUG(10, ("smb_fget_nt_acl_nfs4 invoked for %s\n", fsp_str_dbg(fsp
)));
360 if (smbacl4_fGetFileOwner(fsp
, &sbuf
)) {
361 return map_nt_error_from_unix(errno
);
364 return smb_get_nt_acl_nfs4_common(&sbuf
, security_info
, ppdesc
, theacl
);
367 NTSTATUS
smb_get_nt_acl_nfs4(struct connection_struct
*conn
,
369 uint32 security_info
,
370 struct security_descriptor
**ppdesc
, SMB4ACL_T
*theacl
)
372 SMB_STRUCT_STAT sbuf
;
374 DEBUG(10, ("smb_get_nt_acl_nfs4 invoked for %s\n", name
));
376 if (smbacl4_GetFileOwner(conn
, name
, &sbuf
)) {
377 return map_nt_error_from_unix(errno
);
380 return smb_get_nt_acl_nfs4_common(&sbuf
, security_info
, ppdesc
, theacl
);
383 enum smbacl4_mode_enum
{e_simple
=0, e_special
=1};
384 enum smbacl4_acedup_enum
{e_dontcare
=0, e_reject
=1, e_ignore
=2, e_merge
=3};
386 typedef struct _smbacl4_vfs_params
{
387 enum smbacl4_mode_enum mode
;
389 enum smbacl4_acedup_enum acedup
;
390 struct db_context
*sid_mapping_table
;
391 } smbacl4_vfs_params
;
394 * Gather special parameters for NFS4 ACL handling
396 static int smbacl4_get_vfs_params(
397 const char *type_name
,
399 smbacl4_vfs_params
*params
402 static const struct enum_list enum_smbacl4_modes
[] = {
403 { e_simple
, "simple" },
404 { e_special
, "special" }
406 static const struct enum_list enum_smbacl4_acedups
[] = {
407 { e_dontcare
, "dontcare" },
408 { e_reject
, "reject" },
409 { e_ignore
, "ignore" },
410 { e_merge
, "merge" },
413 memset(params
, 0, sizeof(smbacl4_vfs_params
));
414 params
->mode
= (enum smbacl4_mode_enum
)lp_parm_enum(
415 SNUM(fsp
->conn
), type_name
,
416 "mode", enum_smbacl4_modes
, e_simple
);
417 params
->do_chown
= lp_parm_bool(SNUM(fsp
->conn
), type_name
,
419 params
->acedup
= (enum smbacl4_acedup_enum
)lp_parm_enum(
420 SNUM(fsp
->conn
), type_name
,
421 "acedup", enum_smbacl4_acedups
, e_dontcare
);
423 DEBUG(10, ("mode:%s, do_chown:%s, acedup: %s\n",
424 enum_smbacl4_modes
[params
->mode
].name
,
425 params
->do_chown
? "true" : "false",
426 enum_smbacl4_acedups
[params
->acedup
].name
));
431 static void smbacl4_dump_nfs4acl(int level
, SMB4ACL_T
*theacl
)
433 SMB_ACL4_INT_T
*aclint
= get_validated_aclint(theacl
);
434 SMB_ACE4_INT_T
*aceint
;
436 DEBUG(level
, ("NFS4ACL: size=%d\n", aclint
->naces
));
438 for(aceint
= aclint
->first
; aceint
!=NULL
; aceint
=(SMB_ACE4_INT_T
*)aceint
->next
) {
439 SMB_ACE4PROP_T
*ace
= &aceint
->prop
;
441 DEBUG(level
, ("\tACE: type=%d, flags=0x%x, fflags=0x%x, mask=0x%x, id=%d\n",
443 ace
->aceFlags
, ace
->flags
,
450 * Find 2 NFS4 who-special ACE property (non-copy!!!)
451 * match nonzero if "special" and who is equal
452 * return ace if found matching; otherwise NULL
454 static SMB_ACE4PROP_T
*smbacl4_find_equal_special(
456 SMB_ACE4PROP_T
*aceNew
)
458 SMB_ACL4_INT_T
*aclint
= get_validated_aclint(theacl
);
459 SMB_ACE4_INT_T
*aceint
;
461 for(aceint
= aclint
->first
; aceint
!=NULL
; aceint
=(SMB_ACE4_INT_T
*)aceint
->next
) {
462 SMB_ACE4PROP_T
*ace
= &aceint
->prop
;
464 DEBUG(10,("ace type:0x%x flags:0x%x aceFlags:0x%x "
465 "new type:0x%x flags:0x%x aceFlags:0x%x\n",
466 ace
->aceType
, ace
->flags
, ace
->aceFlags
,
467 aceNew
->aceType
, aceNew
->flags
,aceNew
->aceFlags
));
469 if (ace
->flags
== aceNew
->flags
&&
470 ace
->aceType
==aceNew
->aceType
&&
471 ((ace
->aceFlags
&SMB_ACE4_INHERIT_ONLY_ACE
)==
472 (aceNew
->aceFlags
&SMB_ACE4_INHERIT_ONLY_ACE
)) &&
473 (ace
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)==
474 (aceNew
->aceFlags
&SMB_ACE4_IDENTIFIER_GROUP
)
476 /* keep type safety; e.g. gid is an u.short */
477 if (ace
->flags
& SMB_ACE4_ID_SPECIAL
)
479 if (ace
->who
.special_id
==aceNew
->who
.special_id
)
482 if (ace
->aceFlags
& SMB_ACE4_IDENTIFIER_GROUP
)
484 if (ace
->who
.gid
==aceNew
->who
.gid
)
487 if (ace
->who
.uid
==aceNew
->who
.uid
)
497 static bool nfs4_map_sid(smbacl4_vfs_params
*params
, const struct dom_sid
*src
,
500 static struct db_context
*mapping_db
= NULL
;
503 if (mapping_db
== NULL
) {
504 const char *dbname
= lp_parm_const_string(
505 -1, SMBACL4_PARAM_TYPE_NAME
, "sidmap", NULL
);
507 if (dbname
== NULL
) {
508 DEBUG(10, ("%s:sidmap not defined\n",
509 SMBACL4_PARAM_TYPE_NAME
));
514 mapping_db
= db_open(NULL
, dbname
, 0, TDB_DEFAULT
,
518 if (mapping_db
== NULL
) {
519 DEBUG(1, ("could not open sidmap: %s\n",
525 if (mapping_db
->fetch(mapping_db
, NULL
,
526 string_term_tdb_data(sid_string_tos(src
)),
528 DEBUG(10, ("could not find mapping for SID %s\n",
529 sid_string_dbg(src
)));
533 if ((data
.dptr
== NULL
) || (data
.dsize
<= 0)
534 || (data
.dptr
[data
.dsize
-1] != '\0')) {
535 DEBUG(5, ("invalid mapping for SID %s\n",
536 sid_string_dbg(src
)));
537 TALLOC_FREE(data
.dptr
);
541 if (!string_to_sid(dst
, (char *)data
.dptr
)) {
542 DEBUG(1, ("invalid mapping %s for SID %s\n",
543 (char *)data
.dptr
, sid_string_dbg(src
)));
544 TALLOC_FREE(data
.dptr
);
548 TALLOC_FREE(data
.dptr
);
553 static bool smbacl4_fill_ace4(
555 const char *filename
,
556 smbacl4_vfs_params
*params
,
559 const struct security_ace
*ace_nt
, /* input */
560 SMB_ACE4PROP_T
*ace_v4
/* output */
563 DEBUG(10, ("got ace for %s\n", sid_string_dbg(&ace_nt
->trustee
)));
565 memset(ace_v4
, 0, sizeof(SMB_ACE4PROP_T
));
566 ace_v4
->aceType
= ace_nt
->type
; /* only ACCESS|DENY supported right now */
567 ace_v4
->aceFlags
= ace_nt
->flags
& SEC_ACE_FLAG_VALID_INHERIT
;
568 if (ace_nt
->flags
& SEC_ACE_FLAG_INHERITED_ACE
) {
569 ace_v4
->aceFlags
|= SMB_ACE4_INHERITED_ACE
;
571 ace_v4
->aceMask
= ace_nt
->access_mask
&
572 (SEC_STD_ALL
| SEC_FILE_ALL
);
574 se_map_generic(&ace_v4
->aceMask
, &file_generic_mapping
);
576 if (ace_v4
->aceFlags
!=ace_nt
->flags
)
577 DEBUG(9, ("ace_v4->aceFlags(0x%x)!=ace_nt->flags(0x%x)\n",
578 ace_v4
->aceFlags
, ace_nt
->flags
));
580 if (ace_v4
->aceMask
!=ace_nt
->access_mask
)
581 DEBUG(9, ("ace_v4->aceMask(0x%x)!=ace_nt->access_mask(0x%x)\n",
582 ace_v4
->aceMask
, ace_nt
->access_mask
));
584 if (dom_sid_equal(&ace_nt
->trustee
, &global_sid_World
)) {
585 ace_v4
->who
.special_id
= SMB_ACE4_WHO_EVERYONE
;
586 ace_v4
->flags
|= SMB_ACE4_ID_SPECIAL
;
588 const char *dom
, *name
;
589 enum lsa_SidType type
;
594 sid_copy(&sid
, &ace_nt
->trustee
);
596 if (!lookup_sid(mem_ctx
, &sid
, &dom
, &name
, &type
)) {
598 struct dom_sid mapped
;
600 if (!nfs4_map_sid(params
, &sid
, &mapped
)) {
601 DEBUG(1, ("nfs4_acls.c: file [%s]: SID %s "
602 "unknown\n", filename
, sid_string_dbg(&sid
)));
607 DEBUG(2, ("nfs4_acls.c: file [%s]: mapped SID %s "
608 "to %s\n", filename
, sid_string_dbg(&sid
), sid_string_dbg(&mapped
)));
610 if (!lookup_sid(mem_ctx
, &mapped
, &dom
,
612 DEBUG(1, ("nfs4_acls.c: file [%s]: SID %s "
613 "mapped from %s is unknown\n",
614 filename
, sid_string_dbg(&mapped
), sid_string_dbg(&sid
)));
619 sid_copy(&sid
, &mapped
);
622 if (type
== SID_NAME_USER
) {
623 if (!sid_to_uid(&sid
, &uid
)) {
624 DEBUG(1, ("nfs4_acls.c: file [%s]: could not "
625 "convert %s to uid\n", filename
,
626 sid_string_dbg(&sid
)));
630 if (params
->mode
==e_special
&& uid
==ownerUID
) {
631 ace_v4
->flags
|= SMB_ACE4_ID_SPECIAL
;
632 ace_v4
->who
.special_id
= SMB_ACE4_WHO_OWNER
;
634 ace_v4
->who
.uid
= uid
;
636 } else { /* else group? - TODO check it... */
637 if (!sid_to_gid(&sid
, &gid
)) {
638 DEBUG(1, ("nfs4_acls.c: file [%s]: could not "
639 "convert %s to gid\n", filename
,
640 sid_string_dbg(&sid
)));
644 ace_v4
->aceFlags
|= SMB_ACE4_IDENTIFIER_GROUP
;
646 if (params
->mode
==e_special
&& gid
==ownerGID
) {
647 ace_v4
->flags
|= SMB_ACE4_ID_SPECIAL
;
648 ace_v4
->who
.special_id
= SMB_ACE4_WHO_GROUP
;
650 ace_v4
->who
.gid
= gid
;
655 return True
; /* OK */
658 static int smbacl4_MergeIgnoreReject(
659 enum smbacl4_acedup_enum acedup
,
660 SMB4ACL_T
*theacl
, /* may modify it */
661 SMB_ACE4PROP_T
*ace
, /* the "new" ACE */
667 SMB_ACE4PROP_T
*ace4found
= smbacl4_find_equal_special(theacl
, ace
);
672 case e_merge
: /* "merge" flags */
674 ace4found
->aceFlags
|= ace
->aceFlags
;
675 ace4found
->aceMask
|= ace
->aceMask
;
677 case e_ignore
: /* leave out this record */
680 case e_reject
: /* do an error */
681 DEBUG(8, ("ACL rejected by duplicate nt ace#%d\n", i
));
682 errno
= EINVAL
; /* SHOULD be set on any _real_ error */
692 static SMB4ACL_T
*smbacl4_win2nfs4(
693 const char *filename
,
694 const struct security_acl
*dacl
,
695 smbacl4_vfs_params
*pparams
,
702 TALLOC_CTX
*mem_ctx
= talloc_tos();
704 DEBUG(10, ("smbacl4_win2nfs4 invoked\n"));
706 theacl
= smb_create_smb4acl();
710 for(i
=0; i
<dacl
->num_aces
; i
++) {
711 SMB_ACE4PROP_T ace_v4
;
712 bool addNewACE
= True
;
714 if (!smbacl4_fill_ace4(mem_ctx
, filename
, pparams
,
716 dacl
->aces
+ i
, &ace_v4
)) {
717 DEBUG(3, ("Could not fill ace for file %s, SID %s\n",
719 sid_string_dbg(&((dacl
->aces
+i
)->trustee
))));
723 if (pparams
->acedup
!=e_dontcare
) {
724 if (smbacl4_MergeIgnoreReject(pparams
->acedup
, theacl
,
725 &ace_v4
, &addNewACE
, i
))
730 smb_add_ace4(theacl
, &ace_v4
);
736 NTSTATUS
smb_set_nt_acl_nfs4(files_struct
*fsp
,
737 uint32 security_info_sent
,
738 const struct security_descriptor
*psd
,
739 set_nfs4acl_native_fn_t set_nfs4_native
)
741 smbacl4_vfs_params params
;
742 SMB4ACL_T
*theacl
= NULL
;
745 SMB_STRUCT_STAT sbuf
;
746 bool set_acl_as_root
= false;
747 uid_t newUID
= (uid_t
)-1;
748 gid_t newGID
= (gid_t
)-1;
751 DEBUG(10, ("smb_set_nt_acl_nfs4 invoked for %s\n", fsp_str_dbg(fsp
)));
753 if ((security_info_sent
& (SECINFO_DACL
|
754 SECINFO_GROUP
| SECINFO_OWNER
)) == 0)
756 DEBUG(9, ("security_info_sent (0x%x) ignored\n",
757 security_info_sent
));
758 return NT_STATUS_OK
; /* won't show error - later to be refined... */
761 /* Special behaviours */
762 if (smbacl4_get_vfs_params(SMBACL4_PARAM_TYPE_NAME
, fsp
, ¶ms
))
763 return NT_STATUS_NO_MEMORY
;
765 if (smbacl4_fGetFileOwner(fsp
, &sbuf
))
766 return map_nt_error_from_unix(errno
);
768 if (params
.do_chown
) {
769 /* chown logic is a copy/paste from posix_acl.c:set_nt_acl */
770 NTSTATUS status
= unpack_nt_owners(fsp
->conn
, &newUID
, &newGID
, security_info_sent
, psd
);
771 if (!NT_STATUS_IS_OK(status
)) {
772 DEBUG(8, ("unpack_nt_owners failed"));
775 if (((newUID
!= (uid_t
)-1) && (sbuf
.st_ex_uid
!= newUID
)) ||
776 ((newGID
!= (gid_t
)-1) && (sbuf
.st_ex_gid
!= newGID
))) {
778 status
= try_chown(fsp
, newUID
, newGID
);
779 if (!NT_STATUS_IS_OK(status
)) {
780 DEBUG(3,("chown %s, %u, %u failed. Error = "
781 "%s.\n", fsp_str_dbg(fsp
),
782 (unsigned int)newUID
,
783 (unsigned int)newGID
,
788 DEBUG(10,("chown %s, %u, %u succeeded.\n",
789 fsp_str_dbg(fsp
), (unsigned int)newUID
,
790 (unsigned int)newGID
));
791 if (smbacl4_GetFileOwner(fsp
->conn
,
792 fsp
->fsp_name
->base_name
,
794 return map_nt_error_from_unix(errno
);
796 /* If we successfully chowned, we know we must
797 * be able to set the acl, so do it as root.
799 set_acl_as_root
= true;
803 if (!(security_info_sent
& SECINFO_DACL
) || psd
->dacl
==NULL
) {
804 DEBUG(10, ("no dacl found; security_info_sent = 0x%x\n", security_info_sent
));
808 theacl
= smbacl4_win2nfs4(fsp
->fsp_name
->base_name
, psd
->dacl
, ¶ms
,
809 sbuf
.st_ex_uid
, sbuf
.st_ex_gid
);
811 return map_nt_error_from_unix(errno
);
813 smbacl4_dump_nfs4acl(10, theacl
);
815 if (set_acl_as_root
) {
818 result
= set_nfs4_native(fsp
, theacl
);
820 if (set_acl_as_root
) {
825 DEBUG(10, ("set_nfs4_native failed with %s\n", strerror(errno
)));
826 return map_nt_error_from_unix(errno
);
829 DEBUG(10, ("smb_set_nt_acl_nfs4 succeeded\n"));