ac6caee6f0b02b0b81d916c8f1552d9d5facc813
[ira/wip.git] / source4 / winbind / wb_cmd_setpwent.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    Command backend for setpwent
5
6    Copyright (C) Kai Blin 2007
7
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.
12
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.
17
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/>.
20 */
21
22 #include "includes.h"
23 #include "libcli/composite/composite.h"
24 #include "winbind/wb_server.h"
25 #include "winbind/wb_async_helpers.h"
26 #include "winbind/wb_helper.h"
27 #include "smbd/service_task.h"
28 #include "nsswitch/winbindd_nss.h"
29 #include "libnet/libnet_proto.h"
30
31 struct cmd_setpwent_state {
32         struct composite_context *ctx;
33         struct wbsrv_service *service;
34         struct libnet_context *libnet_ctx;
35
36         struct wbsrv_pwent *result;
37 };
38
39 static void cmd_setpwent_recv_domain(struct composite_context *ctx);
40 static void cmd_setpwent_recv_user_list(struct composite_context *ctx);
41
42 struct composite_context *wb_cmd_setpwent_send(TALLOC_CTX *mem_ctx,
43                 struct wbsrv_service *service)
44 {
45         struct composite_context *ctx, *result;
46         struct cmd_setpwent_state *state;
47
48         DEBUG(5, ("wb_cmd_setpwent_send called\n"));
49
50         result = composite_create(mem_ctx, service->task->event_ctx);
51         if (!result) return NULL;
52
53         state = talloc(mem_ctx, struct cmd_setpwent_state);
54         if (composite_nomem(state, result)) return result;
55
56         state->ctx = result;
57         result->private_data = state;
58         state->service = service;
59
60         state->result = talloc(state, struct wbsrv_pwent);
61         if (composite_nomem(state->result, state->ctx)) return result;
62
63         ctx = wb_sid2domain_send(state, service, service->primary_sid);
64         if (composite_nomem(ctx, state->ctx)) return result;
65
66         composite_continue(state->ctx, ctx, cmd_setpwent_recv_domain, state);
67         return result;
68 }
69
70 static void cmd_setpwent_recv_domain(struct composite_context *ctx)
71 {
72         struct cmd_setpwent_state *state = talloc_get_type(
73                         ctx->async.private_data, struct cmd_setpwent_state);
74         struct wbsrv_domain *domain;
75         struct libnet_UserList *user_list;
76
77         DEBUG(5, ("cmd_setpwent_recv_domain called\n"));
78
79         state->ctx->status = wb_sid2domain_recv(ctx, &domain);
80         if (!composite_is_ok(state->ctx)) return;
81
82         state->libnet_ctx = domain->libnet_ctx;
83
84         user_list = talloc(state->result, struct libnet_UserList);
85         if (composite_nomem(user_list, state->ctx)) return;
86
87         user_list->in.domain_name = talloc_strdup(state,
88                         domain->libnet_ctx->samr.name);
89         if (composite_nomem(user_list->in.domain_name, state->ctx)) return;
90
91         /* Page size recommended by Rafal */
92         user_list->in.page_size = 128;
93
94         /* Always get the start of the list */
95         user_list->in.resume_index = 0;
96
97         ctx = libnet_UserList_send(domain->libnet_ctx, state->result, user_list,
98                         NULL);
99
100         composite_continue(state->ctx, ctx, cmd_setpwent_recv_user_list, state);
101 }
102
103 static void cmd_setpwent_recv_user_list(struct composite_context *ctx)
104 {
105         struct cmd_setpwent_state *state = talloc_get_type(
106                         ctx->async.private_data, struct cmd_setpwent_state);
107         struct libnet_UserList *user_list;
108
109         DEBUG(5, ("cmd_setpwent_recv_user_list called\n"));
110
111         user_list = talloc(state->result, struct libnet_UserList);
112         if (composite_nomem(user_list, state->ctx)) return;
113
114         state->ctx->status = libnet_UserList_recv(ctx, state->result,
115                         user_list);
116         if (!composite_is_ok(state->ctx)) return;
117
118         state->result->user_list = user_list;
119         state->result->page_index = 0;
120         state->result->libnet_ctx = state->libnet_ctx;
121
122         composite_done(state->ctx);
123 }
124
125 NTSTATUS wb_cmd_setpwent_recv(struct composite_context *ctx,
126                 TALLOC_CTX *mem_ctx, struct wbsrv_pwent **pwent)
127 {
128         NTSTATUS status = composite_wait(ctx);
129
130         DEBUG(5, ("wb_cmd_setpwent_recv called\n"));
131
132         if (NT_STATUS_IS_OK(status)) {
133                 struct cmd_setpwent_state *state =
134                         talloc_get_type(ctx->private_data,
135                                 struct cmd_setpwent_state);
136
137                 *pwent = talloc_steal(mem_ctx, state->result);
138         }
139
140         talloc_free(ctx);
141         return status;
142 }
143