summaryrefslogtreecommitdiffstats
path: root/source3/smbd/posix_acls.c
Commit message (Expand)AuthorAgeFilesLines
* s3/posix_acls: replace dup_sec_desc() usageDavid Disseldorp2014-05-281-3/+3
* Fix bug 10196 - RW Deny for a specific user is not overriding RW Allow for a ...Jeremy Allison2013-10-241-38/+41
* Fix bug 10162 - POSIX ACL mapping failing when setting DENY ACE's from Windows.Daniel Liberman2013-09-211-1/+1
* smbd: Fix build on platforms that will not support var = {} initialisationAndrew Bartlett2013-05-271-1/+4
* smbd: Convert posix_sys_acl_blob_get_file to synthetic_smb_fnameVolker Lendecke2013-04-171-6/+5
* smbd:posix_acls Remove incorrectly added lp_create_mask() and lp_dir_mask() c...Andrew Bartlett2013-03-101-17/+0
* smbd/posix_acls.c: Use create_conn_struct(). Don't hand-create connection str...Jeremy Allison2013-01-091-19/+11
* s3:smbd: fix a cut and paste error in a debug messageMichael Adam2012-12-051-2/+2
* s3:smbd: don't apply create/directory mask and modes in apply_default_perms()Michael Adam2012-12-051-77/+11
* Remove unused append_parent_acl().Jeremy Allison2012-12-041-201/+0
* Another fix needed for bug #9236 - ACL masks incorrectly applied when setting...Jeremy Allison2012-11-151-7/+10
* smbd: Remove NT4 compatability handling in posix -> NT ACL conversionAndrew Bartlett2012-11-131-107/+1
* Change get_nt_acl_no_snum() to return an NTSTATUS, not a struct security_desc...Andrew Bartlett2012-11-131-40/+22
* s3:smbd: Fix typo in got_duplicate_group checkArvid Requate2012-11-101-1/+1
* vfs: Implement a sys_acl_blob_get_{fd,file} for POSIX ACL backendsAndrew Bartlett2012-10-111-0/+115
* smbd: Add mem_ctx to {f,}get_nt_acl VFS callAndrew Bartlett2012-10-111-18/+34
* smbd: Add mem_ctx to sys_acl_init() and all callersAndrew Bartlett2012-10-111-15/+32
* We should never just assign an st_mode to an ace->perms field, theoreticallyJeremy Allison2012-10-061-2/+2
* Modify ensure_canon_entry_valid() into ensure_canon_entry_valid_on_set() - ma...Jeremy Allison2012-10-051-154/+141
* Simplify ensure_canon_entry_valid by splitting out the _get codepath.Jeremy Allison2012-10-051-3/+86
* Remove all uses of lp_security_mask/lp_force_security_mode/lp_dir_security_ma...Jeremy Allison2012-10-041-8/+8
* When setting a non-default ACL, don't forget to apply masks to SMB_ACL_USER a...Jeremy Allison2012-10-021-0/+10
* Only apply masks on non-default ACL entries when setting the ACL.Jeremy Allison2012-10-021-9/+19
* Use is_default_acl variable in canonicalise_acl().Jeremy Allison2012-10-021-2/+3
* Reformat spacing to be even.Jeremy Allison2012-10-021-7/+8
* smbd: Remove pre-allocation of ACL array in sys_acl_init()Andrew Bartlett2012-09-121-3/+3
* s3-smbd: Add security_info_wanted argument to get_nt_acl_no_snumAndrew Bartlett2012-08-231-2/+2
* s3-smbd: Add talloc_stackframe() to get_nt_acl_no_snum()Andrew Bartlett2012-08-231-3/+8
* s3-smbd: Do not check no_acl_syscall_error(errno) after sys_acl_init()Andrew Bartlett2012-08-161-11/+2
* s3-sysacls: Remove sys_acl_free_qualifier() as it is a no-opAndrew Bartlett2012-08-151-2/+0
* s3-sysacls: Remove sys_acl_free_acl() and replace with TALLOC_FREE()Andrew Bartlett2012-08-151-16/+16
* s3-smbd: Remove unused conn argument from convert_permset_to_mode_t()Andrew Bartlett2012-08-151-3/+3
* s3-smbd: Call sys_acl_set_permset() directly rather than via the VFSAndrew Bartlett2012-08-151-7/+7
* s3-smbd: Call sys_acl_set_qualifier() directly rather than via the VFSAndrew Bartlett2012-08-151-3/+3
* s3-smbd: Call sys_acl_set_tag_type() directly rather than via the VFSAndrew Bartlett2012-08-151-6/+6
* s3-smbd: Call sys_acl_create_entry() directly rather than via the VFSAndrew Bartlett2012-08-151-6/+6
* s3-smbd: Call sys_acl_add_perm() directly rather than via the VFSAndrew Bartlett2012-08-151-6/+6
* s3-smbd: Call sys_acl_clear_perms() directly rather than via the VFSAndrew Bartlett2012-08-151-2/+2
* s3-smbd: Call sys_acl_init() directly rather than via the VFSAndrew Bartlett2012-08-151-3/+3
* s3-smbd: Call sys_acl_free_acl() directly rather than via the VFSAndrew Bartlett2012-08-151-16/+16
* s3-smbd: Call sys_acl_get_entry() directly rather than via the VFSAndrew Bartlett2012-08-151-6/+6
* s3-smbd: Call sys_acl_free_qualifier() directly rather than via the VFSAndrew Bartlett2012-08-151-2/+2
* s3-smbd: Call sys_acl_get_qualifier() directly rather than via the VFSAndrew Bartlett2012-08-151-2/+2
* s3-smbd: Call sys_acl_get_tagtype() directly rather than via the VFSAndrew Bartlett2012-08-151-4/+4
* s3-smbd: Call sys_acl_get_permset() directly rather than via the VFSAndrew Bartlett2012-08-151-7/+7
* s3-smbd: Call sys_acl_get_perm() directly rather than via the VFSAndrew Bartlett2012-08-151-6/+6
* s3-smbd: Merge ACE entries based on mapped UID/GID not SIDAndrew Bartlett2012-08-101-4/+4
* s3-smbd: Convert posix_acls.c to use struct unixid internallyAndrew Bartlett2012-08-101-57/+72
* s3-smbd: Create a shortcut for building the token of a user by SID for posix_...Andrew Bartlett2012-08-101-10/+2
* lib/param: Move all enum declarations to lib/paramAndrew Bartlett2012-07-241-0/+1