summaryrefslogtreecommitdiffstats
path: root/source
Commit message (Collapse)AuthorAgeFilesLines
...
| * r12313: Introduce yet another copy of the string_sub function:Volker Lendecke2005-12-184-21/+101
| | | | | | | | | | | | | | | | | | | | talloc_string_sub. Someone with time on his hands could convert all the callers of all_string_sub to this. realloc_string_sub is *only* called from within substitute.c, it could be moved there I think. Volker
| * r12312: Reformatting and a trivial change: is_share_read_only_for_user only usesVolker Lendecke2005-12-181-14/+22
| | | | | | | | | | | | conn->service, so there's no point in passing down the whole conn struct. Volker
| * r12311: ReformattingVolker Lendecke2005-12-181-15/+23
| |
| * r12308: ReformattingVolker Lendecke2005-12-171-4/+2
| |
| * r12307: Reformatting plus a trivial if/else simplification. There's no point ↵Volker Lendecke2005-12-171-72/+122
| | | | | | | | | | | | | | | | in doing an else branch that only returns NULL. Volker
| * r12306: ReformattingVolker Lendecke2005-12-171-38/+69
| |
| * r12305: ReformattingVolker Lendecke2005-12-171-8/+20
| |
| * r12303: Move split_domain_and_name to util_getent.c and make it static there.Volker Lendecke2005-12-172-28/+31
| | | | | | | | Volker
| * r12291: Make getgroups_user static.Volker Lendecke2005-12-161-2/+2
| | | | | | | | | | | | | | Jeremy, there's a #ifdef'ed 0 call to this in your usershare code. We need to talk about what exactly what you intend to do here and in what scenarios. Volker
| * r12290: TypoVolker Lendecke2005-12-161-1/+1
| |
| * r12281: adding a note about WINS and NetLogon not being remotely manageableGerald Carter2005-12-161-2/+2
| |
| * r12279: unix_mask_match has been broken for *ever*... (How).Jeremy Allison2005-12-164-5/+6
| | | | | | | | | | | | | | | | Ensure it returns a BOOL. Jerry (and anyone else) please check this, I think all uses are now correct but could do with another set of eyes. Essential for 3.0.21 release. Jeremy.
| * r12275: Fix memory leak found by Mikhail Kshevetskiy <kl@laska.dorms.spbu.ru>Jeremy Allison2005-12-162-2/+16
| | | | | | | | | | and followed up by derrell@samba.org. Jeremy.
| * r12273: Fix copy paste error.Günther Deschner2005-12-161-2/+2
| | | | | | | | Guenther
| * r12262: * patch from Brian Moran to fix segv in eventlogadm when not eventlogsGerald Carter2005-12-152-3/+9
| | | | | | | | | | are listed in smb.conf * initialize the local group description in set_alias_info()
| * r12250: Patch from Martin Koeppe <mkoeppe@gmx.de> for #3287Jeremy Allison2005-12-141-6/+6
| | | | | | | | | | | | | | | | to make the dev/inode numbers match what SFU expects. If we're using 8 byte inodes we'll lose the top 4 bytes and replace them with a dev_t instead, but this seem reasonable to ensure uniqueness. Jeremy.
| * r12245: eDirectory returns LDAP_UNWILLING_TO_PERFORM if theJeremy Allison2005-12-141-0/+9
| | | | | | | | | | | | | | account is disabled. If we get this we can't check the password so have to tell the client the account was disabled. Jeremy.
| * r12236: r11740@cabra: derrell | 2005-12-14 13:16:58 -0500Derrell Lipman2005-12-141-1/+1
| | | | | | | | check in the DEBUG message referenced in the previous commit
| * r12235: r11738@cabra: derrell | 2005-12-14 13:15:14 -0500Derrell Lipman2005-12-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | Ensure that when libsmbclient copies a cli, it prevents the cli from later being freed, by turning off the 'allocated' flag. Change a DEBUG message in pipe_open code from level 0 to level 1 since libsmbclient is now regularly attempting to open a pipe for share enumeration, and falling back to RAP if RPC is unavailable (e.g. win98). We don't want the debug message to display when the pipe open fails, under these normal circumstances.
| * r12234: Reduce the race condition for renames by holding the lockJeremy Allison2005-12-142-20/+34
| | | | | | | | | | | | longer. Instigated by complaints on the fix for #3303 from SATOH Fumiyasu <fumiyas@miraclelinux.com>. Jeremy.
| * r12225: r11729@cabra: derrell | 2005-12-13 22:59:45 -0500Derrell Lipman2005-12-143-32/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | 1. Fix a crash bug which should have reared its ugly head ages ago, but for some reason, remained dormant until recently. The bug pertained to libsmbclient doing a structure assignment of a cli after having opened a pipe. The pipe open code makes a copy of the cli pointer that was passed to it. If the cli is later copied (and that cli pointer that was saved is no longer valid), the pipe code will cause a crash during shutdown or when the copied cli is closed. 2. The 'type' field in enumerated shares was not being set correctly with the new RPC-based mechanism for enumerating shares.
| * r12224: adding more characters to the invalid share name stringGerald Carter2005-12-141-1/+1
| |
| * r12221: Fix error code paths that can potentially leave a dangling lock.Jeremy Allison2005-12-141-2/+13
| | | | | | | | Jeremy.
| * r12214: Fix compile if SYNC_DNS is set.Jeremy Allison2005-12-131-1/+1
| | | | | | | | Jeremy.
| * r12213: Final fix for #3303 - send rename messages to smbd'sJeremy Allison2005-12-138-20/+169
| | | | | | | | | | | | | | | | that have open file handles to allow them to correctly implement delete on close. There is a further correctness fix I'm intending to add to this to cope with different share paths, but not right now... Jeremy.
| * r12203: Add the share path into the sharemode db. This involvesJeremy Allison2005-12-1210-49/+124
| | | | | | | | | | | | | | | | | | | | revving the minor version number for libsmbsharemodes (we now have a new _ex interface that takes the share path as well as the filename). Needed for #3303. Some code written by SATOH Fumiyasu <fumiya@samba.gr.jp> included in the changes to locking/locking.c. The smbstatus output is a bit of a mess and needs overhauling... Jeremy.
| * r12196: patch from Krishna Ganugapati <krishnag@centeris.com>Gerald Carter2005-12-121-1/+17
| | | | | | | | | | Use the subtree delete ldap control when running 'net ads leave' to ensure that the machine account is actually deleted.
| * r12194: Ensure that when we set a connection path we've canonicalizedJeremy Allison2005-12-124-8/+107
| | | | | | | | | | | | | | | | | | the name (must be abolute - start with /, must not end in /, must have ./ and ../ removed). Of course for realpath resolved paths this won't be the case but for others we need this name to be canonicalized. This name is going into the sharemode db for #3303 so needs to be in a normalized format. Jeremy.
| * r12193: Fix some typos.Günther Deschner2005-12-123-3/+3
| | | | | | | | Guenther
| * r12185: Cosmetic cleanupVolker Lendecke2005-12-112-33/+4
| |
| * r12182: Cosmetic cleanupVolker Lendecke2005-12-112-44/+30
| |
| * r12177: last of outstanding patches in my queue to deal with MMC.Gerald Carter2005-12-111-5/+41
| | | | | | | | | | Validate the share name and fail when trying to creating a share with bad characters.
| * r12176: fix type mismatch after rpc structure change in rpc_svcctl.hGerald Carter2005-12-111-1/+1
| |
| * r12174: Simple patch to work around the current lack of BUILTINGerald Carter2005-12-111-3/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | nested group support. Always add the BUILTIN\Administrators SID to a Domain Admins token. This solves the extra steps of establishing a group map for the local Administrators SID in order to control services. Windows also tends to expect the Administrators group to be usable when setting up security permissions on shares. Volker's work will probably fix this long term, but this gets us past some of the setup hurdles for 3.0.21.
| * r12173: doing some service control workGerald Carter2005-12-117-27/+58
| | | | | | | | | | | | | | | | | | * Add a few new error codes for disabled services * dump some more details about service status in 'net rpc service' * disable the WINS and NetLogon services if not configured in smb.conf Still trying to figure out how to disable the start button on the NetLogon and WINS services.
| * r12170: Fix a segfault -- this is post-3.0.21 codeVolker Lendecke2005-12-101-1/+2
| |
| * r12169: Remove an unused functionVolker Lendecke2005-12-101-35/+0
| |
| * r12163: Change lookup_sid and lookup_name to return const char * instead of ↵Volker Lendecke2005-12-108-71/+79
| | | | | | | | | | | | | | | | char *, use a temporary talloc_ctx for clarity. Volker
| * r12160: The filename parameter to get_share_mode_lock is goingJeremy Allison2005-12-101-2/+2
| | | | | | | | | | | | to become very important as we fix #3303, so make sure we don't accidently set it here. Jeremy.
| * r12133: Fix an uninitialized variable in new code in rpc_server/srv_samr_nt.c.Volker Lendecke2005-12-082-6/+23
| | | | | | | | | | | | | | Fix winbind_lookup_name for the local domain, ie for aliases on a member server. Volker
| * r12131: Fix it really, this time :)Günther Deschner2005-12-081-2/+2
| | | | | | | | Guenther
| * r12130: display domain GUID.Günther Deschner2005-12-081-1/+1
| | | | | | | | Guenther
| * r12129: Fix uninitialized variables.Volker Lendecke2005-12-082-1/+4
| | | | | | | | Volker
| * r12119: r10812@cabra: derrell | 2005-12-07 22:44:26 -0500Derrell Lipman2005-12-081-5/+0
| | | | | | | | sync to repository didn't work correctly...???
| * r12118: r10805@cabra: derrell | 2005-12-07 22:34:55 -0500Derrell Lipman2005-12-081-12/+101
| | | | | | | | first go at supporting long file names. seeems to work; requires more testing
| * r12111: Fix the "everything" build by re-adding debug2html. Oops.Jeremy Allison2005-12-063-2/+437
| | | | | | | | Jeremy.
| * r12110: We're using a tdb-based wins backend now. Thanks to theJeremy Allison2005-12-0615-5705/+0
| | | | | | | | | | | | ubiqx code, which has served us well for many a year.. "Well done, thou good and faithful servant". Jeremy.
| * r12107: Move to a tdb-based wins database. At the moment we stillJeremy Allison2005-12-0615-395/+891
| | | | | | | | | | | | use it as though it were an in-memory db and dump out to a flat file every 2 mins, but that can now change. Jeremy.
| * r12106: Fix return valueGünther Deschner2005-12-061-1/+1
| | | | | | | | Guenther
| * r12098: r10797@cabra: derrell | 2005-12-06 12:09:00 -0500Derrell Lipman2005-12-061-5/+9
| | | | | | | | fixed another memory leak and reverted an (incorrect) fix from yesterday