2 Unix SMB/CIFS implementation.
3 Samba system utilities for ACL support.
4 Copyright (C) Jeremy Allison 2000.
5 Copyright (C) Volker Lendecke 2006
6 Copyright (C) Michael Adam 2006,2008
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/>.
23 #include "system/passwd.h"
25 #if defined(HAVE_POSIX_ACLS)
26 #include "modules/vfs_posixacl.h"
29 #if defined(HAVE_TRU64_ACLS)
30 #include "modules/vfs_tru64acl.h"
33 #if defined(HAVE_SOLARIS_ACLS) || defined(HAVE_UNIXWARE_ACLS)
34 #include "modules/vfs_solarisacl.h"
37 #if defined(HAVE_HPUX_ACLS)
38 #include "modules/vfs_hpuxacl.h"
41 #if defined(HAVE_IRIX_ACLS)
42 #include "modules/vfs_irixacl.h"
46 #define DBGC_CLASS DBGC_ACLS
49 * Note that while this code implements sufficient functionality
50 * to support the sys_acl_* interfaces it does not provide all
51 * of the semantics of the POSIX ACL interfaces.
53 * In particular, an ACL entry descriptor (SMB_ACL_ENTRY_T) returned
54 * from a call to sys_acl_get_entry() should not be assumed to be
55 * valid after calling any of the following functions, which may
56 * reorder the entries in the ACL.
63 int sys_acl_get_entry(SMB_ACL_T acl_d
, int entry_id
, SMB_ACL_ENTRY_T
*entry_p
)
65 if (entry_id
!= SMB_ACL_FIRST_ENTRY
&& entry_id
!= SMB_ACL_NEXT_ENTRY
) {
70 if (entry_p
== NULL
) {
75 if (entry_id
== SMB_ACL_FIRST_ENTRY
) {
79 if (acl_d
->next
< 0) {
84 if (acl_d
->next
>= acl_d
->count
) {
88 *entry_p
= &acl_d
->acl
[acl_d
->next
++];
93 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T
*type_p
)
95 *type_p
= entry_d
->a_type
;
100 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T
*permset_p
)
102 *permset_p
= &entry_d
->a_perm
;
107 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d
)
109 if (entry_d
->a_type
== SMB_ACL_USER
) {
110 return &entry_d
->info
.user
.uid
;
113 if (entry_d
->a_type
== SMB_ACL_GROUP
) {
114 return &entry_d
->info
.group
.gid
;
121 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d
)
128 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
)
130 if (perm
!= SMB_ACL_READ
&& perm
!= SMB_ACL_WRITE
131 && perm
!= SMB_ACL_EXECUTE
) {
136 if (permset_d
== NULL
) {
146 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d
, SMB_ACL_PERM_T perm
)
148 return *permset_d
& perm
;
151 char *sys_acl_to_text(const struct smb_acl_t
*acl_d
, ssize_t
*len_p
)
158 * use an initial estimate of 20 bytes per ACL entry
159 * when allocating memory for the text representation
163 maxlen
= 20 * acl_d
->count
;
164 if ((text
= (char *)SMB_MALLOC(maxlen
)) == NULL
) {
169 for (i
= 0; i
< acl_d
->count
; i
++) {
170 struct smb_acl_entry
*ap
= &acl_d
->acl
[i
];
179 switch (ap
->a_type
) {
181 * for debugging purposes it's probably more
182 * useful to dump unknown tag types rather
183 * than just returning an error
186 slprintf(tagbuf
, sizeof(tagbuf
)-1, "0x%x",
192 id
= uidtoname(ap
->info
.user
.uid
);
193 case SMB_ACL_USER_OBJ
:
198 if ((gr
= getgrgid(ap
->info
.group
.gid
)) == NULL
) {
199 slprintf(idbuf
, sizeof(idbuf
)-1, "%ld",
200 (long)ap
->info
.group
.gid
);
205 case SMB_ACL_GROUP_OBJ
:
219 perms
[0] = (ap
->a_perm
& SMB_ACL_READ
) ? 'r' : '-';
220 perms
[1] = (ap
->a_perm
& SMB_ACL_WRITE
) ? 'w' : '-';
221 perms
[2] = (ap
->a_perm
& SMB_ACL_EXECUTE
) ? 'x' : '-';
224 /* <tag> : <qualifier> : rwx \n \0 */
225 nbytes
= strlen(tag
) + 1 + strlen(id
) + 1 + 3 + 1 + 1;
228 * If this entry would overflow the buffer
229 * allocate enough additional memory for this
230 * entry and an estimate of another 20 bytes
231 * for each entry still to be processed
233 if ((len
+ nbytes
) > maxlen
) {
234 maxlen
+= nbytes
+ 20 * (acl_d
->count
- i
);
235 if ((text
= (char *)SMB_REALLOC(text
, maxlen
)) == NULL
) {
242 slprintf(&text
[len
], nbytes
, "%s:%s:%s\n", tag
, id
, perms
);
252 SMB_ACL_T
sys_acl_init(TALLOC_CTX
*mem_ctx
)
256 if ((a
= talloc(mem_ctx
, struct smb_acl_t
)) == NULL
) {
264 a
->acl
= talloc_array(a
, struct smb_acl_entry
, 0);
274 int sys_acl_create_entry(SMB_ACL_T
*acl_p
, SMB_ACL_ENTRY_T
*entry_p
)
277 SMB_ACL_ENTRY_T entry_d
;
278 struct smb_acl_entry
*acl
;
280 if (acl_p
== NULL
|| entry_p
== NULL
|| (acl_d
= *acl_p
) == NULL
) {
285 acl
= talloc_realloc(acl_d
, acl_d
->acl
, struct smb_acl_entry
, acl_d
->count
+1);
291 entry_d
= &acl_d
->acl
[acl_d
->count
];
292 entry_d
->a_type
= SMB_ACL_TAG_INVALID
;
300 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_TAG_T tag_type
)
304 case SMB_ACL_USER_OBJ
:
306 case SMB_ACL_GROUP_OBJ
:
309 entry_d
->a_type
= tag_type
;
319 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d
, void *qual_p
)
321 if (entry_d
->a_type
== SMB_ACL_USER
) {
322 entry_d
->info
.user
.uid
= *((uid_t
*)qual_p
);
325 if (entry_d
->a_type
== SMB_ACL_GROUP
) {
326 entry_d
->info
.group
.gid
= *((gid_t
*)qual_p
);
334 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d
, SMB_ACL_PERMSET_T permset_d
)
336 if (*permset_d
& ~(SMB_ACL_READ
|SMB_ACL_WRITE
|SMB_ACL_EXECUTE
)) {
341 entry_d
->a_perm
= *permset_d
;
346 int sys_acl_free_text(char *text
)
352 int sys_acl_valid(SMB_ACL_T acl_d
)
359 * acl_get_file, acl_get_fd, acl_set_file, acl_set_fd and
360 * sys_acl_delete_def_file are to be redirected to the default
361 * statically-bound acl vfs module, but they are replacable.
364 #if defined(HAVE_POSIX_ACLS)
366 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
367 const char *path_p
, SMB_ACL_TYPE_T type
, TALLOC_CTX
*mem_ctx
)
369 return posixacl_sys_acl_get_file(handle
, path_p
, type
, mem_ctx
);
372 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
, TALLOC_CTX
*mem_ctx
)
374 return posixacl_sys_acl_get_fd(handle
, fsp
, mem_ctx
);
377 int sys_acl_set_file(vfs_handle_struct
*handle
,
378 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
380 return posixacl_sys_acl_set_file(handle
, name
, type
, acl_d
);
383 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
386 return posixacl_sys_acl_set_fd(handle
, fsp
, acl_d
);
389 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
392 return posixacl_sys_acl_delete_def_file(handle
, path
);
395 #elif defined(HAVE_AIX_ACLS)
397 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
398 const char *path_p
, SMB_ACL_TYPE_T type
,
401 return aixacl_sys_acl_get_file(handle
, path_p
, type
, mem_ctx
);
404 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
407 return aixacl_sys_acl_get_fd(handle
, fsp
, mem_ctx
);
410 int sys_acl_set_file(vfs_handle_struct
*handle
,
411 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
413 return aixacl_sys_acl_set_file(handle
, name
, type
, acl_d
);
416 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
419 return aixacl_sys_acl_set_fd(handle
, fsp
, acl_d
);
422 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
425 return aixacl_sys_acl_delete_def_file(handle
, path
);
428 #elif defined(HAVE_TRU64_ACLS)
430 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
431 const char *path_p
, SMB_ACL_TYPE_T type
,
434 return tru64acl_sys_acl_get_file(handle
, path_p
, type
,
438 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
441 return tru64acl_sys_acl_get_fd(handle
, fsp
, mem_ctx
);
444 int sys_acl_set_file(vfs_handle_struct
*handle
,
445 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
447 return tru64acl_sys_acl_set_file(handle
, name
, type
, acl_d
);
450 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
453 return tru64acl_sys_acl_set_fd(handle
, fsp
, acl_d
);
456 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
459 return tru64acl_sys_acl_delete_def_file(handle
, path
);
462 #elif defined(HAVE_SOLARIS_ACLS) || defined(HAVE_UNIXWARE_ACLS)
464 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
465 const char *path_p
, SMB_ACL_TYPE_T type
,
468 return solarisacl_sys_acl_get_file(handle
, path_p
, type
,
472 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
475 return solarisacl_sys_acl_get_fd(handle
, fsp
,
479 int sys_acl_set_file(vfs_handle_struct
*handle
,
480 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
482 return solarisacl_sys_acl_set_file(handle
, name
, type
, acl_d
);
485 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
488 return solarisacl_sys_acl_set_fd(handle
, fsp
, acl_d
);
491 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
494 return solarisacl_sys_acl_delete_def_file(handle
, path
);
497 #elif defined(HAVE_HPUX_ACLS)
499 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
500 const char *path_p
, SMB_ACL_TYPE_T type
,
503 return hpuxacl_sys_acl_get_file(handle
, path_p
, type
, mem_ctx
);
506 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
509 return hpuxacl_sys_acl_get_fd(handle
, fsp
, mem_ctx
);
512 int sys_acl_set_file(vfs_handle_struct
*handle
,
513 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
515 return hpuxacl_sys_acl_set_file(handle
, name
, type
, acl_d
);
518 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
521 return hpuxacl_sys_acl_set_fd(handle
, fsp
, acl_d
);
524 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
527 return hpuxacl_sys_acl_delete_def_file(handle
, path
);
530 #elif defined(HAVE_IRIX_ACLS)
532 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
533 const char *path_p
, SMB_ACL_TYPE_T type
,
536 return irixacl_sys_acl_get_file(handle
, path_p
, type
, mem_ctx
);
539 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
542 return irixacl_sys_acl_get_fd(handle
, fsp
, mem_ctx
);
545 int sys_acl_set_file(vfs_handle_struct
*handle
,
546 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
548 return irixacl_sys_acl_set_file(handle
, name
, type
, acl_d
);
551 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
554 return irixacl_sys_acl_set_fd(handle
, fsp
, acl_d
);
557 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
560 return irixacl_sys_acl_delete_def_file(handle
, path
);
565 SMB_ACL_T
sys_acl_get_file(vfs_handle_struct
*handle
,
566 const char *path_p
, SMB_ACL_TYPE_T type
,
577 SMB_ACL_T
sys_acl_get_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
588 int sys_acl_set_file(vfs_handle_struct
*handle
,
589 const char *name
, SMB_ACL_TYPE_T type
, SMB_ACL_T acl_d
)
599 int sys_acl_set_fd(vfs_handle_struct
*handle
, files_struct
*fsp
,
610 int sys_acl_delete_def_file(vfs_handle_struct
*handle
,
623 /************************************************************************
624 Deliberately outside the ACL defines. Return 1 if this is a "no acls"
626 ************************************************************************/
628 int no_acl_syscall_error(int err
)
636 if (err
== ENOTSUP
) {