diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-12 22:02:23 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-15 11:44:44 +1000 |
commit | 0705391ed06441b2046d1de4529aa93f51bc3573 (patch) | |
tree | 779833c08ad238468fce64ed577baaaa1367b957 /librpc/idl/smb_acl.idl | |
parent | d5a8e58bfbefd2ba7bcbec337013e8b204c68b6d (diff) | |
download | samba-0705391ed06441b2046d1de4529aa93f51bc3573.tar.gz samba-0705391ed06441b2046d1de4529aa93f51bc3573.tar.bz2 samba-0705391ed06441b2046d1de4529aa93f51bc3573.zip |
s3-smbd: Move smb_acl_t declaration to smb_acl.idl
This will allow us to marshall this into and from an NDR blob on disk, which will
allow us to fake up ACL support during make test, and to test the NT ACL emulation
using python bindings via the VFS.
Andrew Bartlett
Diffstat (limited to 'librpc/idl/smb_acl.idl')
-rw-r--r-- | librpc/idl/smb_acl.idl | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/librpc/idl/smb_acl.idl b/librpc/idl/smb_acl.idl new file mode 100644 index 0000000000..9586958bc6 --- /dev/null +++ b/librpc/idl/smb_acl.idl @@ -0,0 +1,63 @@ +/* + Unix SMB/CIFS implementation. + Portable SMB ACL interface + Copyright (C) Jeremy Allison 2000 + Copyright (C) Andrew Bartlett 2012 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + + +/* Allow the smb_acl interface to be pushed into an NDR blob and read/written in python */ +[ + pointer_default(unique) +] +interface smb_acl +{ + + const int SMB_ACL_READ = 4; + const int SMB_ACL_WRITE = 2; + const int SMB_ACL_EXECUTE = 1; + + /* Types of ACLs. */ + typedef enum { + SMB_ACL_TAG_INVALID = 0, + SMB_ACL_USER = 1, + SMB_ACL_USER_OBJ = 2, + SMB_ACL_GROUP = 3, + SMB_ACL_GROUP_OBJ = 4, + SMB_ACL_OTHER = 5, + SMB_ACL_MASK = 6 + } smb_acl_tag_t; + + typedef struct { + smb_acl_tag_t a_type; + mode_t a_perm; + uid_t uid; + gid_t gid; + } smb_acl_entry; + + typedef struct { + int size; + int count; + int next; + smb_acl_entry *acl; + } smb_acl_t; + + const int SMB_ACL_FIRST_ENTRY = 0; + const int SMB_ACL_NEXT_ENTRY = 1; + + const int SMB_ACL_TYPE_ACCESS = 0; + const int SMB_ACL_TYPE_DEFAULT = 1; +} |