summaryrefslogtreecommitdiffstats
path: root/source3/libsmb/clifile.c
Commit message (Collapse)AuthorAgeFilesLines
...
* s3: Use cli_setpathinfo in cli_posix_link_internalVolker Lendecke2010-10-241-49/+16
|
* s3: Use tevent_req_simple_recv_ntstatus where appropriateVolker Lendecke2010-10-241-66/+11
|
* s3: Pass down a level instead of a flag to cli_posix_link_internalVolker Lendecke2010-10-241-7/+7
|
* s3: Add async cli_setpathinfoVolker Lendecke2010-10-241-0/+78
|
* s3: Initialize output vars in parse_ea_blobVolker Lendecke2010-10-241-0/+2
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Oct 24 12:22:22 UTC 2010 on sn-devel-104
* s3: Remove unused cli_get_ea_list_fnumVolker Lendecke2010-10-241-62/+0
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Oct 24 10:23:29 UTC 2010 on sn-devel-104
* s3: Add async cli_qfileinfoVolker Lendecke2010-10-241-0/+133
|
* s3-build: only include async headers where needed.Günther Deschner2010-09-201-0/+1
| | | | Guenther
* s3: async cli_listVolker Lendecke2010-08-181-0/+20
|
* s3: Add cli_flushVolker Lendecke2010-08-181-0/+83
|
* s3: Explicitly pass flags2 to clistr_pull_tallocVolker Lendecke2010-08-051-3/+4
| | | | Required to eventually make cli_list async
* s3: Remove some pointless wrapper functionsVolker Lendecke2010-08-051-4/+7
|
* s3: Save the received trans2 from the inbuf in cli_transVolker Lendecke2010-08-051-10/+11
|
* s3: Callers of cli_qpathinfo_recv might ignore the outputVolker Lendecke2010-07-261-2/+8
|
* s3: Fix a structure mess-upVolker Lendecke2010-07-261-1/+1
| | | | | I wonder why the compiler did not complain -- maybe because the structs have the same data members? No clue.
* s3: Remove some unused struct membersVolker Lendecke2010-07-261-6/+0
|
* s3: Convert cli_get_ea_list_path to cli_qpathinfo_sendVolker Lendecke2010-07-251-20/+94
|
* s3: Factor out parse_ea_blobVolker Lendecke2010-07-251-25/+41
|
* s3: Convert cli_posix_stat to cli_qpathinfo_sendVolker Lendecke2010-07-251-57/+20
|
* s3: Convert cli_posix_getfacl to cli_qpathinfo_sendVolker Lendecke2010-07-251-53/+21
|
* s3: Convert cli_posix_readlink to cli_qpathinfo_sendVolker Lendecke2010-07-251-67/+33
|
* s3: Add async cli_qpathinfoVolker Lendecke2010-07-251-0/+135
|
* s3: Fix cli_posix_statVolker Lendecke2010-07-251-4/+4
| | | | | | nlink seems to be defined as 8 bytes, not 4 Jeremy, please check!
* s3: Explicitly handle inbuf in cli_message_start_doneVolker Lendecke2010-02-221-4/+3
|
* s3: Explicitly handle inbuf in cli_dskattr_doneVolker Lendecke2010-02-221-2/+4
|
* s3: Explicitly handle inbuf in cli_getatr_doneVolker Lendecke2010-02-221-2/+4
|
* s3: Explicitly handle inbuf in cli_getattrE_doneVolker Lendecke2010-02-221-2/+4
|
* s3: Explicitly handle inbuf in cli_open_doneVolker Lendecke2010-02-221-2/+4
|
* s3: Explicitly handle inbuf in cli_ntcreate_doneVolker Lendecke2010-02-221-2/+3
|
* s3: Add a talloc_move for the inbuf to cli_smb_recvVolker Lendecke2010-02-221-17/+19
|
* s3: Convert cli_raw_ioctl to use cli_smb()Volker Lendecke2010-02-201-18/+10
|
* s3: Fix the build on SolarisVolker Lendecke2009-11-171-6/+6
|
* s3:libsmb: avoid passing a function call as function parameterStefan Metzmacher2009-11-161-18/+18
| | | | | | | Using a helper variable makes it easier to "step" into the desired function within gdb. metze
* s3: Add min_setup, min_param and min_data to cli_trans_recvVolker Lendecke2009-11-141-85/+28
| | | | | | | | | | Every caller that expects to receive something needs to check if enough was sent. Make this check mandatory for everyone. Yes, this makes the parameter list for cli_trans a bit silly, but that's just the way it is: A silly protocol request :-) While there, convert some _done functions to tevent_req_simple_finish_ntstatus.
* s3:torture: Add a notify-bench testVolker Lendecke2009-10-131-0/+4
| | | | | | | This is a test that creates and deletes files in a directory as fast as the network allows it. At the same time, it opens a filechangenotify. This test is done to just torture handling a single directory together with the notify infrastructure.
* s3:libsmb: Add cli_notifyVolker Lendecke2009-10-131-0/+140
|
* Fix bug 6726 - Filename length overwrites oplock request field in ↵Jeremy Allison2009-09-141-1/+1
| | | | | | cli_nt_create(). Jeremy.
* Fix a valgrind error in cli_ctemp_doneVolker Lendecke2009-07-271-1/+3
| | | | | | | | | For performance reasons cli_smb_recv does not make copies of the buffers we received from the client, so both "vwv" and "bytes" vanish with TALLOC_FREE(subreq). I know this is a bit counter-intuitive, but I think in this case it's justified not to make copies. Comments?
* Make cli_unlock and cli_unlock64 async. Fix POSIX lock test.Jeremy Allison2009-07-151-64/+206
| | | | Jeremy.
* Make cli_posix_lock/unlock asynchronous.Jeremy Allison2009-07-131-58/+215
| | | | Jeremy.
* Make ctemp async. Fix the test to pass against W2K3.Jeremy Allison2009-06-101-36/+135
| | | | Jeremy.
* Make cli_ftruncate async. Also add a simple test.Jeremy Allison2009-06-051-72/+116
| | | | Jeremy.
* Make cli_nt_delete_on_close() async.Jeremy Allison2009-05-291-0/+130
| | | | Jeremy.
* Make cli_posix_chown()/cli_posix_chmod() async.Jeremy Allison2009-05-281-47/+213
| | | | Jeremy.
* Make cli_posix_stat() async.Jeremy Allison2009-05-281-52/+143
| | | | Jeremy.
* Make getfacl async.Jeremy Allison2009-05-281-40/+130
| | | | Jeremy.
* Add cli_posix_readlink() and a torture test for it.Jeremy Allison2009-05-271-1/+183
| | | | Jeremy.
* Add aync POSIX hardlink and symlink and torture test for them.Jeremy Allison2009-05-271-151/+300
| | | | | Missing call cli_readlink() is next. Jeremy.
* Introduce "struct stat_ex" as a replacement for SMB_STRUCT_STATVolker Lendecke2009-05-261-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch introduces struct stat_ex { dev_t st_ex_dev; ino_t st_ex_ino; mode_t st_ex_mode; nlink_t st_ex_nlink; uid_t st_ex_uid; gid_t st_ex_gid; dev_t st_ex_rdev; off_t st_ex_size; struct timespec st_ex_atime; struct timespec st_ex_mtime; struct timespec st_ex_ctime; struct timespec st_ex_btime; /* birthtime */ blksize_t st_ex_blksize; blkcnt_t st_ex_blocks; }; typedef struct stat_ex SMB_STRUCT_STAT; It is really large because due to the friendly libc headers playing macro tricks with fields like st_ino, so I renamed them to st_ex_xxx. Why this change? To support birthtime, we already have quite a few #ifdef's at places where it does not really belong. With a stat struct that we control, we can consolidate the nanosecond timestamps and the birthtime deep in the VFS stat calls. At this moment it is triggered by a request to support the birthtime field for GPFS. GPFS does not extend the system level struct stat, but instead has a separate call that gets us the additional information beyond posix. Without being able to do that within the VFS stat calls, that support would have to be scattered around the main smbd code. It will very likely break all the onefs modules, but I think the changes will be reasonably easy to do.
* Make cli_posix_open() and cli_posix_mkdir() async.Jeremy Allison2009-05-201-56/+217
| | | | Jeremy.