summaryrefslogtreecommitdiff
path: root/source4/winbind
AgeCommit message (Collapse)AuthorFilesLines
2009-09-18s4-server: kill main daemon if a task fails to initialiseAndrew Tridgell1-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.
2009-08-18s4 winbind: Quiet down the WINBINDD_DOMAIN_INFO handler stub warningKai Blin1-1/+1
2009-08-18s4 winbind: Silence compile warning by adding new commands to the listKai Blin1-0/+3
2009-08-18s4 winbind: Implement a stubbed out version of WINBINDD_DOMAIN_INFOKai Blin2-1/+19
2009-08-07fixed another ambiguous talloc callAndrew Tridgell1-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.
2009-07-15s4:winbind: rename uint => uint32_t as uint isn't portableStefan Metzmacher1-1/+1
metze
2009-04-28Fix Coverity ID 853 (UNINIT) -- Kai, please check!Volker Lendecke1-0/+3
2009-04-14Rework Samba4 to use the new common libcli/auth codeAndrew Bartlett1-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
2009-02-02s4:service_stream: s/private/private_dataStefan Metzmacher1-4/+4
metze
2009-02-02s4:winbind: s/private/private_dataStefan Metzmacher2-5/+5
metze
2009-02-01shared: Move dom_sid_* utility functions to top levelKai Blin4-4/+4
2009-02-01s4:irpc: avoid c++ reserved word 'private'Stefan Metzmacher1-2/+2
metze
2009-01-15s4-winbind: Add support for the WINBINDD_LIST_GROUPS command.Kai Blin4-2/+250
2009-01-06s4 winbind: Silence a "discards const" warningKai Blin1-1/+3
2009-01-02s4 winbind: Correctly silence a "discard const" warningKai Blin1-2/+2
Thanks to metze for pointing out the error.
2009-01-02Revert "s4 winbind: Copy SID to avoid "discard const" warning"Stefan Metzmacher1-2/+1
This reverts commit 102028ec722d942d7f91eb92e8da4f1480d140d1. state->ctx is the composite_context, which is a temporary context! metze
2009-01-02Revert "s4 winbind: Avoid a "discards const" compiler warning."Stefan Metzmacher1-2/+2
This reverts commit dd8d4b6fd178df6847052dac207a4aafc0697d71. s3call->response.extra_data.data is a pointer and no fstring! metze
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher4-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
2008-12-29s4 winbind: Copy SID to avoid "discard const" warningKai Blin1-1/+2
2008-12-29s4 winbind: Add support for WINBINDD_GETGRGID callKai Blin3-1/+208
2008-12-29s4 libnet: Add support for groupinfo by sid lookupKai Blin1-1/+2
2008-12-29s4 winbind: Fix typos in debug outputKai Blin1-2/+2
2008-12-29s4 winbind: Add implementation for WINBINDD_GETGRNAMKai Blin3-1/+200
2008-12-29s4 winbind: Avoid a "discards const" compiler warning.Kai Blin1-2/+2
2008-12-23Fix more compiler warnings in various places.Jelmer Vernooij1-1/+0
2008-12-22Fix missing symbols issues when building with shared libraries.Jelmer Vernooij1-1/+1
2008-12-16nsswitch: Move nsswitch files from source4 to top level nsswitch dirKai Blin1-0/+3
2008-12-16nsswitch: Move source3 files to top level dir.Kai Blin1-6/+0
Don't move source4 files yet to not confuse git's rename tracking too much.
2008-12-06s4:winbind: fill in the correct variable...Stefan Metzmacher1-1/+1
metze
2008-12-06s4:winbind: move setting up the primary_sid into a new function ↵Stefan Metzmacher3-7/+46
wbsrv_setup_domains() metze
2008-11-10s4-samr: merge samr_GetGroupsForUser from s3 idl. (fixme: python)Günther Deschner1-2/+5
Guenther
2008-10-29s4-netlogon: merge netr_LogonSamLogon{Ex,WithFlags} from s3 idl.Günther Deschner1-3/+8
Guenther
2008-10-29s4-netlogon: merge netr_DsRGetDCName{Ex,Ex2} from s3 idl.Günther Deschner1-3/+5
Guenther
2008-10-28s4-netlogon: merge netr_GetDcName from s3 idl.Günther Deschner1-1/+1
Guenther
2008-10-28s4-netlogon: merge netr_GetAnyDCName from s3 idl (untested).Günther Deschner2-2/+4
Guenther
2008-10-27s4-lsa: merge lsa_QueryInfoPolicy/{2} from s3 lsa idl.Günther Deschner1-1/+6
Guenther
2008-10-27s4-lsa: merge lsa_LookupNames/{2,3,4} from s3 lsa idl.Günther Deschner1-2/+8
Guenther
2008-10-27s4-lsa: merge lsa_LookupSids/{2,3} from s3 lsa idl.Günther Deschner1-2/+9
Guenther
2008-10-24Remove iconv_convenience parameter from simple string push/pullJelmer Vernooij1-1/+0
functions.
2008-10-12Use common strlist implementation in Samba 3 and Samba 4.Jelmer Vernooij1-1/+1
2008-10-11Fix include paths to new location of libutil.Jelmer Vernooij2-2/+2
2008-09-24Rename smbd -> samba.Jelmer Vernooij1-1/+1
This reverts commit 05ea5e23cf4e70de0bd658b1c5c0ead133967091. Conflicts: source4/smbd/server.c
2008-09-23Merge ldb_search() and ldb_search_exp_fmt() into a simgle function.Simo Sorce1-9/+5
The previous ldb_search() interface made it way too easy to leak results, and being able to use a printf-like expression turns to be really useful.
2008-09-22s4: allways initialize the process model before it's usedStefan Metzmacher1-1/+1
metze
2008-09-21Revert "Rename smbd -> samba."Jelmer Vernooij1-1/+1
This reverts commit 0e9008be35a5b334bd65e6417193d4b8f27bdc36.
2008-09-21Rename smbd -> samba.Jelmer Vernooij1-1/+1
2008-09-16Let winbind depend directly on libnet rather than through the ejs bindings.Jelmer Vernooij1-1/+2
2008-09-10Return the same privilaged winbindd socket as we actually use.Andrew Bartlett3-3/+6
Andrew Bartlett (This used to be commit 2209787812fd9224d104f332e25d8ce64ef9ee95)
2008-07-21Fix winbindd not to sit in a busy loop...Andrew Bartlett1-1/+2
Clearly winbindd in Samba4 has not ever been run against windows, as when we fixed the Samba4 server not to cause XP to loop like this, Samba4's own client starts looping... Andrew Bartlett (This used to be commit 9741772190a85c7c42c17ff24a4aa3f53fbc9f3a)
2008-06-28Use a configure-specified directory for the winbind priv pipeAndrew Bartlett1-3/+11
This makes it easier for RPMs to specify an group for access to that directory. Andrew Bartlett (This used to be commit fa361354433fb9a5c09c84997a7c51f3052c294e)