summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * r21775: make messages more understandable - don't leave part dangling after ↵Herb Lewis2007-03-091-2/+2
| | | | | | | | newline
| * r21774: Fix the build with Fedora Core 6.Günther Deschner2007-03-091-0/+4
| | | | | | | | | | | | tridge/vl: please check. Guenther
| * r21770: For old DOS style searches we must remember ifJeremy Allison2007-03-091-0/+5
| | | | | | | | | | | | | | the initial search had a wildcard in order to correctly return no error on end of search. Found by Samba4 torture tester. Jeremy.
| * r21769: Attempt to fix bug #4384 in old search code.Jeremy Allison2007-03-091-14/+4
| | | | | | | | | | | | We were accessing a pathname that hadn't gone through unix_convert ! That's a big no-no... Jeremy.
| * r21768: Fix the client dfs code such that smbclient canJeremy Allison2007-03-0810-121/+167
| | | | | | | | | | | | | | | | | | process deep dfs links (ie. links that go to non root parts of a share). Make the directory handling conanonical in POSIX and Windows pathname processing. dfs should not be fully working in client tools. Please bug me if not. Jeremy.
| * r21767: Revert all the bits I accidentally committed in r21766.James Peach2007-03-085-17/+9
| |
| * r21766: Fix compiler warning.James Peach2007-03-086-10/+18
| |
| * r21765: Fix the build for HP-UX.James Peach2007-03-081-1/+6
| |
| * r21764: Fix warning in debug comment.Jeremy Allison2007-03-081-2/+2
| | | | | | | | Jeremy.
| * r21763: Add support for the UNIX_INFO2 infolevel.James Peach2007-03-083-46/+302
| |
| * r21759: Fix the same bug in a more elegant way, strrchr_mJeremy Allison2007-03-081-7/+12
| | | | | | | | | | is an expensive call.... Jeremy.
| * r21758: Fix a very specific dfs bug when passing in POSIXJeremy Allison2007-03-081-3/+6
| | | | | | | | | | | | | | pathnames. When we're working out how much we've consumed we need to backtrack by either a '/' or '\\' component, as both are valid separators. Jeremy.
| * r21757: Add SMB_VFS_CHFLAGS operation.James Peach2007-03-084-1/+33
| |
| * r21756: An invarient the dfs code depended on for POSIX pathsJeremy Allison2007-03-071-4/+1
| | | | | | | | | | is no longer true, so fix it. Jeremy.
| * r21755: Memory leak fixes from Zack Kirsch <zack.kirsch@isilon.com>.Jeremy Allison2007-03-075-4/+26
| | | | | | | | Jeremy.
| * r21754: Volker is completely correct. There's no need forJeremy Allison2007-03-075-47/+126
| | | | | | | | | | | | | | the RESOLVE_DFSPATH macros and their varients any more. Fix reporting profile bug with all error returns. Jeremy.
| * r21753: Enable building ndrdump with the builtin popt. Jelmer, please check!Volker Lendecke2007-03-071-1/+1
| |
| * r21750: Sync up with SAMBA_3_0_25. Only client changes are in libsmbclientJeremy Allison2007-03-072-2/+43
| | | | | | | | | | right now. Jeremy.
| * r21748: More cosmetic alignment. One change to call_nt_transact_create(): We ↵Volker Lendecke2007-03-071-11/+14
| | | | | | | | | | | | | | | | | | | | were asking open_file_ntcreate for a batch oplock if the client asked us to do so, even if it did not ask for an oplock in the first place. Did not test it, but I think this is bogus anyway. Volker
| * r21747: Cosmetic checkin to bring ntcreate and nttranscreate closer togetherVolker Lendecke2007-03-071-13/+19
| |
| * r21738: Remove unused file.James Peach2007-03-071-80/+0
| |
| * r21734: Fix bug #4369. Patch from David Leonard <dleonard@vintela.com>.Jeremy Allison2007-03-071-0/+5
| | | | | | | | Jeremy.
| * r21731: Fix long-standing bug in our chain processing code.Jeremy Allison2007-03-071-3/+20
| | | | | | | | | | | | Should fix a bug with WinPE. Probably a candidate for the Vista patchset. Jeremy.
| * r21726: Fix stupid cut-n-paste typo. Thanks to volker forJeremy Allison2007-03-061-1/+1
| | | | | | | | | | being on the ball..... :-). Jeremy.
| * r21725: Fix for memalign used without test guards. WasJeremy Allison2007-03-062-22/+22
| | | | | | | | | | breaking the build on *BSD's. Tested by Herb. Jeremy.
| * r21724: Optimization pointed out by Volker. If we don'tJeremy Allison2007-03-062-0/+21
| | | | | | | | | | | | have any outstanding locks or blocking locks then we don't need to read the lock db. on close. Jeremy.
| * r21723: Make use of the per-hashchain "freelists"Volker Lendecke2007-03-063-0/+9
| |
| * r21722: Add the dead record functionality presented on ↵Volker Lendecke2007-03-064-6/+187
| | | | | | | | | | | | | | | | | | | | | | samba-technical@samba.org. If you do a tdb_set_max_dead(tdb, n), then for this tdb a delete operation will only mark a record as dead and re-use it if a new record is created. The parameter n allows for at most n dead records per hash chain. If this number is exceeded, all dead records are put on the central freelist. Volker
| * r21717: Support the SMB_QUERY_POSIX_WHOAMI info level on QueryFsInfo.James Peach2007-03-062-1/+141
| |
| * r21715: Fix torture utime code.Jeremy Allison2007-03-061-4/+4
| | | | | | | | Jeremy.
| * r21714: Change the VFS interface to use struct timespecJeremy Allison2007-03-0525-171/+288
| | | | | | | | | | | | | | | | | | | | for utimes - change the call to ntimes. This preserves nsec timestamps we get from stat (if the system supports it) and only maps back down to usec or sec resolution on time set. Looks bigger than it is as I had to move lots of internal code from using time_t and struct utimebuf to struct timespec. Jeremy.
| * r21706: get_delete_on_close_flag() is the perfect candidate for ↵Volker Lendecke2007-03-051-7/+21
| | | | | | | | tdb_parse_record()
| * r21705: add modify rights definesHerb Lewis2007-03-051-1/+15
| |
| * r21704: open sockets immediately in process_loopHerb Lewis2007-03-051-8/+9
| |
| * r21703: fix build when O_SYNC not definedHerb Lewis2007-03-051-0/+2
| |
| * r21672: The cannonical file access pattern should look like this :Jeremy Allison2007-03-034-207/+303
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | srvstr_get_path(inbuf, name, smb_buf(inbuf) + 1, sizeof(name), 0, STR_TERMINATE, &status); if (!NT_STATUS_IS_OK(status)) { return ERROR_NT(status); } RESOLVE_DFSPATH(name, conn, inbuf, outbuf); status = unix_convert(conn, name, False, NULL, &sbuf); if (!NT_STATUS_IS_OK(status)) { return ERROR_NT(status); } status = check_name(conn, name); if (!NT_STATUS_IS_OK(status)) { return ERROR_NT(status); } Make sure that every access pattern (including the wildcard generated paths from unlink, rename, and copy) do the same. Tidy things up a bit.... Jeremy.
| * r21667: posix_unlink should break existing oplocks.Jeremy Allison2007-03-021-1/+1
| | | | | | | | Jeremy.
| * r21666: (only in 3.0, not 3.0.25). Fix bad parameter to call.Jeremy Allison2007-03-021-1/+1
| | | | | | | | Jeremy.
| * r21665: Fix bug #4428 reported by Jason Mader <jason@ncac.gwu.edu>.Jeremy Allison2007-03-021-2/+1
| | | | | | | | Jeremy.
| * r21664: Fix #4425 - patch from Jason Mader <jason@ncac.gwu.edu>.Jeremy Allison2007-03-021-2/+3
| | | | | | | | Jeremy
| * r21663: Fix from the Wine guys: Robert Shearman <rob@codeweavers.com>Jeremy Allison2007-03-021-1/+2
| | | | | | | | | | | | | | | | The background behind this patch is that we're using ntlm_auth with Wine. Windows allows us to pass in a NULL domain and a username of the form of "user@domain" and this is converted into an NTLMSSP_AUTH packet with a NULL domain name and a username of the same form. Jeremy.
| * r21657: get rid of warning - not everyone understands %FHerb Lewis2007-03-021-3/+3
| |
| * r21655: Regenerate after pidl bugfix.Jelmer Vernooij2007-03-024-15/+15
| |
| * r21652: Fix samba3-specific initializationJelmer Vernooij2007-03-021-0/+9
| |
| * r21651: Add ndrdump to samba 3. This only works from external source at the Jelmer Vernooij2007-03-022-6/+32
| | | | | | | | | | | | | | | | | | | | moment. To use, use something like: ./bin/ndrdump -l bin/smbd winreg winreg_EnumValue in <filename> or to see what functions are available: ./bin/ndrdump -l bin/smbd winreg
| * r21647: Allow unit on for size parameters.James Peach2007-03-021-2/+4
| |
| * r21646: Patch from SATOH Fumiyasu <fumiyas@osstech.co.jp>Jeremy Allison2007-03-011-5/+22
| | | | | | | | | | - add minsize parameter. Bug #4409. Jeremy.
| * r21645: Make posix_unlink work - on open files too !Jeremy Allison2007-03-011-1/+24
| | | | | | | | Jeremy.
| * r21644: Allow mkdir on platforms with no O_DIRECTORY.Jeremy Allison2007-03-012-9/+48
| | | | | | | | | | | | Add proper debug to all possible setfilepathinfo functions. Jeremy.
| * r21643: Put the correct bits on the wire for posix_mkdir.Jeremy Allison2007-03-011-1/+2
| | | | | | | | | | We're not yet deleting open files on unlink. Investigating... Jeremy.