source: vendor/current/source3/include/smb_acls.h

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 2.7 KB
Line 
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
25struct vfs_handle_struct;
26struct files_struct;
27
28typedef int SMB_ACL_TYPE_T;
29typedef mode_t *SMB_ACL_PERMSET_T;
30typedef mode_t SMB_ACL_PERM_T;
31
32typedef enum smb_acl_tag_t SMB_ACL_TAG_T;
33typedef struct smb_acl_t *SMB_ACL_T;
34
35typedef struct smb_acl_entry *SMB_ACL_ENTRY_T;
36
37/* The following definitions come from lib/sysacls.c */
38
39int sys_acl_get_entry(SMB_ACL_T acl_d, int entry_id, SMB_ACL_ENTRY_T *entry_p);
40int sys_acl_get_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T *type_p);
41int sys_acl_get_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T *permset_p);
42void *sys_acl_get_qualifier(SMB_ACL_ENTRY_T entry_d);
43int sys_acl_clear_perms(SMB_ACL_PERMSET_T permset_d);
44int sys_acl_add_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
45int sys_acl_get_perm(SMB_ACL_PERMSET_T permset_d, SMB_ACL_PERM_T perm);
46char *sys_acl_to_text(const struct smb_acl_t *acl_d, ssize_t *len_p);
47SMB_ACL_T sys_acl_init(TALLOC_CTX *mem_ctx);
48int sys_acl_create_entry(SMB_ACL_T *acl_p, SMB_ACL_ENTRY_T *entry_p);
49int sys_acl_set_tag_type(SMB_ACL_ENTRY_T entry_d, SMB_ACL_TAG_T tag_type);
50int sys_acl_set_qualifier(SMB_ACL_ENTRY_T entry_d, void *qual_p);
51int sys_acl_set_permset(SMB_ACL_ENTRY_T entry_d, SMB_ACL_PERMSET_T permset_d);
52int sys_acl_free_text(char *text);
53int sys_acl_valid(SMB_ACL_T acl_d);
54SMB_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);
57SMB_ACL_T sys_acl_get_fd(struct vfs_handle_struct *handle, struct files_struct *fsp,
58 TALLOC_CTX *mem_ctx);
59int sys_acl_set_file(struct vfs_handle_struct *handle,
60 const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d);
61int sys_acl_set_fd(struct vfs_handle_struct *handle, struct files_struct *fsp,
62 SMB_ACL_T acl_d);
63int sys_acl_delete_def_file(struct vfs_handle_struct *handle,
64 const char *path);
65int no_acl_syscall_error(int err);
66
67#endif /* _SMB_ACLS_H */
Note: See TracBrowser for help on using the repository browser.