s4: Handle the case in secrets.ldb without name attribute
[Samba/ekacnet.git] / source4 / winbind / wb_cmd_setpwent.c
blob7fb1889be52fa5b21fe7607ff07f939cca992b4d
1 /*
2 Unix SMB/CIFS implementation.
4 Command backend for setpwent
6 Copyright (C) Kai Blin 2007
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 "winbind/wb_server.h"
25 #include "smbd/service_task.h"
27 struct cmd_setpwent_state {
28 struct composite_context *ctx;
29 struct wbsrv_service *service;
30 struct libnet_context *libnet_ctx;
32 struct wbsrv_pwent *result;
35 static void cmd_setpwent_recv_domain(struct composite_context *ctx);
36 static void cmd_setpwent_recv_user_list(struct composite_context *ctx);
38 struct composite_context *wb_cmd_setpwent_send(TALLOC_CTX *mem_ctx,
39 struct wbsrv_service *service)
41 struct composite_context *ctx, *result;
42 struct cmd_setpwent_state *state;
44 DEBUG(5, ("wb_cmd_setpwent_send called\n"));
46 result = composite_create(mem_ctx, service->task->event_ctx);
47 if (!result) return NULL;
49 state = talloc(mem_ctx, struct cmd_setpwent_state);
50 if (composite_nomem(state, result)) return result;
52 state->ctx = result;
53 result->private_data = state;
54 state->service = service;
56 state->result = talloc(state, struct wbsrv_pwent);
57 if (composite_nomem(state->result, state->ctx)) return result;
59 ctx = wb_sid2domain_send(state, service, service->primary_sid);
60 if (composite_nomem(ctx, state->ctx)) return result;
62 composite_continue(state->ctx, ctx, cmd_setpwent_recv_domain, state);
63 return result;
66 static void cmd_setpwent_recv_domain(struct composite_context *ctx)
68 struct cmd_setpwent_state *state = talloc_get_type(
69 ctx->async.private_data, struct cmd_setpwent_state);
70 struct wbsrv_domain *domain;
71 struct libnet_UserList *user_list;
73 DEBUG(5, ("cmd_setpwent_recv_domain called\n"));
75 state->ctx->status = wb_sid2domain_recv(ctx, &domain);
76 if (!composite_is_ok(state->ctx)) return;
78 state->libnet_ctx = domain->libnet_ctx;
80 user_list = talloc(state->result, struct libnet_UserList);
81 if (composite_nomem(user_list, state->ctx)) return;
83 user_list->in.domain_name = talloc_strdup(state,
84 domain->libnet_ctx->samr.name);
85 if (composite_nomem(user_list->in.domain_name, state->ctx)) return;
87 /* Page size recommended by Rafal */
88 user_list->in.page_size = 128;
90 /* Always get the start of the list */
91 user_list->in.resume_index = 0;
93 ctx = libnet_UserList_send(domain->libnet_ctx, state->result, user_list,
94 NULL);
96 composite_continue(state->ctx, ctx, cmd_setpwent_recv_user_list, state);
99 static void cmd_setpwent_recv_user_list(struct composite_context *ctx)
101 struct cmd_setpwent_state *state = talloc_get_type(
102 ctx->async.private_data, struct cmd_setpwent_state);
103 struct libnet_UserList *user_list;
105 DEBUG(5, ("cmd_setpwent_recv_user_list called\n"));
107 user_list = talloc(state->result, struct libnet_UserList);
108 if (composite_nomem(user_list, state->ctx)) return;
110 state->ctx->status = libnet_UserList_recv(ctx, state->result,
111 user_list);
112 if (!composite_is_ok(state->ctx)) return;
114 state->result->user_list = user_list;
115 state->result->page_index = 0;
116 state->result->libnet_ctx = state->libnet_ctx;
118 composite_done(state->ctx);
121 NTSTATUS wb_cmd_setpwent_recv(struct composite_context *ctx,
122 TALLOC_CTX *mem_ctx, struct wbsrv_pwent **pwent)
124 NTSTATUS status = composite_wait(ctx);
126 DEBUG(5, ("wb_cmd_setpwent_recv called\n"));
128 if (NT_STATUS_IS_OK(status)) {
129 struct cmd_setpwent_state *state =
130 talloc_get_type(ctx->private_data,
131 struct cmd_setpwent_state);
133 *pwent = talloc_steal(mem_ctx, state->result);
136 talloc_free(ctx);
137 return status;