Age | Commit message (Expand) | Author | Files | Lines |
2012-01-03 | s3: Remove the unused "file_existed" parameter from smbd_calculate_access_mask | Volker Lendecke | 1 | -3/+2 |
2012-01-03 | s3: Avoid "file_existed" in smbd_calculate_maximum_allowed_access | Volker Lendecke | 1 | -36/+35 |
2012-01-03 | s3: Remove some else{} branches in smbd_calculate_maximum_allowed_access | Volker Lendecke | 1 | -3/+7 |
2012-01-03 | s3: Directly use *p_access_mask in smbd_calculate_maximum_allowed_access | Volker Lendecke | 1 | -6/+4 |
2012-01-03 | s3: Factor out smbd_calculate_maximum_allowed_access | Volker Lendecke | 1 | -40/+59 |
2011-12-20 | Allow an object to be deleted from a directory if the caller has DELETE_CHILD... | Jeremy Allison | 1 | -1/+9 |
2011-12-17 | check_name() not needed in mkdir. | Jeremy Allison | 1 | -5/+0 |
2011-12-17 | Ensure VALID_STAT before accessing fields. | Jeremy Allison | 1 | -1/+3 |
2011-12-16 | s3:smbd: avoid using sconn_server_id() | Stefan Metzmacher | 1 | -3/+3 |
2011-12-16 | s3: Add some const to find_oplock_types | Volker Lendecke | 1 | -1/+1 |
2011-12-16 | s3: Make open_file_ntcreate a bit easier to read | Volker Lendecke | 1 | -3/+2 |
2011-12-16 | s3: Make open_file_ntcreate a bit easier to read | Volker Lendecke | 1 | -4/+6 |
2011-12-16 | s3: Make open_file_ntcreate a bit easier to read | Volker Lendecke | 1 | -3/+3 |
2011-12-16 | s3: Slightly simplify delay_for_exclusive_oplocks | Volker Lendecke | 1 | -9/+15 |
2011-12-16 | s3: Slightly simplify delay_for_batch_oplocks | Volker Lendecke | 1 | -6/+6 |
2011-12-16 | Third part of fix for bug #8663 - deleting a symlink fails if the symlink tar... | Jeremy Allison | 1 | -0/+8 |
2011-12-15 | First part of fix for bug #8663 - deleting a symlink fails if the symlink tar... | Jeremy Allison | 1 | -12/+0 |
2011-12-14 | s3: Slightly simplify the logic in defer_open | Volker Lendecke | 1 | -5/+3 |
2011-12-14 | s3: Remove UNUSED_SHARE_MODE_ENTRY | Volker Lendecke | 1 | -2/+1 |
2011-12-14 | s3:smbd/open: use talloc_get_type_abort() as private_data can't be NULL | Stefan Metzmacher | 1 | -5/+1 |
2011-12-13 | s3: Remove an else{} in remove_deferred_open_entry | Volker Lendecke | 1 | -3/+3 |
2011-12-13 | s3:smbd/open: pass smbd_server_connection as private_data to msg_file_was_ren... | Stefan Metzmacher | 1 | -3/+3 |
2011-12-02 | s3: Use autogenerated open_files.idl | Volker Lendecke | 1 | -0/+1 |
2011-11-22 | Move setting the inherited ACL into the main open code path. Next will | Jeremy Allison | 1 | -1/+110 |
2011-11-22 | Move the "set SD" code into provided SD and "inherit acls" branches. | Jeremy Allison | 1 | -29/+32 |
2011-11-22 | Only add the SD if it's not a new stream file. | Jeremy Allison | 1 | -1/+1 |
2011-11-22 | Move the add security descriptor code to *after* all the other meta-data is | Jeremy Allison | 1 | -35/+35 |
2011-11-04 | No longer do the pre-check on DELETE_ACCESS - we're correctly checking the AC... | Jeremy Allison | 1 | -22/+0 |
2011-11-04 | Remove can_access_file_acl(). We no longer need this duplicate code (hurrah!). | Jeremy Allison | 1 | -1/+3 |
2011-11-04 | Remove can_access_file_data() - make it use the standard smbd_check_access_ri... | Jeremy Allison | 1 | -2/+2 |
2011-11-04 | Add const to the smb_filename argument of smbd_check_access_rights(). | Jeremy Allison | 1 | -2/+2 |
2011-11-04 | Expose smbd_check_access_rights() to other modules. | Jeremy Allison | 1 | -1/+1 |
2011-11-04 | Rename smbd_check_open_rights() to smbd_check_access_rights() as we're going ... | Jeremy Allison | 1 | -15/+15 |
2011-11-04 | Replace smb1_file_se_access_check() with just se_access_check(). | Jeremy Allison | 1 | -30/+21 |
2011-11-04 | Move root check out of smb1_file_se_access_check() in preparation for deletin... | Jeremy Allison | 1 | -13/+25 |
2011-11-04 | smb1_file_se_access_check() is now static to smbd/open.c | Jeremy Allison | 1 | -1/+1 |
2011-11-04 | Revert "Change function signature of check_parent_access() to take char * ins... | Jeremy Allison | 1 | -6/+6 |
2011-11-01 | Change function signature of check_parent_access() to take char * instead of ... | Jeremy Allison | 1 | -6/+6 |
2011-10-28 | Remove the order dependency in parent_override_delete(), just check for & not... | Jeremy Allison | 1 | -2/+2 |
2011-10-28 | Remove unused "struct security_descriptor" parameter from check_parent_access() | Jeremy Allison | 1 | -8/+2 |
2011-10-28 | Finally do all the open checks inside open_file(). Checks inside | Jeremy Allison | 1 | -0/+30 |
2011-10-28 | Simplify smbd_check_open_rights() and move all the special casing inside it. | Jeremy Allison | 1 | -101/+72 |
2011-10-28 | Move parent_override_delete() to before I need to use it. | Jeremy Allison | 1 | -19/+19 |
2011-10-28 | Make smbd_check_open_rights() static. | Jeremy Allison | 1 | -1/+1 |
2011-10-26 | Factor out the code checking if a parent should override DELETE_ACCESS into a... | Jeremy Allison | 1 | -9/+31 |
2011-10-26 | Remove another level of indentation - deal with !NT_STATUS_OK individually. | Jeremy Allison | 1 | -65/+63 |
2011-10-26 | Add early return on stat open without O_CREAT if file doesn't exist. | Jeremy Allison | 1 | -71/+74 |
2011-10-20 | Refactor to create check_parent_access() which can be called for file creatio... | Jeremy Allison | 1 | -23/+64 |
2011-10-20 | Make mkdir_internal() check the parent ACL for SEC_DIR_ADD_SUBDIR rights. | Jeremy Allison | 1 | -2/+33 |
2011-10-20 | Fix error return to be NT_STATUS_NOT_A_DIRECTORY. | Jeremy Allison | 1 | -2/+2 |