r20207: Fix a couple more places where extra_data was
[sfrench/samba-autobuild/.git] / source / 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;
742         char *dom_name;
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                 if (!state->response.extra_data.data) {
1000                         return WINBINDD_ERROR;
1001                 }
1002                 state->response.length += len+1;
1003         }
1004
1005         return WINBINDD_OK;
1006 }
1007
1008 static void getsidaliases_recv(TALLOC_CTX *mem_ctx, BOOL success,
1009                                struct winbindd_response *response,
1010                                void *c, void *private_data)
1011 {
1012         void (*cont)(void *priv, BOOL succ,
1013                      DOM_SID *aliases, size_t num_aliases) =
1014                 (void (*)(void *, BOOL, DOM_SID *, size_t))c;
1015         char *aliases_str;
1016         DOM_SID *sids = NULL;
1017         size_t num_sids = 0;
1018
1019         if (!success) {
1020                 DEBUG(5, ("Could not trigger getsidaliases\n"));
1021                 cont(private_data, success, NULL, 0);
1022                 return;
1023         }
1024
1025         if (response->result != WINBINDD_OK) {
1026                 DEBUG(5, ("getsidaliases returned an error\n"));
1027                 cont(private_data, False, NULL, 0);
1028                 return;
1029         }
1030
1031         aliases_str = (char *)response->extra_data.data;
1032
1033         if (aliases_str == NULL) {
1034                 DEBUG(10, ("getsidaliases return 0 SIDs\n"));
1035                 cont(private_data, True, NULL, 0);
1036                 return;
1037         }
1038
1039         if (!parse_sidlist(mem_ctx, aliases_str, &sids, &num_sids)) {
1040                 DEBUG(0, ("Could not parse sids\n"));
1041                 cont(private_data, False, NULL, 0);
1042                 return;
1043         }
1044
1045         SAFE_FREE(response->extra_data.data);
1046
1047         cont(private_data, True, sids, num_sids);
1048 }
1049
1050 void winbindd_getsidaliases_async(struct winbindd_domain *domain,
1051                                   TALLOC_CTX *mem_ctx,
1052                                   const DOM_SID *sids, size_t num_sids,
1053                                   void (*cont)(void *private_data,
1054                                                BOOL success,
1055                                                const DOM_SID *aliases,
1056                                                size_t num_aliases),
1057                                   void *private_data)
1058 {
1059         struct winbindd_request request;
1060         char *sidstr = NULL;
1061         ssize_t len;
1062
1063         if (num_sids == 0) {
1064                 cont(private_data, True, NULL, 0);
1065                 return;
1066         }
1067
1068         if (!print_sidlist(mem_ctx, sids, num_sids, &sidstr, &len)) {
1069                 cont(private_data, False, NULL, 0);
1070                 return;
1071         }
1072
1073         ZERO_STRUCT(request);
1074         request.cmd = WINBINDD_DUAL_GETSIDALIASES;
1075         request.extra_len = len;
1076         request.extra_data.data = sidstr;
1077
1078         do_async_domain(mem_ctx, domain, &request, getsidaliases_recv,
1079                         (void *)cont, private_data);
1080 }
1081
1082 enum winbindd_result winbindd_dual_getsidaliases(struct winbindd_domain *domain,
1083                                                  struct winbindd_cli_state *state)
1084 {
1085         DOM_SID *sids = NULL;
1086         size_t num_sids = 0;
1087         char *sidstr;
1088         ssize_t len;
1089         size_t i;
1090         uint32 num_aliases;
1091         uint32 *alias_rids;
1092         NTSTATUS result;
1093
1094         DEBUG(3, ("[%5lu]: getsidaliases\n", (unsigned long)state->pid));
1095
1096         sidstr = state->request.extra_data.data;
1097         if (sidstr == NULL)
1098                 sidstr = talloc_strdup(state->mem_ctx, "\n"); /* No SID */
1099
1100         DEBUG(10, ("Sidlist: %s\n", sidstr));
1101
1102         if (!parse_sidlist(state->mem_ctx, sidstr, &sids, &num_sids)) {
1103                 DEBUG(0, ("Could not parse SID list: %s\n", sidstr));
1104                 return WINBINDD_ERROR;
1105         }
1106
1107         num_aliases = 0;
1108         alias_rids = NULL;
1109
1110         result = domain->methods->lookup_useraliases(domain,
1111                                                      state->mem_ctx,
1112                                                      num_sids, sids,
1113                                                      &num_aliases,
1114                                                      &alias_rids);
1115
1116         if (!NT_STATUS_IS_OK(result)) {
1117                 DEBUG(3, ("Could not lookup_useraliases: %s\n",
1118                           nt_errstr(result)));
1119                 return WINBINDD_ERROR;
1120         }
1121
1122         num_sids = 0;
1123         sids = NULL;
1124
1125         DEBUG(10, ("Got %d aliases\n", num_aliases));
1126
1127         for (i=0; i<num_aliases; i++) {
1128                 DOM_SID sid;
1129                 DEBUGADD(10, (" rid %d\n", alias_rids[i]));
1130                 sid_copy(&sid, &domain->sid);
1131                 sid_append_rid(&sid, alias_rids[i]);
1132                 if (!add_sid_to_array(state->mem_ctx, &sid, &sids, &num_sids)) {
1133                         return WINBINDD_ERROR;
1134                 }
1135         }
1136
1137
1138         if (!print_sidlist(state->mem_ctx, sids, num_sids, &sidstr, &len)) {
1139                 DEBUG(0, ("Could not print_sidlist\n"));
1140                 state->response.extra_data.data = NULL;
1141                 return WINBINDD_ERROR;
1142         }
1143
1144         state->response.extra_data.data = SMB_STRDUP(sidstr);
1145
1146         if (state->response.extra_data.data != NULL) {
1147                 DEBUG(10, ("aliases_list: %s\n",
1148                            (char *)state->response.extra_data.data));
1149                 state->response.length += len+1;
1150         }
1151         
1152         return WINBINDD_OK;
1153 }
1154
1155 struct gettoken_state {
1156         TALLOC_CTX *mem_ctx;
1157         DOM_SID user_sid;
1158         struct winbindd_domain *alias_domain;
1159         struct winbindd_domain *local_alias_domain;
1160         struct winbindd_domain *builtin_domain;
1161         DOM_SID *sids;
1162         size_t num_sids;
1163         void (*cont)(void *private_data, BOOL success, DOM_SID *sids, size_t num_sids);
1164         void *private_data;
1165 };
1166
1167 static void gettoken_recvdomgroups(TALLOC_CTX *mem_ctx, BOOL success,
1168                                    struct winbindd_response *response,
1169                                    void *c, void *private_data);
1170 static void gettoken_recvaliases(void *private_data, BOOL success,
1171                                  const DOM_SID *aliases,
1172                                  size_t num_aliases);
1173                                  
1174
1175 void winbindd_gettoken_async(TALLOC_CTX *mem_ctx, const DOM_SID *user_sid,
1176                              void (*cont)(void *private_data, BOOL success,
1177                                           DOM_SID *sids, size_t num_sids),
1178                              void *private_data)
1179 {
1180         struct winbindd_domain *domain;
1181         struct winbindd_request request;
1182         struct gettoken_state *state;
1183
1184         state = TALLOC_ZERO_P(mem_ctx, struct gettoken_state);
1185         if (state == NULL) {
1186                 DEBUG(0, ("talloc failed\n"));
1187                 cont(private_data, False, NULL, 0);
1188                 return;
1189         }
1190
1191         state->mem_ctx = mem_ctx;
1192         sid_copy(&state->user_sid, user_sid);
1193         state->alias_domain = find_our_domain();
1194         state->local_alias_domain = find_domain_from_name( get_global_sam_name() );
1195         state->builtin_domain = find_builtin_domain();
1196         state->cont = cont;
1197         state->private_data = private_data;
1198
1199         domain = find_domain_from_sid_noinit(user_sid);
1200         if (domain == NULL) {
1201                 DEBUG(5, ("Could not find domain from SID %s\n",
1202                           sid_string_static(user_sid)));
1203                 cont(private_data, False, NULL, 0);
1204                 return;
1205         }
1206
1207         ZERO_STRUCT(request);
1208         request.cmd = WINBINDD_GETUSERDOMGROUPS;
1209         fstrcpy(request.data.sid, sid_string_static(user_sid));
1210
1211         do_async_domain(mem_ctx, domain, &request, gettoken_recvdomgroups,
1212                         NULL, state);
1213 }
1214
1215 static void gettoken_recvdomgroups(TALLOC_CTX *mem_ctx, BOOL success,
1216                                    struct winbindd_response *response,
1217                                    void *c, void *private_data)
1218 {
1219         struct gettoken_state *state =
1220                 talloc_get_type_abort(private_data, struct gettoken_state);
1221         char *sids_str;
1222         
1223         if (!success) {
1224                 DEBUG(10, ("Could not get domain groups\n"));
1225                 state->cont(state->private_data, False, NULL, 0);
1226                 return;
1227         }
1228
1229         sids_str = (char *)response->extra_data.data;
1230
1231         if (sids_str == NULL) {
1232                 /* This could be normal if we are dealing with a
1233                    local user and local groups */
1234
1235                 if ( !sid_check_is_in_our_domain( &state->user_sid ) ) {
1236                         DEBUG(10, ("Received no domain groups\n"));
1237                         state->cont(state->private_data, True, NULL, 0);
1238                         return;
1239                 }
1240         }
1241
1242         state->sids = NULL;
1243         state->num_sids = 0;
1244
1245         if (!add_sid_to_array(mem_ctx, &state->user_sid, &state->sids,
1246                          &state->num_sids)) {
1247                 DEBUG(0, ("Out of memory\n"));
1248                 state->cont(state->private_data, False, NULL, 0);
1249                 return;
1250         }
1251
1252         if (sids_str && !parse_sidlist(mem_ctx, sids_str, &state->sids,
1253                            &state->num_sids)) {
1254                 DEBUG(0, ("Could not parse sids\n"));
1255                 state->cont(state->private_data, False, NULL, 0);
1256                 return;
1257         }
1258
1259         SAFE_FREE(response->extra_data.data);
1260
1261         if (state->alias_domain == NULL) {
1262                 DEBUG(10, ("Don't expand domain local groups\n"));
1263                 state->cont(state->private_data, True, state->sids,
1264                             state->num_sids);
1265                 return;
1266         }
1267
1268         winbindd_getsidaliases_async(state->alias_domain, mem_ctx,
1269                                      state->sids, state->num_sids,
1270                                      gettoken_recvaliases, state);
1271 }
1272
1273 static void gettoken_recvaliases(void *private_data, BOOL success,
1274                                  const DOM_SID *aliases,
1275                                  size_t num_aliases)
1276 {
1277         struct gettoken_state *state = (struct gettoken_state *)private_data;
1278         size_t i;
1279
1280         if (!success) {
1281                 DEBUG(10, ("Could not receive domain local groups\n"));
1282                 state->cont(state->private_data, False, NULL, 0);
1283                 return;
1284         }
1285
1286         for (i=0; i<num_aliases; i++) {
1287                 if (!add_sid_to_array(state->mem_ctx, &aliases[i],
1288                                  &state->sids, &state->num_sids)) {
1289                         DEBUG(0, ("Out of memory\n"));
1290                         state->cont(state->private_data, False, NULL, 0);
1291                         return;
1292                 }
1293         }
1294
1295         if (state->local_alias_domain != NULL) {
1296                 struct winbindd_domain *local_domain = state->local_alias_domain;
1297                 DEBUG(10, ("Expanding our own local groups\n"));
1298                 state->local_alias_domain = NULL;
1299                 winbindd_getsidaliases_async(local_domain, state->mem_ctx,
1300                                              state->sids, state->num_sids,
1301                                              gettoken_recvaliases, state);
1302                 return;
1303         }
1304
1305         if (state->builtin_domain != NULL) {
1306                 struct winbindd_domain *builtin_domain = state->builtin_domain;
1307                 DEBUG(10, ("Expanding our own BUILTIN groups\n"));
1308                 state->builtin_domain = NULL;
1309                 winbindd_getsidaliases_async(builtin_domain, state->mem_ctx,
1310                                              state->sids, state->num_sids,
1311                                              gettoken_recvaliases, state);
1312                 return;
1313         }
1314
1315         state->cont(state->private_data, True, state->sids, state->num_sids);
1316 }
1317
1318 static void query_user_recv(TALLOC_CTX *mem_ctx, BOOL success,
1319                             struct winbindd_response *response,
1320                             void *c, void *private_data)
1321 {
1322         void (*cont)(void *priv, BOOL succ, const char *acct_name,
1323                      const char *full_name, const char *homedir, 
1324                      const char *shell, uint32 group_rid) =
1325                 (void (*)(void *, BOOL, const char *, const char *,
1326                           const char *, const char *, uint32))c;
1327
1328         if (!success) {
1329                 DEBUG(5, ("Could not trigger query_user\n"));
1330                 cont(private_data, False, NULL, NULL, NULL, NULL, -1);
1331                 return;
1332         }
1333
1334         cont(private_data, True, response->data.user_info.acct_name,
1335              response->data.user_info.full_name,
1336              response->data.user_info.homedir,
1337              response->data.user_info.shell,
1338              response->data.user_info.group_rid);
1339 }
1340
1341 void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
1342                       const DOM_SID *sid,
1343                       void (*cont)(void *private_data, BOOL success,
1344                                    const char *acct_name,
1345                                    const char *full_name,
1346                                    const char *homedir,
1347                                    const char *shell,
1348                                    uint32 group_rid),
1349                       void *private_data)
1350 {
1351         struct winbindd_request request;
1352         ZERO_STRUCT(request);
1353         request.cmd = WINBINDD_DUAL_USERINFO;
1354         sid_to_string(request.data.sid, sid);
1355         do_async_domain(mem_ctx, domain, &request, query_user_recv,
1356                         (void *)cont, private_data);
1357 }
1358
1359 /* The following uid2sid/gid2sid functions has been contributed by
1360  * Keith Reynolds <Keith.Reynolds@centrify.com> */
1361
1362 static void winbindd_uid2sid_recv(TALLOC_CTX *mem_ctx, BOOL success,
1363                                   struct winbindd_response *response,
1364                                   void *c, void *private_data)
1365 {
1366         void (*cont)(void *priv, BOOL succ, const char *sid) =
1367                 (void (*)(void *, BOOL, const char *))c;
1368
1369         if (!success) {
1370                 DEBUG(5, ("Could not trigger uid2sid\n"));
1371                 cont(private_data, False, NULL);
1372                 return;
1373         }
1374
1375         if (response->result != WINBINDD_OK) {
1376                 DEBUG(5, ("uid2sid returned an error\n"));
1377                 cont(private_data, False, NULL);
1378                 return;
1379         }
1380
1381         cont(private_data, True, response->data.sid.sid);
1382 }
1383
1384 void winbindd_uid2sid_async(TALLOC_CTX *mem_ctx, uid_t uid,
1385                             void (*cont)(void *private_data, BOOL success, const char *sid),
1386                             void *private_data)
1387 {
1388         struct winbindd_request request;
1389
1390         ZERO_STRUCT(request);
1391         request.cmd = WINBINDD_DUAL_UID2SID;
1392         request.data.uid = uid;
1393         do_async(mem_ctx, idmap_child(), &request, winbindd_uid2sid_recv,
1394                  (void *)cont, private_data);
1395 }
1396
1397 enum winbindd_result winbindd_dual_uid2sid(struct winbindd_domain *domain,
1398                                            struct winbindd_cli_state *state)
1399 {
1400         DOM_SID sid;
1401         NTSTATUS result;
1402
1403         DEBUG(3,("[%5lu]: uid to sid %lu\n",
1404                  (unsigned long)state->pid,
1405                  (unsigned long) state->request.data.uid));
1406
1407         /* Find sid for this uid and return it, possibly ask the slow remote idmap */
1408         result = idmap_uid_to_sid(&sid, state->request.data.uid);
1409
1410         if (NT_STATUS_IS_OK(result)) {
1411                 sid_to_string(state->response.data.sid.sid, &sid);
1412                 state->response.data.sid.type = SID_NAME_USER;
1413                 return WINBINDD_OK;
1414         }
1415
1416         return WINBINDD_ERROR;
1417 }
1418
1419 static void winbindd_gid2sid_recv(TALLOC_CTX *mem_ctx, BOOL success,
1420                                   struct winbindd_response *response,
1421                                   void *c, void *private_data)
1422 {
1423         void (*cont)(void *priv, BOOL succ, const char *sid) =
1424                 (void (*)(void *, BOOL, const char *))c;
1425
1426         if (!success) {
1427                 DEBUG(5, ("Could not trigger gid2sid\n"));
1428                 cont(private_data, False, NULL);
1429                 return;
1430         }
1431
1432         if (response->result != WINBINDD_OK) {
1433                 DEBUG(5, ("gid2sid returned an error\n"));
1434                 cont(private_data, False, NULL);
1435                 return;
1436         }
1437
1438         cont(private_data, True, response->data.sid.sid);
1439 }
1440
1441 void winbindd_gid2sid_async(TALLOC_CTX *mem_ctx, gid_t gid,
1442                             void (*cont)(void *private_data, BOOL success, const char *sid),
1443                             void *private_data)
1444 {
1445         struct winbindd_request request;
1446
1447         ZERO_STRUCT(request);
1448         request.cmd = WINBINDD_DUAL_GID2SID;
1449         request.data.gid = gid;
1450         do_async(mem_ctx, idmap_child(), &request, winbindd_gid2sid_recv,
1451                  (void *)cont, private_data);
1452 }
1453
1454 enum winbindd_result winbindd_dual_gid2sid(struct winbindd_domain *domain,
1455                                            struct winbindd_cli_state *state)
1456 {
1457         DOM_SID sid;
1458         NTSTATUS result;
1459
1460         DEBUG(3,("[%5lu]: gid %lu to sid\n",
1461                 (unsigned long)state->pid,
1462                 (unsigned long) state->request.data.gid));
1463
1464         /* Find sid for this gid and return it, possibly ask the slow remote idmap */
1465         result = idmap_gid_to_sid(&sid, state->request.data.gid);
1466
1467         if (NT_STATUS_IS_OK(result)) {
1468                 sid_to_string(state->response.data.sid.sid, &sid);
1469                 DEBUG(10, ("[%5lu]: retrieved sid: %s\n",
1470                            (unsigned long)state->pid,
1471                            state->response.data.sid.sid));
1472                 state->response.data.sid.type = SID_NAME_DOM_GRP;
1473                 return WINBINDD_OK;
1474         }
1475
1476         return WINBINDD_ERROR;
1477 }
1478
1479 static void winbindd_dump_id_maps_recv(TALLOC_CTX *mem_ctx, BOOL success,
1480                                struct winbindd_response *response,
1481                                void *c, void *private_data)
1482 {
1483         void (*cont)(void *priv, BOOL succ) =
1484                 (void (*)(void *, BOOL))c;
1485
1486         if (!success) {
1487                 DEBUG(5, ("Could not trigger a map dump\n"));
1488                 cont(private_data, False);
1489                 return;
1490         }
1491
1492         if (response->result != WINBINDD_OK) {
1493                 DEBUG(5, ("idmap dump maps returned an error\n"));
1494                 cont(private_data, False);
1495                 return;
1496         }
1497
1498         cont(private_data, True);
1499 }
1500                          
1501 void winbindd_dump_maps_async(TALLOC_CTX *mem_ctx, void *data, int size,
1502                          void (*cont)(void *private_data, BOOL success),
1503                          void *private_data)
1504 {
1505         struct winbindd_request request;
1506         ZERO_STRUCT(request);
1507         request.cmd = WINBINDD_DUAL_DUMP_MAPS;
1508         request.extra_data.data = data;
1509         request.extra_len = size;
1510         do_async(mem_ctx, idmap_child(), &request, winbindd_dump_id_maps_recv,
1511                  (void *)cont, private_data);
1512 }
1513
1514 enum winbindd_result winbindd_dual_dump_maps(struct winbindd_domain *domain,
1515                                            struct winbindd_cli_state *state)
1516 {
1517         DEBUG(3, ("[%5lu]: dual dump maps\n", (unsigned long)state->pid));
1518
1519         idmap_dump_maps((char *)state->request.extra_data.data);
1520
1521         return WINBINDD_OK;
1522 }
1523