s3: VFS: Change SMB_VFS_SYS_ACL_DELETE_DEF_FILE to use const struct smb_filename...
[sfrench/samba-autobuild/.git] / source3 / include / smb_acls.h
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 struct smb_filename;
28
29 typedef int                     SMB_ACL_TYPE_T;
30 typedef mode_t                  *SMB_ACL_PERMSET_T;
31 typedef mode_t                  SMB_ACL_PERM_T;
32
33 typedef enum smb_acl_tag_t SMB_ACL_TAG_T;
34 typedef struct smb_acl_t *SMB_ACL_T;
35
36 typedef struct smb_acl_entry    *SMB_ACL_ENTRY_T;
37
38 /* The following definitions come from lib/sysacls.c  */
39
40 int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p);
41 int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p);
42 int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
43 void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
44 int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d);
45 int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
46 int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
47 char *sys_acl_to_text(const struct smb_acl_t *acl_d, ssize_t *len_p);
48 SMB_ACL_T sys_acl_init(TALLOC_CTX *mem_ctx);
49 int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p);
50 int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type);
51 int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p);
52 int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d);
53 int sys_acl_free_text(char *text);
54 int sys_acl_valid(SMB_ACL_T acl_d);
55 SMB_ACL_T sys_acl_get_file(struct vfs_handle_struct *handle,
56                            const char *path_p, SMB_ACL_TYPE_T type,
57                            TALLOC_CTX *mem_ctx);
58 SMB_ACL_T sys_acl_get_fd(struct vfs_handle_struct *handle, struct files_struct *fsp,
59                          TALLOC_CTX *mem_ctx);
60 int sys_acl_set_file(struct vfs_handle_struct *handle,
61                      const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
62 int sys_acl_set_fd(struct vfs_handle_struct *handle, struct files_struct *fsp,
63                    SMB_ACL_T acl_d);
64 int sys_acl_delete_def_file(struct vfs_handle_struct *handle,
65                         const struct smb_filename *smb_fname);
66 int no_acl_syscall_error(int err);
67
68 #endif /* _SMB_ACLS_H */