Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-11-18 | Fix bug #5908 - Samba 3.0.32 - internal change notify on share directory fails" | Dina Fine | 1 | -0/+3 | |
2008-11-18 | Re-structure Volker's patch to "Fix trans2findfirst for the large directory ↵ | Jeremy Allison | 1 | -26/+21 | |
optimization". Makes the change clearer. Jeremy. | |||||
2008-11-18 | Fix trans2findfirst for the large directory optimization | Volker Lendecke | 1 | -0/+5 | |
With case sensitive = yes preserve case = no short preserve case = no default case = upper a "dir FOO.txt" would not find "FOO.TXT" because FOO.txt ends up unconverted in the mask for mask_match. Jeremy, please check! Volker | |||||
2008-11-17 | Fix bug #5900 reported by monyo@samba.gr.jp - vfs_readonly.so does not work. | Jeremy Allison | 2 | -3/+6 | |
Jeremy. | |||||
2008-11-12 | Fix build break | Tim Prouty | 1 | -1/+1 | |
2008-11-12 | Pretty print out SD's on get/set. | Jeremy Allison | 1 | -0/+10 | |
Jeremy. | |||||
2008-11-12 | s3: Add support for storing dos attributes as st_flags in the stat struct. | Tim Prouty | 1 | -13/+147 | |
Some filesystems have support for storing dos attributes directly in the inode's st_flags and accessing them through the stat struct. This patch: - Adds a configure check to see if the special flags are available. - Implements getting and setting dos attributes in the stat struct and inode, respectively. This will not change the existing functionality of any system that doesn't have the special flags available. | |||||
2008-11-11 | Fix bug 5889. "delete veto files = no" seems to break. | Jeremy Allison | 1 | -4/+11 | |
Jeremy. | |||||
2008-11-08 | Make "construct_reply_common" static | Volker Lendecke | 1 | -1/+3 | |
2008-11-08 | Do not write into inbuf for the transs request | Volker Lendecke | 4 | -19/+23 | |
Instead, fix up the outbuf in send_xx_reply. In those routines, we know what we are returning. | |||||
2008-11-08 | Remove direct inbuf refs from send_trans_reply | Volker Lendecke | 1 | -37/+35 | |
2008-11-08 | change CHECK_READ to use smb_request instead of inbuf | Volker Lendecke | 1 | -3/+3 | |
2008-11-08 | Remove a direct inbuf reference from reply_nttrans() | Volker Lendecke | 1 | -2/+1 | |
2008-11-08 | Remove a direct inbuf reference (should have been removed with 8987641d...) | Volker Lendecke | 1 | -1/+1 | |
2008-11-08 | Remove the change to the user context in process_blocking_lock_queue() | Volker Lendecke | 1 | -76/+8 | |
2008-11-08 | Converting notify.c to store a request, not an inbuf | Volker Lendecke | 2 | -56/+30 | |
2008-11-06 | Make us clean under valgrind --leak-check=full by using ↵ | Jeremy Allison | 2 | -4/+4 | |
talloc_autofree_context() instead of NULL. Remove the code in memcache that does a TALLOC_FREE on stored pointers. That's a disaster waiting to happen. If you're storing talloc'ed pointers, you can't know their lifecycle and they should be deleted when their parent context is deleted, so freeing them at some arbitrary point later will be a double-free. Jeremy. | |||||
2008-11-06 | Convert to use VFS layer. | Herb Lewis | 1 | -1/+1 | |
2008-11-06 | Add wrapper str_list_make_v3() to replace the old S3 behavior of | Jeremy Allison | 2 | -2/+2 | |
str_list_make(). From Dan Sledz <dan.sledz@isilon.com>: In samba 3.2 passing NULL or an empty string returned NULL. In master, it now returns a list of length 1 with the first string set to NULL (an empty list). Jeremy. | |||||
2008-11-06 | Final fix to make us pass NULL SD test in RAW-ACLs. Not sure if this is 100% ↵ | Jeremy Allison | 1 | -0/+3 | |
right. Only inheritance left to fix. Jeremy. | |||||
2008-11-06 | Don't call FSET_NT_ACL on file create if there's no SD to set. Leave the ↵ | Jeremy Allison | 1 | -1/+6 | |
default ACL in place. Jeremy. | |||||
2008-11-05 | Add reference to bug #4308 to remind me to add regression test to smbtorture. | Jeremy Allison | 1 | -1/+1 | |
Jeremy. | |||||
2008-11-05 | Fix the build | Volker Lendecke | 1 | -1/+1 | |
2008-11-04 | Fix a const warning | Volker Lendecke | 1 | -1/+1 | |
2008-11-04 | Convert blocking.c to store a smb_request instead of just inbuf | Volker Lendecke | 1 | -88/+54 | |
2008-11-04 | Simplify logic of cancel_pending_lock_requests_by_fid() | Volker Lendecke | 1 | -20/+18 | |
The only caller of this function is locking_close_file(). This checks itself if brl_lock != NULL. The additional check is not necessary here. | |||||
2008-11-04 | Slightly simplify logic in process_lockingX() | Volker Lendecke | 1 | -7/+8 | |
The "else" is pointless here, we did a "return True" in the if branch. | |||||
2008-11-04 | Slightly simplify logic in remove_pending_lock_requests_by_mid() | Volker Lendecke | 1 | -13/+21 | |
Use "continue" for (SVAL(blr->inbuf,smb_mid) != mid) | |||||
2008-11-04 | Slightly simplify logic in cancel_pending_lock_requests_by_fid() | Volker Lendecke | 1 | -20/+24 | |
Use a "continue" for (blr->fsp->fnum != fsp->fnum) | |||||
2008-11-04 | Convert blocking.c to use talloc | Volker Lendecke | 1 | -23/+15 | |
2008-11-04 | Rewrite aio.c to keep the whole smb_request structure, not just the inbuf | Volker Lendecke | 1 | -75/+41 | |
2008-11-04 | Make "inbuf" a talloc child of "smb_request" for normal smb requests | Volker Lendecke | 3 | -3/+5 | |
This is necessary if we want to keep the whole smb_request for deferred ops. The explicit settings of req->inbuf will be removed once all those deferring operations are converted to store the whole request and not just the inbuf. | |||||
2008-11-04 | Add construct_reply_common_req wrapper | Volker Lendecke | 3 | -3/+8 | |
The goal is to remove the remaining direct calls to construct_reply_common. | |||||
2008-11-04 | Fix nonempty blank lines | Volker Lendecke | 1 | -3/+3 | |
2008-11-04 | Use talloc for struct aio_extra | Volker Lendecke | 1 | -27/+14 | |
2008-11-04 | Pass all of RAW-ACLS except for inheritence. Working on that next. | Jeremy Allison | 1 | -2/+79 | |
Jeremy. | |||||
2008-11-04 | Trigger (and fix) a bug in Samba3 making smbd an infinite data source | Volker Lendecke | 1 | -0/+1 | |
A deferred open directly followed by a ulogoffX makes smbd3 send an infinite stream of ERRinvuid replies :-( | |||||
2008-11-03 | Pass the directory versions of the RAW-ACL (still not inheritance). Refactor ↵ | Jeremy Allison | 1 | -43/+83 | |
some common code between open_file_ntcreate() and open_directory(). Jeremy. | |||||
2008-11-03 | Pass all the non-inherited S4 RAW-ACL tests. | Jeremy Allison | 1 | -14/+4 | |
Jeremy. | |||||
2008-11-03 | Fix nonempty blank lines | Volker Lendecke | 1 | -14/+14 | |
2008-11-03 | Make a comment match its function definition | Volker Lendecke | 1 | -1/+1 | |
2008-11-02 | Remove some inbuf references by adding "cmd" to smb_request | Volker Lendecke | 4 | -16/+13 | |
2008-11-02 | Remove the inbuf reference from map_checkpath_error() | Volker Lendecke | 1 | -4/+4 | |
2008-11-02 | Remove a direct inbuf reference in reply_negprot | Volker Lendecke | 1 | -2/+8 | |
2008-11-02 | Make a [un]become_root wrap a bit tighter | Volker Lendecke | 1 | -7/+11 | |
Sooner or later this would bite us. | |||||
2008-11-02 | Pass smb_request to send_trans_reply to match with send_[nt]trans[2]_reply | Volker Lendecke | 2 | -10/+10 | |
2008-11-02 | Use "vwv" in trans parsing | Volker Lendecke | 3 | -72/+67 | |
2008-11-02 | Remove a bunch of direct inbuf references by adding "vwv" to smb_request | Volker Lendecke | 8 | -146/+143 | |
2008-11-02 | Fix bug 5860: safe_strcpy gives a nasty error message for overlong strings | Volker Lendecke | 1 | -1/+1 | |
Thanks to Robert Dahlem <Robert.Dahlem@gmx.net> for reporting this! | |||||
2008-11-02 | Rename "inbuf" to "base_ptr" in srvstr_get_path_* | Volker Lendecke | 1 | -5/+5 | |