2 * Store Windows ACLs in data store - common functions.
3 * #included into modules/vfs_acl_xattr.c and modules/vfs_acl_tdb.c
5 * Copyright (C) Volker Lendecke, 2008
6 * Copyright (C) Jeremy Allison, 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 static NTSTATUS
create_acl_blob(const struct security_descriptor
*psd
,
25 uint8_t hash
[XATTR_SD_HASH_SIZE
]);
27 static NTSTATUS
get_acl_blob(TALLOC_CTX
*ctx
,
28 vfs_handle_struct
*handle
,
33 static NTSTATUS
store_acl_blob_fsp(vfs_handle_struct
*handle
,
37 static NTSTATUS
store_acl_blob_pathname(vfs_handle_struct
*handle
,
41 #define HASH_SECURITY_INFO (OWNER_SECURITY_INFORMATION | \
42 GROUP_SECURITY_INFORMATION | \
43 DACL_SECURITY_INFORMATION | \
44 SACL_SECURITY_INFORMATION)
46 /*******************************************************************
47 Hash a security descriptor.
48 *******************************************************************/
50 static NTSTATUS
hash_sd_sha256(struct security_descriptor
*psd
,
57 memset(hash
, '\0', XATTR_SD_HASH_SIZE
);
58 status
= create_acl_blob(psd
, &blob
, XATTR_SD_HASH_TYPE_SHA256
, hash
);
59 if (!NT_STATUS_IS_OK(status
)) {
64 SHA256_Update(&tctx
, blob
.data
, blob
.length
);
65 SHA256_Final(hash
, &tctx
);
70 /*******************************************************************
71 Parse out a struct security_descriptor from a DATA_BLOB.
72 *******************************************************************/
74 static NTSTATUS
parse_acl_blob(const DATA_BLOB
*pblob
,
75 struct security_descriptor
**ppdesc
,
76 uint16_t *p_hash_type
,
77 uint8_t hash
[XATTR_SD_HASH_SIZE
])
79 TALLOC_CTX
*ctx
= talloc_tos();
80 struct xattr_NTACL xacl
;
81 enum ndr_err_code ndr_err
;
84 ndr_err
= ndr_pull_struct_blob(pblob
, ctx
, NULL
, &xacl
,
85 (ndr_pull_flags_fn_t
)ndr_pull_xattr_NTACL
);
87 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
88 DEBUG(5, ("parse_acl_blob: ndr_pull_xattr_NTACL failed: %s\n",
89 ndr_errstr(ndr_err
)));
90 return ndr_map_error2ntstatus(ndr_err
);;
93 switch (xacl
.version
) {
95 *ppdesc
= make_sec_desc(ctx
, SEC_DESC_REVISION
,
96 xacl
.info
.sd_hs2
->sd
->type
| SEC_DESC_SELF_RELATIVE
,
97 xacl
.info
.sd_hs2
->sd
->owner_sid
,
98 xacl
.info
.sd_hs2
->sd
->group_sid
,
99 xacl
.info
.sd_hs2
->sd
->sacl
,
100 xacl
.info
.sd_hs2
->sd
->dacl
,
102 /* No hash - null out. */
103 *p_hash_type
= XATTR_SD_HASH_TYPE_NONE
;
104 memset(hash
, '\0', XATTR_SD_HASH_SIZE
);
107 *ppdesc
= make_sec_desc(ctx
, SEC_DESC_REVISION
,
108 xacl
.info
.sd_hs3
->sd
->type
| SEC_DESC_SELF_RELATIVE
,
109 xacl
.info
.sd_hs3
->sd
->owner_sid
,
110 xacl
.info
.sd_hs3
->sd
->group_sid
,
111 xacl
.info
.sd_hs3
->sd
->sacl
,
112 xacl
.info
.sd_hs3
->sd
->dacl
,
114 *p_hash_type
= xacl
.info
.sd_hs3
->hash_type
;
115 /* Current version 3. */
116 memcpy(hash
, xacl
.info
.sd_hs3
->hash
, XATTR_SD_HASH_SIZE
);
119 return NT_STATUS_REVISION_MISMATCH
;
122 TALLOC_FREE(xacl
.info
.sd
);
124 return (*ppdesc
!= NULL
) ? NT_STATUS_OK
: NT_STATUS_NO_MEMORY
;
127 /*******************************************************************
128 Create a DATA_BLOB from a security descriptor.
129 *******************************************************************/
131 static NTSTATUS
create_acl_blob(const struct security_descriptor
*psd
,
134 uint8_t hash
[XATTR_SD_HASH_SIZE
])
136 struct xattr_NTACL xacl
;
137 struct security_descriptor_hash_v3 sd_hs3
;
138 enum ndr_err_code ndr_err
;
139 TALLOC_CTX
*ctx
= talloc_tos();
145 xacl
.info
.sd_hs3
= &sd_hs3
;
146 xacl
.info
.sd_hs3
->sd
= CONST_DISCARD(struct security_descriptor
*, psd
);
147 xacl
.info
.sd_hs3
->hash_type
= hash_type
;
148 memcpy(&xacl
.info
.sd_hs3
->hash
[0], hash
, XATTR_SD_HASH_SIZE
);
150 ndr_err
= ndr_push_struct_blob(
151 pblob
, ctx
, NULL
, &xacl
,
152 (ndr_push_flags_fn_t
)ndr_push_xattr_NTACL
);
154 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
155 DEBUG(5, ("create_acl_blob: ndr_push_xattr_NTACL failed: %s\n",
156 ndr_errstr(ndr_err
)));
157 return ndr_map_error2ntstatus(ndr_err
);;
163 /*******************************************************************
164 Store a DATA_BLOB into an xattr given a pathname.
165 *******************************************************************/
167 static NTSTATUS
get_nt_acl_internal(vfs_handle_struct
*handle
,
170 uint32_t security_info
,
171 struct security_descriptor
**ppdesc
)
176 uint8_t hash
[XATTR_SD_HASH_SIZE
];
177 uint8_t hash_tmp
[XATTR_SD_HASH_SIZE
];
178 struct security_descriptor
*pdesc_next
= NULL
;
180 if (fsp
&& name
== NULL
) {
181 name
= fsp
->fsp_name
->base_name
;
184 DEBUG(10, ("get_nt_acl_internal: name=%s\n", name
));
186 status
= get_acl_blob(talloc_tos(), handle
, fsp
, name
, &blob
);
187 if (!NT_STATUS_IS_OK(status
)) {
188 DEBUG(10, ("get_acl_blob returned %s\n", nt_errstr(status
)));
189 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_FOUND
)) {
190 /* Pull the ACL from the underlying system. */
192 status
= SMB_VFS_NEXT_FGET_NT_ACL(handle
,
197 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
,
206 status
= parse_acl_blob(&blob
, ppdesc
,
207 &hash_type
, &hash
[0]);
208 if (!NT_STATUS_IS_OK(status
)) {
209 DEBUG(10, ("parse_acl_blob returned %s\n",
214 /* Ensure the hash type is one we know. */
216 case XATTR_SD_HASH_TYPE_NONE
:
217 /* No hash, goto return blob sd. */
219 case XATTR_SD_HASH_TYPE_SHA256
:
222 return NT_STATUS_REVISION_MISMATCH
;
225 /* Get the full underlying sd, then hash. */
227 status
= SMB_VFS_NEXT_FGET_NT_ACL(handle
,
232 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
,
238 if (!NT_STATUS_IS_OK(status
)) {
242 status
= hash_sd_sha256(pdesc_next
, hash_tmp
);
243 if (!NT_STATUS_IS_OK(status
)) {
247 if (memcmp(&hash
[0], &hash_tmp
[0], XATTR_SD_HASH_SIZE
) == 0) {
248 TALLOC_FREE(pdesc_next
);
249 /* Hash matches, return blob sd. */
253 /* Hash doesn't match, return underlying sd. */
255 if (!(security_info
& OWNER_SECURITY_INFORMATION
)) {
256 pdesc_next
->owner_sid
= NULL
;
258 if (!(security_info
& GROUP_SECURITY_INFORMATION
)) {
259 pdesc_next
->group_sid
= NULL
;
261 if (!(security_info
& DACL_SECURITY_INFORMATION
)) {
262 pdesc_next
->dacl
= NULL
;
264 if (!(security_info
& SACL_SECURITY_INFORMATION
)) {
265 pdesc_next
->sacl
= NULL
;
268 TALLOC_FREE(*ppdesc
);
269 *ppdesc
= pdesc_next
;
273 if (!(security_info
& OWNER_SECURITY_INFORMATION
)) {
274 (*ppdesc
)->owner_sid
= NULL
;
276 if (!(security_info
& GROUP_SECURITY_INFORMATION
)) {
277 (*ppdesc
)->group_sid
= NULL
;
279 if (!(security_info
& DACL_SECURITY_INFORMATION
)) {
280 (*ppdesc
)->dacl
= NULL
;
282 if (!(security_info
& SACL_SECURITY_INFORMATION
)) {
283 (*ppdesc
)->sacl
= NULL
;
286 TALLOC_FREE(blob
.data
);
290 /*********************************************************************
291 Create a default security descriptor for a file in case no inheritance
292 exists. All permissions to the owner and SYSTEM.
293 *********************************************************************/
295 static struct security_descriptor
*default_file_sd(TALLOC_CTX
*mem_ctx
,
296 SMB_STRUCT_STAT
*psbuf
,
299 struct dom_sid owner_sid
, group_sid
;
301 struct security_ace
*pace
= NULL
;
302 struct security_acl
*pacl
= NULL
;
304 uid_to_sid(&owner_sid
, psbuf
->st_ex_uid
);
305 gid_to_sid(&group_sid
, psbuf
->st_ex_gid
);
307 pace
= TALLOC_ARRAY(mem_ctx
, struct security_ace
, 2);
312 /* If force_inherit is set, this means we are initializing the ACEs for
313 * a container and we want the ACEs for owner_sid and "SYSTEM" to be
314 * inheritable by their children (See Bug #6802).
317 init_sec_ace(&pace
[0], &owner_sid
, SEC_ACE_TYPE_ACCESS_ALLOWED
,
318 SEC_RIGHTS_FILE_ALL
, (force_inherit
?
319 (SEC_ACE_FLAG_OBJECT_INHERIT
|
320 SEC_ACE_FLAG_CONTAINER_INHERIT
) :
323 init_sec_ace(&pace
[1], &global_sid_System
, SEC_ACE_TYPE_ACCESS_ALLOWED
,
324 SEC_RIGHTS_FILE_ALL
, (force_inherit
?
325 (SEC_ACE_FLAG_OBJECT_INHERIT
|
326 SEC_ACE_FLAG_CONTAINER_INHERIT
) :
329 pacl
= make_sec_acl(mem_ctx
,
336 return make_sec_desc(mem_ctx
,
337 SECURITY_DESCRIPTOR_REVISION_1
,
338 SEC_DESC_SELF_RELATIVE
|SEC_DESC_DACL_PRESENT
,
346 /*********************************************************************
347 *********************************************************************/
349 static NTSTATUS
inherit_new_acl(vfs_handle_struct
*handle
,
350 struct smb_filename
*smb_fname
,
354 TALLOC_CTX
*ctx
= talloc_tos();
356 struct security_descriptor
*parent_desc
= NULL
;
357 struct security_descriptor
*psd
= NULL
;
358 struct security_descriptor
*pdesc_next
= NULL
;
362 bool force_inherit
= false;
363 uint8_t hash
[XATTR_SD_HASH_SIZE
];
365 if (!parent_dirname(ctx
, smb_fname
->base_name
, &parent_name
, NULL
)) {
366 return NT_STATUS_NO_MEMORY
;
369 DEBUG(10,("inherit_new_acl: check directory %s\n",
372 status
= get_nt_acl_internal(handle
,
375 (OWNER_SECURITY_INFORMATION
|
376 GROUP_SECURITY_INFORMATION
|
377 DACL_SECURITY_INFORMATION
),
379 if (NT_STATUS_IS_OK(status
)) {
380 /* Create an inherited descriptor from the parent. */
382 if (DEBUGLEVEL
>= 10) {
383 DEBUG(10,("inherit_new_acl: parent acl is:\n"));
384 NDR_PRINT_DEBUG(security_descriptor
, parent_desc
);
387 status
= se_create_child_secdesc(ctx
,
391 &handle
->conn
->server_info
->ptok
->user_sids
[PRIMARY_USER_SID_INDEX
],
392 &handle
->conn
->server_info
->ptok
->user_sids
[PRIMARY_GROUP_SID_INDEX
],
394 if (!NT_STATUS_IS_OK(status
)) {
398 if (DEBUGLEVEL
>= 10) {
399 DEBUG(10,("inherit_new_acl: child acl is:\n"));
400 NDR_PRINT_DEBUG(security_descriptor
, psd
);
404 DEBUG(10,("inherit_new_acl: directory %s failed "
407 nt_errstr(status
) ));
410 if (!psd
|| psd
->dacl
== NULL
) {
414 status
= vfs_stat_fsp(fsp
);
415 smb_fname
->st
= fsp
->fsp_name
->st
;
418 if (lp_posix_pathnames()) {
419 ret
= SMB_VFS_LSTAT(handle
->conn
, smb_fname
);
421 ret
= SMB_VFS_STAT(handle
->conn
, smb_fname
);
424 status
= map_nt_error_from_unix(errno
);
427 if (!NT_STATUS_IS_OK(status
)) {
431 /* If we get here, we could have the following possibilities:
432 * 1. No ACLs exist on the parent container.
433 * 2. ACLs exist on the parent container but they were
436 * Check to see if case #1 occurred.
440 (parent_desc
== NULL
|| parent_desc
->dacl
== NULL
)) {
442 /* If no parent descriptor exists, then there were
443 * no ACLs on the parent and then we must create
444 * the ACLs on this newly created folder so that they
445 * will be inherited by their children (See Bug #6802).
448 force_inherit
= true;
451 psd
= default_file_sd(ctx
, &smb_fname
->st
, force_inherit
);
453 return NT_STATUS_NO_MEMORY
;
456 if (DEBUGLEVEL
>= 10) {
457 DEBUG(10,("inherit_new_acl: default acl is:\n"));
458 NDR_PRINT_DEBUG(security_descriptor
, psd
);
462 /* Object exists. Read the current SD to get the hash. */
464 status
= SMB_VFS_NEXT_FGET_NT_ACL(handle
,
469 status
= SMB_VFS_NEXT_GET_NT_ACL(handle
,
470 smb_fname
->base_name
,
475 if (!NT_STATUS_IS_OK(status
)) {
479 status
= hash_sd_sha256(pdesc_next
, hash
);
480 if (!NT_STATUS_IS_OK(status
)) {
483 status
= create_acl_blob(psd
, &blob
, XATTR_SD_HASH_TYPE_SHA256
, hash
);
484 if (!NT_STATUS_IS_OK(status
)) {
488 return store_acl_blob_fsp(handle
, fsp
, &blob
);
490 return store_acl_blob_pathname(handle
, smb_fname
->base_name
,
495 static NTSTATUS
check_parent_acl_common(vfs_handle_struct
*handle
,
497 uint32_t access_mask
)
499 char *parent_name
= NULL
;
500 struct security_descriptor
*parent_desc
= NULL
;
501 uint32_t access_granted
= 0;
504 if (!parent_dirname(talloc_tos(), path
, &parent_name
, NULL
)) {
505 return NT_STATUS_NO_MEMORY
;
508 status
= SMB_VFS_GET_NT_ACL(handle
->conn
,
510 (OWNER_SECURITY_INFORMATION
|
511 GROUP_SECURITY_INFORMATION
|
512 DACL_SECURITY_INFORMATION
),
514 if (!NT_STATUS_IS_OK(status
)) {
515 DEBUG(0,("check_parent_acl_common: SMB_VFS_GET_NT_ACL "
516 "on directory %s for "
517 "path %s returned %s\n",
520 nt_errstr(status
) ));
523 status
= smb1_file_se_access_check(parent_desc
,
524 handle
->conn
->server_info
->ptok
,
527 if(!NT_STATUS_IS_OK(status
)) {
528 DEBUG(0,("check_parent_acl_common: access check "
529 "on directory %s for "
530 "path %s for mask 0x%x returned %s\n",
534 nt_errstr(status
) ));
540 /*********************************************************************
541 Check ACL on open. For new files inherit from parent directory.
542 *********************************************************************/
544 static int open_acl_common(vfs_handle_struct
*handle
,
545 struct smb_filename
*smb_fname
,
550 uint32_t access_granted
= 0;
551 struct security_descriptor
*pdesc
= NULL
;
552 bool file_existed
= true;
557 /* Stream open. Base filename open already did the ACL check. */
558 DEBUG(10,("open_acl_common: stream open on %s\n",
559 smb_fname_str_dbg(smb_fname
) ));
560 return SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
563 status
= get_full_smb_filename(talloc_tos(), smb_fname
,
565 if (!NT_STATUS_IS_OK(status
)) {
569 status
= get_nt_acl_internal(handle
,
572 (OWNER_SECURITY_INFORMATION
|
573 GROUP_SECURITY_INFORMATION
|
574 DACL_SECURITY_INFORMATION
),
576 if (NT_STATUS_IS_OK(status
)) {
577 /* See if we can access it. */
578 status
= smb1_file_se_access_check(pdesc
,
579 handle
->conn
->server_info
->ptok
,
582 if (!NT_STATUS_IS_OK(status
)) {
583 DEBUG(10,("open_acl_xattr: file %s open "
584 "refused with error %s\n",
585 smb_fname_str_dbg(smb_fname
),
586 nt_errstr(status
) ));
589 } else if (NT_STATUS_EQUAL(status
,NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
590 file_existed
= false;
592 * If O_CREAT is true then we're trying to create a file.
593 * Check the parent directory ACL will allow this.
595 if (flags
& O_CREAT
) {
596 status
= check_parent_acl_common(handle
, fname
,
598 if (!NT_STATUS_IS_OK(status
)) {
604 DEBUG(10,("open_acl_xattr: get_nt_acl_attr_internal for "
605 "file %s returned %s\n",
606 smb_fname_str_dbg(smb_fname
),
607 nt_errstr(status
) ));
609 fsp
->fh
->fd
= SMB_VFS_NEXT_OPEN(handle
, smb_fname
, fsp
, flags
, mode
);
611 if (!file_existed
&& fsp
->fh
->fd
!= -1) {
612 /* File was created. Inherit from parent directory. */
613 status
= fsp_set_smb_fname(fsp
, smb_fname
);
614 if (!NT_STATUS_IS_OK(status
)) {
617 inherit_new_acl(handle
, smb_fname
, fsp
, false);
624 errno
= map_errno_from_nt_status(status
);
628 static int mkdir_acl_common(vfs_handle_struct
*handle
, const char *path
, mode_t mode
)
630 struct smb_filename
*smb_fname
= NULL
;
633 SMB_STRUCT_STAT sbuf
;
635 ret
= vfs_stat_smb_fname(handle
->conn
, path
, &sbuf
);
636 if (ret
== -1 && errno
== ENOENT
) {
637 /* We're creating a new directory. */
638 status
= check_parent_acl_common(handle
, path
,
640 if (!NT_STATUS_IS_OK(status
)) {
641 errno
= map_errno_from_nt_status(status
);
646 ret
= SMB_VFS_NEXT_MKDIR(handle
, path
, mode
);
651 status
= create_synthetic_smb_fname(talloc_tos(), path
, NULL
, NULL
,
653 if (!NT_STATUS_IS_OK(status
)) {
654 errno
= map_errno_from_nt_status(status
);
658 /* New directory - inherit from parent. */
659 inherit_new_acl(handle
, smb_fname
, NULL
, true);
660 TALLOC_FREE(smb_fname
);
664 /*********************************************************************
665 Fetch a security descriptor given an fsp.
666 *********************************************************************/
668 static NTSTATUS
fget_nt_acl_common(vfs_handle_struct
*handle
, files_struct
*fsp
,
669 uint32_t security_info
, struct security_descriptor
**ppdesc
)
671 return get_nt_acl_internal(handle
, fsp
,
672 NULL
, security_info
, ppdesc
);
675 /*********************************************************************
676 Fetch a security descriptor given a pathname.
677 *********************************************************************/
679 static NTSTATUS
get_nt_acl_common(vfs_handle_struct
*handle
,
680 const char *name
, uint32_t security_info
, struct security_descriptor
**ppdesc
)
682 return get_nt_acl_internal(handle
, NULL
,
683 name
, security_info
, ppdesc
);
686 /*********************************************************************
687 Store a security descriptor given an fsp.
688 *********************************************************************/
690 static NTSTATUS
fset_nt_acl_common(vfs_handle_struct
*handle
, files_struct
*fsp
,
691 uint32_t security_info_sent
, const struct security_descriptor
*psd
)
695 struct security_descriptor
*pdesc_next
= NULL
;
696 uint8_t hash
[XATTR_SD_HASH_SIZE
];
698 if (DEBUGLEVEL
>= 10) {
699 DEBUG(10,("fset_nt_acl_xattr: incoming sd for file %s\n",
701 NDR_PRINT_DEBUG(security_descriptor
,
702 CONST_DISCARD(struct security_descriptor
*,psd
));
705 /* Ensure we have OWNER/GROUP/DACL set. */
707 if ((security_info_sent
& (OWNER_SECURITY_INFORMATION
|
708 GROUP_SECURITY_INFORMATION
|
709 DACL_SECURITY_INFORMATION
)) !=
710 (OWNER_SECURITY_INFORMATION
|
711 GROUP_SECURITY_INFORMATION
|
712 DACL_SECURITY_INFORMATION
)) {
713 /* No we don't - read from the existing SD. */
714 struct security_descriptor
*nc_psd
= NULL
;
716 status
= get_nt_acl_internal(handle
, fsp
,
718 (OWNER_SECURITY_INFORMATION
|
719 GROUP_SECURITY_INFORMATION
|
720 DACL_SECURITY_INFORMATION
),
723 if (!NT_STATUS_IS_OK(status
)) {
727 /* This is safe as nc_psd is discarded at fn exit. */
728 if (security_info_sent
& OWNER_SECURITY_INFORMATION
) {
729 nc_psd
->owner_sid
= psd
->owner_sid
;
731 security_info_sent
|= OWNER_SECURITY_INFORMATION
;
733 if (security_info_sent
& GROUP_SECURITY_INFORMATION
) {
734 nc_psd
->group_sid
= psd
->group_sid
;
736 security_info_sent
|= GROUP_SECURITY_INFORMATION
;
738 if (security_info_sent
& DACL_SECURITY_INFORMATION
) {
739 nc_psd
->dacl
= dup_sec_acl(talloc_tos(), psd
->dacl
);
740 if (nc_psd
->dacl
== NULL
) {
741 return NT_STATUS_NO_MEMORY
;
744 security_info_sent
|= DACL_SECURITY_INFORMATION
;
748 status
= SMB_VFS_NEXT_FSET_NT_ACL(handle
, fsp
, security_info_sent
, psd
);
749 if (!NT_STATUS_IS_OK(status
)) {
753 /* Get the full underlying sd, then hash. */
754 status
= SMB_VFS_NEXT_FGET_NT_ACL(handle
,
759 if (!NT_STATUS_IS_OK(status
)) {
763 status
= hash_sd_sha256(pdesc_next
, hash
);
764 if (!NT_STATUS_IS_OK(status
)) {
768 if (DEBUGLEVEL
>= 10) {
769 DEBUG(10,("fset_nt_acl_xattr: storing xattr sd for file %s\n",
771 NDR_PRINT_DEBUG(security_descriptor
,
772 CONST_DISCARD(struct security_descriptor
*,psd
));
774 create_acl_blob(psd
, &blob
, XATTR_SD_HASH_TYPE_SHA256
, hash
);
775 store_acl_blob_fsp(handle
, fsp
, &blob
);
780 static SMB_STRUCT_DIR
*opendir_acl_common(vfs_handle_struct
*handle
,
781 const char *fname
, const char *mask
, uint32 attr
)
783 NTSTATUS status
= check_parent_acl_common(handle
, fname
, SEC_DIR_LIST
);
785 if (!NT_STATUS_IS_OK(status
)) {
787 return SMB_VFS_NEXT_OPENDIR(handle
, fname
, mask
, attr
);