s4:kdc: remember is_krbtgt, is_rodc and is_trust samba_kdc_entry
[Samba.git] / source3 / winbindd / wb_getpwsid.c
blob01c2f9cebfbaf119f73207da63b1d020753f56ce
1 /*
2 Unix SMB/CIFS implementation.
3 async getpwsid
4 Copyright (C) Volker Lendecke 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "winbindd.h"
22 #include "librpc/gen_ndr/ndr_winbind_c.h"
23 #include "../libcli/security/security.h"
25 struct wb_getpwsid_state {
26 struct tevent_context *ev;
27 struct dom_sid sid;
28 struct wbint_userinfo *userinfo;
29 struct winbindd_pw *pw;
32 static void wb_getpwsid_queryuser_done(struct tevent_req *subreq);
34 struct tevent_req *wb_getpwsid_send(TALLOC_CTX *mem_ctx,
35 struct tevent_context *ev,
36 const struct dom_sid *user_sid,
37 struct winbindd_pw *pw)
39 struct tevent_req *req, *subreq;
40 struct wb_getpwsid_state *state;
42 req = tevent_req_create(mem_ctx, &state, struct wb_getpwsid_state);
43 if (req == NULL) {
44 return NULL;
46 sid_copy(&state->sid, user_sid);
47 state->ev = ev;
48 state->pw = pw;
50 if (dom_sid_in_domain(&global_sid_Unix_Users, user_sid)) {
51 /* unmapped Unix users must be resolved locally */
52 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
53 return tevent_req_post(req, ev);
56 subreq = wb_queryuser_send(state, ev, &state->sid);
57 if (tevent_req_nomem(subreq, req)) {
58 return tevent_req_post(req, ev);
60 tevent_req_set_callback(subreq, wb_getpwsid_queryuser_done, req);
61 return req;
64 static void wb_getpwsid_queryuser_done(struct tevent_req *subreq)
66 struct tevent_req *req = tevent_req_callback_data(
67 subreq, struct tevent_req);
68 struct wb_getpwsid_state *state = tevent_req_data(
69 req, struct wb_getpwsid_state);
70 struct winbindd_pw *pw = state->pw;
71 struct wbint_userinfo *info;
72 fstring acct_name, output_username;
73 char *mapped_name = NULL;
74 char *tmp;
75 NTSTATUS status;
77 status = wb_queryuser_recv(subreq, state, &state->userinfo);
78 TALLOC_FREE(subreq);
79 if (tevent_req_nterror(req, status)) {
80 return;
82 info = state->userinfo;
84 pw->pw_uid = info->uid;
85 pw->pw_gid = info->primary_gid;
87 fstrcpy(acct_name, info->acct_name);
88 if (!strlower_m(acct_name)) {
89 tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
90 return;
94 * TODO:
95 * This function should be called in 'idmap winbind child'. It shouldn't
96 * be a blocking call, but for this we need to add a new function for
97 * winbind.idl. This is a fix which can be backported for now.
99 status = normalize_name_map(state,
100 info->domain_name,
101 acct_name,
102 &mapped_name);
103 if (NT_STATUS_IS_OK(status)) {
104 fill_domain_username(output_username,
105 info->domain_name,
106 mapped_name, true);
107 fstrcpy(acct_name, mapped_name);
108 } else if (NT_STATUS_EQUAL(status, NT_STATUS_FILE_RENAMED)) {
109 fstrcpy(acct_name, mapped_name);
110 } else {
111 fill_domain_username(output_username,
112 info->domain_name,
113 acct_name, true);
116 strlcpy(pw->pw_name, output_username, sizeof(pw->pw_name));
118 strlcpy(pw->pw_gecos, info->full_name ? info->full_name : "",
119 sizeof(pw->pw_gecos));
121 tmp = talloc_sub_specified(
122 state, info->homedir, acct_name,
123 info->primary_group_name, info->domain_name,
124 pw->pw_uid, pw->pw_gid);
125 if (tevent_req_nomem(tmp, req)) {
126 return;
128 strlcpy(pw->pw_dir, tmp, sizeof(pw->pw_dir));
129 TALLOC_FREE(tmp);
131 tmp = talloc_sub_specified(
132 state, info->shell, acct_name,
133 info->primary_group_name, info->domain_name,
134 pw->pw_uid, pw->pw_gid);
135 if (tevent_req_nomem(tmp, req)) {
136 return;
138 strlcpy(pw->pw_shell, tmp, sizeof(pw->pw_shell));
139 TALLOC_FREE(tmp);
141 strlcpy(pw->pw_passwd, "*", sizeof(pw->pw_passwd));
143 tevent_req_done(req);
146 NTSTATUS wb_getpwsid_recv(struct tevent_req *req)
148 return tevent_req_simple_recv_ntstatus(req);