summaryrefslogtreecommitdiff
path: root/source4/libcli/composite/composite.c
Commit message (Collapse)AuthorAgeFilesLines
* s4:libcli/composite: correctly finish composite smb and smb2 requestsStefan Metzmacher2014-09-191-0/+8
| | | | | | | | Without this we would hang forever if the connection was already disconnected, instead of directly propagating NT_STATUS_CONNECTION_DISCONNECTED; Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
* s4:libcli: use tevent_ fn names instead of legacy event_ onesSimo Sorce2011-08-131-4/+4
|
* s4:libcli/composite: remove unused composite_continue_irpc()Stefan Metzmacher2010-09-031-11/+0
| | | | metze
* s4:libcli/composite: get rid of composite_continue_rpc()Stefan Metzmacher2010-03-121-11/+0
| | | | metze
* fixed several places that unnecessarily take a reference to the event contextAndrew Tridgell2009-08-071-5/+1
| | | | | | | | | | | | | | | These references were triggering the ambiguous talloc_free errors from the recent talloc changes when the server is run using the 'standard' process model instead of the 'single' process model. I am aiming to move the build farm to use the 'standard' process model soon, as part of an effort to make our test environment better match the real deployment of Samba4. The references are not needed as the way that the event context is used is as the 'top parent', so when the event context is freed then all of the structures that were taking a reference to the event context were actually freed as well, thus making the references redundent.
* s4:libcliraw: s/private/private_dataStefan Metzmacher2009-02-021-2/+2
| | | | metze
* s4:irpc: avoid c++ reserved word 'private'Stefan Metzmacher2009-02-011-1/+1
| | | | metze
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-291-2/+2
| | | | | | | | | | | | | | | | | | | | 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-nbt: use ../libcli/nbtGünther Deschner2008-09-231-1/+1
| | | | Guenther
* s4-nbt: use private_data instead of private.Günther Deschner2008-09-231-1/+1
| | | | Guenther
* - added a composite_wait_free() callAndrew Tridgell2008-05-161-1/+18
| | | | | - allow composite_error() to take NT_STATUS_OK (This used to be commit 5240e1e25655af1f9b92da99e85d845bf30c4e9e)
* Remove more event_context_init() uses from function calls within deep down ↵Simo Sorce2008-04-211-1/+5
| | | | | | | | the code. Make sure we pass around the event_context where we need it instead. All test but a few python ones fail. Jelmer promised to fix them. (This used to be commit 3045d391626fba169aa26be52174883e18d323e9)
* Add my copyrightVolker Lendecke2008-03-211-0/+1
| | | | | | If I remember it right and when I look at the git log, then this way to do the async functions was designed by me. (This used to be commit 8d44f997c88b97fc40a88eebd50b6df720c0c10f)
* [PATCH] composite: make it possible to call composite_is_ok() without ↵Stefan Metzmacher2008-02-121-18/+13
| | | | | | | callback fn metze (This used to be commit 4e459f1fb3ab60c586df9a08cdc57db424a30b18)
* r25554: Convert last instances of BOOL, True and False to the standard types.Jelmer Vernooij2007-10-101-7/+7
| | | | (This used to be commit 566aa14139510788548a874e9213d91317f83ca9)
* r23792: convert Samba4 to GPLv3Andrew Tridgell2007-10-101-3/+2
| | | | | | There are still a few tidyups of old FSF addresses to come (in both s3 and s4). More commits soon. (This used to be commit fcf38a38ac691abd0fa51b89dc951a08e89fdafa)
* r22944: fix bug #4618:Stefan Metzmacher2007-10-101-1/+1
| | | | | | | rename private -> private_data metze (This used to be commit 58551f2f28fce8f1fcd04736c47ecd7458f32ea2)
* r18243: when setting up a composite continuation, if the context has alreadyAndrew Tridgell2007-10-101-0/+7
| | | | | | | | | | | finished when we need to trigger the continuation immediately. Via a fairly complex path, this fixes the problem where all hosts in the build farm that do not have ipv6 failed a lot of the RPC tests. This happened because the dcerpc_connect() async code used a composite_continue() on a context which was already in an error state, due to the socket backend saying that ipv6 was unavailable (This used to be commit dbf935d38b6b1fea5ed00e94c9b1a518cb14768b)
* r17317: - add a composite_create() function that allocates and initializeStefan Metzmacher2007-10-101-0/+28
| | | | | | | | | | | | | the composite_context structue, we should try to convert all code to use this because there're a lot of places where the we have bugs with this task... - add a composite_continue_smb2() helper We should try to hide the internals of the composite code from the users to avoid errors (and I found a lot of them... and will fix then step by step) metze (This used to be commit a16180f20246844d05996d385fcb71893e08f589)
* r14542: Remove librpc, libndr and libnbt from includes.hJelmer Vernooij2007-10-101-0/+2
| | | | (This used to be commit 51b4270513752d2eafbe77f9de598de16ef84a1f)
* r14239: Fix indentation.Rafal Szczesniak2007-10-101-15/+15
| | | | | rafal (This used to be commit 7aa90f58b9beb410a188fd229c539f2315c81a38)
* r13840: Mark some functions as public.Jelmer Vernooij2007-10-101-10/+10
| | | | (This used to be commit 9a188eb1f48a50d92a67a4fc2b3899b90074059a)
* r12608: Remove some unused #include lines.Jelmer Vernooij2007-10-101-1/+0
| | | | (This used to be commit 70e7449318aa0e9d2639c76730a7d1683b2f4981)
* r12116: got rid of composite_trigger_done() and composite_trigger_error(), andAndrew Tridgell2007-10-101-34/+31
| | | | | | | | | instead make the normal composite_done() and composite_error() functions automatically trigger a delayed callback if the caller has had no opportunity to setup a async callback this removes one of the common mistakes in writing a composite function (This used to be commit f9413ce792ded682e05134b66d433eeec293e6f1)
* r12079: Fix to the comment for sake of completness...Rafal Szczesniak2007-10-101-1/+1
| | | | | rafal (This used to be commit 7aa40e3a3ff7a655c5ed8ee67c55af92193815f1)
* r11971: add nbt specific continue wrapperStefan Metzmacher2007-10-101-0/+11
| | | | | metze (This used to be commit b8c5978df18b98db89069e02597d483f893e39ae)
* r11885: Add forgotten filesVolker Lendecke2007-10-101-0/+9
| | | | (This used to be commit 470cc5952981c3625c7e35f44c9fd41d19593396)
* r11095: Implement wb_getuserdomgroups.Volker Lendecke2007-10-101-0/+7
| | | | | | | | | | | | | | | | | | | | | | | Tridge, if you have the time, you might want to look at a problem I'm having with unix domain stream sockets. From a comment in this commit: /* Using composite_trigger_error here causes problems with the client * socket. Linux 2.6.8 gives me a ECONNRESET on the next read after * writing the reply when I don't wait the 100 milliseconds. */ This is in winbind/wb_cmd_userdomgroups.c:93. The problem I have is that I can not *immediately* send an error reply to the client because the next receive fails. Waiting 100 milliseconds helps. It might also be a problem with epoll(), I don't really know. I'd appreciate if you took a brief look at this, maybe I'm doing something wrong. Thanks, Volker (This used to be commit 3e535cce743710a68a4264e4f66e9c0c4d6770c6)
* r10878: Reply to some comments by tridge and metze:Volker Lendecke2007-10-101-21/+21
| | | | | | | | | | | | | * rename the composite helper functions from comp_* to composite_* * Move the lsa initialization to wb_connect_lsa.c * Equip smb_composite_connect with a fallback_to_anonymous The latter two simplify wb_init_domain.c quite a bit. Volker (This used to be commit deb127e04ea01ae93394da5ebffb39d81caeb6d9)
* r10852: Continuation-based programming can become a bit spaghetti...Volker Lendecke2007-10-101-1/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initialize a domain structure properly. Excerpt from wb_init_domain.c: /* * Initialize a domain: * * - With schannel credentials, try to open the SMB connection with the machine * creds. Fall back to anonymous. * * - If we have schannel creds, do the auth2 and open the schannel'ed netlogon * pipe. * * - Open LSA. If we have machine creds, try to open with ntlmssp. Fall back * to schannel and then to anon bind. * * - With queryinfopolicy, verify that we're talking to the right domain * * A bit complex, but with all the combinations I think it's the best we can * get. NT4, W2k3SP1 and W2k all have different combinations, but in the end we * have a signed&sealed lsa connection on all of them. * * Is this overkill? In particular the authenticated SMB connection seems a * bit overkill, given that we do schannel for netlogon and ntlmssp for * lsa later on w2k3, the others don't do this anyway. */ Thanks to Jeremy for his detective work, and to the Samba4 team for providing such a great infrastructure. Next step is to connect to SAM. Do it via LDAP if we can, fall back to samr with all we have. Volker (This used to be commit 3e69fdc07cd76b4bc01b032148609ee4b59b8be7)
* r10537: - we now use a much nicer way to handle talloc_free(timed_event)Stefan Metzmacher2007-10-101-6/+0
| | | | | | | | | | | the events code replaces a destructor to one that returns allways -1 while it's calling the event handler - we don't need the composite and winsrepl specific fixes any more - this also fixes the problem with smbcli, dcerpc, cldap, ldap and nbt request timeouts metze (This used to be commit 495996cfc49a1c6eefde6ff04fc75e0739be3aab)
* r10529: fix a crash bug in full async code the uses the ↵Stefan Metzmacher2007-10-101-0/+6
| | | | | | | | | composite_trigger_done() code the event subsystem wants to free timed_events! metze (This used to be commit dc5d5953b60662b895ad148525e84d82882d62a8)
* r10504: - seperate implementation specific stuff, from the generic compositeStefan Metzmacher2007-10-101-2/+2
| | | | | | | | | | | | | | stuff. - don't use SMBCLI_REQUEST_* state's in the genreic composite stuff - move monitor_fn to libnet. NOTE: I have maybe found some bugs, in code that is dirrectly in DONE or ERROR state in the _send() function. I haven't fixed this bugs in this commit! We may need some composite_trigger_*() functions or so. And maybe some other generic helper functions... metze (This used to be commit 4527815a0a9b96e460f301cb1f0c0b3964c166fc)
* r10200: added a composite_trigger_done() call that allows a composite functionAndrew Tridgell2007-10-101-0/+24
| | | | | | | | to cause an event to happen immediately. This allows metzes patch for recognising IPs in resolve_name() to work, and also allows us to remove some of the other code where we currently do specific checks for is_ipaddress(). (This used to be commit 9cc000d868e1257ef6429f6f6f1f9d3c28ca330f)
* r5197: moved events code to lib/events/ (suggestion from metze)Andrew Tridgell2007-10-101-1/+1
| | | | (This used to be commit 7f54c8a339f36aa43c9340be70ab7f0067593ef2)
* r5185: make all the events data structures private to events.c. This willAndrew Tridgell2007-10-101-0/+1
| | | | | | | | | | | make it possible to add optimisations to the events code such as keeping the next timed event in a sorted list, and using epoll for file descriptor events. I also removed the loop events code, as it wasn't being used anywhere, and changed timed events to always be one-shot (as adding a new timed event in the event handler is so easy to do if needed) (This used to be commit d7b4b6de51342a65bf46fce772d313f92f8d73d3)
* r5126: the composite code is no longer client specific or smb specific, soAndrew Tridgell2007-10-101-1/+1
| | | | | | rename the core structure to composite_context and the wait routine to composite_wait() (suggestion from metze) (This used to be commit cf11d05e35179c2c3e51c5ab370cd0a3fb15f24a)
* r4754: tidied up the composite function infrastructure to make it easier toAndrew Tridgell2007-10-101-1/+1
| | | | | | have composite functions that are not made up of functions that operate on smbcli_request structures. (This used to be commit 4f6055b4fb7e287a29544ff1ca4e22f698efc478)
* r4710: added a smb_composite_savefile() function, and expanded the test ↵Andrew Tridgell2007-10-101-0/+45
suite a little (This used to be commit ef4dbc443dbdebc4160209ed3f23cbb97109c414)