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/>.
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
;
36 static void cmd_setpwent_recv_domain(struct composite_context
*ctx
);
37 static void cmd_setpwent_recv_user_list(struct composite_context
*ctx
);
39 struct composite_context
*wb_cmd_setpwent_send(TALLOC_CTX
*mem_ctx
,
40 struct wbsrv_service
*service
)
42 struct composite_context
*ctx
, *result
;
43 struct cmd_setpwent_state
*state
;
45 DEBUG(5, ("wb_cmd_setpwent_send called\n"));
47 result
= composite_create(mem_ctx
, service
->task
->event_ctx
);
48 if (!result
) return NULL
;
50 state
= talloc(mem_ctx
, struct cmd_setpwent_state
);
51 if (composite_nomem(state
, result
)) return result
;
54 result
->private_data
= state
;
55 state
->service
= service
;
57 state
->result
= talloc(state
, struct wbsrv_pwent
);
58 if (composite_nomem(state
->result
, state
->ctx
)) return result
;
60 ctx
= wb_sid2domain_send(state
, service
, service
->primary_sid
);
61 if (composite_nomem(ctx
, state
->ctx
)) return result
;
63 composite_continue(state
->ctx
, ctx
, cmd_setpwent_recv_domain
, state
);
67 static void cmd_setpwent_recv_domain(struct composite_context
*ctx
)
69 struct cmd_setpwent_state
*state
= talloc_get_type(
70 ctx
->async
.private_data
, struct cmd_setpwent_state
);
71 struct wbsrv_domain
*domain
;
72 struct libnet_UserList
*user_list
;
74 DEBUG(5, ("cmd_setpwent_recv_domain called\n"));
76 state
->ctx
->status
= wb_sid2domain_recv(ctx
, &domain
);
77 if (!composite_is_ok(state
->ctx
)) return;
79 state
->libnet_ctx
= domain
->libnet_ctx
;
81 user_list
= talloc(state
->result
, struct libnet_UserList
);
82 if (composite_nomem(user_list
, state
->ctx
)) return;
84 state
->domain_name
= talloc_strdup(state
,
85 domain
->libnet_ctx
->samr
.name
);
86 user_list
->in
.domain_name
= talloc_strdup(state
,
87 domain
->libnet_ctx
->samr
.name
);
88 if (composite_nomem(user_list
->in
.domain_name
, state
->ctx
)) return;
90 /* Page size recommended by Rafal */
91 user_list
->in
.page_size
= 128;
93 /* Always get the start of the list */
94 user_list
->in
.resume_index
= 0;
96 ctx
= libnet_UserList_send(domain
->libnet_ctx
, state
->result
, user_list
,
99 state
->result
->page_index
= -1;
100 composite_continue(state
->ctx
, ctx
, cmd_setpwent_recv_user_list
, state
);
103 static void cmd_setpwent_recv_user_list(struct composite_context
*ctx
)
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 struct libnet_UserList
*user_list_send
;
109 DEBUG(5, ("cmd_setpwent_recv_user_list called\n"));
111 user_list
= talloc(state
->result
, struct libnet_UserList
);
112 if (composite_nomem(user_list
, state
->ctx
)) return;
114 state
->ctx
->status
= libnet_UserList_recv(ctx
, state
->result
,
116 if (NT_STATUS_IS_OK(state
->ctx
->status
) ||
117 NT_STATUS_EQUAL(state
->ctx
->status
, STATUS_MORE_ENTRIES
)) {
118 if (state
->result
->page_index
== -1) { /* First run*/
119 state
->result
->user_list
= user_list
;
120 state
->result
->page_index
= 0;
121 state
->result
->libnet_ctx
= state
->libnet_ctx
;
123 int i
, cnt
= state
->result
->user_list
->out
.count
124 + user_list
->out
.count
;
125 struct userlist
*tmp
;
126 tmp
= state
->result
->user_list
->out
.users
;
127 state
->result
->user_list
->out
.users
= talloc_realloc(state
->result
,
128 tmp
, struct userlist
,
130 tmp
= state
->result
->user_list
->out
.users
;
131 for(i
=0;i
<user_list
->out
.count
;i
++ ) {
132 tmp
[state
->result
->user_list
->out
.count
+ i
].username
133 = talloc_strdup(state
->result
, user_list
->out
.users
[i
].username
);
135 state
->result
->user_list
->out
.count
= cnt
;
136 talloc_free(user_list
);
139 if (NT_STATUS_IS_OK(state
->ctx
->status
) ) {
140 composite_done(state
->ctx
);
142 user_list_send
= talloc(state
->result
, struct libnet_UserList
);
143 if (composite_nomem(user_list_send
, state
->ctx
)) return;
144 user_list_send
->in
.domain_name
= talloc_strdup(state
, state
->domain_name
);
145 user_list_send
->in
.resume_index
= user_list
->out
.resume_index
;
146 user_list_send
->in
.page_size
= 128;
147 ctx
= libnet_UserList_send(state
->libnet_ctx
, state
->result
, user_list_send
, NULL
);
148 composite_continue(state
->ctx
, ctx
, cmd_setpwent_recv_user_list
, state
);
151 composite_error(state
->ctx
, state
->ctx
->status
);
156 NTSTATUS
wb_cmd_setpwent_recv(struct composite_context
*ctx
,
157 TALLOC_CTX
*mem_ctx
, struct wbsrv_pwent
**pwent
)
159 NTSTATUS status
= composite_wait(ctx
);
161 DEBUG(5, ("wb_cmd_setpwent_recv called\n"));
163 if (NT_STATUS_IS_OK(status
)) {
164 struct cmd_setpwent_state
*state
=
165 talloc_get_type(ctx
->private_data
,
166 struct cmd_setpwent_state
);
168 *pwent
= talloc_steal(mem_ctx
, state
->result
);