mirror of
https://github.com/samba-team/samba.git
synced 2024-12-29 11:21:54 +03:00
66e3a63c19
rafal
(This used to be commit 7aa90f58b9
)
166 lines
4.7 KiB
C
166 lines
4.7 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
|
|
Copyright (C) Andrew Tridgell 2005
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
/*
|
|
composite API helper functions
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "lib/events/events.h"
|
|
#include "libcli/raw/libcliraw.h"
|
|
#include "libcli/composite/composite.h"
|
|
#include "lib/messaging/irpc.h"
|
|
|
|
/*
|
|
block until a composite function has completed, then return the status
|
|
*/
|
|
_PUBLIC_ NTSTATUS composite_wait(struct composite_context *c)
|
|
{
|
|
if (c == NULL) return NT_STATUS_NO_MEMORY;
|
|
|
|
c->used_wait = True;
|
|
|
|
while (c->state < COMPOSITE_STATE_DONE) {
|
|
if (event_loop_once(c->event_ctx) != 0) {
|
|
return NT_STATUS_UNSUCCESSFUL;
|
|
}
|
|
}
|
|
|
|
return c->status;
|
|
}
|
|
|
|
|
|
/*
|
|
* Some composite helpers that are handy if you write larger composite
|
|
* functions.
|
|
*/
|
|
_PUBLIC_ BOOL composite_is_ok(struct composite_context *ctx)
|
|
{
|
|
if (NT_STATUS_IS_OK(ctx->status)) {
|
|
return True;
|
|
}
|
|
ctx->state = COMPOSITE_STATE_ERROR;
|
|
if (ctx->async.fn != NULL) {
|
|
ctx->async.fn(ctx);
|
|
}
|
|
return False;
|
|
}
|
|
|
|
/*
|
|
callback from composite_done() and composite_error()
|
|
|
|
this is used to allow for a composite function to complete without
|
|
going through any state transitions. When that happens the caller
|
|
has had no opportunity to fill in the async callback fields
|
|
(ctx->async.fn and ctx->async.private) which means the usual way of
|
|
dealing with composite functions doesn't work. To cope with this,
|
|
we trigger a timer event that will happen then the event loop is
|
|
re-entered. This gives the caller a chance to setup the callback,
|
|
and allows the caller to ignore the fact that the composite
|
|
function completed early
|
|
*/
|
|
static void composite_trigger(struct event_context *ev, struct timed_event *te,
|
|
struct timeval t, void *ptr)
|
|
{
|
|
struct composite_context *c = talloc_get_type(ptr, struct composite_context);
|
|
if (c->async.fn) {
|
|
c->async.fn(c);
|
|
}
|
|
}
|
|
|
|
|
|
_PUBLIC_ void composite_error(struct composite_context *ctx, NTSTATUS status)
|
|
{
|
|
if (!ctx->used_wait && !ctx->async.fn) {
|
|
event_add_timed(ctx->event_ctx, ctx, timeval_zero(), composite_trigger, ctx);
|
|
}
|
|
ctx->status = status;
|
|
SMB_ASSERT(!composite_is_ok(ctx));
|
|
}
|
|
|
|
_PUBLIC_ BOOL composite_nomem(const void *p, struct composite_context *ctx)
|
|
{
|
|
if (p != NULL) {
|
|
return False;
|
|
}
|
|
composite_error(ctx, NT_STATUS_NO_MEMORY);
|
|
return True;
|
|
}
|
|
|
|
_PUBLIC_ void composite_done(struct composite_context *ctx)
|
|
{
|
|
if (!ctx->used_wait && !ctx->async.fn) {
|
|
event_add_timed(ctx->event_ctx, ctx, timeval_zero(), composite_trigger, ctx);
|
|
}
|
|
ctx->state = COMPOSITE_STATE_DONE;
|
|
if (ctx->async.fn != NULL) {
|
|
ctx->async.fn(ctx);
|
|
}
|
|
}
|
|
|
|
_PUBLIC_ void composite_continue(struct composite_context *ctx,
|
|
struct composite_context *new_ctx,
|
|
void (*continuation)(struct composite_context *),
|
|
void *private_data)
|
|
{
|
|
if (composite_nomem(new_ctx, ctx)) return;
|
|
new_ctx->async.fn = continuation;
|
|
new_ctx->async.private_data = private_data;
|
|
}
|
|
|
|
_PUBLIC_ void composite_continue_rpc(struct composite_context *ctx,
|
|
struct rpc_request *new_req,
|
|
void (*continuation)(struct rpc_request *),
|
|
void *private_data)
|
|
{
|
|
if (composite_nomem(new_req, ctx)) return;
|
|
new_req->async.callback = continuation;
|
|
new_req->async.private = private_data;
|
|
}
|
|
|
|
_PUBLIC_ void composite_continue_irpc(struct composite_context *ctx,
|
|
struct irpc_request *new_req,
|
|
void (*continuation)(struct irpc_request *),
|
|
void *private_data)
|
|
{
|
|
if (composite_nomem(new_req, ctx)) return;
|
|
new_req->async.fn = continuation;
|
|
new_req->async.private = private_data;
|
|
}
|
|
|
|
_PUBLIC_ void composite_continue_smb(struct composite_context *ctx,
|
|
struct smbcli_request *new_req,
|
|
void (*continuation)(struct smbcli_request *),
|
|
void *private_data)
|
|
{
|
|
if (composite_nomem(new_req, ctx)) return;
|
|
new_req->async.fn = continuation;
|
|
new_req->async.private = private_data;
|
|
}
|
|
|
|
_PUBLIC_ void composite_continue_nbt(struct composite_context *ctx,
|
|
struct nbt_name_request *new_req,
|
|
void (*continuation)(struct nbt_name_request *),
|
|
void *private_data)
|
|
{
|
|
if (composite_nomem(new_req, ctx)) return;
|
|
new_req->async.fn = continuation;
|
|
new_req->async.private = private_data;
|
|
}
|