This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[ira/wip.git] / source3 / nsswitch / winbindd_group.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Winbind daemon for ntdom nss module
5
6    Copyright (C) Tim Potter 2000
7    Copyright (C) Jeremy Allison 2001.
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "winbindd.h"
25
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_WINBIND
28
29 /***************************************************************
30  Empty static struct for negative caching.
31 ****************************************************************/
32
33 /* Fill a grent structure from various other information */
34
35 static BOOL fill_grent(struct winbindd_gr *gr, const char *dom_name, 
36                        const char *gr_name, gid_t unix_gid)
37 {
38         fstring full_group_name;
39         /* Fill in uid/gid */
40         fill_domain_username(full_group_name, dom_name, gr_name);
41
42         gr->gr_gid = unix_gid;
43     
44         /* Group name and password */
45     
46         safe_strcpy(gr->gr_name, full_group_name, sizeof(gr->gr_name) - 1);
47         safe_strcpy(gr->gr_passwd, "x", sizeof(gr->gr_passwd) - 1);
48
49         return True;
50 }
51
52 /* Fill in the group membership field of a NT group given by group_rid */
53
54 static BOOL fill_grent_mem(struct winbindd_domain *domain,
55                            uint32 group_rid, 
56                            enum SID_NAME_USE group_name_type, 
57                            int *num_gr_mem, char **gr_mem, int *gr_mem_len)
58 {
59         uint32 *rid_mem = NULL, num_names = 0;
60         uint32 *name_types = NULL;
61         int buf_len, buf_ndx, i;
62         char **names = NULL, *buf;
63         BOOL result = False;
64         TALLOC_CTX *mem_ctx;
65         NTSTATUS status;
66
67         if (!(mem_ctx = talloc_init("fill_grent_mem(%s)", domain->name)))
68                 return False;
69
70         /* Initialise group membership information */
71         
72         DEBUG(10, ("group %s rid 0x%x\n", domain ? domain->name : "NULL", 
73                    group_rid));
74
75         *num_gr_mem = 0;
76         
77         if (group_name_type != SID_NAME_DOM_GRP) {
78                 DEBUG(1, ("rid %d in domain %s isn't a domain group\n", 
79                           group_rid, domain->name));
80                 goto done;
81         }
82
83         /* Lookup group members */
84         status = domain->methods->lookup_groupmem(domain, mem_ctx, group_rid, &num_names, 
85                                                   &rid_mem, &names, &name_types);
86         if (!NT_STATUS_IS_OK(status)) {
87                 DEBUG(1, ("could not lookup membership for group rid %d in domain %s (error: %s)\n", 
88                           group_rid, domain->name, nt_errstr(status)));
89
90                 goto done;
91         }
92
93         DEBUG(10, ("looked up %d names\n", num_names));
94
95         if (DEBUGLEVEL >= 10) {
96                 for (i = 0; i < num_names; i++)
97                         DEBUG(10, ("\t%20s %x %d\n", names[i], rid_mem[i],
98                                    name_types[i]));
99         }
100
101         /* Add members to list */
102
103         buf = NULL;
104         buf_len = buf_ndx = 0;
105
106  again:
107
108         for (i = 0; i < num_names; i++) {
109                 char *the_name;
110                 fstring name;
111                 int len;
112                         
113                 the_name = names[i];
114
115                 DEBUG(10, ("processing name %s\n", the_name));
116
117                 /* FIXME: need to cope with groups within groups.  These
118                    occur in Universal groups on a Windows 2000 native mode
119                    server. */
120
121                 if (name_types[i] != SID_NAME_USER) {
122                         DEBUG(3, ("name %s isn't a domain user\n", the_name));
123                         continue;
124                 }
125
126                 /* Don't bother with machine accounts */
127                 
128                 if (the_name[strlen(the_name) - 1] == '$') {
129                         DEBUG(10, ("%s is machine account\n", the_name));
130                         continue;
131                 }
132
133                 /* Append domain name */
134
135                 fill_domain_username(name, domain->name, the_name);
136
137                 len = strlen(name);
138                 
139                 /* Add to list or calculate buffer length */
140
141                 if (!buf) {
142                         buf_len += len + 1; /* List is comma separated */
143                         (*num_gr_mem)++;
144                         DEBUG(10, ("buf_len + %d = %d\n", len + 1, buf_len));
145                 } else {
146                         DEBUG(10, ("appending %s at ndx %d\n", name, len));
147                         safe_strcpy(&buf[buf_ndx], name, len);
148                         buf_ndx += len;
149                         buf[buf_ndx] = ',';
150                         buf_ndx++;
151                 }
152         }
153
154         /* Allocate buffer */
155
156         if (!buf && buf_len != 0) {
157                 if (!(buf = malloc(buf_len))) {
158                         DEBUG(1, ("out of memory\n"));
159                         result = False;
160                         goto done;
161                 }
162                 memset(buf, 0, buf_len);
163                 goto again;
164         }
165
166         if (buf && buf_ndx > 0) {
167                 buf[buf_ndx - 1] = '\0';
168         }
169
170         *gr_mem = buf;
171         *gr_mem_len = buf_len;
172
173         DEBUG(10, ("num_mem = %d, len = %d, mem = %s\n", *num_gr_mem, 
174                    buf_len, *num_gr_mem ? buf : "NULL")); 
175         result = True;
176
177 done:
178
179         talloc_destroy(mem_ctx);
180         
181         DEBUG(10, ("fill_grent_mem returning %d\n", result));
182
183         return result;
184 }
185
186 /* Return a group structure from a group name */
187
188 enum winbindd_result winbindd_getgrnam(struct winbindd_cli_state *state)
189 {
190         DOM_SID group_sid;
191         struct winbindd_domain *domain;
192         enum SID_NAME_USE name_type;
193         uint32 group_rid;
194         fstring name_domain, name_group;
195         char *tmp, *gr_mem;
196         gid_t gid;
197         int gr_mem_len;
198         
199         /* Ensure null termination */
200         state->request.data.groupname[sizeof(state->request.data.groupname)-1]='\0';
201
202         DEBUG(3, ("[%5d]: getgrnam %s\n", state->pid,
203                   state->request.data.groupname));
204
205         /* Parse domain and groupname */
206         
207         memset(name_group, 0, sizeof(fstring));
208
209         tmp = state->request.data.groupname;
210         if (!parse_domain_user(tmp, name_domain, name_group))
211                 return WINBINDD_ERROR;
212
213         /* Get info for the domain */
214
215         if ((domain = find_domain_from_name(name_domain)) == NULL) {
216                 DEBUG(0, ("could not get domain sid for domain %s\n",
217                           name_domain));
218                 return WINBINDD_ERROR;
219         }
220
221         /* Get rid and name type from name */
222         
223         if (!winbindd_lookup_sid_by_name(domain, name_group, &group_sid, 
224                                          &name_type)) {
225                 DEBUG(1, ("group %s in domain %s does not exist\n", 
226                           name_group, name_domain));
227                 return WINBINDD_ERROR;
228         }
229
230         if ((name_type != SID_NAME_ALIAS) && (name_type != SID_NAME_DOM_GRP)) {
231                 DEBUG(1, ("name '%s' is not a local or domain group: %d\n", 
232                           name_group, name_type));
233                 return WINBINDD_ERROR;
234         }
235
236         /* Fill in group structure */
237         if (!sid_peek_check_rid(&domain->sid, &group_sid, &group_rid))
238                 return WINBINDD_ERROR;
239
240         if (!winbindd_idmap_get_gid_from_sid(&group_sid, &gid)) {
241                 DEBUG(1, ("error converting unix gid to sid\n"));
242                 return WINBINDD_ERROR;
243         }
244
245         if (!fill_grent(&state->response.data.gr, name_domain,
246                         name_group, gid) ||
247             !fill_grent_mem(domain, group_rid, name_type,
248                             &state->response.data.gr.num_gr_mem,
249                             &gr_mem, &gr_mem_len)) {
250                 return WINBINDD_ERROR;
251         }
252
253         /* Group membership lives at start of extra data */
254
255         state->response.data.gr.gr_mem_ofs = 0;
256
257         state->response.length += gr_mem_len;
258         state->response.extra_data = gr_mem;
259
260         return WINBINDD_OK;
261 }
262
263 /* Return a group structure from a gid number */
264
265 enum winbindd_result winbindd_getgrgid(struct winbindd_cli_state *state)
266 {
267         struct winbindd_domain *domain;
268         DOM_SID group_sid;
269         enum SID_NAME_USE name_type;
270         fstring dom_name;
271         fstring group_name;
272         uint32 group_rid;
273         int gr_mem_len;
274         char *gr_mem;
275
276         DEBUG(3, ("[%5d]: getgrgid %d\n", state->pid, 
277                   state->request.data.gid));
278
279         /* Bug out if the gid isn't in the winbind range */
280
281         if ((state->request.data.gid < server_state.gid_low) ||
282             (state->request.data.gid > server_state.gid_high))
283                 return WINBINDD_ERROR;
284
285         /* Get rid from gid */
286
287         if (!winbindd_idmap_get_rid_from_gid(state->request.data.gid, 
288                                              &group_rid, &domain)) {
289                 DEBUG(1, ("could not convert gid %d to rid\n", 
290                           state->request.data.gid));
291                 return WINBINDD_ERROR;
292         }
293
294         /* Get sid from gid */
295
296         sid_copy(&group_sid, &domain->sid);
297         sid_append_rid(&group_sid, group_rid);
298
299         if (!winbindd_lookup_name_by_sid(&group_sid, dom_name, group_name, &name_type)) {
300                 DEBUG(1, ("could not lookup sid\n"));
301                 return WINBINDD_ERROR;
302         }
303
304         if (!((name_type == SID_NAME_ALIAS) || 
305               (name_type == SID_NAME_DOM_GRP))) {
306                 DEBUG(1, ("name '%s' is not a local or domain group: %d\n", 
307                           group_name, name_type));
308                 return WINBINDD_ERROR;
309         }
310
311         /* Fill in group structure */
312
313         if (!fill_grent(&state->response.data.gr, dom_name, group_name, 
314                         state->request.data.gid) ||
315             !fill_grent_mem(domain, group_rid, name_type,
316                             &state->response.data.gr.num_gr_mem,
317                             &gr_mem, &gr_mem_len))
318                 return WINBINDD_ERROR;
319
320         /* Group membership lives at start of extra data */
321
322         state->response.data.gr.gr_mem_ofs = 0;
323
324         state->response.length += gr_mem_len;
325         state->response.extra_data = gr_mem;
326
327         return WINBINDD_OK;
328 }
329
330 /*
331  * set/get/endgrent functions
332  */
333
334 /* "Rewind" file pointer for group database enumeration */
335
336 enum winbindd_result winbindd_setgrent(struct winbindd_cli_state *state)
337 {
338         struct winbindd_domain *domain;
339
340         DEBUG(3, ("[%5d]: setgrent\n", state->pid));
341
342         /* Check user has enabled this */
343
344         if (!lp_winbind_enum_groups())
345                 return WINBINDD_ERROR;
346
347         /* Free old static data if it exists */
348         
349         if (state->getgrent_state != NULL) {
350                 free_getent_state(state->getgrent_state);
351                 state->getgrent_state = NULL;
352         }
353         
354         /* Create sam pipes for each domain we know about */
355         
356         for (domain = domain_list(); domain != NULL; domain = domain->next) {
357                 struct getent_state *domain_state;
358                 
359                 /* Create a state record for this domain */
360                 
361                 if ((domain_state = (struct getent_state *)
362                      malloc(sizeof(struct getent_state))) == NULL) {
363                         DEBUG(1, ("winbindd_setgrent: malloc failed for domain_state!\n"));
364                         return WINBINDD_ERROR;
365                 }
366                 
367                 ZERO_STRUCTP(domain_state);
368                 
369                 fstrcpy(domain_state->domain_name, domain->name);
370
371                 /* Add to list of open domains */
372                 
373                 DLIST_ADD(state->getgrent_state, domain_state);
374         }
375         
376         return WINBINDD_OK;
377 }
378
379 /* Close file pointer to ntdom group database */
380
381 enum winbindd_result winbindd_endgrent(struct winbindd_cli_state *state)
382 {
383         DEBUG(3, ("[%5d]: endgrent\n", state->pid));
384
385         free_getent_state(state->getgrent_state);
386         state->getgrent_state = NULL;
387         
388         return WINBINDD_OK;
389 }
390
391 /* Get the list of domain groups and domain aliases for a domain.  We fill in
392    the sam_entries and num_sam_entries fields with domain group information.  
393    The dispinfo_ndx field is incremented to the index of the next group to 
394    fetch. Return True if some groups were returned, False otherwise. */
395
396 #define MAX_FETCH_SAM_ENTRIES 100
397
398 static BOOL get_sam_group_entries(struct getent_state *ent)
399 {
400         NTSTATUS status;
401         uint32 num_entries;
402         struct acct_info *name_list = NULL, *tmp_name_list = NULL;
403         TALLOC_CTX *mem_ctx;
404         BOOL result = False;
405         struct acct_info *sam_grp_entries = NULL;
406         struct winbindd_domain *domain;
407         
408         if (ent->got_sam_entries)
409                 return False;
410
411         if (!(mem_ctx = talloc_init("get_sam_group_entries(%s)",
412                                           ent->domain_name))) {
413                 DEBUG(1, ("get_sam_group_entries: could not create talloc context!\n")); 
414                 return False;
415         }
416                 
417         /* Free any existing group info */
418
419         SAFE_FREE(ent->sam_entries);
420         ent->num_sam_entries = 0;
421         ent->got_sam_entries = True;
422
423         /* Enumerate domain groups */
424
425         num_entries = 0;
426
427         if (!(domain = find_domain_from_name(ent->domain_name))) {
428                 DEBUG(3, ("no such domain %s in get_sam_group_entries\n", ent->domain_name));
429                 goto done;
430         }
431
432         /* always get the domain global groups */
433
434         status = domain->methods->enum_dom_groups(domain, mem_ctx, &num_entries, &sam_grp_entries);
435         
436         if (!NT_STATUS_IS_OK(status)) {
437                 DEBUG(3, ("get_sam_group_entries: could not enumerate domain groups! Error: %s\n", nt_errstr(status)));
438                 result = False;
439                 goto done;
440         }
441
442         /* Copy entries into return buffer */
443
444         if (num_entries) {
445                 if ( !(name_list = malloc(sizeof(struct acct_info) * num_entries)) ) {
446                         DEBUG(0,("get_sam_group_entries: Failed to malloc memory for %d domain groups!\n", 
447                                 num_entries));
448                         result = False;
449                         goto done;
450                 }
451                 memcpy( name_list, sam_grp_entries, num_entries * sizeof(struct acct_info) );
452         }
453         
454         ent->num_sam_entries = num_entries;
455         
456         /* get the domain local groups if we are a member of 
457            a native win2k domain */
458            
459         if ( domain->native_mode && domain->methods->enum_local_groups )
460         {
461                 DEBUG(4,("get_sam_group_entries: Native Mode 2k domain; enumerating local groups as well\n"));
462                 
463                 status = domain->methods->enum_local_groups(domain, mem_ctx, &num_entries, &sam_grp_entries);
464                 
465                 if ( !NT_STATUS_IS_OK(status) ) { 
466                         DEBUG(3,("get_sam_group_entries: Failed to enumerate domain local groups!\n"));
467                         num_entries = 0;
468                 }
469                 else
470                         DEBUG(4,("get_sam_group_entries: Returned %d local groups\n", num_entries));
471                 
472                 /* Copy entries into return buffer */
473
474                 if ( num_entries ) {
475                         if ( !(tmp_name_list = Realloc( name_list, sizeof(struct acct_info) * (ent->num_sam_entries+num_entries))) )
476                         {
477                                 DEBUG(0,("get_sam_group_entries: Failed to realloc more memory for %d local groups!\n", 
478                                         num_entries));
479                                 result = False;
480                                 SAFE_FREE( name_list );
481                                 goto done;
482                         }
483                         
484                         name_list = tmp_name_list;
485                                 
486                         memcpy( &name_list[ent->num_sam_entries], sam_grp_entries, 
487                                 num_entries * sizeof(struct acct_info) );
488                 }
489         
490                 ent->num_sam_entries += num_entries;
491         }
492         
493                 
494         /* Fill in remaining fields */
495
496         ent->sam_entries = name_list;
497         ent->sam_entry_index = 0;
498
499         result = (ent->num_sam_entries > 0);
500
501  done:
502         talloc_destroy(mem_ctx);
503
504         return result;
505 }
506
507 /* Fetch next group entry from ntdom database */
508
509 #define MAX_GETGRENT_GROUPS 500
510
511 enum winbindd_result winbindd_getgrent(struct winbindd_cli_state *state)
512 {
513         struct getent_state *ent;
514         struct winbindd_gr *group_list = NULL;
515         int num_groups, group_list_ndx = 0, i, gr_mem_list_len = 0;
516         char *new_extra_data, *gr_mem_list = NULL;
517
518         DEBUG(3, ("[%5d]: getgrent\n", state->pid));
519
520         /* Check user has enabled this */
521
522         if (!lp_winbind_enum_groups())
523                 return WINBINDD_ERROR;
524
525         num_groups = MIN(MAX_GETGRENT_GROUPS, state->request.data.num_entries);
526
527         if ((state->response.extra_data = 
528              malloc(num_groups * sizeof(struct winbindd_gr))) == NULL)
529                 return WINBINDD_ERROR;
530
531         state->response.data.num_entries = 0;
532
533         group_list = (struct winbindd_gr *)state->response.extra_data;
534
535         if (!(ent = state->getgrent_state))
536                 return WINBINDD_ERROR;
537
538         /* Start sending back groups */
539
540         for (i = 0; i < num_groups; i++) {
541                 struct acct_info *name_list = NULL;
542                 fstring domain_group_name;
543                 uint32 result;
544                 gid_t group_gid;
545                 int gr_mem_len;
546                 char *gr_mem, *new_gr_mem_list;
547                 
548                 /* Do we need to fetch another chunk of groups? */
549
550         tryagain:
551
552                 DEBUG(10, ("entry_index = %d, num_entries = %d\n",
553                            ent->sam_entry_index, ent->num_sam_entries));
554
555                 if (ent->num_sam_entries == ent->sam_entry_index) {
556
557                         while(ent && !get_sam_group_entries(ent)) {
558                                 struct getent_state *next_ent;
559
560                                 DEBUG(10, ("freeing state info for domain %s\n", ent->domain_name)); 
561
562                                 /* Free state information for this domain */
563
564                                 SAFE_FREE(ent->sam_entries);
565
566                                 next_ent = ent->next;
567                                 DLIST_REMOVE(state->getgrent_state, ent);
568                                 
569                                 SAFE_FREE(ent);
570                                 ent = next_ent;
571                         }
572
573                         /* No more domains */
574
575                         if (!ent) 
576                                 break;
577                 }
578                 
579                 name_list = ent->sam_entries;
580                 
581                 /* Lookup group info */
582                 
583                 if (!winbindd_idmap_get_gid_from_rid(
584                         ent->domain_name,
585                         name_list[ent->sam_entry_index].rid,
586                         &group_gid)) {
587                         
588                         DEBUG(1, ("could not look up gid for group %s\n", 
589                                   name_list[ent->sam_entry_index].acct_name));
590
591                         ent->sam_entry_index++;
592                         goto tryagain;
593                 }
594
595                 DEBUG(10, ("got gid %d for group %x\n", group_gid,
596                            name_list[ent->sam_entry_index].rid));
597                 
598                 /* Fill in group entry */
599
600                 fill_domain_username(domain_group_name, ent->domain_name, 
601                          name_list[ent->sam_entry_index].acct_name);
602
603                 result = fill_grent(&group_list[group_list_ndx], 
604                                     ent->domain_name,
605                                     name_list[ent->sam_entry_index].acct_name,
606                                     group_gid);
607
608                 /* Fill in group membership entry */
609
610                 if (result) {
611                         struct winbindd_domain *domain;
612
613                         if (!(domain = 
614                               find_domain_from_name(ent->domain_name))) {
615                                 DEBUG(3, ("No such domain %s in winbindd_getgrent\n", ent->domain_name));
616                                 result = False;
617                                 goto done;
618                         }
619
620                         group_list[group_list_ndx].num_gr_mem = 0;
621                         gr_mem = NULL;
622                         gr_mem_len = 0;
623                         
624                         /* Get group membership */                      
625                         if (state->request.cmd == WINBINDD_GETGRLST) {
626                                 result = True;
627                         } else {
628                                 result = fill_grent_mem(
629                                         domain,
630                                         name_list[ent->sam_entry_index].rid,
631                                         SID_NAME_DOM_GRP,
632                                         &group_list[group_list_ndx].num_gr_mem, 
633                                         &gr_mem, &gr_mem_len);
634                         }
635                 }
636
637                 if (result) {
638                         /* Append to group membership list */
639                         new_gr_mem_list = Realloc(
640                                 gr_mem_list,
641                                 gr_mem_list_len + gr_mem_len);
642
643                         if (!new_gr_mem_list && (group_list[group_list_ndx].num_gr_mem != 0)) {
644                                 DEBUG(0, ("out of memory\n"));
645                                 SAFE_FREE(gr_mem_list);
646                                 gr_mem_list_len = 0;
647                                 break;
648                         }
649
650                         DEBUG(10, ("list_len = %d, mem_len = %d\n",
651                                    gr_mem_list_len, gr_mem_len));
652
653                         gr_mem_list = new_gr_mem_list;
654
655                         memcpy(&gr_mem_list[gr_mem_list_len], gr_mem,
656                                gr_mem_len);
657
658                         SAFE_FREE(gr_mem);
659
660                         group_list[group_list_ndx].gr_mem_ofs = 
661                                 gr_mem_list_len;
662
663                         gr_mem_list_len += gr_mem_len;
664                 }
665
666                 ent->sam_entry_index++;
667                 
668                 /* Add group to return list */
669                 
670                 if (result) {
671
672                         DEBUG(10, ("adding group num_entries = %d\n",
673                                    state->response.data.num_entries));
674
675                         group_list_ndx++;
676                         state->response.data.num_entries++;
677                         
678                         state->response.length +=
679                                 sizeof(struct winbindd_gr);
680                         
681                 } else {
682                         DEBUG(0, ("could not lookup domain group %s\n", 
683                                   domain_group_name));
684                 }
685         }
686
687         /* Copy the list of group memberships to the end of the extra data */
688
689         if (group_list_ndx == 0)
690                 goto done;
691
692         new_extra_data = Realloc(
693                 state->response.extra_data,
694                 group_list_ndx * sizeof(struct winbindd_gr) + gr_mem_list_len);
695
696         if (!new_extra_data) {
697                 DEBUG(0, ("out of memory\n"));
698                 group_list_ndx = 0;
699                 SAFE_FREE(state->response.extra_data);
700                 SAFE_FREE(gr_mem_list);
701
702                 return WINBINDD_ERROR;
703         }
704
705         state->response.extra_data = new_extra_data;
706
707         memcpy(&((char *)state->response.extra_data)
708                [group_list_ndx * sizeof(struct winbindd_gr)], 
709                gr_mem_list, gr_mem_list_len);
710
711         SAFE_FREE(gr_mem_list);
712
713         state->response.length += gr_mem_list_len;
714
715         DEBUG(10, ("returning %d groups, length = %d\n",
716                    group_list_ndx, gr_mem_list_len));
717
718         /* Out of domains */
719
720  done:
721
722         return (group_list_ndx > 0) ? WINBINDD_OK : WINBINDD_ERROR;
723 }
724
725 /* List domain groups without mapping to unix ids */
726
727 enum winbindd_result winbindd_list_groups(struct winbindd_cli_state *state)
728 {
729         uint32 total_entries = 0;
730         struct winbindd_domain *domain;
731         char *extra_data = NULL;
732         char *ted = NULL;
733         int extra_data_len = 0, i;
734
735         DEBUG(3, ("[%5d]: list groups\n", state->pid));
736
737         /* Enumerate over trusted domains */
738
739         for (domain = domain_list(); domain; domain = domain->next) {
740                 struct getent_state groups;
741
742                 ZERO_STRUCT(groups);
743
744                 /* Get list of sam groups */
745                 ZERO_STRUCT(groups);
746                 fstrcpy(groups.domain_name, domain->name);
747
748                 get_sam_group_entries(&groups);
749                         
750                 if (groups.num_sam_entries == 0) {
751                         /* this domain is empty or in an error state */
752                         continue;
753                 }
754
755                 /* keep track the of the total number of groups seen so 
756                    far over all domains */
757                 total_entries += groups.num_sam_entries;
758                 
759                 /* Allocate some memory for extra data.  Note that we limit
760                    account names to sizeof(fstring) = 128 characters.  */               
761                 ted = Realloc(extra_data, sizeof(fstring) * total_entries);
762  
763                 if (!ted) {
764                         DEBUG(0,("failed to enlarge buffer!\n"));
765                         SAFE_FREE(extra_data);
766                         return WINBINDD_ERROR;
767                 } else
768                         extra_data = ted;
769
770                 /* Pack group list into extra data fields */
771                 for (i = 0; i < groups.num_sam_entries; i++) {
772                         char *group_name = ((struct acct_info *)
773                                             groups.sam_entries)[i].acct_name; 
774                         fstring name;
775
776                         fill_domain_username(name, domain->name, group_name);
777                         /* Append to extra data */                      
778                         memcpy(&extra_data[extra_data_len], name, 
779                                strlen(name));
780                         extra_data_len += strlen(name);
781                         extra_data[extra_data_len++] = ',';
782                 }
783
784                 free(groups.sam_entries);
785         }
786
787         /* Assign extra_data fields in response structure */
788         if (extra_data) {
789                 extra_data[extra_data_len - 1] = '\0';
790                 state->response.extra_data = extra_data;
791                 state->response.length += extra_data_len;
792         }
793
794         /* No domains may have responded but that's still OK so don't
795            return an error. */
796
797         return WINBINDD_OK;
798 }
799
800 /* Get user supplementary groups.  This is much quicker than trying to
801    invert the groups database. */
802
803 enum winbindd_result winbindd_getgroups(struct winbindd_cli_state *state)
804 {
805         fstring name_domain, name_user;
806         DOM_SID user_sid;
807         enum SID_NAME_USE name_type;
808         uint32 user_rid, num_groups, num_gids;
809         NTSTATUS status;
810         uint32 *user_gids;
811         struct winbindd_domain *domain;
812         enum winbindd_result result = WINBINDD_ERROR;
813         gid_t *gid_list;
814         int i;
815         TALLOC_CTX *mem_ctx;
816         
817         /* Ensure null termination */
818         state->request.data.username[sizeof(state->request.data.username)-1]='\0';
819
820         DEBUG(3, ("[%5d]: getgroups %s\n", state->pid,
821                   state->request.data.username));
822
823         if (!(mem_ctx = talloc_init("winbindd_getgroups(%s)",
824                                           state->request.data.username)))
825                 return WINBINDD_ERROR;
826
827         /* Parse domain and username */
828
829         if (!parse_domain_user(state->request.data.username, name_domain, 
830                           name_user))
831                 goto done;
832
833         /* Get info for the domain */
834         
835         if ((domain = find_domain_from_name(name_domain)) == NULL) {
836                 DEBUG(0, ("could not find domain entry for domain %s\n", 
837                           name_domain));
838                 goto done;
839         }
840
841         /* Get rid and name type from name.  The following costs 1 packet */
842
843         if (!winbindd_lookup_sid_by_name(domain, name_user, &user_sid, 
844                                          &name_type)) {
845                 DEBUG(1, ("user '%s' does not exist\n", name_user));
846                 goto done;
847         }
848
849         if (name_type != SID_NAME_USER) {
850                 DEBUG(1, ("name '%s' is not a user name: %d\n", 
851                           name_user, name_type));
852                 goto done;
853         }
854
855         sid_split_rid(&user_sid, &user_rid);
856
857         status = domain->methods->lookup_usergroups(domain, mem_ctx, user_rid, &num_groups, &user_gids);
858         if (!NT_STATUS_IS_OK(status)) goto done;
859
860         /* Copy data back to client */
861
862         num_gids = 0;
863         gid_list = malloc(sizeof(gid_t) * num_groups);
864
865         if (state->response.extra_data)
866                 goto done;
867
868         for (i = 0; i < num_groups; i++) {
869                 if (!winbindd_idmap_get_gid_from_rid(domain->name, 
870                                                      user_gids[i], 
871                                                      &gid_list[num_gids])) {
872
873                         DEBUG(1, ("unable to convert group rid %d to gid\n", 
874                                   user_gids[i]));
875                         continue;
876                 }
877                         
878                 num_gids++;
879         }
880
881         state->response.data.num_entries = num_gids;
882         state->response.extra_data = gid_list;
883         state->response.length += num_gids * sizeof(gid_t);
884
885         result = WINBINDD_OK;
886
887  done:
888
889         talloc_destroy(mem_ctx);
890
891         return result;
892 }