summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * fixed a crash in merge_aces()Andrew Tridgell2002-01-111-0/+1
| | | | | | | | when we free curr_ace_outer we need to not try to use it again :)
| * force the time difference in cache comparisons to be unsigned to copeAndrew Tridgell2002-01-111-1/+4
| | | | | | | | with the local machine time changing
| * make the winbind sequence number code more robustAndrew Tridgell2002-01-111-1/+1
| | | | | | | | when switching from rpc to ADS this now should make sense
| * cope with direct IP addresses in resolve_name()Andrew Tridgell2002-01-111-0/+5
| |
| * preparing for release of 3.0-alpha13Samba Release Account2002-01-112-1/+25
| |
| * Make this error match Win2k.Andrew Bartlett2002-01-111-1/+1
| |
| * The DC is meant to be sent the *unmapped* username...Andrew Bartlett2002-01-111-1/+1
| | | | | | | | Andrew Bartlett
| * Always query the PDC for the list of trusted domains rather than interatingTim Potter2002-01-117-114/+179
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the list received at startup or we get an out of date list. I thought there might be some sequence number that is incremented when a trusted domain is added or removed - perhaps there is but I just haven't found it yet. - Renamed get_domain_info() to init_domain_list() - Made an accessor function to return the list of trusted domains rather than using a global so we don't have to remember to put a magic init function - The getent state can not keep a pointer to a winbind_domain structure as it may be freed if init_domain_list() is called again so we keep the domain name instead
| * Back out the crazy notion that the NTLMSSP flags actually mean anything...Andrew Bartlett2002-01-114-30/+47
| | | | | | | | | | | | | | | | Replace this with some flags that *we* define. We can do a mapping later if we actually get some more reliable info about what passwords are actually valid. Andrew Bartlett
| * Correct4ed comment.Tim Potter2002-01-111-1/+1
| |
| * Fix up 'net ads join' to delete and rejoin if the account already exists.Andrew Bartlett2002-01-112-3/+8
| | | | | | | | | | | | | | | | This fixes up a problem where a machine would join (or downgrade by trust password change) to NT4 membership and not be able to regain full ADS membership until a 'net ads leave'. Andrew Bartlett
| * Some memory leak fixes.Tim Potter2002-01-111-17/+23
| |
| * commit some changes for ab, and keep working on the smbgroupeditGerald Carter2002-01-116-74/+683
| | | | | | | | manpage.
| * make sure resolve_name() only returns valid IP addressesAndrew Tridgell2002-01-111-4/+13
| | | | | | | | | | this is actually a workaround for old broken nmbd daemons, especially from Samba 2.0
| * Since AB has been changing the winbind interface it's time to add the "mockTim Potter2002-01-103-21/+21
| | | | | | | | | | | | | | | | | | | | | | swedish" test to client calls. This is putting a length field at the start of a request so we can disconnect clients talking with an out of date libnss_winbind.so rather than deadlock them. Misc cleanups: - made some int values uint32 - moved WINBIND_INTERFACE_VERSION to start of cmd list
| * added structure members referred to by recent changes in vfs-wrap.cHerb Lewis2002-01-101-1/+5
| |
| * merge tpots name changes into IRIX part of code. When you change the nameHerb Lewis2002-01-101-8/+8
| | | | | | | | of a define you need to grep for the old name and change ALL places.
| * Take a stab at keeping the doco current :-)Andrew Bartlett2002-01-101-0/+16
| |
| * Return the winbind separator over the socket, so programs don't have to parseAndrew Bartlett2002-01-105-18/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | smb.conf to get it right. While wb_client needs its lp_load() for samba dependency reasons, it now uses the new method both to example and test the new code. Also add an interface version function, and return the winbind's samba version string. In preperation for default domains, its now up to winbindd to reject plaintext auths that don't have a seperator, but NTLM (CRAP) auths now have two feilds, hence need parsing. Andrew Bartlett
| * This changes the winbind protcol a bit:Andrew Bartlett2002-01-106-38/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It adds a 'ping' request, just to check winbind is in fact alive It also changes winbindd_pam_auth_crap to take usernames and domain seperatly. (backward incompatible change, needs merge to 2.2, but this is not yet released code, so no workarounds) Finally, it adds some debugs and fixes a few memory leaks (uses talloc to do it). Andrew Bartlett
| * Quieten warning about uninitialized variable.Martin Pool2002-01-101-1/+3
| |
| * A big tidyup while thinking about getting trusted domains being re-readTim Potter2002-01-108-132/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when they are added or removed on the PDC. - renamed GETPWNAM_FROM_{UID,USER} constants and functions to GETPW{NAM,UID} - renamed GETGRNAM_FROM_{GID,GROUP} constants and functions to GETGR{NAM,GID} - use SIGUSR2 in winbindd for debugging/logging instead of SIGUSR1 in preparation for moving to smbcontrol type messages (not sure whether to ditch this altogether or not) - tidy debugging messages in top level winbind user and group routines - convert talloc_init() to talloc_init_named() - make enumerations of the domain list use the same local variable names
| * Spelling fix.Tim Potter2002-01-101-1/+1
| |
| * browse_fn: FIXME: If the remote machine returns non-ascii charactersMartin Pool2002-01-101-0/+3
| | | | | | | | | | in any of these fields, they can corrupt the output. We should remove them.
| * First part of UNIX extensions (#ifdefed out) more to follow.Jeremy Allison2002-01-104-2/+177
| | | | | | | | Jeremy.
| * Oh joy - the original code didn't do mapping of the perms onto the wire.Jeremy Allison2002-01-101-11/+41
| | | | | | | | | | Make it up as we go along... :-). Jeremy.
| * Ensure this is committed last.Jeremy Allison2002-01-101-288/+370
| | | | | | | | Jeremy.
| * We need to test for major/minor macros.Jeremy Allison2002-01-104-0/+39
| | | | | | | | Jeremy.
| * Although configure.in and configure were checked in at the same timeTim Potter2002-01-101-9/+9
| | | | | | | | | | I think configure.in just beat it to the repository so the timestamp of configure.in is newer than configure. )-:
| * Getting ready to add UNIX extensions in HEAD also.Jeremy Allison2002-01-1010-495/+860
| | | | | | | | Jeremy
| * Added tests for st_blocks in struct stat, and added a (hateful) constantJeremy Allison2002-01-094-311/+389
| | | | | | | | | | | | | | | | | | the specifies the units that st_blocks is in. The reason for this is that HPUX uses 8k, AIX uses a #defined constant and everyone else (tm) uses 512 byte units. Needed for the CIFS UNIX extensions - coming to a Samba server near you soon.... :-). Jeremy.
| * Fixed typo.Jeremy Allison2002-01-091-1/+1
| | | | | | | | Jeremy.
| * Move SAFE_FREE into tdb.c to stop exporting it into tdb.h namespace.Jeremy Allison2002-01-092-5/+5
| | | | | | | | Jeremy.
| * Add two more memory-debug smbcontrol messages: these ones shouldMartin Pool2002-01-095-7/+97
| | | | | | | | | | prompt dmalloc to log information about what happening, so you can see in flight why smbd is getting bloated.
| * FIXME: At the moment, if the user should happen to give the optionsMartin Pool2002-01-091-1/+7
| | | | | | | | | | | | | | ahead of the service name (in standard Unix fashion) then smbclient just spits out the usage message with no explanation of what in particular was wrong. Is there any reason we can't just parse out the service name and password after running getopt??
| * Better explanation message for dmalloc.Martin Pool2002-01-098-15/+15
| | | | | | | | | | | | | | | | | | | | Also more insertion of parenthesis to handle struct members called 'free'. You can now get useful dmalloc output, as long as it is compatible with your C library. On RH7.1 it looks like you have to rebuild dmalloc to allow free(0) by default, because something in libcrypt does that. (sigh)
| * With --enable-dmalloc, also use dmalloc's wrappers around routinesMartin Pool2002-01-093-785/+791
| | | | | | | | like strcat
| * Sample configuration for dmalloc.Martin Pool2002-01-091-0/+2
| |
| * Add UNUSED(paramname) macro to be used in parameter lists, to quietenMartin Pool2002-01-092-2/+12
| | | | | | | | gcc warnings about unused parameters.
| * Add UNUSED(paramname) macro to be used in parameter lists, to quietenMartin Pool2002-01-091-1/+4
| | | | | | | | | | | | gcc warnings about unused parameters. msg_pool_usage: assert msg_type is as expected.
| * When re-writing tdb version numbers as little endian int32, we mustJeremy Allison2002-01-093-27/+33
| | | | | | | | | | change the version number also. Jeremy.
| * Fix macro name controlling inclusion of DMALLOC.Martin Pool2002-01-091-1/+1
| |
| * Add harmless parentheses so that dmalloc doesn't get confused by aMartin Pool2002-01-091-1/+1
| | | | | | | | variable called 'free'.
| * Merge from appliance-head:Tim Potter2002-01-091-4/+72
| | | | | | | | | | | | | | - put in some level 10 debugs so we can see what internal_resolve_name() is doing - remove duplicates from returned ip list of internal_resolve_name()
| * For hysterical raisins you must use string_set() to set the value of aTim Potter2002-01-091-1/+1
| | | | | | | | | | string in the loadparam Globals struct. Using pstrcpy was causing every NULL string was being set to the name of the winbindd log file. (-:
| * Fixed all uses of tdb_fetch/store/_int to use explicit int32 little endianJeremy Allison2002-01-096-52/+90
| | | | | | | | | | in tdb's. All except winbindd_idmap.... Hmmmmmm. Jeremy.
| * HPUX nss fix.Jeremy Allison2002-01-091-2/+18
| | | | | | | | Jeremy.
| * Fixed up atomic update code.Jeremy Allison2002-01-093-5/+5
| | | | | | | | Jeremy.
| * Added int32 version of "atomic" update.Jeremy Allison2002-01-091-0/+35
| | | | | | | | Jeremy.
| * Added int32 versions of the endian-dependent code.Jeremy Allison2002-01-091-2/+66
| | | | | | | | Jeremy.