summaryrefslogtreecommitdiffstats
path: root/source3/winbindd
Commit message (Collapse)AuthorAgeFilesLines
...
* s3: Remove an unused struct definitionVolker Lendecke2009-12-211-20/+0
|
* s3: Remove unused winbindd_dual_getuserdomgroupsVolker Lendecke2009-12-213-52/+0
|
* s3: Remove unused winbindd_dual_getdcnameVolker Lendecke2009-12-213-78/+0
|
* s3: Remove unused winbindd_dual_lookupnameVolker Lendecke2009-12-213-46/+0
|
* s3: Remove unused winbindd_dual_lookupsidVolker Lendecke2009-12-213-46/+0
|
* s3: Remove unused winbindd_dual_userinfoVolker Lendecke2009-12-212-77/+0
|
* s3: Remove some unused dual functionsVolker Lendecke2009-12-212-125/+0
|
* s3: Remove unused do_asyncVolker Lendecke2009-12-213-75/+0
|
* s3: Remove unused winbindd_gid2sid_asyncVolker Lendecke2009-12-212-48/+0
|
* s3: Remove unused winbindd_uid2sid_asyncVolker Lendecke2009-12-212-51/+0
|
* s3: Remove unused winbindd_sid2gid_asyncVolker Lendecke2009-12-212-49/+0
|
* s3: Remove unused winbindd_sid2uid_asyncVolker Lendecke2009-12-212-57/+0
|
* s3: Remove unused do_async_domainVolker Lendecke2009-12-211-27/+0
|
* s3: Remove unused query_user_asyncVolker Lendecke2009-12-212-59/+0
|
* s3: Remove unused winbindd_getsidaliases_asyncVolker Lendecke2009-12-212-80/+0
|
* s3: Remove unused winbindd_lookupname_asyncVolker Lendecke2009-12-212-157/+0
|
* s3: Remove unused winbindd_lookupsid_asyncVolker Lendecke2009-12-212-119/+0
|
* s3: Fix crash in winbindd;(bug#6879).Bo Yang2009-12-031-2/+8
| | | | Signed-off-by: Bo Yang <boyang@samba.org>
* s3-kerberos: only use krb5 headers where required.Günther Deschner2009-11-272-0/+3
| | | | | | | This seems to be the only way to deal with mixed heimdal/MIT setups during merged build. Guenther
* s3-rpc: Avoid including every pipe's client and server stubs everywhere in ↵Günther Deschner2009-11-266-0/+11
| | | | | | samba. Guenther
* s3: Always try SamLogonExVolker Lendecke2009-11-241-2/+6
| | | | | | | Required for cluster systems working in a Samba domain. With NT4 this won't work, but real NT4 DCs should not be around in environments that pay big bucks for a cluster... And if they are, they can always install a Samba DC trusting that NT4 domain.
* s3:idmap_ldap: fix indentation: tab/space mixupMichael Adam2009-11-231-14/+14
| | | | Michael
* s3-winbind: In _wbint_CheckMachineAccount, there is only one child domain everVolker Lendecke2009-11-231-1/+1
|
* s3:idmap_ldap: trim the " chars from the location string in idmap_ldap_db_initMichael Adam2009-11-201-0/+2
| | | | | | | | | When idmap backend is specified as idmap backend = ldap:"ldap://server1 ldap://server2" then currently "ldap://server1 ldap://server2" was passed to ldap_initialize including the quotes, leading to an ldap error. Michael
* s3:idmap_ldap: trim the " chars from the location string in ↵Michael Adam2009-11-201-0/+2
| | | | | | | | | | | idmap_ldap_alloc_init When idmap alloc backend is specified as idmap alloc backend = ldap:"ldap://server1 ldap://server2" then currently "ldap://server1 ldap://server2" was passed to ldap_initialize including the quotes, leading to an ldap error. Michael
* s3: Avoid races to change the machine password in winbindVolker Lendecke2009-11-191-0/+18
| | | | | | | | | | The machine password handler has code to deal with every node in the cluster trying to change the machine password at the same time. However, it is not very nice to the DC if everyone tries this simultaneously. This adds a random 0-255 second offset to our timed event. When this fires a bit later than strictly calculated, someone else might have stepped in and have already changed it. The timed event handler will handle this gracefully, it won't even try to do it again.
* s3: Protect against flooding the DC with pwchange requestsVolker Lendecke2009-11-191-14/+24
| | | | | When there is a temporary problem changing passwords we flooded the DC with pwchange requests. This gives the DC a 60-second break to recover.
* s3: Re-check the timeout in machine_password_change_handler()Volker Lendecke2009-11-191-0/+6
| | | | | Someone else might have come in between and changed the password since we created that timed request
* s3: Add some debugs to the winbind machine pwchange machineryVolker Lendecke2009-11-191-0/+16
|
* s3: Do not kill the whole smb session if a machine pwchange failedVolker Lendecke2009-11-191-1/+1
|
* Revert "s3: Do not reference ndr_table_<pipe> in the cli_ routines directly"Volker Lendecke2009-11-081-7/+4
| | | | This reverts commit daa964013bc5d036f4da571ce22c0052ef40943a.
* Revert "s3: Do not reference the ndr_tables in the server calls directly"Volker Lendecke2009-11-081-1/+0
| | | | This reverts commit 98fb71782e05ae72cd6abeb38b6e0b96a50c1761.
* Revert "s3: Do not reference ndr_table when calling rpc_srv_register"Volker Lendecke2009-11-081-1/+1
| | | | This reverts commit 494b2aff8826947e3bd556aecb175746163da485.
* s3: Do not reference ndr_table when calling rpc_srv_registerVolker Lendecke2009-11-081-1/+1
|
* s3: Do not reference the ndr_tables in the server calls directlyVolker Lendecke2009-11-081-0/+1
| | | | This involves storing the interface table in the pipes_struct
* s3: Do not reference ndr_table_<pipe> in the cli_ routines directlyVolker Lendecke2009-11-081-4/+7
|
* s3-kerberos: add impersonate_principal for kerberos_return_pac_X calls.Günther Deschner2009-11-061-0/+1
| | | | Guenther
* s3: Fix kerberos refresh chain.Bo Yang2009-11-061-1/+3
| | | | Signed-off-by: Bo Yang <boyang@samba.org>
* s3-passdb: cleanup some callers of pdb_get_trusteddom_pw().Günther Deschner2009-11-031-3/+1
| | | | Guenther
* Fix typo.Karolin Seeger2009-10-191-1/+1
| | | | | | privilage -> privilege Karolin
* s3:winbind: Move fillup_pw_field() as static to wb_fill_pwent.cVolker Lendecke2009-10-173-47/+47
|
* Fix valgrind memory leak in bug #6814 - Fixes for problems reported by valgrindJeremy Allison2009-10-151-0/+1
| | | | Jeremy.
* Fix the build, missing ->.Jeremy Allison2009-10-141-1/+1
| | | | Jeremy.
* Final part of fix for bug 6793 - winbindd crash with "INTERNAL ERROR: Signal 6"Jeremy Allison2009-10-141-0/+2
| | | | | Don't use mapped_user uninitialized. Jeremy.
* s3:winbind: Fix a double-freeVolker Lendecke2009-10-141-1/+0
| | | | Part of a fix for bug #6793.
* s3:winbind: Fix bug 6793 -- segfault in winbindd_pam_authVolker Lendecke2009-10-141-7/+6
|
* s3-winbindd: add wbint_ChangeMachineAccount implementation.Günther Deschner2009-10-135-0/+165
| | | | Guenther
* s3: use enum netr_SchannelType all over the place.Günther Deschner2009-10-131-1/+1
| | | | Guenther
* s3-winbindd: NDR_WBINT_CHECKMACHINEACCOUNT should not be cacheable.Günther Deschner2009-10-081-0/+1
| | | | Guenther
* s3/s4 - Adapt the IDL changes on various locationsMatthias Dieter Wallnöfer2009-10-081-2/+2
|