1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | Portable SMB ACL interface
|
---|
4 | Copyright (C) Jeremy Allison 2000
|
---|
5 |
|
---|
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.
|
---|
10 |
|
---|
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.
|
---|
15 |
|
---|
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/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef _SMB_ACLS_H
|
---|
21 | #define _SMB_ACLS_H
|
---|
22 |
|
---|
23 | #include "librpc/gen_ndr/smb_acl.h"
|
---|
24 |
|
---|
25 | struct vfs_handle_struct;
|
---|
26 | struct files_struct;
|
---|
27 |
|
---|
28 | typedef int SMB_ACL_TYPE_T;
|
---|
29 | typedef mode_t *SMB_ACL_PERMSET_T;
|
---|
30 | typedef mode_t SMB_ACL_PERM_T;
|
---|
31 |
|
---|
32 | typedef enum smb_acl_tag_t SMB_ACL_TAG_T;
|
---|
33 | typedef struct smb_acl_t *SMB_ACL_T;
|
---|
34 |
|
---|
35 | typedef struct smb_acl_entry *SMB_ACL_ENTRY_T;
|
---|
36 |
|
---|
37 | /* The following definitions come from lib/sysacls.c */
|
---|
38 |
|
---|
39 | int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p);
|
---|
40 | int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p);
|
---|
41 | int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
|
---|
42 | void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
|
---|
43 | int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d);
|
---|
44 | int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
|
---|
45 | int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
|
---|
46 | char *sys_acl_to_text(const struct smb_acl_t *acl_d, ssize_t *len_p);
|
---|
47 | SMB_ACL_T sys_acl_init(TALLOC_CTX *mem_ctx);
|
---|
48 | int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p);
|
---|
49 | int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type);
|
---|
50 | int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p);
|
---|
51 | int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d);
|
---|
52 | int sys_acl_free_text(char *text);
|
---|
53 | int sys_acl_valid(SMB_ACL_T acl_d);
|
---|
54 | SMB_ACL_T sys_acl_get_file(struct vfs_handle_struct *handle,
|
---|
55 | const char *path_p, SMB_ACL_TYPE_T type,
|
---|
56 | TALLOC_CTX *mem_ctx);
|
---|
57 | SMB_ACL_T sys_acl_get_fd(struct vfs_handle_struct *handle, struct files_struct *fsp,
|
---|
58 | TALLOC_CTX *mem_ctx);
|
---|
59 | int sys_acl_set_file(struct vfs_handle_struct *handle,
|
---|
60 | const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
|
---|
61 | int sys_acl_set_fd(struct vfs_handle_struct *handle, struct files_struct *fsp,
|
---|
62 | SMB_ACL_T acl_d);
|
---|
63 | int sys_acl_delete_def_file(struct vfs_handle_struct *handle,
|
---|
64 | const char *path);
|
---|
65 | int no_acl_syscall_error(int err);
|
---|
66 |
|
---|
67 | #endif /* _SMB_ACLS_H */
|
---|