2 Unix SMB/Netbios implementation.
3 VFS module to get and set posix acls
4 Copyright (C) Volker Lendecke 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 "system/filesys.h"
22 #include "smbd/smbd.h"
23 #include "modules/vfs_posixacl.h"
25 /* prototypes for static functions first - for clarity */
27 static bool smb_ace_to_internal(acl_entry_t posix_ace
,
28 struct smb_acl_entry
*ace
);
29 static struct smb_acl_t
*smb_acl_to_internal(acl_t acl
, TALLOC_CTX
*mem_ctx
);
30 static int smb_acl_set_mode(acl_entry_t entry
, SMB_ACL_PERM_T perm
);
31 static acl_t
smb_acl_to_posix(const struct smb_acl_t
*acl
);
34 /* public functions - the api */
36 SMB_ACL_T
posixacl_sys_acl_get_fd(vfs_handle_struct
*handle
,
41 struct smb_acl_t
*result
;
46 case SMB_ACL_TYPE_ACCESS
:
47 acl_type
= ACL_TYPE_ACCESS
;
49 case SMB_ACL_TYPE_DEFAULT
:
50 acl_type
= ACL_TYPE_DEFAULT
;
56 if (!fsp
->fsp_flags
.is_pathref
&& (acl_type
== ACL_TYPE_ACCESS
)) {
57 /* POSIX API only allows ACL_TYPE_ACCESS fetched on fd. */
58 acl
= acl_get_fd(fsp_get_io_fd(fsp
));
59 } else if (fsp
->fsp_flags
.have_proc_fds
) {
60 int fd
= fsp_get_pathref_fd(fsp
);
61 struct sys_proc_fd_path_buf buf
;
63 acl
= acl_get_file(sys_proc_fd_path(fd
, &buf
), acl_type
);
66 * This is no longer a handle based call.
68 acl
= acl_get_file(fsp
->fsp_name
->base_name
, acl_type
);
74 result
= smb_acl_to_internal(acl
, mem_ctx
);
79 int posixacl_sys_acl_set_fd(vfs_handle_struct
*handle
,
85 acl_t acl
= smb_acl_to_posix(theacl
);
87 int fd
= fsp_get_pathref_fd(fsp
);
94 case SMB_ACL_TYPE_ACCESS
:
95 acl_type
= ACL_TYPE_ACCESS
;
97 case SMB_ACL_TYPE_DEFAULT
:
98 acl_type
= ACL_TYPE_DEFAULT
;
106 if (!fsp
->fsp_flags
.is_pathref
&& type
== SMB_ACL_TYPE_ACCESS
) {
107 res
= acl_set_fd(fd
, acl
);
108 } else if (fsp
->fsp_flags
.have_proc_fds
) {
109 struct sys_proc_fd_path_buf buf
;
111 res
= acl_set_file(sys_proc_fd_path(fd
, &buf
), acl_type
, acl
);
114 * This is no longer a handle based call.
116 res
= acl_set_file(fsp
->fsp_name
->base_name
,
125 int posixacl_sys_acl_delete_def_fd(vfs_handle_struct
*handle
,
128 if (fsp
->fsp_flags
.have_proc_fds
) {
129 int fd
= fsp_get_pathref_fd(fsp
);
130 struct sys_proc_fd_path_buf buf
;
132 return acl_delete_def_file(sys_proc_fd_path(fd
, &buf
));
136 * This is no longer a handle based call.
138 return acl_delete_def_file(fsp
->fsp_name
->base_name
);
141 /* private functions */
143 static bool smb_ace_to_internal(acl_entry_t posix_ace
,
144 struct smb_acl_entry
*ace
)
147 acl_permset_t permset
;
149 if (acl_get_tag_type(posix_ace
, &tag
) != 0) {
150 DEBUG(0, ("smb_acl_get_tag_type failed\n"));
156 ace
->a_type
= SMB_ACL_USER
;
159 ace
->a_type
= SMB_ACL_USER_OBJ
;
162 ace
->a_type
= SMB_ACL_GROUP
;
165 ace
->a_type
= SMB_ACL_GROUP_OBJ
;
168 ace
->a_type
= SMB_ACL_OTHER
;
171 ace
->a_type
= SMB_ACL_MASK
;
173 #ifdef HAVE_ACL_EVERYONE
175 DEBUG(1, ("ACL tag type ACL_EVERYONE. FreeBSD with ZFS? Use 'vfs objects = zfsacl'\n"));
179 DEBUG(0, ("unknown tag type %d\n", (unsigned int)tag
));
182 switch(ace
->a_type
) {
184 uid_t
*puid
= (uid_t
*)acl_get_qualifier(posix_ace
);
186 DEBUG(0, ("smb_acl_get_qualifier failed\n"));
189 ace
->info
.user
.uid
= *puid
;
194 case SMB_ACL_GROUP
: {
195 gid_t
*pgid
= (uid_t
*)acl_get_qualifier(posix_ace
);
197 DEBUG(0, ("smb_acl_get_qualifier failed\n"));
200 ace
->info
.group
.gid
= *pgid
;
207 if (acl_get_permset(posix_ace
, &permset
) != 0) {
208 DEBUG(0, ("smb_acl_get_mode failed\n"));
212 #ifdef HAVE_ACL_GET_PERM_NP
213 ace
->a_perm
|= (acl_get_perm_np(permset
, ACL_READ
) ? SMB_ACL_READ
: 0);
214 ace
->a_perm
|= (acl_get_perm_np(permset
, ACL_WRITE
) ? SMB_ACL_WRITE
: 0);
215 ace
->a_perm
|= (acl_get_perm_np(permset
, ACL_EXECUTE
) ? SMB_ACL_EXECUTE
: 0);
217 ace
->a_perm
|= (acl_get_perm(permset
, ACL_READ
) ? SMB_ACL_READ
: 0);
218 ace
->a_perm
|= (acl_get_perm(permset
, ACL_WRITE
) ? SMB_ACL_WRITE
: 0);
219 ace
->a_perm
|= (acl_get_perm(permset
, ACL_EXECUTE
) ? SMB_ACL_EXECUTE
: 0);
224 static struct smb_acl_t
*smb_acl_to_internal(acl_t acl
, TALLOC_CTX
*mem_ctx
)
226 struct smb_acl_t
*result
= sys_acl_init(mem_ctx
);
227 int entry_id
= ACL_FIRST_ENTRY
;
229 if (result
== NULL
) {
232 while (acl_get_entry(acl
, entry_id
, &e
) == 1) {
234 entry_id
= ACL_NEXT_ENTRY
;
236 result
->acl
= talloc_realloc(result
, result
->acl
,
237 struct smb_acl_entry
, result
->count
+1);
238 if (result
->acl
== NULL
) {
240 DEBUG(0, ("talloc_realloc failed\n"));
245 if (!smb_ace_to_internal(e
, &result
->acl
[result
->count
])) {
255 static int smb_acl_set_mode(acl_entry_t entry
, SMB_ACL_PERM_T perm
)
258 acl_permset_t permset
;
260 if ((ret
= acl_get_permset(entry
, &permset
)) != 0) {
263 if ((ret
= acl_clear_perms(permset
)) != 0) {
266 if ((perm
& SMB_ACL_READ
) &&
267 ((ret
= acl_add_perm(permset
, ACL_READ
)) != 0)) {
270 if ((perm
& SMB_ACL_WRITE
) &&
271 ((ret
= acl_add_perm(permset
, ACL_WRITE
)) != 0)) {
274 if ((perm
& SMB_ACL_EXECUTE
) &&
275 ((ret
= acl_add_perm(permset
, ACL_EXECUTE
)) != 0)) {
282 static acl_t
smb_acl_to_posix(const struct smb_acl_t
*acl
)
287 result
= acl_init(acl
->count
);
288 if (result
== NULL
) {
289 DEBUG(10, ("acl_init failed\n"));
293 for (i
=0; i
<acl
->count
; i
++) {
294 const struct smb_acl_entry
*entry
= &acl
->acl
[i
];
298 if (acl_create_entry(&result
, &e
) != 0) {
299 DEBUG(1, ("acl_create_entry failed: %s\n",
304 switch (entry
->a_type
) {
308 case SMB_ACL_USER_OBJ
:
314 case SMB_ACL_GROUP_OBJ
:
324 DEBUG(1, ("Unknown tag value %d\n", entry
->a_type
));
328 if (acl_set_tag_type(e
, tag
) != 0) {
329 DEBUG(10, ("acl_set_tag_type(%d) failed: %s\n",
330 tag
, strerror(errno
)));
334 switch (entry
->a_type
) {
336 if (acl_set_qualifier(e
, &entry
->info
.user
.uid
) != 0) {
337 DEBUG(1, ("acl_set_qualifiier failed: %s\n",
343 if (acl_set_qualifier(e
, &entry
->info
.group
.gid
) != 0) {
344 DEBUG(1, ("acl_set_qualifiier failed: %s\n",
349 default: /* Shut up, compiler! :-) */
353 if (smb_acl_set_mode(e
, entry
->a_perm
) != 0) {
358 if (acl_valid(result
) != 0) {
359 char *acl_string
= sys_acl_to_text(acl
, NULL
);
360 DEBUG(0, ("smb_acl_to_posix: ACL %s is invalid for set (%s)\n",
361 acl_string
, strerror(errno
)));
362 SAFE_FREE(acl_string
);
369 if (result
!= NULL
) {
375 /* VFS operations structure */
377 static struct vfs_fn_pointers posixacl_fns
= {
378 .sys_acl_get_fd_fn
= posixacl_sys_acl_get_fd
,
379 .sys_acl_blob_get_fd_fn
= posix_sys_acl_blob_get_fd
,
380 .sys_acl_set_fd_fn
= posixacl_sys_acl_set_fd
,
381 .sys_acl_delete_def_fd_fn
= posixacl_sys_acl_delete_def_fd
,
385 NTSTATUS
vfs_posixacl_init(TALLOC_CTX
*ctx
)
387 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "posixacl",