r20116: Start merging in the work done to create the new idmap subsystem.
[kamenim/samba-autobuild/.git] / source3 / nsswitch / winbindd_async.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Async helpers for blocking functions
5
6    Copyright (C) Volker Lendecke 2005
7    Copyright (C) Gerald Carter 2006
8    
9    The helpers always consist of three functions: 
10
11    * A request setup function that takes the necessary parameters together
12      with a continuation function that is to be called upon completion
13
14    * A private continuation function that is internal only. This is to be
15      called by the lower-level functions in do_async(). Its only task is to
16      properly call the continuation function named above.
17
18    * A worker function that is called inside the appropriate child process.
19
20    This program is free software; you can redistribute it and/or modify
21    it under the terms of the GNU General Public License as published by
22    the Free Software Foundation; either version 2 of the License, or
23    (at your option) any later version.
24    
25    This program is distributed in the hope that it will be useful,
26    but WITHOUT ANY WARRANTY; without even the implied warranty of
27    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28    GNU General Public License for more details.
29    
30    You should have received a copy of the GNU General Public License
31    along with this program; if not, write to the Free Software
32    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 */
34
35 #include "includes.h"
36 #include "winbindd.h"
37
38 #undef DBGC_CLASS
39 #define DBGC_CLASS DBGC_WINBIND
40
41 struct do_async_state {
42         TALLOC_CTX *mem_ctx;
43         struct winbindd_request request;
44         struct winbindd_response response;
45         void (*cont)(TALLOC_CTX *mem_ctx,
46                      BOOL success,
47                      struct winbindd_response *response,
48                      void *c, void *private_data);
49         void *c, *private_data;
50 };
51
52 static void do_async_recv(void *private_data, BOOL success)
53 {
54         struct do_async_state *state =
55                 talloc_get_type_abort(private_data, struct do_async_state);
56
57         state->cont(state->mem_ctx, success, &state->response,
58                     state->c, state->private_data);
59 }
60
61 static void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
62                      const struct winbindd_request *request,
63                      void (*cont)(TALLOC_CTX *mem_ctx, BOOL success,
64                                   struct winbindd_response *response,
65                                   void *c, void *private_data),
66                      void *c, void *private_data)
67 {
68         struct do_async_state *state;
69
70         state = TALLOC_ZERO_P(mem_ctx, struct do_async_state);
71         if (state == NULL) {
72                 DEBUG(0, ("talloc failed\n"));
73                 cont(mem_ctx, False, NULL, c, private_data);
74                 return;
75         }
76
77         state->mem_ctx = mem_ctx;
78         state->request = *request;
79         state->request.length = sizeof(state->request);
80         state->cont = cont;
81         state->c = c;
82         state->private_data = private_data;
83
84         async_request(mem_ctx, child, &state->request,
85                       &state->response, do_async_recv, state);
86 }
87
88 void do_async_domain(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
89                      const struct winbindd_request *request,
90                      void (*cont)(TALLOC_CTX *mem_ctx, BOOL success,
91                                   struct winbindd_response *response,
92                                   void *c, void *private_data),
93                      void *c, void *private_data)
94 {
95         struct do_async_state *state;
96
97         state = TALLOC_ZERO_P(mem_ctx, struct do_async_state);
98         if (state == NULL) {
99                 DEBUG(0, ("talloc failed\n"));
100                 cont(mem_ctx, False, NULL, c, private_data);
101                 return;
102         }
103
104         state->mem_ctx = mem_ctx;
105         state->request = *request;
106         state->request.length = sizeof(state->request);
107         state->cont = cont;
108         state->c = c;
109         state->private_data = private_data;
110
111         async_domain_request(mem_ctx, domain, &state->request,
112                              &state->response, do_async_recv, state);
113 }
114
115 static void winbindd_set_mapping_recv(TALLOC_CTX *mem_ctx, BOOL success,
116                                    struct winbindd_response *response,
117                                    void *c, void *private_data)
118 {
119         void (*cont)(void *priv, BOOL succ) = (void (*)(void *, BOOL))c;
120
121         if (!success) {
122                 DEBUG(5, ("Could not trigger idmap_set_mapping\n"));
123                 cont(private_data, False);
124                 return;
125         }
126
127         if (response->result != WINBINDD_OK) {
128                 DEBUG(5, ("idmap_set_mapping returned an error\n"));
129                 cont(private_data, False);
130                 return;
131         }
132
133         cont(private_data, True);
134 }
135
136 void winbindd_set_mapping_async(TALLOC_CTX *mem_ctx, const struct id_map *map,
137                              void (*cont)(void *private_data, BOOL success),
138                              void *private_data)
139 {
140         struct winbindd_request request;
141         ZERO_STRUCT(request);
142         request.cmd = WINBINDD_DUAL_SET_MAPPING;
143         request.data.dual_idmapset.id = map->xid.id;
144         request.data.dual_idmapset.type = map->xid.type;
145         sid_to_string(request.data.dual_idmapset.sid, map->sid);
146
147         do_async(mem_ctx, idmap_child(), &request, winbindd_set_mapping_recv,
148                  (void *)cont, private_data);
149 }
150
151 enum winbindd_result winbindd_dual_set_mapping(struct winbindd_domain *domain,
152                                             struct winbindd_cli_state *state)
153 {
154         struct id_map map;
155         DOM_SID sid;
156         NTSTATUS result;
157
158         DEBUG(3, ("[%5lu]: dual_idmapset\n", (unsigned long)state->pid));
159
160         if (!string_to_sid(&sid, state->request.data.dual_idmapset.sid))
161                 return WINBINDD_ERROR;
162
163         map.sid = &sid;
164         map.xid.id = state->request.data.dual_idmapset.id;
165         map.xid.type = state->request.data.dual_idmapset.type;
166
167         result = idmap_set_mapping(&map);
168         return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR;
169 }
170
171 static void winbindd_set_hwm_recv(TALLOC_CTX *mem_ctx, BOOL success,
172                                    struct winbindd_response *response,
173                                    void *c, void *private_data)
174 {
175         void (*cont)(void *priv, BOOL succ) = (void (*)(void *, BOOL))c;
176
177         if (!success) {
178                 DEBUG(5, ("Could not trigger idmap_set_hwm\n"));
179                 cont(private_data, False);
180                 return;
181         }
182
183         if (response->result != WINBINDD_OK) {
184                 DEBUG(5, ("idmap_set_hwm returned an error\n"));
185                 cont(private_data, False);
186                 return;
187         }
188
189         cont(private_data, True);
190 }
191
192 void winbindd_set_hwm_async(TALLOC_CTX *mem_ctx, const struct unixid *xid,
193                              void (*cont)(void *private_data, BOOL success),
194                              void *private_data)
195 {
196         struct winbindd_request request;
197         ZERO_STRUCT(request);
198         request.cmd = WINBINDD_DUAL_SET_HWM;
199         request.data.dual_idmapset.id = xid->id;
200         request.data.dual_idmapset.type = xid->type;
201
202         do_async(mem_ctx, idmap_child(), &request, winbindd_set_hwm_recv,
203                  (void *)cont, private_data);
204 }
205
206 enum winbindd_result winbindd_dual_set_hwm(struct winbindd_domain *domain,
207                                             struct winbindd_cli_state *state)
208 {
209         struct unixid xid;
210         NTSTATUS result;
211
212         DEBUG(3, ("[%5lu]: dual_set_hwm\n", (unsigned long)state->pid));
213
214         xid.id = state->request.data.dual_idmapset.id;
215         xid.type = state->request.data.dual_idmapset.type;
216
217         switch (xid.type) {
218         case ID_TYPE_UID:
219                 result = idmap_set_uid_hwm(&xid);
220                 break;
221         case ID_TYPE_GID:
222                 result = idmap_set_gid_hwm(&xid);
223                 break;
224         default:
225                 return WINBINDD_ERROR;
226         }
227         return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR;
228 }
229
230 static void winbindd_sids2xids_recv(TALLOC_CTX *mem_ctx, BOOL success,
231                                struct winbindd_response *response,
232                                void *c, void *private_data)
233 {
234         void (*cont)(void *priv, BOOL succ, void *, int) =
235                 (void (*)(void *, BOOL, void *, int))c;
236
237         if (!success) {
238                 DEBUG(5, ("Could not trigger sids2xids\n"));
239                 cont(private_data, False, NULL, 0);
240                 return;
241         }
242
243         if (response->result != WINBINDD_OK) {
244                 DEBUG(5, ("sids2xids returned an error\n"));
245                 cont(private_data, False, NULL, 0);
246                 return;
247         }
248
249         cont(private_data, True, response->extra_data.data, response->length - sizeof(response));
250 }
251                          
252 void winbindd_sids2xids_async(TALLOC_CTX *mem_ctx, void *sids, int size,
253                          void (*cont)(void *private_data, BOOL success, void *data, int len),
254                          void *private_data)
255 {
256         struct winbindd_request request;
257         ZERO_STRUCT(request);
258         request.cmd = WINBINDD_DUAL_SIDS2XIDS;
259         request.extra_data.data = sids;
260         request.extra_len = size;
261         do_async(mem_ctx, idmap_child(), &request, winbindd_sids2xids_recv,
262                  (void *)cont, private_data);
263 }
264
265 enum winbindd_result winbindd_dual_sids2xids(struct winbindd_domain *domain,
266                                            struct winbindd_cli_state *state)
267 {
268         DOM_SID *sids;
269         struct unixid *xids;
270         struct id_map **ids;
271         NTSTATUS result;
272         int num, i;
273
274         DEBUG(3, ("[%5lu]: sids to unix ids\n", (unsigned long)state->pid));
275
276         sids = (DOM_SID *)state->request.extra_data.data;
277         num = state->request.extra_len / sizeof(DOM_SID);
278
279         ids = talloc_zero_array(state->mem_ctx, struct id_map *, num + 1);
280         if ( ! ids) {
281                 DEBUG(0, ("Out of memory!\n"));
282                 return WINBINDD_ERROR;
283         }
284         for (i = 0; i < num; i++) {
285                 ids[i] = talloc(ids, struct id_map);
286                 if ( ! ids[i]) {
287                         DEBUG(0, ("Out of memory!\n"));
288                         talloc_free(ids);
289                         return WINBINDD_ERROR;
290                 }
291                 ids[i]->sid = &sids[i];
292         }
293
294         result = idmap_sids_to_unixids(ids);
295
296         if (NT_STATUS_IS_OK(result)) {
297
298                 xids = SMB_MALLOC_ARRAY(struct unixid, num);
299                 if ( ! xids) {
300                         DEBUG(0, ("Out of memory!\n"));
301                         talloc_free(ids);
302                         return WINBINDD_ERROR;
303                 }
304                 
305                 for (i = 0; i < num; i++) {
306                         if (ids[i]->mapped) {
307                                 xids[i].type = ids[i]->xid.type;
308                                 xids[i].id = ids[i]->xid.id;
309                         } else {
310                                 xids[i].type = -1;
311                         }
312                 }
313
314                 state->response.length = sizeof(state->response) + (sizeof(struct unixid) * num);
315                 state->response.extra_data.data = xids;
316
317         } else {
318                 DEBUG (2, ("idmap_sids_to_unixids returned an error: 0x%08x\n", NT_STATUS_V(result)));
319                 talloc_free(ids);
320                 return WINBINDD_ERROR;
321         }
322
323         talloc_free(ids);
324         return WINBINDD_OK;
325 }
326
327 static void winbindd_sid2uid_recv(TALLOC_CTX *mem_ctx, BOOL success,
328                                struct winbindd_response *response,
329                                void *c, void *private_data)
330 {
331         void (*cont)(void *priv, BOOL succ, uid_t uid) =
332                 (void (*)(void *, BOOL, uid_t))c;
333
334         if (!success) {
335                 DEBUG(5, ("Could not trigger sid2uid\n"));
336                 cont(private_data, False, 0);
337                 return;
338         }
339
340         if (response->result != WINBINDD_OK) {
341                 DEBUG(5, ("sid2uid returned an error\n"));
342                 cont(private_data, False, 0);
343                 return;
344         }
345
346         cont(private_data, True, response->data.uid);
347 }
348                          
349 void winbindd_sid2uid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
350                          void (*cont)(void *private_data, BOOL success, uid_t uid),
351                          void *private_data)
352 {
353         struct winbindd_request request;
354         ZERO_STRUCT(request);
355         request.cmd = WINBINDD_DUAL_SID2UID;
356         sid_to_string(request.data.dual_sid2id.sid, sid);
357         do_async(mem_ctx, idmap_child(), &request, winbindd_sid2uid_recv,
358                  (void *)cont, private_data);
359 }
360
361 enum winbindd_result winbindd_dual_sid2uid(struct winbindd_domain *domain,
362                                            struct winbindd_cli_state *state)
363 {
364         DOM_SID sid;
365         NTSTATUS result;
366
367         DEBUG(3, ("[%5lu]: sid to uid %s\n", (unsigned long)state->pid,
368                   state->request.data.dual_sid2id.sid));
369
370         if (!string_to_sid(&sid, state->request.data.dual_sid2id.sid)) {
371                 DEBUG(1, ("Could not get convert sid %s from string\n",
372                           state->request.data.dual_sid2id.sid));
373                 return WINBINDD_ERROR;
374         }
375
376         /* Find uid for this sid and return it, possibly ask the slow remote idmap */
377
378         result = idmap_sid_to_uid(&sid, &(state->response.data.uid));
379
380         return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR;
381 }
382
383 #if 0   /* not used */
384 static void uid2name_recv(TALLOC_CTX *mem_ctx, BOOL success,
385                           struct winbindd_response *response,
386                           void *c, void *private_data);
387
388 void winbindd_uid2name_async(TALLOC_CTX *mem_ctx, uid_t uid,
389                              void (*cont)(void *private_data, BOOL success,
390                                           const char *name),
391                              void *private_data)
392 {
393         struct winbindd_request request;
394         ZERO_STRUCT(request);
395         request.cmd = WINBINDD_DUAL_UID2NAME;
396         request.data.uid = uid;
397         do_async(mem_ctx, idmap_child(), &request, uid2name_recv,
398                  (void *)cont, private_data);
399 }
400 #endif  /* not used */
401
402 enum winbindd_result winbindd_dual_uid2name(struct winbindd_domain *domain,
403                                             struct winbindd_cli_state *state)
404 {
405         struct passwd *pw;
406
407         DEBUG(3, ("[%5lu]: uid2name %lu\n", (unsigned long)state->pid, 
408                   (unsigned long)state->request.data.uid));
409
410         pw = getpwuid(state->request.data.uid);
411         if (pw == NULL) {
412                 DEBUG(5, ("User %lu not found\n",
413                           (unsigned long)state->request.data.uid));
414                 return WINBINDD_ERROR;
415         }
416
417         fstrcpy(state->response.data.name.name, pw->pw_name);
418         return WINBINDD_OK;
419 }
420
421 #if 0   /* not used */
422 static void uid2name_recv(TALLOC_CTX *mem_ctx, BOOL success,
423                           struct winbindd_response *response,
424                           void *c, void *private_data)
425 {
426         void (*cont)(void *priv, BOOL succ, const char *name) =
427                 (void (*)(void *, BOOL, const char *))c;
428
429         if (!success) {
430                 DEBUG(5, ("Could not trigger uid2name\n"));
431                 cont(private_data, False, NULL);
432                 return;
433         }
434
435         if (response->result != WINBINDD_OK) {
436                 DEBUG(5, ("uid2name returned an error\n"));
437                 cont(private_data, False, NULL);
438                 return;
439         }
440
441         cont(private_data, True, response->data.name.name);
442 }
443
444 static void name2uid_recv(TALLOC_CTX *mem_ctx, BOOL success,
445                           struct winbindd_response *response,
446                           void *c, void *private_data);
447
448 static void winbindd_name2uid_async(TALLOC_CTX *mem_ctx, const char *name,
449                                     void (*cont)(void *private_data, BOOL success,
450                                                  uid_t uid),
451                                     void *private_data)
452 {
453         struct winbindd_request request;
454         ZERO_STRUCT(request);
455         request.cmd = WINBINDD_DUAL_NAME2UID;
456         fstrcpy(request.data.username, name);
457         do_async(mem_ctx, idmap_child(), &request, name2uid_recv,
458                  (void *)cont, private_data);
459 }
460 #endif  /* not used */
461
462 enum winbindd_result winbindd_dual_name2uid(struct winbindd_domain *domain,
463                                             struct winbindd_cli_state *state)
464 {
465         struct passwd *pw;
466
467         /* Ensure null termination */
468         state->request.data.username
469                 [sizeof(state->request.data.username)-1] = '\0';
470
471         DEBUG(3, ("[%5lu]: name2uid %s\n", (unsigned long)state->pid, 
472                   state->request.data.username));
473
474         pw = getpwnam(state->request.data.username);
475         if (pw == NULL) {
476                 return WINBINDD_ERROR;
477         }
478
479         state->response.data.uid = pw->pw_uid;
480         return WINBINDD_OK;
481 }
482
483 #if 0   /* not used */
484 static void name2uid_recv(TALLOC_CTX *mem_ctx, BOOL success,
485                           struct winbindd_response *response,
486                           void *c, void *private_data)
487 {
488         void (*cont)(void *priv, BOOL succ, uid_t uid) =
489                 (void (*)(void *, BOOL, uid_t))c;
490
491         if (!success) {
492                 DEBUG(5, ("Could not trigger name2uid\n"));
493                 cont(private_data, False, 0);
494                 return;
495         }
496
497         if (response->result != WINBINDD_OK) {
498                 DEBUG(5, ("name2uid returned an error\n"));
499                 cont(private_data, False, 0);
500                 return;
501         }
502
503         cont(private_data, True, response->data.uid);
504 }
505 #endif  /* not used */
506
507 static void winbindd_sid2gid_recv(TALLOC_CTX *mem_ctx, BOOL success,
508                                struct winbindd_response *response,
509                                void *c, void *private_data)
510 {
511         void (*cont)(void *priv, BOOL succ, gid_t gid) =
512                 (void (*)(void *, BOOL, gid_t))c;
513
514         if (!success) {
515                 DEBUG(5, ("Could not trigger sid2gid\n"));
516                 cont(private_data, False, 0);
517                 return;
518         }
519
520         if (response->result != WINBINDD_OK) {
521                 DEBUG(5, ("sid2gid returned an error\n"));
522                 cont(private_data, False, 0);
523                 return;
524         }
525
526         cont(private_data, True, response->data.gid);
527 }
528                          
529 void winbindd_sid2gid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
530                          void (*cont)(void *private_data, BOOL success, gid_t gid),
531                          void *private_data)
532 {
533         struct winbindd_request request;
534         ZERO_STRUCT(request);
535         request.cmd = WINBINDD_DUAL_SID2GID;
536         sid_to_string(request.data.dual_sid2id.sid, sid);
537
538         DEBUG(7,("idmap_sid2gid_async: Resolving %s to a gid\n", 
539                 request.data.dual_sid2id.sid));
540
541         do_async(mem_ctx, idmap_child(), &request, winbindd_sid2gid_recv,
542                  (void *)cont, private_data);
543 }
544
545 enum winbindd_result winbindd_dual_sid2gid(struct winbindd_domain *domain,
546                                            struct winbindd_cli_state *state)
547 {
548         DOM_SID sid;
549         NTSTATUS result;
550
551         DEBUG(3, ("[%5lu]: sid to gid %s\n", (unsigned long)state->pid,
552                   state->request.data.dual_sid2id.sid));
553
554         if (!string_to_sid(&sid, state->request.data.dual_sid2id.sid)) {
555                 DEBUG(1, ("Could not get convert sid %s from string\n",
556                           state->request.data.dual_sid2id.sid));
557                 return WINBINDD_ERROR;
558         }
559
560         /* Find gid for this sid and return it, possibly ask the slow remote idmap */
561
562         result = idmap_sid_to_gid(&sid, &state->response.data.gid);
563         
564         DEBUG(10, ("winbindd_dual_sid2gid: 0x%08x - %s - %u\n", NT_STATUS_V(result), sid_string_static(&sid), state->response.data.gid));
565
566         return NT_STATUS_IS_OK(result) ? WINBINDD_OK : WINBINDD_ERROR;
567 }
568
569 static void gid2name_recv(TALLOC_CTX *mem_ctx, BOOL success,
570                           struct winbindd_response *response,
571                           void *c, void *private_data)
572 {
573         void (*cont)(void *priv, BOOL succ, const char *name) =
574                 (void (*)(void *, BOOL, const char *))c;
575
576         if (!success) {
577                 DEBUG(5, ("Could not trigger gid2name\n"));
578                 cont(private_data, False, NULL);
579                 return;
580         }
581
582         if (response->result != WINBINDD_OK) {
583                 DEBUG(5, ("gid2name returned an error\n"));
584                 cont(private_data, False, NULL);
585                 return;
586         }
587
588         cont(private_data, True, response->data.name.name);
589 }
590
591 void winbindd_gid2name_async(TALLOC_CTX *mem_ctx, gid_t gid,
592                              void (*cont)(void *private_data, BOOL success,
593                                           const char *name),
594                              void *private_data)
595 {
596         struct winbindd_request request;
597         ZERO_STRUCT(request);
598         request.cmd = WINBINDD_DUAL_GID2NAME;
599         request.data.gid = gid;
600         do_async(mem_ctx, idmap_child(), &request, gid2name_recv,
601                  (void *)cont, private_data);
602 }
603
604 enum winbindd_result winbindd_dual_gid2name(struct winbindd_domain *domain,
605                                             struct winbindd_cli_state *state)
606 {
607         struct group *gr;
608
609         DEBUG(3, ("[%5lu]: gid2name %lu\n", (unsigned long)state->pid, 
610                   (unsigned long)state->request.data.gid));
611
612         gr = getgrgid(state->request.data.gid);
613         if (gr == NULL)
614                 return WINBINDD_ERROR;
615
616         fstrcpy(state->response.data.name.name, gr->gr_name);
617         return WINBINDD_OK;
618 }
619
620 #if 0   /* not used */
621 static void name2gid_recv(TALLOC_CTX *mem_ctx, BOOL success,
622                           struct winbindd_response *response,
623                           void *c, void *private_data);
624
625 static void winbindd_name2gid_async(TALLOC_CTX *mem_ctx, const char *name,
626                                     void (*cont)(void *private_data, BOOL success,
627                                                  gid_t gid),
628                                     void *private_data)
629 {
630         struct winbindd_request request;
631         ZERO_STRUCT(request);
632         request.cmd = WINBINDD_DUAL_NAME2GID;
633         fstrcpy(request.data.groupname, name);
634         do_async(mem_ctx, idmap_child(), &request, name2gid_recv,
635                  (void *)cont, private_data);
636 }
637 #endif  /* not used */
638
639 enum winbindd_result winbindd_dual_name2gid(struct winbindd_domain *domain,
640                                             struct winbindd_cli_state *state)
641 {
642         struct group *gr;
643
644         /* Ensure null termination */
645         state->request.data.groupname
646                 [sizeof(state->request.data.groupname)-1] = '\0';
647
648         DEBUG(3, ("[%5lu]: name2gid %s\n", (unsigned long)state->pid, 
649                   state->request.data.groupname));
650
651         gr = getgrnam(state->request.data.groupname);
652         if (gr == NULL) {
653                 return WINBINDD_ERROR;
654         }
655
656         state->response.data.gid = gr->gr_gid;
657         return WINBINDD_OK;
658 }
659
660 #if 0   /* not used */
661 static void name2gid_recv(TALLOC_CTX *mem_ctx, BOOL success,
662                           struct winbindd_response *response,
663                           void *c, void *private_data)
664 {
665         void (*cont)(void *priv, BOOL succ, gid_t gid) =
666                 (void (*)(void *, BOOL, gid_t))c;
667
668         if (!success) {
669                 DEBUG(5, ("Could not trigger name2gid\n"));
670                 cont(private_data, False, 0);
671                 return;
672         }
673
674         if (response->result != WINBINDD_OK) {
675                 DEBUG(5, ("name2gid returned an error\n"));
676                 cont(private_data, False, 0);
677                 return;
678         }
679
680         cont(private_data, True, response->data.gid);
681 }
682 #endif  /* not used */
683
684 static void lookupsid_recv(TALLOC_CTX *mem_ctx, BOOL success,
685                            struct winbindd_response *response,
686                            void *c, void *private_data)
687 {
688         void (*cont)(void *priv, BOOL succ, const char *dom_name,
689                      const char *name, enum lsa_SidType type) =
690                 (void (*)(void *, BOOL, const char *, const char *,
691                           enum lsa_SidType))c;
692
693         if (!success) {
694                 DEBUG(5, ("Could not trigger lookupsid\n"));
695                 cont(private_data, False, NULL, NULL, SID_NAME_UNKNOWN);
696                 return;
697         }
698
699         if (response->result != WINBINDD_OK) {
700                 DEBUG(5, ("lookupsid returned an error\n"));
701                 cont(private_data, False, NULL, NULL, SID_NAME_UNKNOWN);
702                 return;
703         }
704
705         cont(private_data, True, response->data.name.dom_name,
706              response->data.name.name,
707              (enum lsa_SidType)response->data.name.type);
708 }
709
710 void winbindd_lookupsid_async(TALLOC_CTX *mem_ctx, const DOM_SID *sid,
711                               void (*cont)(void *private_data, BOOL success,
712                                            const char *dom_name,
713                                            const char *name,
714                                            enum lsa_SidType type),
715                               void *private_data)
716 {
717         struct winbindd_domain *domain;
718         struct winbindd_request request;
719
720         domain = find_lookup_domain_from_sid(sid);
721         if (domain == NULL) {
722                 DEBUG(5, ("Could not find domain for sid %s\n",
723                           sid_string_static(sid)));
724                 cont(private_data, False, NULL, NULL, SID_NAME_UNKNOWN);
725                 return;
726         }
727
728         ZERO_STRUCT(request);
729         request.cmd = WINBINDD_LOOKUPSID;
730         fstrcpy(request.data.sid, sid_string_static(sid));
731
732         do_async_domain(mem_ctx, domain, &request, lookupsid_recv,
733                         (void *)cont, private_data);
734 }
735
736 enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
737                                              struct winbindd_cli_state *state)
738 {
739         enum lsa_SidType type;
740         DOM_SID sid;
741         char *name = NULL;
742         char *dom_name = NULL;
743
744         /* Ensure null termination */
745         state->request.data.sid[sizeof(state->request.data.sid)-1]='\0';
746
747         DEBUG(3, ("[%5lu]: lookupsid %s\n", (unsigned long)state->pid, 
748                   state->request.data.sid));
749
750         /* Lookup sid from PDC using lsa_lookup_sids() */
751
752         if (!string_to_sid(&sid, state->request.data.sid)) {
753                 DEBUG(5, ("%s not a SID\n", state->request.data.sid));
754                 return WINBINDD_ERROR;
755         }
756
757         /* Lookup the sid */
758
759         if (!winbindd_lookup_name_by_sid(state->mem_ctx, &sid, dom_name, name,
760                                          &type)) {
761                 TALLOC_FREE(dom_name);
762                 TALLOC_FREE(name);
763                 return WINBINDD_ERROR;
764         }
765
766         fstrcpy(state->response.data.name.dom_name, dom_name);
767         fstrcpy(state->response.data.name.name, name);
768         state->response.data.name.type = type;
769
770         TALLOC_FREE(dom_name);
771         TALLOC_FREE(name);
772         return WINBINDD_OK;
773 }
774
775 static void lookupname_recv(TALLOC_CTX *mem_ctx, BOOL success,
776                             struct winbindd_response *response,
777                             void *c, void *private_data)
778 {
779         void (*cont)(void *priv, BOOL succ, const DOM_SID *sid,
780                      enum lsa_SidType type) =
781                 (void (*)(void *, BOOL, const DOM_SID *, enum lsa_SidType))c;
782         DOM_SID sid;
783
784         if (!success) {
785                 DEBUG(5, ("Could not trigger lookup_name\n"));
786                 cont(private_data, False, NULL, SID_NAME_UNKNOWN);
787                 return;
788         }
789
790         if (response->result != WINBINDD_OK) {
791                 DEBUG(5, ("lookup_name returned an error\n"));
792                 cont(private_data, False, NULL, SID_NAME_UNKNOWN);
793                 return;
794         }
795
796         if (!string_to_sid(&sid, response->data.sid.sid)) {
797                 DEBUG(0, ("Could not convert string %s to sid\n",
798                           response->data.sid.sid));
799                 cont(private_data, False, NULL, SID_NAME_UNKNOWN);
800                 return;
801         }
802
803         cont(private_data, True, &sid,
804              (enum lsa_SidType)response->data.sid.type);
805 }
806
807 void winbindd_lookupname_async(TALLOC_CTX *mem_ctx, const char *dom_name,
808                                const char *name,
809                                void (*cont)(void *private_data, BOOL success,
810                                             const DOM_SID *sid,
811                                             enum lsa_SidType type),
812                                void *private_data)
813 {
814         struct winbindd_request request;
815         struct winbindd_domain *domain;
816
817         domain = find_lookup_domain_from_name(dom_name);
818
819         if (domain == NULL) {
820                 DEBUG(5, ("Could not find domain for name %s\n", dom_name));
821                 cont(private_data, False, NULL, SID_NAME_UNKNOWN);
822                 return;
823         }
824
825         ZERO_STRUCT(request);
826         request.cmd = WINBINDD_LOOKUPNAME;
827         fstrcpy(request.data.name.dom_name, dom_name);
828         fstrcpy(request.data.name.name, name);
829
830         do_async_domain(mem_ctx, domain, &request, lookupname_recv,
831                         (void *)cont, private_data);
832 }
833
834 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
835                                               struct winbindd_cli_state *state)
836 {
837         enum lsa_SidType type;
838         char *name_domain, *name_user;
839         DOM_SID sid;
840         char *p;
841
842         /* Ensure null termination */
843         state->request.data.sid[sizeof(state->request.data.name.dom_name)-1]='\0';
844
845         /* Ensure null termination */
846         state->request.data.sid[sizeof(state->request.data.name.name)-1]='\0';
847
848         /* cope with the name being a fully qualified name */
849         p = strstr(state->request.data.name.name, lp_winbind_separator());
850         if (p) {
851                 *p = 0;
852                 name_domain = state->request.data.name.name;
853                 name_user = p+1;
854         } else {
855                 name_domain = state->request.data.name.dom_name;
856                 name_user = state->request.data.name.name;
857         }
858
859         DEBUG(3, ("[%5lu]: lookupname %s%s%s\n", (unsigned long)state->pid,
860                   name_domain, lp_winbind_separator(), name_user));
861
862         /* Lookup name from PDC using lsa_lookup_names() */
863         if (!winbindd_lookup_sid_by_name(state->mem_ctx, domain, name_domain,
864                                          name_user, &sid, &type)) {
865                 return WINBINDD_ERROR;
866         }
867
868         sid_to_string(state->response.data.sid.sid, &sid);
869         state->response.data.sid.type = type;
870
871         return WINBINDD_OK;
872 }
873
874 BOOL print_sidlist(TALLOC_CTX *mem_ctx, const DOM_SID *sids,
875                    size_t num_sids, char **result, ssize_t *len)
876 {
877         size_t i;
878         size_t buflen = 0;
879
880         *len = 0;
881         *result = NULL;
882         for (i=0; i<num_sids; i++) {
883                 sprintf_append(mem_ctx, result, len, &buflen,
884                                "%s\n", sid_string_static(&sids[i]));
885         }
886
887         if ((num_sids != 0) && (*result == NULL)) {
888                 return False;
889         }
890
891         return True;
892 }
893
894 static BOOL parse_sidlist(TALLOC_CTX *mem_ctx, char *sidstr,
895                           DOM_SID **sids, size_t *num_sids)
896 {
897         char *p, *q;
898
899         p = sidstr;
900         if (p == NULL)
901                 return False;
902
903         while (p[0] != '\0') {
904                 DOM_SID sid;
905                 q = strchr(p, '\n');
906                 if (q == NULL) {
907                         DEBUG(0, ("Got invalid sidstr: %s\n", p));
908                         return False;
909                 }
910                 *q = '\0';
911                 q += 1;
912                 if (!string_to_sid(&sid, p)) {
913                         DEBUG(0, ("Could not parse sid %s\n", p));
914                         return False;
915                 }
916                 if (!add_sid_to_array(mem_ctx, &sid, sids, num_sids)) {
917                         return False;
918                 }
919                 p = q;
920         }
921         return True;
922 }
923
924 static BOOL parse_ridlist(TALLOC_CTX *mem_ctx, char *ridstr,
925                           uint32 **rids, size_t *num_rids)
926 {
927         char *p;
928
929         p = ridstr;
930         if (p == NULL)
931                 return False;
932
933         while (p[0] != '\0') {
934                 uint32 rid;
935                 char *q;
936                 rid = strtoul(p, &q, 10);
937                 if (*q != '\n') {
938                         DEBUG(0, ("Got invalid ridstr: %s\n", p));
939                         return False;
940                 }
941                 p = q+1;
942                 ADD_TO_ARRAY(mem_ctx, uint32, rid, rids, num_rids);
943         }
944         return True;
945 }
946
947 enum winbindd_result winbindd_dual_lookuprids(struct winbindd_domain *domain,
948                                               struct winbindd_cli_state *state)
949 {
950         uint32 *rids = NULL;
951         size_t i, buflen, num_rids = 0;
952         ssize_t len;
953         DOM_SID domain_sid;
954         char *domain_name;
955         char **names;
956         enum lsa_SidType *types;
957         NTSTATUS status;
958         char *result;
959
960         DEBUG(10, ("Looking up RIDs for domain %s (%s)\n",
961                    state->request.domain_name,
962                    state->request.data.sid));
963
964         if (!parse_ridlist(state->mem_ctx, state->request.extra_data.data,
965                            &rids, &num_rids)) {
966                 DEBUG(5, ("Could not parse ridlist\n"));
967                 return WINBINDD_ERROR;
968         }
969
970         if (!string_to_sid(&domain_sid, state->request.data.sid)) {
971                 DEBUG(5, ("Could not parse domain sid %s\n",
972                           state->request.data.sid));
973                 return WINBINDD_ERROR;
974         }
975
976         status = domain->methods->rids_to_names(domain, state->mem_ctx,
977                                                 &domain_sid, rids, num_rids,
978                                                 &domain_name,
979                                                 &names, &types);
980
981         if (!NT_STATUS_IS_OK(status) &&
982             !NT_STATUS_EQUAL(status, STATUS_SOME_UNMAPPED)) {
983                 return WINBINDD_ERROR;
984         }
985
986         len = 0;
987         buflen = 0;
988         result = NULL;
989
990         for (i=0; i<num_rids; i++) {
991                 sprintf_append(state->mem_ctx, &result, &len, &buflen,
992                                "%d %s\n", types[i], names[i]);
993         }
994
995         fstrcpy(state->response.data.domain_name, domain_name);
996
997         if (result != NULL) {
998                 state->response.extra_data.data = SMB_STRDUP(result);
999                 state->response.length += len+1;
1000         }
1001
1002         return WINBINDD_OK;
1003 }
1004
1005 static void getsidaliases_recv(TALLOC_CTX *mem_ctx, BOOL success,
1006                                struct winbindd_response *response,
1007                                void *c, void *private_data)
1008 {
1009         void (*cont)(void *priv, BOOL succ,
1010                      DOM_SID *aliases, size_t num_aliases) =
1011                 (void (*)(void *, BOOL, DOM_SID *, size_t))c;
1012         char *aliases_str;
1013         DOM_SID *sids = NULL;
1014         size_t num_sids = 0;
1015
1016         if (!success) {
1017                 DEBUG(5, ("Could not trigger getsidaliases\n"));
1018                 cont(private_data, success, NULL, 0);
1019                 return;
1020         }
1021
1022         if (response->result != WINBINDD_OK) {
1023                 DEBUG(5, ("getsidaliases returned an error\n"));
1024                 cont(private_data, False, NULL, 0);
1025                 return;
1026         }
1027
1028         aliases_str = (char *)response->extra_data.data;
1029
1030         if (aliases_str == NULL) {
1031                 DEBUG(10, ("getsidaliases return 0 SIDs\n"));
1032                 cont(private_data, True, NULL, 0);
1033                 return;
1034         }
1035
1036         if (!parse_sidlist(mem_ctx, aliases_str, &sids, &num_sids)) {
1037                 DEBUG(0, ("Could not parse sids\n"));
1038                 cont(private_data, False, NULL, 0);
1039                 return;
1040         }
1041
1042         SAFE_FREE(response->extra_data.data);
1043
1044         cont(private_data, True, sids, num_sids);
1045 }
1046
1047 void winbindd_getsidaliases_async(struct winbindd_domain *domain,
1048                                   TALLOC_CTX *mem_ctx,
1049                                   const DOM_SID *sids, size_t num_sids,
1050                                   void (*cont)(void *private_data,
1051                                                BOOL success,
1052                                                const DOM_SID *aliases,
1053                                                size_t num_aliases),
1054                                   void *private_data)
1055 {
1056         struct winbindd_request request;
1057         char *sidstr = NULL;
1058         ssize_t len;
1059
1060         if (num_sids == 0) {
1061                 cont(private_data, True, NULL, 0);
1062                 return;
1063         }
1064
1065         if (!print_sidlist(mem_ctx, sids, num_sids, &sidstr, &len)) {
1066                 cont(private_data, False, NULL, 0);
1067                 return;
1068         }
1069
1070         ZERO_STRUCT(request);
1071         request.cmd = WINBINDD_DUAL_GETSIDALIASES;
1072         request.extra_len = len;
1073         request.extra_data.data = sidstr;
1074
1075         do_async_domain(mem_ctx, domain, &request, getsidaliases_recv,
1076                         (void *)cont, private_data);
1077 }
1078
1079 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
1080                                                  struct winbindd_cli_state *state)
1081 {
1082         DOM_SID *sids = NULL;
1083         size_t num_sids = 0;
1084         char *sidstr;
1085         ssize_t len;
1086         size_t i;
1087         uint32 num_aliases;
1088         uint32 *alias_rids;
1089         NTSTATUS result;
1090
1091         DEBUG(3, ("[%5lu]: getsidaliases\n", (unsigned long)state->pid));
1092
1093         sidstr = state->request.extra_data.data;
1094         if (sidstr == NULL)
1095                 sidstr = talloc_strdup(state->mem_ctx, "\n"); /* No SID */
1096
1097         DEBUG(10, ("Sidlist: %s\n", sidstr));
1098
1099         if (!parse_sidlist(state->mem_ctx, sidstr, &sids, &num_sids)) {
1100                 DEBUG(0, ("Could not parse SID list: %s\n", sidstr));
1101                 return WINBINDD_ERROR;
1102         }
1103
1104         num_aliases = 0;
1105         alias_rids = NULL;
1106
1107         result = domain->methods->lookup_useraliases(domain,
1108                                                      state->mem_ctx,
1109                                                      num_sids, sids,
1110                                                      &num_aliases,
1111                                                      &alias_rids);
1112
1113         if (!NT_STATUS_IS_OK(result)) {
1114                 DEBUG(3, ("Could not lookup_useraliases: %s\n",
1115                           nt_errstr(result)));
1116                 return WINBINDD_ERROR;
1117         }
1118
1119         num_sids = 0;
1120         sids = NULL;
1121
1122         DEBUG(10, ("Got %d aliases\n", num_aliases));
1123
1124         for (i=0; i<num_aliases; i++) {
1125                 DOM_SID sid;
1126                 DEBUGADD(10, (" rid %d\n", alias_rids[i]));
1127                 sid_copy(&sid, &domain->sid);
1128                 sid_append_rid(&sid, alias_rids[i]);
1129                 if (!add_sid_to_array(state->mem_ctx, &sid, &sids, &num_sids)) {
1130                         return WINBINDD_ERROR;
1131                 }
1132         }
1133
1134
1135         if (!print_sidlist(NULL, sids, num_sids, &sidstr, &len)) {
1136                 DEBUG(0, ("Could not print_sidlist\n"));
1137                 state->response.extra_data.data = NULL;
1138                 return WINBINDD_ERROR;
1139         }
1140
1141         state->response.extra_data.data = sidstr;
1142
1143         if (state->response.extra_data.data != NULL) {
1144                 DEBUG(10, ("aliases_list: %s\n",
1145                            (char *)state->response.extra_data.data));
1146                 state->response.length += len+1;
1147         }
1148         
1149         return WINBINDD_OK;
1150 }
1151
1152 struct gettoken_state {
1153         TALLOC_CTX *mem_ctx;
1154         DOM_SID user_sid;
1155         struct winbindd_domain *alias_domain;
1156         struct winbindd_domain *local_alias_domain;
1157         struct winbindd_domain *builtin_domain;
1158         DOM_SID *sids;
1159         size_t num_sids;
1160         void (*cont)(void *private_data, BOOL success, DOM_SID *sids, size_t num_sids);
1161         void *private_data;
1162 };
1163
1164 static void gettoken_recvdomgroups(TALLOC_CTX *mem_ctx, BOOL success,
1165                                    struct winbindd_response *response,
1166                                    void *c, void *private_data);
1167 static void gettoken_recvaliases(void *private_data, BOOL success,
1168                                  const DOM_SID *aliases,
1169                                  size_t num_aliases);
1170                                  
1171
1172 void winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid,
1173                              void (*cont)(void *private_data, BOOL success,
1174                                           DOM_SID *sids, size_t num_sids),
1175                              void *private_data)
1176 {
1177         struct winbindd_domain *domain;
1178         struct winbindd_request request;
1179         struct gettoken_state *state;
1180
1181         state = TALLOC_ZERO_P(mem_ctx, struct gettoken_state);
1182         if (state == NULL) {
1183                 DEBUG(0, ("talloc failed\n"));
1184                 cont(private_data, False, NULL, 0);
1185                 return;
1186         }
1187
1188         state->mem_ctx = mem_ctx;
1189         sid_copy(&state->user_sid, user_sid);
1190         state->alias_domain = find_our_domain();
1191         state->local_alias_domain = find_domain_from_name( get_global_sam_name() );
1192         state->builtin_domain = find_builtin_domain();
1193         state->cont = cont;
1194         state->private_data = private_data;
1195
1196         domain = find_domain_from_sid_noinit(user_sid);
1197         if (domain == NULL) {
1198                 DEBUG(5, ("Could not find domain from SID %s\n",
1199                           sid_string_static(user_sid)));
1200                 cont(private_data, False, NULL, 0);
1201                 return;
1202         }
1203
1204         ZERO_STRUCT(request);
1205         request.cmd = WINBINDD_GETUSERDOMGROUPS;
1206         fstrcpy(request.data.sid, sid_string_static(user_sid));
1207
1208         do_async_domain(mem_ctx, domain, &request, gettoken_recvdomgroups,
1209                         NULL, state);
1210 }
1211
1212 static void gettoken_recvdomgroups(TALLOC_CTX *mem_ctx, BOOL success,
1213                                    struct winbindd_response *response,
1214                                    void *c, void *private_data)
1215 {
1216         struct gettoken_state *state =
1217                 talloc_get_type_abort(private_data, struct gettoken_state);
1218         char *sids_str;
1219         
1220         if (!success) {
1221                 DEBUG(10, ("Could not get domain groups\n"));
1222                 state->cont(state->private_data, False, NULL, 0);
1223                 return;
1224         }
1225
1226         sids_str = (char *)response->extra_data.data;
1227
1228         if (sids_str == NULL) {
1229                 /* This could be normal if we are dealing with a
1230                    local user and local groups */
1231
1232                 if ( !sid_check_is_in_our_domain( &state->user_sid ) ) {
1233                         DEBUG(10, ("Received no domain groups\n"));
1234                         state->cont(state->private_data, True, NULL, 0);
1235                         return;
1236                 }
1237         }
1238
1239         state->sids = NULL;
1240         state->num_sids = 0;
1241
1242         if (!add_sid_to_array(mem_ctx, &state->user_sid, &state->sids,
1243                          &state->num_sids)) {
1244                 DEBUG(0, ("Out of memory\n"));
1245                 state->cont(state->private_data, False, NULL, 0);
1246                 return;
1247         }
1248
1249         if (sids_str && !parse_sidlist(mem_ctx, sids_str, &state->sids,
1250                            &state->num_sids)) {
1251                 DEBUG(0, ("Could not parse sids\n"));
1252                 state->cont(state->private_data, False, NULL, 0);
1253                 return;
1254         }
1255
1256         SAFE_FREE(response->extra_data.data);
1257
1258         if (state->alias_domain == NULL) {
1259                 DEBUG(10, ("Don't expand domain local groups\n"));
1260                 state->cont(state->private_data, True, state->sids,
1261                             state->num_sids);
1262                 return;
1263         }
1264
1265         winbindd_getsidaliases_async(state->alias_domain, mem_ctx,
1266                                      state->sids, state->num_sids,
1267                                      gettoken_recvaliases, state);
1268 }
1269
1270 static void gettoken_recvaliases(void *private_data, BOOL success,
1271                                  const DOM_SID *aliases,
1272                                  size_t num_aliases)
1273 {
1274         struct gettoken_state *state = (struct gettoken_state *)private_data;
1275         size_t i;
1276
1277         if (!success) {
1278                 DEBUG(10, ("Could not receive domain local groups\n"));
1279                 state->cont(state->private_data, False, NULL, 0);
1280                 return;
1281         }
1282
1283         for (i=0; i<num_aliases; i++) {
1284                 if (!add_sid_to_array(state->mem_ctx, &aliases[i],
1285                                  &state->sids, &state->num_sids)) {
1286                         DEBUG(0, ("Out of memory\n"));
1287                         state->cont(state->private_data, False, NULL, 0);
1288                         return;
1289                 }
1290         }
1291
1292         if (state->local_alias_domain != NULL) {
1293                 struct winbindd_domain *local_domain = state->local_alias_domain;
1294                 DEBUG(10, ("Expanding our own local groups\n"));
1295                 state->local_alias_domain = NULL;
1296                 winbindd_getsidaliases_async(local_domain, state->mem_ctx,
1297                                              state->sids, state->num_sids,
1298                                              gettoken_recvaliases, state);
1299                 return;
1300         }
1301
1302         if (state->builtin_domain != NULL) {
1303                 struct winbindd_domain *builtin_domain = state->builtin_domain;
1304                 DEBUG(10, ("Expanding our own BUILTIN groups\n"));
1305                 state->builtin_domain = NULL;
1306                 winbindd_getsidaliases_async(builtin_domain, state->mem_ctx,
1307                                              state->sids, state->num_sids,
1308                                              gettoken_recvaliases, state);
1309                 return;
1310         }
1311
1312         state->cont(state->private_data, True, state->sids, state->num_sids);
1313 }
1314
1315 static void query_user_recv(TALLOC_CTX *mem_ctx, BOOL success,
1316                             struct winbindd_response *response,
1317                             void *c, void *private_data)
1318 {
1319         void (*cont)(void *priv, BOOL succ, const char *acct_name,
1320                      const char *full_name, const char *homedir, 
1321                      const char *shell, uint32 group_rid) =
1322                 (void (*)(void *, BOOL, const char *, const char *,
1323                           const char *, const char *, uint32))c;
1324
1325         if (!success) {
1326                 DEBUG(5, ("Could not trigger query_user\n"));
1327                 cont(private_data, False, NULL, NULL, NULL, NULL, -1);
1328                 return;
1329         }
1330
1331         cont(private_data, True, response->data.user_info.acct_name,
1332              response->data.user_info.full_name,
1333              response->data.user_info.homedir,
1334              response->data.user_info.shell,
1335              response->data.user_info.group_rid);
1336 }
1337
1338 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1339                       const DOM_SID *sid,
1340                       void (*cont)(void *private_data, BOOL success,
1341                                    const char *acct_name,
1342                                    const char *full_name,
1343                                    const char *homedir,
1344                                    const char *shell,
1345                                    uint32 group_rid),
1346                       void *private_data)
1347 {
1348         struct winbindd_request request;
1349         ZERO_STRUCT(request);
1350         request.cmd = WINBINDD_DUAL_USERINFO;
1351         sid_to_string(request.data.sid, sid);
1352         do_async_domain(mem_ctx, domain, &request, query_user_recv,
1353                         (void *)cont, private_data);
1354 }
1355
1356 /* The following uid2sid/gid2sid functions has been contributed by
1357  * Keith Reynolds <Keith.Reynolds@centrify.com> */
1358
1359 static void winbindd_uid2sid_recv(TALLOC_CTX *mem_ctx, BOOL success,
1360                                   struct winbindd_response *response,
1361                                   void *c, void *private_data)
1362 {
1363         void (*cont)(void *priv, BOOL succ, const char *sid) =
1364                 (void (*)(void *, BOOL, const char *))c;
1365
1366         if (!success) {
1367                 DEBUG(5, ("Could not trigger uid2sid\n"));
1368                 cont(private_data, False, NULL);
1369                 return;
1370         }
1371
1372         if (response->result != WINBINDD_OK) {
1373                 DEBUG(5, ("uid2sid returned an error\n"));
1374                 cont(private_data, False, NULL);
1375                 return;
1376         }
1377
1378         cont(private_data, True, response->data.sid.sid);
1379 }
1380
1381 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
1382                             void (*cont)(void *private_data, BOOL success, const char *sid),
1383                             void *private_data)
1384 {
1385         struct winbindd_request request;
1386
1387         ZERO_STRUCT(request);
1388         request.cmd = WINBINDD_DUAL_UID2SID;
1389         request.data.uid = uid;
1390         do_async(mem_ctx, idmap_child(), &request, winbindd_uid2sid_recv,
1391                  (void *)cont, private_data);
1392 }
1393
1394 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
1395                                            struct winbindd_cli_state *state)
1396 {
1397         DOM_SID sid;
1398         NTSTATUS result;
1399
1400         DEBUG(3,("[%5lu]: uid to sid %lu\n",
1401                  (unsigned long)state->pid,
1402                  (unsigned long) state->request.data.uid));
1403
1404         /* Find sid for this uid and return it, possibly ask the slow remote idmap */
1405         result = idmap_uid_to_sid(&sid, state->request.data.uid);
1406
1407         if (NT_STATUS_IS_OK(result)) {
1408                 sid_to_string(state->response.data.sid.sid, &sid);
1409                 state->response.data.sid.type = SID_NAME_USER;
1410                 return WINBINDD_OK;
1411         }
1412
1413         return WINBINDD_ERROR;
1414 }
1415
1416 static void winbindd_gid2sid_recv(TALLOC_CTX *mem_ctx, BOOL success,
1417                                   struct winbindd_response *response,
1418                                   void *c, void *private_data)
1419 {
1420         void (*cont)(void *priv, BOOL succ, const char *sid) =
1421                 (void (*)(void *, BOOL, const char *))c;
1422
1423         if (!success) {
1424                 DEBUG(5, ("Could not trigger gid2sid\n"));
1425                 cont(private_data, False, NULL);
1426                 return;
1427         }
1428
1429         if (response->result != WINBINDD_OK) {
1430                 DEBUG(5, ("gid2sid returned an error\n"));
1431                 cont(private_data, False, NULL);
1432                 return;
1433         }
1434
1435         cont(private_data, True, response->data.sid.sid);
1436 }
1437
1438 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
1439                             void (*cont)(void *private_data, BOOL success, const char *sid),
1440                             void *private_data)
1441 {
1442         struct winbindd_request request;
1443
1444         ZERO_STRUCT(request);
1445         request.cmd = WINBINDD_DUAL_GID2SID;
1446         request.data.gid = gid;
1447         do_async(mem_ctx, idmap_child(), &request, winbindd_gid2sid_recv,
1448                  (void *)cont, private_data);
1449 }
1450
1451 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
1452                                            struct winbindd_cli_state *state)
1453 {
1454         DOM_SID sid;
1455         NTSTATUS result;
1456
1457         DEBUG(3,("[%5lu]: gid %lu to sid\n",
1458                 (unsigned long)state->pid,
1459                 (unsigned long) state->request.data.gid));
1460
1461         /* Find sid for this gid and return it, possibly ask the slow remote idmap */
1462         result = idmap_gid_to_sid(&sid, state->request.data.gid);
1463
1464         if (NT_STATUS_IS_OK(result)) {
1465                 sid_to_string(state->response.data.sid.sid, &sid);
1466                 DEBUG(10, ("[%5lu]: retrieved sid: %s\n",
1467                            (unsigned long)state->pid,
1468                            state->response.data.sid.sid));
1469                 state->response.data.sid.type = SID_NAME_DOM_GRP;
1470                 return WINBINDD_OK;
1471         }
1472
1473         return WINBINDD_ERROR;
1474 }
1475
1476 static void winbindd_dump_id_maps_recv(TALLOC_CTX *mem_ctx, BOOL success,
1477                                struct winbindd_response *response,
1478                                void *c, void *private_data)
1479 {
1480         void (*cont)(void *priv, BOOL succ) =
1481                 (void (*)(void *, BOOL))c;
1482
1483         if (!success) {
1484                 DEBUG(5, ("Could not trigger a map dump\n"));
1485                 cont(private_data, False);
1486                 return;
1487         }
1488
1489         if (response->result != WINBINDD_OK) {
1490                 DEBUG(5, ("idmap dump maps returned an error\n"));
1491                 cont(private_data, False);
1492                 return;
1493         }
1494
1495         cont(private_data, True);
1496 }
1497                          
1498 void winbindd_dump_maps_async(TALLOC_CTX *mem_ctx, void *data, int size,
1499                          void (*cont)(void *private_data, BOOL success),
1500                          void *private_data)
1501 {
1502         struct winbindd_request request;
1503         ZERO_STRUCT(request);
1504         request.cmd = WINBINDD_DUAL_DUMP_MAPS;
1505         request.extra_data.data = data;
1506         request.extra_len = size;
1507         do_async(mem_ctx, idmap_child(), &request, winbindd_dump_id_maps_recv,
1508                  (void *)cont, private_data);
1509 }
1510
1511 enum winbindd_result winbindd_dual_dump_maps(struct winbindd_domain *domain,
1512                                            struct winbindd_cli_state *state)
1513 {
1514         DEBUG(3, ("[%5lu]: dual dump maps\n", (unsigned long)state->pid));
1515
1516         idmap_dump_maps((char *)state->request.extra_data.data);
1517
1518         return WINBINDD_OK;
1519 }
1520