r24109: Add a wb_name2domain call
authorKai Blin <kai@samba.org>
Tue, 31 Jul 2007 23:49:04 +0000 (23:49 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 20:01:25 +0000 (15:01 -0500)
(This used to be commit a6a45ab9706961ea2a9a7451d9a38cb8dea7baf2)

source4/winbind/config.mk
source4/winbind/wb_name2domain.c [new file with mode: 0644]

index 531367b26b0bd1bb0a7f66139c19885fbcd37088..79dc4b63156898cb84bd22c6b0b9ff41ca2e30d7 100644 (file)
@@ -15,6 +15,7 @@ OBJ_FILES = \
                wb_dom_info.o \
                wb_dom_info_trusted.o \
                wb_sid2domain.o \
+               wb_name2domain.o \
                wb_connect_lsa.o \
                wb_connect_sam.o \
                wb_cmd_lookupname.o \
diff --git a/source4/winbind/wb_name2domain.c b/source4/winbind/wb_name2domain.c
new file mode 100644 (file)
index 0000000..b3f9f0c
--- /dev/null
@@ -0,0 +1,131 @@
+/*
+   Unix SMB/CIFS implementation.
+
+   Find and init a domain struct for a name
+
+   Copyright (C) Kai Blin 2007
+
+   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 3 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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "libcli/composite/composite.h"
+#include "winbind/wb_server.h"
+#include "smbd/service_task.h"
+#include "winbind/wb_helper.h"
+
+struct name2domain_state {
+       struct composite_context *ctx;
+       struct wbsrv_service *service;
+
+       struct wbsrv_domain *domain;
+};
+
+static void name2domain_recv_sid(struct composite_context *ctx);
+static void name2domain_recv_domain(struct composite_context *ctx);
+
+struct composite_context *wb_name2domain_send(TALLOC_CTX *mem_ctx,
+               struct wbsrv_service *service, const char* name)
+{
+       struct composite_context *result, *ctx;
+       struct name2domain_state *state;
+       char *user_dom, *user_name;
+
+       DEBUG(5, ("wb_name2domain_send called\n"));
+
+       result = composite_create(mem_ctx, service->task->event_ctx);
+       if (result == NULL) goto failed;
+
+       state = talloc(result, struct name2domain_state);
+       if (state == NULL) goto failed;
+       state->ctx = result;
+       result->private_data = state;
+       state->service = service;
+
+       if(!wb_samba3_split_username(state, name, &user_dom, &user_name))
+               goto failed;
+
+       ctx = wb_cmd_lookupname_send(state, service, user_dom, user_name);
+       if (ctx == NULL) goto failed;
+
+       ctx->async.fn = name2domain_recv_sid;
+       ctx->async.private_data = state;
+       return result;
+
+failed:
+       talloc_free(result);
+       return NULL;
+}
+
+static void name2domain_recv_sid(struct composite_context *ctx)
+{
+       struct name2domain_state *state =
+               talloc_get_type(ctx->async.private_data,
+                               struct name2domain_state);
+       struct wb_sid_object *sid;
+
+       DEBUG(1, ("name2domain_recv_sid called\n"));
+
+       state->ctx->status = wb_cmd_lookupname_recv(ctx, state, &sid);
+       if(!composite_is_ok(state->ctx)) return;
+
+       ctx = wb_sid2domain_send(state, state->service, sid->sid);
+
+       composite_continue(state->ctx, ctx, name2domain_recv_domain, state);
+}
+
+static void name2domain_recv_domain(struct composite_context *ctx)
+{
+       struct name2domain_state *state =
+               talloc_get_type(ctx->async.private_data,
+                               struct name2domain_state);
+       struct wbsrv_domain *domain;
+
+       DEBUG(1, ("name2domain_recv_domain called\n"));
+
+       state->ctx->status = wb_sid2domain_recv(ctx, &domain);
+       if(!composite_is_ok(state->ctx)) return;
+
+       state->domain = domain;
+
+       composite_done(state->ctx);
+}
+
+NTSTATUS wb_name2domain_recv(struct composite_context *ctx,
+               struct wbsrv_domain **result)
+{
+       NTSTATUS status = composite_wait(ctx);
+
+       DEBUG(1, ("wb_name2domain_recv called\n"));
+
+       if (NT_STATUS_IS_OK(status)) {
+               struct name2domain_state *state =
+                       talloc_get_type(ctx->private_data,
+                                       struct name2domain_state);
+               *result = state->domain;
+       }
+       talloc_free(ctx);
+       return status;
+}
+
+NTSTATUS wb_name2domain(TALLOC_CTX *mem_ctx, struct wbsrv_service *service,
+               const char* name, struct wbsrv_domain **result)
+{
+       struct composite_context *c;
+
+       c = wb_name2domain_send(mem_ctx, service, name);
+
+       return wb_name2domain_recv(c, result);
+}
+