torture: convert torture_comment() -> torture_result() so we can knownfail flapping...
[Samba/wip.git] / source4 / winbind / wb_cmd_userdomgroups.c
blobee53a44bf6e6ed749dd5899edd91cf1bd3d35309
1 /*
2 Unix SMB/CIFS implementation.
4 Command backend for wbinfo --user-domgroups
6 Copyright (C) Volker Lendecke 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "libcli/composite/composite.h"
24 #include "libcli/security/security.h"
25 #include "winbind/wb_server.h"
26 #include "winbind/wb_helper.h"
27 #include "smbd/service_task.h"
29 struct cmd_userdomgroups_state {
30 struct composite_context *ctx;
31 struct dom_sid *dom_sid;
32 uint32_t user_rid;
33 uint32_t num_rids;
34 uint32_t *rids;
37 static void userdomgroups_recv_domain(struct composite_context *ctx);
38 static void userdomgroups_recv_rids(struct composite_context *ctx);
40 struct composite_context *wb_cmd_userdomgroups_send(TALLOC_CTX *mem_ctx,
41 struct wbsrv_service *service,
42 const struct dom_sid *sid)
44 struct composite_context *result, *ctx;
45 struct cmd_userdomgroups_state *state;
47 result = composite_create(mem_ctx, service->task->event_ctx);
48 if (result == NULL) goto failed;
50 state = talloc(result, struct cmd_userdomgroups_state);
51 if (state == NULL) goto failed;
52 state->ctx = result;
53 result->private_data = state;
55 state->dom_sid = dom_sid_dup(state, sid);
56 if (state->dom_sid == NULL) goto failed;
57 state->dom_sid->num_auths -= 1;
59 state->user_rid = sid->sub_auths[sid->num_auths-1];
61 ctx = wb_sid2domain_send(state, service, sid);
63 composite_continue(state->ctx, ctx, userdomgroups_recv_domain, state);
65 if (ctx) {
66 return result;
69 failed:
70 talloc_free(result);
71 return NULL;
74 static void userdomgroups_recv_domain(struct composite_context *ctx)
76 struct cmd_userdomgroups_state *state =
77 talloc_get_type(ctx->async.private_data,
78 struct cmd_userdomgroups_state);
79 struct wbsrv_domain *domain;
81 state->ctx->status = wb_sid2domain_recv(ctx, &domain);
82 if (!composite_is_ok(state->ctx)) return;
84 ctx = wb_samr_userdomgroups_send(state, state->ctx->event_ctx,
85 domain->libnet_ctx->samr.samr_handle,
86 &domain->libnet_ctx->samr.handle,
87 state->user_rid);
88 composite_continue(state->ctx, ctx, userdomgroups_recv_rids, state);
92 static void userdomgroups_recv_rids(struct composite_context *ctx)
94 struct cmd_userdomgroups_state *state =
95 talloc_get_type(ctx->async.private_data,
96 struct cmd_userdomgroups_state);
98 state->ctx->status = wb_samr_userdomgroups_recv(ctx, state,
99 &state->num_rids,
100 &state->rids);
101 if (!composite_is_ok(state->ctx)) return;
103 composite_done(state->ctx);
106 NTSTATUS wb_cmd_userdomgroups_recv(struct composite_context *c,
107 TALLOC_CTX *mem_ctx,
108 uint32_t *num_sids, struct dom_sid ***sids)
110 struct cmd_userdomgroups_state *state =
111 talloc_get_type(c->private_data,
112 struct cmd_userdomgroups_state);
113 uint32_t i;
114 NTSTATUS status;
116 status = composite_wait(c);
117 if (!NT_STATUS_IS_OK(status)) goto done;
119 *num_sids = state->num_rids;
120 *sids = talloc_array(mem_ctx, struct dom_sid *, state->num_rids);
121 if (*sids == NULL) {
122 status = NT_STATUS_NO_MEMORY;
123 goto done;
126 for (i=0; i<state->num_rids; i++) {
127 (*sids)[i] = dom_sid_add_rid((*sids), state->dom_sid,
128 state->rids[i]);
129 if ((*sids)[i] == NULL) {
130 status = NT_STATUS_NO_MEMORY;
131 goto done;
135 done:
136 talloc_free(c);
137 return status;
140 NTSTATUS wb_cmd_userdomgroups(TALLOC_CTX *mem_ctx,
141 struct wbsrv_service *service,
142 const struct dom_sid *sid,
143 uint32_t *num_sids, struct dom_sid ***sids)
145 struct composite_context *c =
146 wb_cmd_userdomgroups_send(mem_ctx, service, sid);
147 return wb_cmd_userdomgroups_recv(c, mem_ctx, num_sids, sids);