winbind: Remove a level of indirection
[samba.git] / source3 / winbindd / wb_sids2xids.c
1 /*
2    Unix SMB/CIFS implementation.
3    async sids2xids
4    Copyright (C) Volker Lendecke 2011
5    Copyright (C) Michael Adam 2012
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "winbindd.h"
23 #include "../libcli/security/security.h"
24 #include "idmap_cache.h"
25 #include "librpc/gen_ndr/ndr_winbind_c.h"
26 #include "lsa.h"
27
28 struct wb_sids2xids_state {
29         struct tevent_context *ev;
30
31         struct dom_sid *sids;
32         uint32_t num_sids;
33
34         struct id_map *cached;
35
36         struct dom_sid *non_cached;
37         uint32_t num_non_cached;
38
39         /*
40          * Domain array to use for the idmap call. The output from
41          * lookupsids cannot be used directly since for migrated
42          * objects the returned domain SID can be different that the
43          * original one. The new domain SID cannot be combined with
44          * the RID from the previous domain.
45          *
46          * The proper way would be asking for the correct RID in the
47          * new domain, but this approach avoids id mappings for
48          * invalid SIDs.
49          */
50         struct lsa_RefDomainList idmap_doms;
51
52         struct wbint_TransIDArray ids;
53 };
54
55
56 static bool wb_sids2xids_in_cache(struct dom_sid *sid, struct id_map *map);
57 static void wb_sids2xids_lookupsids_done(struct tevent_req *subreq);
58 static void wb_sids2xids_done(struct tevent_req *subreq);
59
60 struct tevent_req *wb_sids2xids_send(TALLOC_CTX *mem_ctx,
61                                      struct tevent_context *ev,
62                                      const struct dom_sid *sids,
63                                      const uint32_t num_sids)
64 {
65         struct tevent_req *req, *subreq;
66         struct wb_sids2xids_state *state;
67         uint32_t i;
68
69         req = tevent_req_create(mem_ctx, &state,
70                                 struct wb_sids2xids_state);
71         if (req == NULL) {
72                 return NULL;
73         }
74
75         state->ev = ev;
76
77         state->num_sids = num_sids;
78
79         state->sids = talloc_zero_array(state, struct dom_sid, num_sids);
80         if (tevent_req_nomem(state->sids, req)) {
81                 return tevent_req_post(req, ev);
82         }
83
84         for (i = 0; i < num_sids; i++) {
85                 sid_copy(&state->sids[i], &sids[i]);
86         }
87
88         state->cached = talloc_zero_array(state, struct id_map, num_sids);
89         if (tevent_req_nomem(state->cached, req)) {
90                 return tevent_req_post(req, ev);
91         }
92
93         state->non_cached = talloc_array(state, struct dom_sid, num_sids);
94         if (tevent_req_nomem(state->non_cached, req)) {
95                 return tevent_req_post(req, ev);
96         }
97
98         /*
99          * Extract those sids that can not be resolved from cache
100          * into a separate list to be handed to id mapping, keeping
101          * the same index.
102          */
103         for (i=0; i<state->num_sids; i++) {
104
105                 DEBUG(10, ("SID %d: %s\n", (int)i,
106                            sid_string_dbg(&state->sids[i])));
107
108                 if (wb_sids2xids_in_cache(&state->sids[i], &state->cached[i])) {
109                         continue;
110                 }
111                 sid_copy(&state->non_cached[state->num_non_cached],
112                          &state->sids[i]);
113                 state->num_non_cached += 1;
114         }
115
116         if (state->num_non_cached == 0) {
117                 tevent_req_done(req);
118                 return tevent_req_post(req, ev);
119         }
120
121         subreq = wb_lookupsids_send(state, ev, state->non_cached,
122                                     state->num_non_cached);
123         if (tevent_req_nomem(subreq, req)) {
124                 return tevent_req_post(req, ev);
125         }
126         tevent_req_set_callback(subreq, wb_sids2xids_lookupsids_done, req);
127         return req;
128 }
129
130 static bool wb_sids2xids_in_cache(struct dom_sid *sid, struct id_map *map)
131 {
132         struct unixid id;
133         bool expired;
134
135         if (!winbindd_use_idmap_cache()) {
136                 return false;
137         }
138         if (idmap_cache_find_sid2unixid(sid, &id, &expired)) {
139                 if (expired && is_domain_online(find_our_domain())) {
140                         return false;
141                 }
142                 map->sid = sid;
143                 map->xid = id;
144                 map->status = ID_MAPPED;
145                 return true;
146         }
147         return false;
148 }
149
150 static enum id_type lsa_SidType_to_id_type(const enum lsa_SidType sid_type);
151
152 static void wb_sids2xids_lookupsids_done(struct tevent_req *subreq)
153 {
154         struct tevent_req *req = tevent_req_callback_data(
155                 subreq, struct tevent_req);
156         struct wb_sids2xids_state *state = tevent_req_data(
157                 req, struct wb_sids2xids_state);
158         struct lsa_RefDomainList *domains = NULL;
159         struct lsa_TransNameArray *names = NULL;
160         struct winbindd_child *child;
161         NTSTATUS status;
162         int i;
163
164         status = wb_lookupsids_recv(subreq, state, &domains, &names);
165         TALLOC_FREE(subreq);
166         if (tevent_req_nterror(req, status)) {
167                 return;
168         }
169
170         state->ids.num_ids = state->num_non_cached;
171         state->ids.ids = talloc_array(state, struct wbint_TransID,
172                                       state->num_non_cached);
173         if (tevent_req_nomem(state->ids.ids, req)) {
174                 return;
175         }
176
177         for (i=0; i<state->num_non_cached; i++) {
178                 struct dom_sid dom_sid;
179                 struct lsa_DomainInfo *info;
180                 struct lsa_TranslatedName *n = &names->names[i];
181                 struct wbint_TransID *t = &state->ids.ids[i];
182                 int domain_index;
183
184                 sid_copy(&dom_sid, &state->non_cached[i]);
185                 sid_split_rid(&dom_sid, &t->rid);
186
187                 info = &domains->domains[n->sid_index];
188                 t->type = lsa_SidType_to_id_type(n->sid_type);
189
190                 domain_index = init_lsa_ref_domain_list(
191                         state, &state->idmap_doms, info->name.string, &dom_sid);
192                 if (domain_index == -1) {
193                         tevent_req_oom(req);
194                         return;
195                 }
196                 t->domain_index = domain_index;
197
198                 t->xid.id = UINT32_MAX;
199                 t->xid.type = t->type;
200         }
201
202         TALLOC_FREE(names);
203         TALLOC_FREE(domains);
204
205         child = idmap_child();
206
207         subreq = dcerpc_wbint_Sids2UnixIDs_send(
208                 state, state->ev, child->binding_handle, &state->idmap_doms,
209                 &state->ids);
210         if (tevent_req_nomem(subreq, req)) {
211                 return;
212         }
213         tevent_req_set_callback(subreq, wb_sids2xids_done, req);
214 }
215
216 static enum id_type lsa_SidType_to_id_type(const enum lsa_SidType sid_type)
217 {
218         enum id_type type;
219
220         switch(sid_type) {
221         case SID_NAME_COMPUTER:
222         case SID_NAME_USER:
223                 type = ID_TYPE_UID;
224                 break;
225         case SID_NAME_DOM_GRP:
226         case SID_NAME_ALIAS:
227         case SID_NAME_WKN_GRP:
228                 type = ID_TYPE_GID;
229                 break;
230         default:
231                 type = ID_TYPE_NOT_SPECIFIED;
232                 break;
233         }
234
235         return type;
236 }
237
238
239 static void wb_sids2xids_done(struct tevent_req *subreq)
240 {
241         struct tevent_req *req = tevent_req_callback_data(
242                 subreq, struct tevent_req);
243         struct wb_sids2xids_state *state = tevent_req_data(
244                 req, struct wb_sids2xids_state);
245         NTSTATUS status, result;
246
247         status = dcerpc_wbint_Sids2UnixIDs_recv(subreq, state, &result);
248         TALLOC_FREE(subreq);
249         if (any_nt_status_not_ok(status, result, &status)) {
250                 tevent_req_nterror(req, status);
251                 return;
252         }
253         tevent_req_done(req);
254 }
255
256 NTSTATUS wb_sids2xids_recv(struct tevent_req *req,
257                            struct unixid xids[], uint32_t num_xids)
258 {
259         struct wb_sids2xids_state *state = tevent_req_data(
260                 req, struct wb_sids2xids_state);
261         NTSTATUS status;
262         uint32_t i, num_non_cached;
263
264         if (tevent_req_is_nterror(req, &status)) {
265                 DEBUG(5, ("wb_sids_to_xids failed: %s\n", nt_errstr(status)));
266                 return status;
267         }
268
269         if (num_xids != state->num_sids) {
270                 DEBUG(1, ("%s: Have %u xids, caller wants %u\n", __func__,
271                           (unsigned)state->num_sids, num_xids));
272                 return NT_STATUS_INTERNAL_ERROR;
273         }
274
275         num_non_cached = 0;
276
277         for (i=0; i<state->num_sids; i++) {
278                 struct unixid xid;
279
280                 xid.id = UINT32_MAX;
281
282                 if (state->cached[i].sid != NULL) {
283                         xid = state->cached[i].xid;
284                 } else {
285                         xid = state->ids.ids[num_non_cached].xid;
286
287                         idmap_cache_set_sid2unixid(
288                                 &state->non_cached[num_non_cached],
289                                 &xid);
290
291                         num_non_cached += 1;
292                 }
293
294                 xids[i] = xid;
295         }
296
297         return NT_STATUS_OK;
298 }