s3:winbind: Convert WINBINDD_GETUSERDOMGROUPS to the new API
authorVolker Lendecke <vl@samba.org>
Tue, 4 Aug 2009 20:20:18 +0000 (16:20 -0400)
committerVolker Lendecke <vl@samba.org>
Wed, 5 Aug 2009 07:21:25 +0000 (03:21 -0400)
source3/Makefile.in
source3/winbindd/winbindd.c
source3/winbindd/winbindd_getuserdomgroups.c [new file with mode: 0644]
source3/winbindd/winbindd_group.c
source3/winbindd/winbindd_proto.h

index 974499594ace8520a52e00672ddec2a7ae051d72..3ebc3616c1117d843de0caea076e9ded3bdbab5d 100644 (file)
@@ -1172,6 +1172,7 @@ WINBINDD_OBJ1 = \
                winbindd/winbindd_getpwnam.o \
                winbindd/winbindd_getpwuid.o \
                winbindd/winbindd_getsidaliases.o \
+               winbindd/winbindd_getuserdomgroups.o \
                auth/token_util.o \
                ../nsswitch/libwbclient/wb_reqtrans.o \
                smbd/connection.o
index 9d37a008ed4e6648e4aed89915d9f9fadd2da1d0..1a5e958d38f1558ff1482509126403e7a4edbf5b 100644 (file)
@@ -433,8 +433,6 @@ static struct winbindd_dispatch_table {
 
        { WINBINDD_GETGROUPS, winbindd_getgroups, "GETGROUPS" },
        { WINBINDD_GETUSERSIDS, winbindd_getusersids, "GETUSERSIDS" },
-       { WINBINDD_GETUSERDOMGROUPS, winbindd_getuserdomgroups,
-         "GETUSERDOMGROUPS" },
 
        /* Group functions */
 
@@ -533,6 +531,8 @@ static struct winbindd_async_dispatch_table async_nonpriv_table[] = {
          winbindd_getpwuid_send, winbindd_getpwuid_recv },
        { WINBINDD_GETSIDALIASES, "GETSIDALIASES",
          winbindd_getsidaliases_send, winbindd_getsidaliases_recv },
+       { WINBINDD_GETUSERDOMGROUPS, "GETUSERDOMGROUPS",
+         winbindd_getuserdomgroups_send, winbindd_getuserdomgroups_recv },
 
        { 0, NULL, NULL, NULL }
 };
diff --git a/source3/winbindd/winbindd_getuserdomgroups.c b/source3/winbindd/winbindd_getuserdomgroups.c
new file mode 100644 (file)
index 0000000..e677683
--- /dev/null
@@ -0,0 +1,121 @@
+/*
+   Unix SMB/CIFS implementation.
+   async implementation of WINBINDD_GETUSERDOMGROUPS
+   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"
+
+struct winbindd_getuserdomgroups_state {
+       struct dom_sid sid;
+       int num_sids;
+       struct dom_sid *sids;
+};
+
+static void winbindd_getuserdomgroups_done(struct tevent_req *subreq);
+
+struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
+                                                 struct tevent_context *ev,
+                                                 struct winbindd_request *request)
+{
+       struct tevent_req *req, *subreq;
+       struct winbindd_getuserdomgroups_state *state;
+       struct winbindd_domain *domain;
+
+       req = tevent_req_create(mem_ctx, &state,
+                               struct winbindd_getuserdomgroups_state);
+       if (req == NULL) {
+               return NULL;
+       }
+
+       /* Ensure null termination */
+       request->data.sid[sizeof(request->data.sid)-1]='\0';
+
+       DEBUG(3, ("getuserdomgroups %s\n", request->data.sid));
+
+       if (!string_to_sid(&state->sid, request->data.sid)) {
+               DEBUG(1, ("Could not get convert sid %s from string\n",
+                         request->data.sid));
+               tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
+               return tevent_req_post(req, ev);
+       }
+
+       domain = find_domain_from_sid_noinit(&state->sid);
+       if (domain == NULL) {
+               DEBUG(1,("could not find domain entry for sid %s\n",
+                        request->data.sid));
+               tevent_req_nterror(req, NT_STATUS_NO_SUCH_DOMAIN);
+               return tevent_req_post(req, ev);
+       }
+
+       subreq = wb_lookupusergroups_send(state, ev, domain, &state->sid);
+       if (tevent_req_nomem(subreq, req)) {
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, winbindd_getuserdomgroups_done, req);
+       return req;
+}
+
+static void winbindd_getuserdomgroups_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct winbindd_getuserdomgroups_state *state = tevent_req_data(
+               req, struct winbindd_getuserdomgroups_state);
+       NTSTATUS status;
+
+       status = wb_lookupusergroups_recv(subreq, state, &state->num_sids,
+                                         &state->sids);
+       TALLOC_FREE(subreq);
+       if (!NT_STATUS_IS_OK(status)) {
+               tevent_req_nterror(req, status);
+               return;
+       }
+       tevent_req_done(req);
+}
+
+NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
+                                       struct winbindd_response *response)
+{
+       struct winbindd_getuserdomgroups_state *state = tevent_req_data(
+               req, struct winbindd_getuserdomgroups_state);
+       NTSTATUS status;
+       int i;
+       char *sidlist;
+
+       if (tevent_req_is_nterror(req, &status)) {
+               return status;
+       }
+
+       sidlist = talloc_strdup(response, "");
+       if (sidlist == NULL) {
+               return NT_STATUS_NO_MEMORY;
+       }
+       for (i=0; i<state->num_sids; i++) {
+               fstring tmp;
+               sidlist = talloc_asprintf_append_buffer(
+                       sidlist, "%s\n",
+                       sid_to_fstring(tmp, &state->sids[i]));
+               if (sidlist == NULL) {
+                       return NT_STATUS_NO_MEMORY;
+               }
+       }
+       response->extra_data.data = sidlist;
+       response->length += talloc_get_size(sidlist);
+       response->data.num_entries = state->num_sids;
+       return NT_STATUS_OK;
+}
index 0d3db1d83fa463fa7b95c2f1df6021e6a7be97d8..12067f553f9825aeab1a07f7e92d16aa9d5f67e6 100644 (file)
@@ -1815,32 +1815,6 @@ static void getusersids_recv(void *private_data, bool success, DOM_SID *sids,
        request_ok(state);
 }
 
-void winbindd_getuserdomgroups(struct winbindd_cli_state *state)
-{
-       DOM_SID user_sid;
-       struct winbindd_domain *domain;
-
-       /* Ensure null termination */
-       state->request->data.sid[sizeof(state->request->data.sid)-1]='\0';
-
-       if (!string_to_sid(&user_sid, state->request->data.sid)) {
-               DEBUG(1, ("Could not get convert sid %s from string\n",
-                         state->request->data.sid));
-               request_error(state);
-               return;
-       }
-
-       /* Get info for the domain */
-       if ((domain = find_domain_from_sid_noinit(&user_sid)) == NULL) {
-               DEBUG(0,("could not find domain entry for sid %s\n",
-                        sid_string_dbg(&user_sid)));
-               request_error(state);
-               return;
-       }
-
-       sendto_domain(state, domain);
-}
-
 enum winbindd_result winbindd_dual_getuserdomgroups(struct winbindd_domain *domain,
                                                    struct winbindd_cli_state *state)
 {
index 42acb9eea6ad6faa97dc7ceeeb8d947fdb8601fe..ed416de95461d9b50cf8dd41b91f88f6de8a47a5 100644 (file)
@@ -751,5 +751,12 @@ struct tevent_req *wb_lookupusergroups_send(TALLOC_CTX *mem_ctx,
 NTSTATUS wb_lookupusergroups_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
                                  int *num_sids, struct dom_sid **sids);
 
+struct tevent_req *winbindd_getuserdomgroups_send(TALLOC_CTX *mem_ctx,
+                                                 struct tevent_context *ev,
+                                                 struct winbindd_request *request);
+NTSTATUS winbindd_getuserdomgroups_recv(struct tevent_req *req,
+                                       struct winbindd_response *response);
+
+
 
 #endif /*  _WINBINDD_PROTO_H_  */