summaryrefslogtreecommitdiffstats
path: root/source3/smbd/open.c
Commit message (Expand)AuthorAgeFilesLines
* s3: Remove the unused "file_existed" parameter from smbd_calculate_access_maskVolker Lendecke2012-01-031-3/+2
* s3: Avoid "file_existed" in smbd_calculate_maximum_allowed_accessVolker Lendecke2012-01-031-36/+35
* s3: Remove some else{} branches in smbd_calculate_maximum_allowed_accessVolker Lendecke2012-01-031-3/+7
* s3: Directly use *p_access_mask in smbd_calculate_maximum_allowed_accessVolker Lendecke2012-01-031-6/+4
* s3: Factor out smbd_calculate_maximum_allowed_accessVolker Lendecke2012-01-031-40/+59
* Allow an object to be deleted from a directory if the caller has DELETE_CHILD...Jeremy Allison2011-12-201-1/+9
* check_name() not needed in mkdir.Jeremy Allison2011-12-171-5/+0
* Ensure VALID_STAT before accessing fields.Jeremy Allison2011-12-171-1/+3
* s3:smbd: avoid using sconn_server_id()Stefan Metzmacher2011-12-161-3/+3
* s3: Add some const to find_oplock_typesVolker Lendecke2011-12-161-1/+1
* s3: Make open_file_ntcreate a bit easier to readVolker Lendecke2011-12-161-3/+2
* s3: Make open_file_ntcreate a bit easier to readVolker Lendecke2011-12-161-4/+6
* s3: Make open_file_ntcreate a bit easier to readVolker Lendecke2011-12-161-3/+3
* s3: Slightly simplify delay_for_exclusive_oplocksVolker Lendecke2011-12-161-9/+15
* s3: Slightly simplify delay_for_batch_oplocksVolker Lendecke2011-12-161-6/+6
* Third part of fix for bug #8663 - deleting a symlink fails if the symlink tar...Jeremy Allison2011-12-161-0/+8
* First part of fix for bug #8663 - deleting a symlink fails if the symlink tar...Jeremy Allison2011-12-151-12/+0
* s3: Slightly simplify the logic in defer_openVolker Lendecke2011-12-141-5/+3
* s3: Remove UNUSED_SHARE_MODE_ENTRYVolker Lendecke2011-12-141-2/+1
* s3:smbd/open: use talloc_get_type_abort() as private_data can't be NULLStefan Metzmacher2011-12-141-5/+1
* s3: Remove an else{} in remove_deferred_open_entryVolker Lendecke2011-12-131-3/+3
* s3:smbd/open: pass smbd_server_connection as private_data to msg_file_was_ren...Stefan Metzmacher2011-12-131-3/+3
* s3: Use autogenerated open_files.idlVolker Lendecke2011-12-021-0/+1
* Move setting the inherited ACL into the main open code path. Next willJeremy Allison2011-11-221-1/+110
* Move the "set SD" code into provided SD and "inherit acls" branches.Jeremy Allison2011-11-221-29/+32
* Only add the SD if it's not a new stream file.Jeremy Allison2011-11-221-1/+1
* Move the add security descriptor code to *after* all the other meta-data isJeremy Allison2011-11-221-35/+35
* No longer do the pre-check on DELETE_ACCESS - we're correctly checking the AC...Jeremy Allison2011-11-041-22/+0
* Remove can_access_file_acl(). We no longer need this duplicate code (hurrah!).Jeremy Allison2011-11-041-1/+3
* Remove can_access_file_data() - make it use the standard smbd_check_access_ri...Jeremy Allison2011-11-041-2/+2
* Add const to the smb_filename argument of smbd_check_access_rights().Jeremy Allison2011-11-041-2/+2
* Expose smbd_check_access_rights() to other modules.Jeremy Allison2011-11-041-1/+1
* Rename smbd_check_open_rights() to smbd_check_access_rights() as we're going ...Jeremy Allison2011-11-041-15/+15
* Replace smb1_file_se_access_check() with just se_access_check().Jeremy Allison2011-11-041-30/+21
* Move root check out of smb1_file_se_access_check() in preparation for deletin...Jeremy Allison2011-11-041-13/+25
* smb1_file_se_access_check() is now static to smbd/open.cJeremy Allison2011-11-041-1/+1
* Revert "Change function signature of check_parent_access() to take char * ins...Jeremy Allison2011-11-041-6/+6
* Change function signature of check_parent_access() to take char * instead of ...Jeremy Allison2011-11-011-6/+6
* Remove the order dependency in parent_override_delete(), just check for & not...Jeremy Allison2011-10-281-2/+2
* Remove unused "struct security_descriptor" parameter from check_parent_access()Jeremy Allison2011-10-281-8/+2
* Finally do all the open checks inside open_file(). Checks insideJeremy Allison2011-10-281-0/+30
* Simplify smbd_check_open_rights() and move all the special casing inside it.Jeremy Allison2011-10-281-101/+72
* Move parent_override_delete() to before I need to use it.Jeremy Allison2011-10-281-19/+19
* Make smbd_check_open_rights() static.Jeremy Allison2011-10-281-1/+1
* Factor out the code checking if a parent should override DELETE_ACCESS into a...Jeremy Allison2011-10-261-9/+31
* Remove another level of indentation - deal with !NT_STATUS_OK individually.Jeremy Allison2011-10-261-65/+63
* Add early return on stat open without O_CREAT if file doesn't exist.Jeremy Allison2011-10-261-71/+74
* Refactor to create check_parent_access() which can be called for file creatio...Jeremy Allison2011-10-201-23/+64
* Make mkdir_internal() check the parent ACL for SEC_DIR_ADD_SUBDIR rights.Jeremy Allison2011-10-201-2/+33
* Fix error return to be NT_STATUS_NOT_A_DIRECTORY.Jeremy Allison2011-10-201-2/+2