idl: rebuild drsuapi.idl
[Samba/aatanasov.git] / source4 / winbind / wb_cmd_getpwuid.c
blobb4e3d972f845b0fe5b6b6f9bffa5dbd2ff67e810
1 /*
2 Unix SMB/CIFS implementation.
4 Backend for getpwuid
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 "winbind/wb_async_helpers.h"
26 #include "winbind/wb_helper.h"
27 #include "smbd/service_task.h"
28 #include "libnet/libnet_proto.h"
29 #include "param/param.h"
30 #include "libcli/security/proto.h"
31 #include "auth/credentials/credentials.h"
33 struct cmd_getpwuid_state {
34 struct composite_context *ctx;
35 struct wbsrv_service *service;
36 uid_t uid;
37 struct dom_sid *sid;
38 char *workgroup;
39 struct wbsrv_domain *domain;
41 struct winbindd_pw *result;
44 static void cmd_getpwuid_recv_sid(struct composite_context *ctx);
45 static void cmd_getpwuid_recv_domain(struct composite_context *ctx);
46 static void cmd_getpwuid_recv_user_info(struct composite_context *ctx);
47 static void cmd_getpwuid_recv_gid(struct composite_context *ctx);
49 /* Get the SID using the uid */
51 struct composite_context *wb_cmd_getpwuid_send(TALLOC_CTX *mem_ctx,
52 struct wbsrv_service *service,
53 uid_t uid)
55 struct composite_context *ctx, *result;
56 struct cmd_getpwuid_state *state;
58 DEBUG(5, ("wb_cmd_getpwuid_send called\n"));
60 result = composite_create(mem_ctx, service->task->event_ctx);
61 if (!result) return NULL;
63 state = talloc(result, struct cmd_getpwuid_state);
64 if (composite_nomem(state, result)) return result;
65 state->ctx = result;
66 result->private_data = state;
67 state->service = service;
68 state->uid = uid;
70 ctx = wb_uid2sid_send(state, service, uid);
71 if (composite_nomem(ctx, state->ctx)) return result;
73 composite_continue(result, ctx, cmd_getpwuid_recv_sid, state);
74 return result;
78 /* Receive the sid and get the domain structure with it */
80 static void cmd_getpwuid_recv_sid(struct composite_context *ctx)
82 struct cmd_getpwuid_state *state =
83 talloc_get_type(ctx->async.private_data,
84 struct cmd_getpwuid_state);
86 DEBUG(5, ("cmd_getpwuid_recv_sid called %p\n", ctx->private_data));
88 state->ctx->status = wb_uid2sid_recv(ctx, state, &state->sid);
89 if (!composite_is_ok(state->ctx)) return;
91 ctx = wb_sid2domain_send(state, state->service, state->sid);
93 composite_continue(state->ctx, ctx, cmd_getpwuid_recv_domain, state);
96 /* Receive the domain struct and call libnet to get the user info struct */
98 static void cmd_getpwuid_recv_domain(struct composite_context *ctx)
100 struct cmd_getpwuid_state *state =
101 talloc_get_type(ctx->async.private_data,
102 struct cmd_getpwuid_state);
103 struct libnet_UserInfo *user_info;
105 DEBUG(5, ("cmd_getpwuid_recv_domain called\n"));
107 state->ctx->status = wb_sid2domain_recv(ctx, &state->domain);
108 if (!composite_is_ok(state->ctx)) return;
110 user_info = talloc(state, struct libnet_UserInfo);
111 if (composite_nomem(user_info, state->ctx)) return;
113 user_info->in.level = USER_INFO_BY_SID;
114 user_info->in.data.user_sid = state->sid;
115 user_info->in.domain_name = state->domain->libnet_ctx->samr.name;
117 /* We need the workgroup later, so copy it */
118 state->workgroup = talloc_strdup(state,
119 state->domain->libnet_ctx->samr.name);
120 if (composite_nomem(state->workgroup, state->ctx)) return;
122 ctx = libnet_UserInfo_send(state->domain->libnet_ctx, state, user_info,
123 NULL);
125 composite_continue(state->ctx, ctx, cmd_getpwuid_recv_user_info, state);
128 /* Receive the user info struct and get the gid for the user */
130 static void cmd_getpwuid_recv_user_info(struct composite_context *ctx)
132 struct cmd_getpwuid_state *state =
133 talloc_get_type(ctx->async.private_data,
134 struct cmd_getpwuid_state);
135 struct libnet_UserInfo *user_info;
136 struct winbindd_pw *pw;
138 DEBUG(5, ("cmd_getpwuid_recv_user_info called\n"));
140 pw = talloc(state, struct winbindd_pw);
141 if (composite_nomem(pw, state->ctx)) return;
143 user_info = talloc(state, struct libnet_UserInfo);
144 if(composite_nomem(user_info, state->ctx)) return;
146 state->ctx->status = libnet_UserInfo_recv(ctx, state, user_info);
147 if (!composite_is_ok(state->ctx)) return;
149 WBSRV_SAMBA3_SET_STRING(pw->pw_name, user_info->out.account_name);
150 WBSRV_SAMBA3_SET_STRING(pw->pw_passwd, "*");
151 WBSRV_SAMBA3_SET_STRING(pw->pw_gecos, user_info->out.full_name);
152 WBSRV_SAMBA3_SET_STRING(pw->pw_dir,
153 lp_template_homedir(state->service->task->lp_ctx));
154 all_string_sub(pw->pw_dir, "%WORKGROUP%", state->workgroup,
155 sizeof(fstring) - 1);
156 all_string_sub(pw->pw_dir, "%ACCOUNTNAME%", user_info->out.account_name,
157 sizeof(fstring) - 1);
158 WBSRV_SAMBA3_SET_STRING(pw->pw_shell,
159 lp_template_shell(state->service->task->lp_ctx));
161 pw->pw_uid = state->uid;
163 state->result = pw;
165 ctx = wb_sid2gid_send(state, state->service,
166 user_info->out.primary_group_sid);
168 composite_continue(state->ctx, ctx, cmd_getpwuid_recv_gid, state);
171 static void cmd_getpwuid_recv_gid(struct composite_context *ctx)
173 struct cmd_getpwuid_state *state =
174 talloc_get_type(ctx->async.private_data,
175 struct cmd_getpwuid_state);
176 gid_t gid;
178 DEBUG(5, ("cmd_getpwuid_recv_gid called\n"));
180 state->ctx->status = wb_sid2gid_recv(ctx, &gid);
181 if (!composite_is_ok(state->ctx)) return;
183 state->result->pw_gid = gid;
185 composite_done(state->ctx);
188 NTSTATUS wb_cmd_getpwuid_recv(struct composite_context *ctx,
189 TALLOC_CTX *mem_ctx, struct winbindd_pw **pw)
191 NTSTATUS status = composite_wait(ctx);
193 DEBUG(5, ("wb_cmd_getpwuid_recv called\n"));
195 if (NT_STATUS_IS_OK(status)) {
196 struct cmd_getpwuid_state *state =
197 talloc_get_type(ctx->private_data,
198 struct cmd_getpwuid_state);
199 *pw = talloc_steal(mem_ctx, state->result);
201 talloc_free(ctx);
202 return status;