s3:winbind: Add async next_pwent
authorVolker Lendecke <vl@samba.org>
Mon, 17 Aug 2009 20:50:39 +0000 (22:50 +0200)
committerVolker Lendecke <vl@samba.org>
Sat, 29 Aug 2009 17:42:26 +0000 (19:42 +0200)
source3/Makefile.in
source3/winbindd/wb_next_pwent.c [new file with mode: 0644]
source3/winbindd/winbindd.h
source3/winbindd/winbindd_proto.h

index 4304df6e3775158159b0be2b89609787e6779903..c930f2af3cc6c40ad021459a74c67a5438496eb1 100644 (file)
@@ -1181,6 +1181,7 @@ WINBINDD_OBJ1 = \
                winbindd/wb_getgrsid.o \
                winbindd/wb_query_user_list.o \
                winbindd/wb_fill_pwent.o \
+               winbindd/wb_next_pwent.o \
                winbindd/winbindd_lookupsid.o \
                winbindd/winbindd_lookupname.o \
                winbindd/winbindd_sid_to_uid.o \
diff --git a/source3/winbindd/wb_next_pwent.c b/source3/winbindd/wb_next_pwent.c
new file mode 100644 (file)
index 0000000..25ab7b3
--- /dev/null
@@ -0,0 +1,150 @@
+/*
+   Unix SMB/CIFS implementation.
+   async next_pwent
+   Copyright (C) Volker Lendecke 2009
+
+   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 "winbindd.h"
+#include "librpc/gen_ndr/cli_wbint.h"
+
+struct wb_next_pwent_state {
+       struct tevent_context *ev;
+       struct getpwent_state *gstate;
+       struct winbindd_pw *pw;
+};
+
+static void wb_next_pwent_fetch_done(struct tevent_req *subreq);
+static void wb_next_pwent_fill_done(struct tevent_req *subreq);
+
+struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
+                                     struct tevent_context *ev,
+                                     struct getpwent_state *gstate,
+                                     struct winbindd_pw *pw)
+{
+       struct tevent_req *req, *subreq;
+       struct wb_next_pwent_state *state;
+
+       req = tevent_req_create(mem_ctx, &state, struct wb_next_pwent_state);
+       if (req == NULL) {
+               return NULL;
+       }
+       state->ev = ev;
+       state->gstate = gstate;
+       state->pw = pw;
+
+       if (state->gstate->next_user >= state->gstate->num_users) {
+               TALLOC_FREE(state->gstate->users);
+
+               if (state->gstate->domain == NULL) {
+                       state->gstate->domain = domain_list();
+               } else {
+                       state->gstate->domain = state->gstate->domain->next;
+               }
+
+               if (state->gstate->domain == NULL) {
+                       tevent_req_nterror(req, NT_STATUS_NO_MORE_ENTRIES);
+                       return tevent_req_post(req, ev);
+               }
+               subreq = wb_query_user_list_send(state, state->ev,
+                                                state->gstate->domain);
+               if (tevent_req_nomem(subreq, req)) {
+                       return tevent_req_post(req, ev);
+               }
+               tevent_req_set_callback(subreq, wb_next_pwent_fetch_done, req);
+               return req;
+       }
+
+       subreq = wb_fill_pwent_send(
+               state, state->ev,
+               &state->gstate->users[state->gstate->next_user],
+               state->pw);
+       if (tevent_req_nomem(subreq, req)) {
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, wb_next_pwent_fill_done, req);
+       return req;
+}
+
+static void wb_next_pwent_fetch_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct wb_next_pwent_state *state = tevent_req_data(
+               req, struct wb_next_pwent_state);
+       NTSTATUS status;
+
+       status = wb_query_user_list_recv(subreq, state->gstate,
+                                        &state->gstate->num_users,
+                                        &state->gstate->users);
+       TALLOC_FREE(subreq);
+       if (!NT_STATUS_IS_OK(status)) {
+               /* Ignore errors here, just log it */
+               DEBUG(10, ("query_user_list for domain %s returned %s\n",
+                          state->gstate->domain->name,
+                          nt_errstr(status)));
+               state->gstate->num_users = 0;
+       }
+
+       if (state->gstate->num_users == 0) {
+               state->gstate->domain = state->gstate->domain->next;
+               if (state->gstate->domain == NULL) {
+                       tevent_req_nterror(req, NT_STATUS_NO_MORE_ENTRIES);
+                       return;
+               }
+               subreq = wb_query_user_list_send(state, state->ev,
+                                                state->gstate->domain);
+               if (tevent_req_nomem(subreq, req)) {
+                       return;
+               }
+               tevent_req_set_callback(subreq, wb_next_pwent_fetch_done, req);
+               return;
+       }
+
+       state->gstate->next_user = 0;
+
+       subreq = wb_fill_pwent_send(
+               state, state->ev,
+               &state->gstate->users[state->gstate->next_user],
+               state->pw);
+       if (tevent_req_nomem(subreq, req)) {
+               return;
+       }
+       tevent_req_set_callback(subreq, wb_next_pwent_fill_done, req);
+}
+
+static void wb_next_pwent_fill_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct wb_next_pwent_state *state = tevent_req_data(
+               req, struct wb_next_pwent_state);
+       NTSTATUS status;
+
+       status = wb_fill_pwent_recv(subreq);
+       TALLOC_FREE(subreq);
+       if (!NT_STATUS_IS_OK(status)) {
+               tevent_req_nterror(req, status);
+               return;
+       }
+       state->gstate->next_user += 1;
+       tevent_req_done(req);
+}
+
+NTSTATUS wb_next_pwent_recv(struct tevent_req *req)
+{
+       return tevent_req_simple_recv_ntstatus(req);
+}
index 773496e8ad82e82509875463f99f2cb2516411fc..454fea70e692cd823ab7240eb67eee03a34dcc34 100644 (file)
@@ -79,6 +79,13 @@ struct getent_state {
        fstring domain_name;
 };
 
+struct getpwent_state {
+       struct winbindd_domain *domain;
+       int next_user;
+       int num_users;
+       struct wbint_userinfo *users;
+};
+
 /* Storage for cached getpwent() user entries */
 
 struct getpwent_user {
index 58a46b5215deec058858b596b28b8f5473868f15..f66becae33fea708df1a03917e7da2db2e7426d0 100644 (file)
@@ -862,5 +862,11 @@ struct tevent_req *wb_fill_pwent_send(TALLOC_CTX *mem_ctx,
                                      struct winbindd_pw *pw);
 NTSTATUS wb_fill_pwent_recv(struct tevent_req *req);
 
+struct tevent_req *wb_next_pwent_send(TALLOC_CTX *mem_ctx,
+                                     struct tevent_context *ev,
+                                     struct getpwent_state *gstate,
+                                     struct winbindd_pw *pw);
+NTSTATUS wb_next_pwent_recv(struct tevent_req *req);
+
 
 #endif /*  _WINBINDD_PROTO_H_  */