summaryrefslogtreecommitdiffstats
path: root/source4/winbind
Commit message (Collapse)AuthorAgeFilesLines
* s4-winbind: Migrated winbind connection to tsocket.Andreas Schneider2010-01-203-78/+191
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* s4:winbind - Fix it another time upMatthias Dieter Wallnöfer2009-11-271-2/+14
| | | | | The first fix attempt did break some configurations (incl. "make test"). This now is the right fix with the right comment.
* s4:provision - Fix up the provision of "standalone" and "member" modeMatthias Dieter Wallnöfer2009-11-271-1/+1
| | | | | | | Both modes weren't possible anymore since 1.) the secrets entry wasn't created, 2.) a lookup in winbindd was done using "lp_workgroup()" rather than "lp_sam_name()" (since on the mentioned two configurations we use the netbios name as domainname - and not the workgroup).
* s4-ldbwrap: added re-use of ldb contexts in ldb_wrap_connect()Andrew Tridgell2009-10-231-2/+2
| | | | | | | | | This allows us to reuse a ldb context if it is open twice, instead of going through the expensive process of a full ldb open. We can reuse it if all of the parameters are the same. The change relies on callers using talloc_unlink() or free of a parent to close a ldb context.
* s4: ran minimal_includes.pl on source4/winbindAndrew Tridgell2009-10-2030-84/+0
|
* s4: fix various warnings (not "const" related ones)Matthias Dieter Wallnöfer2009-10-028-9/+9
|
* s4-winbind: support the s3 response flags on krb5 auth tooAndrew Tridgell2009-10-022-8/+65
| | | | | This fixes the samba4.blackbox.wbinfo test, which was failing on a wbinfo -K command
* s4-winbind: support the Samba3 TXT form of the info3 for wbinfo -aAndrew Tridgell2009-10-021-0/+112
| | | | This sends the info3 as hand marshalled data
* s4-resolve: fixed a crash bug on timeoutAndrew Tridgell2009-09-191-1/+1
| | | | | | | We were creating the name resolution context as a child of lp_ctx, which meant when we gave up on a connection the timer on name resolution kept running, and when it timed out the callback crashed as the socket was already removed.
* s4-server: kill main daemon if a task fails to initialiseAndrew Tridgell2009-09-181-8/+8
| | | | | | When one of our core tasks fails to initialise it can now ask for the server as a whole to die, rather than limping along in a degraded state.
* s4 winbind: Quiet down the WINBINDD_DOMAIN_INFO handler stub warningKai Blin2009-08-181-1/+1
|
* s4 winbind: Silence compile warning by adding new commands to the listKai Blin2009-08-181-0/+3
|
* s4 winbind: Implement a stubbed out version of WINBINDD_DOMAIN_INFOKai Blin2009-08-182-1/+19
|
* fixed another ambiguous talloc callAndrew Tridgell2009-08-071-3/+3
| | | | | | | | | During the creation of the 3 RPC pipes in winbind we try to steal the RPC binding structure to be a child of the pipe once the pipe is established. This fails with a talloc warning as the rpc connection code already holds a reference to the binding. The fix is to use talloc_reparent() instead.
* s4:winbind: rename uint => uint32_t as uint isn't portableStefan Metzmacher2009-07-151-1/+1
| | | | metze
* Fix Coverity ID 853 (UNINIT) -- Kai, please check!Volker Lendecke2009-04-281-0/+3
|
* Rework Samba4 to use the new common libcli/auth codeAndrew Bartlett2009-04-141-7/+7
| | | | | | | In particular, this is the rename from creds_ to netlogon_creds_, as well as other links to use the new common crypto. Andrew Bartlett
* s4:service_stream: s/private/private_dataStefan Metzmacher2009-02-021-4/+4
| | | | metze
* s4:winbind: s/private/private_dataStefan Metzmacher2009-02-022-5/+5
| | | | metze
* shared: Move dom_sid_* utility functions to top levelKai Blin2009-02-014-4/+4
|
* s4:irpc: avoid c++ reserved word 'private'Stefan Metzmacher2009-02-011-2/+2
| | | | metze
* s4-winbind: Add support for the WINBINDD_LIST_GROUPS command.Kai Blin2009-01-154-2/+250
|
* s4 winbind: Silence a "discards const" warningKai Blin2009-01-061-1/+3
|
* s4 winbind: Correctly silence a "discard const" warningKai Blin2009-01-021-2/+2
| | | | Thanks to metze for pointing out the error.
* Revert "s4 winbind: Copy SID to avoid "discard const" warning"Stefan Metzmacher2009-01-021-2/+1
| | | | | | | | This reverts commit 102028ec722d942d7f91eb92e8da4f1480d140d1. state->ctx is the composite_context, which is a temporary context! metze
* Revert "s4 winbind: Avoid a "discards const" compiler warning."Stefan Metzmacher2009-01-021-2/+2
| | | | | | | | This reverts commit dd8d4b6fd178df6847052dac207a4aafc0697d71. s3call->response.extra_data.data is a pointer and no fstring! metze
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-294-4/+4
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* s4 winbind: Copy SID to avoid "discard const" warningKai Blin2008-12-291-1/+2
|
* s4 winbind: Add support for WINBINDD_GETGRGID callKai Blin2008-12-293-1/+208
|
* s4 libnet: Add support for groupinfo by sid lookupKai Blin2008-12-291-1/+2
|
* s4 winbind: Fix typos in debug outputKai Blin2008-12-291-2/+2
|
* s4 winbind: Add implementation for WINBINDD_GETGRNAMKai Blin2008-12-293-1/+200
|
* s4 winbind: Avoid a "discards const" compiler warning.Kai Blin2008-12-291-2/+2
|
* Fix more compiler warnings in various places.Jelmer Vernooij2008-12-231-1/+0
|
* Fix missing symbols issues when building with shared libraries.Jelmer Vernooij2008-12-221-1/+1
|
* nsswitch: Move nsswitch files from source4 to top level nsswitch dirKai Blin2008-12-161-0/+3
|
* nsswitch: Move source3 files to top level dir.Kai Blin2008-12-161-6/+0
| | | | Don't move source4 files yet to not confuse git's rename tracking too much.
* s4:winbind: fill in the correct variable...Stefan Metzmacher2008-12-061-1/+1
| | | | metze
* s4:winbind: move setting up the primary_sid into a new function ↵Stefan Metzmacher2008-12-063-7/+46
| | | | | | wbsrv_setup_domains() metze
* s4-samr: merge samr_GetGroupsForUser from s3 idl. (fixme: python)Günther Deschner2008-11-101-2/+5
| | | | Guenther
* s4-netlogon: merge netr_LogonSamLogon{Ex,WithFlags} from s3 idl.Günther Deschner2008-10-291-3/+8
| | | | Guenther
* s4-netlogon: merge netr_DsRGetDCName{Ex,Ex2} from s3 idl.Günther Deschner2008-10-291-3/+5
| | | | Guenther
* s4-netlogon: merge netr_GetDcName from s3 idl.Günther Deschner2008-10-281-1/+1
| | | | Guenther
* s4-netlogon: merge netr_GetAnyDCName from s3 idl (untested).Günther Deschner2008-10-282-2/+4
| | | | Guenther
* s4-lsa: merge lsa_QueryInfoPolicy/{2} from s3 lsa idl.Günther Deschner2008-10-271-1/+6
| | | | Guenther
* s4-lsa: merge lsa_LookupNames/{2,3,4} from s3 lsa idl.Günther Deschner2008-10-271-2/+8
| | | | Guenther
* s4-lsa: merge lsa_LookupSids/{2,3} from s3 lsa idl.Günther Deschner2008-10-271-2/+9
| | | | Guenther
* Remove iconv_convenience parameter from simple string push/pullJelmer Vernooij2008-10-241-1/+0
| | | | functions.
* Use common strlist implementation in Samba 3 and Samba 4.Jelmer Vernooij2008-10-121-1/+1
|
* Fix include paths to new location of libutil.Jelmer Vernooij2008-10-112-2/+2
|