Rename WBC_DOMAIN_XXX domain flags to WBC_DOMINFO_DOMAIN_XXX
[ira/wip.git] / source3 / nsswitch / wbinfo.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Winbind status program.
5
6    Copyright (C) Tim Potter      2000-2003
7    Copyright (C) Andrew Bartlett 2002
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 3 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, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "includes.h"
24 #include "winbind_client.h"
25 #include "libwbclient/wbclient.h"
26
27 #undef DBGC_CLASS
28 #define DBGC_CLASS DBGC_WINBIND
29
30 static struct wbcInterfaceDetails *init_interface_details(void)
31 {
32         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
33         static struct wbcInterfaceDetails *details;
34
35         if (details) {
36                 return details;
37         }
38
39         wbc_status = wbcInterfaceDetails(&details);
40         if (!WBC_ERROR_IS_OK(wbc_status)) {
41                 d_fprintf(stderr, "could not obtain winbind interface details!\n");
42         }
43
44         return details;
45 }
46
47 static char winbind_separator_int(bool strict)
48 {
49         struct wbcInterfaceDetails *details;
50         static bool got_sep;
51         static char sep;
52
53         if (got_sep)
54                 return sep;
55
56         details = init_interface_details();
57
58         if (!details) {
59                 d_fprintf(stderr, "could not obtain winbind separator!\n");
60                 if (strict) {
61                         return 0;
62                 }
63                 /* HACK: (this module should not call lp_ funtions) */
64                 return *lp_winbind_separator();
65         }
66
67         sep = details->winbind_separator;
68         got_sep = true;
69
70         if (!sep) {
71                 d_fprintf(stderr, "winbind separator was NULL!\n");
72                 if (strict) {
73                         return 0;
74                 }
75                 /* HACK: (this module should not call lp_ funtions) */
76                 sep = *lp_winbind_separator();
77         }
78         
79         return sep;
80 }
81
82 static char winbind_separator(void)
83 {
84         return winbind_separator_int(false);
85 }
86
87 static const char *get_winbind_domain(void)
88 {
89         static struct wbcInterfaceDetails *details;
90
91         details = init_interface_details();
92
93         if (!details) {
94                 d_fprintf(stderr, "could not obtain winbind domain name!\n");
95
96                 /* HACK: (this module should not call lp_ functions) */
97                 return lp_workgroup();
98         }
99
100         return details->netbios_domain;
101 }
102
103 /* Copy of parse_domain_user from winbindd_util.c.  Parse a string of the
104    form DOMAIN/user into a domain and a user */
105
106 static bool parse_wbinfo_domain_user(const char *domuser, fstring domain,
107                                      fstring user)
108 {
109
110         char *p = strchr(domuser,winbind_separator());
111
112         if (!p) {
113                 /* Maybe it was a UPN? */
114                 if ((p = strchr(domuser, '@')) != NULL) {
115                         fstrcpy(domain, "");
116                         fstrcpy(user, domuser);
117                         return true;
118                 }
119
120                 fstrcpy(user, domuser);
121                 fstrcpy(domain, get_winbind_domain());
122                 return true;
123         }
124
125         fstrcpy(user, p+1);
126         fstrcpy(domain, domuser);
127         domain[PTR_DIFF(p, domuser)] = 0;
128         strupper_m(domain);
129
130         return true;
131 }
132
133 /* pull pwent info for a given user */
134
135 static bool wbinfo_get_userinfo(char *user)
136 {
137         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
138         struct passwd *pwd = NULL;
139
140         wbc_status = wbcGetpwnam(user, &pwd);
141         if (!WBC_ERROR_IS_OK(wbc_status)) {
142                 return false;
143         }
144
145         d_printf("%s:%s:%d:%d:%s:%s:%s\n",
146                  pwd->pw_name,
147                  pwd->pw_passwd,
148                  pwd->pw_uid,
149                  pwd->pw_gid,
150                  pwd->pw_gecos,
151                  pwd->pw_dir,
152                  pwd->pw_shell);
153
154         return true;
155 }
156
157 /* pull pwent info for a given uid */
158 static bool wbinfo_get_uidinfo(int uid)
159 {
160         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
161         struct passwd *pwd = NULL;
162
163         wbc_status = wbcGetpwuid(uid, &pwd);
164         if (!WBC_ERROR_IS_OK(wbc_status)) {
165                 return false;
166         }
167
168         d_printf("%s:%s:%d:%d:%s:%s:%s\n",
169                  pwd->pw_name,
170                  pwd->pw_passwd,
171                  pwd->pw_uid,
172                  pwd->pw_gid,
173                  pwd->pw_gecos,
174                  pwd->pw_dir,
175                  pwd->pw_shell);
176
177         return true;
178 }
179
180 /* pull grent for a given group */
181 static bool wbinfo_get_groupinfo(const char *group)
182 {
183         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
184         struct group *grp;
185
186         wbc_status = wbcGetgrnam(group, &grp);
187         if (!WBC_ERROR_IS_OK(wbc_status)) {
188                 return false;
189         }
190
191         d_printf("%s:%s:%d\n",
192                  grp->gr_name,
193                  grp->gr_passwd,
194                  grp->gr_gid);
195
196         wbcFreeMemory(grp);
197
198         return true;
199 }
200
201 /* List groups a user is a member of */
202
203 static bool wbinfo_get_usergroups(const char *user)
204 {
205         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
206         uint32_t num_groups;
207         uint32_t i;
208         gid_t *groups = NULL;
209
210         /* Send request */
211
212         wbc_status = wbcGetGroups(user, &num_groups, &groups);
213         if (!WBC_ERROR_IS_OK(wbc_status)) {
214                 return false;
215         }
216
217         for (i = 0; i < num_groups; i++) {
218                 d_printf("%d\n", (int)groups[i]);
219         }
220
221         wbcFreeMemory(groups);
222
223         return true;
224 }
225
226
227 /* List group SIDs a user SID is a member of */
228 static bool wbinfo_get_usersids(const char *user_sid_str)
229 {
230         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
231         uint32_t num_sids;
232         uint32_t i;
233         struct wbcDomainSid user_sid, *sids = NULL;
234
235         /* Send request */
236
237         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
238         if (!WBC_ERROR_IS_OK(wbc_status)) {
239                 return false;
240         }
241
242         wbc_status = wbcLookupUserSids(&user_sid, false, &num_sids, &sids);
243         if (!WBC_ERROR_IS_OK(wbc_status)) {
244                 return false;
245         }
246
247         for (i = 0; i < num_sids; i++) {
248                 char *str = NULL;
249                 wbc_status = wbcSidToString(&sids[i], &str);
250                 if (!WBC_ERROR_IS_OK(wbc_status)) {
251                         wbcFreeMemory(sids);
252                         return false;
253                 }
254                 d_printf("%s\n", str);
255                 wbcFreeMemory(str);
256         }
257
258         wbcFreeMemory(sids);
259
260         return true;
261 }
262
263 static bool wbinfo_get_userdomgroups(const char *user_sid_str)
264 {
265         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
266         uint32_t num_sids;
267         uint32_t i;
268         struct wbcDomainSid user_sid, *sids = NULL;
269
270         /* Send request */
271
272         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
273         if (!WBC_ERROR_IS_OK(wbc_status)) {
274                 return false;
275         }
276
277         wbc_status = wbcLookupUserSids(&user_sid, true, &num_sids, &sids);
278         if (!WBC_ERROR_IS_OK(wbc_status)) {
279                 return false;
280         }
281
282         for (i = 0; i < num_sids; i++) {
283                 char *str = NULL;
284                 wbc_status = wbcSidToString(&sids[i], &str);
285                 if (!WBC_ERROR_IS_OK(wbc_status)) {
286                         wbcFreeMemory(sids);
287                         return false;
288                 }
289                 d_printf("%s\n", str);
290                 wbcFreeMemory(str);
291         }
292
293         wbcFreeMemory(sids);
294
295         return true;
296 }
297
298 /* Convert NetBIOS name to IP */
299
300 static bool wbinfo_wins_byname(const char *name)
301 {
302         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
303         char *ip = NULL;
304
305         wbc_status = wbcResolveWinsByName(name, &ip);
306         if (!WBC_ERROR_IS_OK(wbc_status)) {
307                 return false;
308         }
309
310         /* Display response */
311
312         d_printf("%s\n", ip);
313
314         wbcFreeMemory(ip);
315
316         return true;
317 }
318
319 /* Convert IP to NetBIOS name */
320
321 static bool wbinfo_wins_byip(const char *ip)
322 {
323         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
324         char *name = NULL;
325
326         wbc_status = wbcResolveWinsByIP(ip, &name);
327         if (!WBC_ERROR_IS_OK(wbc_status)) {
328                 return false;
329         }
330
331         /* Display response */
332
333         d_printf("%s\n", name);
334
335         wbcFreeMemory(name);
336
337         return true;
338 }
339
340 /* List all/trusted domains */
341
342 static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
343 {
344         struct wbcDomainInfo *domain_list = NULL;
345         size_t num_domains;
346         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
347         bool print_all = !list_all_domains && verbose;
348         int i;
349
350         wbc_status = wbcListTrusts(&domain_list, &num_domains);
351         if (!WBC_ERROR_IS_OK(wbc_status)) {
352                 return false;
353         }
354
355         if (print_all) {
356                 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n", 
357                          "Domain Name", "DNS Domain", "Trust Type", 
358                          "Transitive", "In", "Out");
359         }
360
361         for (i=0; i<num_domains; i++) {
362                 d_printf("%-16s", domain_list[i].short_name);
363
364                 if (!print_all) {
365                         d_printf("\n"); 
366                         continue;
367                 }
368
369                 d_printf("%-24s", domain_list[i].dns_name);
370
371                 switch(domain_list[i].trust_type) {
372                 case WBC_DOMINFO_TRUSTTYPE_NONE:
373                         d_printf("None        ");
374                         break;
375                 case WBC_DOMINFO_TRUSTTYPE_FOREST:              
376                         d_printf("Forest      ");
377                         break;
378                 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:            
379                         d_printf("External    ");
380                         break;
381                 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
382                         d_printf("In-Forest   ");
383                         break;
384                 }
385
386                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
387                         d_printf("Yes         ");
388                 } else {
389                         d_printf("No          ");
390                 }
391
392                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
393                         d_printf("Yes  ");
394                 } else {
395                         d_printf("No   ");
396                 }
397
398                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
399                         d_printf("Yes  ");
400                 } else {
401                         d_printf("No   ");
402                 }
403
404                 d_printf("\n");
405         }
406
407         return true;
408 }
409
410 /* List own domain */
411
412 static bool wbinfo_list_own_domain(void)
413 {
414         d_printf("%s\n", get_winbind_domain());
415
416         return true;
417 }
418
419 /* show sequence numbers */
420 static bool wbinfo_show_sequence(const char *domain)
421 {
422         struct winbindd_request  request;
423         struct winbindd_response response;
424
425         ZERO_STRUCT(response);
426         ZERO_STRUCT(request);
427
428         if ( domain )
429                 fstrcpy( request.domain_name, domain );
430
431         /* Send request */
432
433         if (winbindd_request_response(WINBINDD_SHOW_SEQUENCE, &request, &response) !=
434             NSS_STATUS_SUCCESS)
435                 return false;
436
437         /* Display response */
438
439         if (domain) {
440                 d_printf("%s : ", domain);
441                 if (response.data.sequence_number == (uint32_t)-1) {
442                         d_printf("DISCONNECTED\n");
443                 } else {
444                         d_printf("%d\n", response.data.sequence_number);
445                 }
446         } else if (response.extra_data.data) {
447                 char *extra_data = (char *)response.extra_data.data;
448                 d_printf("%s", extra_data);
449                 SAFE_FREE(response.extra_data.data);
450         }
451
452         return true;
453 }
454
455 /* Show domain info */
456
457 static bool wbinfo_domain_info(const char *domain)
458 {
459         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
460         struct wbcDomainInfo *dinfo = NULL;
461         char *sid_str = NULL;
462
463         if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
464                 domain = get_winbind_domain();
465         }
466
467         /* Send request */
468
469         wbc_status = wbcDomainInfo(domain, &dinfo);
470         if (!WBC_ERROR_IS_OK(wbc_status)) {
471                 return false;
472         }
473
474         wbc_status = wbcSidToString(&dinfo->sid, &sid_str);
475         if (!WBC_ERROR_IS_OK(wbc_status)) {
476                 wbcFreeMemory(dinfo);
477                 return false;
478         }
479
480         /* Display response */
481
482         d_printf("Name              : %s\n", dinfo->short_name);
483         d_printf("Alt_Name          : %s\n", dinfo->dns_name);
484
485         d_printf("SID               : %s\n", sid_str);
486
487         d_printf("Active Directory  : %s\n",
488                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
489         d_printf("Native            : %s\n",
490                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ? "Yes" : "No");
491
492         d_printf("Primary           : %s\n",
493                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ? "Yes" : "No");
494
495         wbcFreeMemory(sid_str);
496         wbcFreeMemory(dinfo);
497
498         return true;
499 }
500
501 /* Get a foreign DC's name */
502 static bool wbinfo_getdcname(const char *domain_name)
503 {
504         struct winbindd_request request;
505         struct winbindd_response response;
506
507         ZERO_STRUCT(request);
508         ZERO_STRUCT(response);
509
510         fstrcpy(request.domain_name, domain_name);
511
512         /* Send request */
513
514         if (winbindd_request_response(WINBINDD_GETDCNAME, &request, &response) !=
515             NSS_STATUS_SUCCESS) {
516                 d_fprintf(stderr, "Could not get dc name for %s\n", domain_name);
517                 return false;
518         }
519
520         /* Display response */
521
522         d_printf("%s\n", response.data.dc_name);
523
524         return true;
525 }
526
527 /* Find a DC */
528 static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
529 {
530         struct winbindd_request request;
531         struct winbindd_response response;
532
533         ZERO_STRUCT(request);
534         ZERO_STRUCT(response);
535
536         fstrcpy(request.domain_name, domain_name);
537         request.flags = flags;
538
539         request.flags |= DS_DIRECTORY_SERVICE_REQUIRED;
540
541         /* Send request */
542
543         if (winbindd_request_response(WINBINDD_DSGETDCNAME, &request, &response) !=
544             NSS_STATUS_SUCCESS) {
545                 d_fprintf(stderr, "Could not find dc for %s\n", domain_name);
546                 return false;
547         }
548
549         /* Display response */
550
551         d_printf("%s\n", response.data.dc_name);
552
553         return true;
554 }
555
556 /* Check trust account password */
557
558 static bool wbinfo_check_secret(void)
559 {
560         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
561         struct wbcAuthErrorInfo *error = NULL;
562
563         wbc_status = wbcCheckTrustCredentials(NULL, &error);
564
565         d_printf("checking the trust secret via RPC calls %s\n",
566                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
567
568         if (wbc_status == WBC_ERR_AUTH_ERROR) {
569                 d_fprintf(stderr, "error code was %s (0x%x)\n",
570                           error->nt_string, error->nt_status);
571                 wbcFreeMemory(error);
572         }
573         if (!WBC_ERROR_IS_OK(wbc_status)) {
574                 return false;
575         }
576
577         return true;
578 }
579
580 /* Convert uid to sid */
581
582 static bool wbinfo_uid_to_sid(uid_t uid)
583 {
584         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
585         struct wbcDomainSid sid;
586         char *sid_str = NULL;
587
588         /* Send request */
589
590         wbc_status = wbcUidToSid(uid, &sid);
591         if (!WBC_ERROR_IS_OK(wbc_status)) {
592                 return false;
593         }
594
595         wbc_status = wbcSidToString(&sid, &sid_str);
596         if (!WBC_ERROR_IS_OK(wbc_status)) {
597                 return false;
598         }
599
600         /* Display response */
601
602         d_printf("%s\n", sid_str);
603
604         wbcFreeMemory(sid_str);
605
606         return true;
607 }
608
609 /* Convert gid to sid */
610
611 static bool wbinfo_gid_to_sid(gid_t gid)
612 {
613         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
614         struct wbcDomainSid sid;
615         char *sid_str = NULL;
616
617         /* Send request */
618
619         wbc_status = wbcGidToSid(gid, &sid);
620         if (!WBC_ERROR_IS_OK(wbc_status)) {
621                 return false;
622         }
623
624         wbc_status = wbcSidToString(&sid, &sid_str);
625         if (!WBC_ERROR_IS_OK(wbc_status)) {
626                 return false;
627         }
628
629         /* Display response */
630
631         d_printf("%s\n", sid_str);
632
633         wbcFreeMemory(sid_str);
634
635         return true;
636 }
637
638 /* Convert sid to uid */
639
640 static bool wbinfo_sid_to_uid(const char *sid_str)
641 {
642         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
643         struct wbcDomainSid sid;
644         uid_t uid;
645
646         /* Send request */
647
648         wbc_status = wbcStringToSid(sid_str, &sid);
649         if (!WBC_ERROR_IS_OK(wbc_status)) {
650                 return false;
651         }
652
653         wbc_status = wbcSidToUid(&sid, &uid);
654         if (!WBC_ERROR_IS_OK(wbc_status)) {
655                 return false;
656         }
657
658         /* Display response */
659
660         d_printf("%d\n", (int)uid);
661
662         return true;
663 }
664
665 static bool wbinfo_sid_to_gid(const char *sid_str)
666 {
667         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
668         struct wbcDomainSid sid;
669         gid_t gid;
670
671         /* Send request */
672
673         wbc_status = wbcStringToSid(sid_str, &sid);
674         if (!WBC_ERROR_IS_OK(wbc_status)) {
675                 return false;
676         }
677
678         wbc_status = wbcSidToGid(&sid, &gid);
679         if (!WBC_ERROR_IS_OK(wbc_status)) {
680                 return false;
681         }
682
683         /* Display response */
684
685         d_printf("%d\n", (int)gid);
686
687         return true;
688 }
689
690 static bool wbinfo_allocate_uid(void)
691 {
692         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
693         uid_t uid;
694
695         /* Send request */
696
697         wbc_status = wbcAllocateUid(&uid);
698         if (!WBC_ERROR_IS_OK(wbc_status)) {
699                 return false;
700         }
701
702         /* Display response */
703
704         d_printf("New uid: %d\n", uid);
705
706         return true;
707 }
708
709 static bool wbinfo_allocate_gid(void)
710 {
711         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
712         gid_t gid;
713
714         /* Send request */
715
716         wbc_status = wbcAllocateGid(&gid);
717         if (!WBC_ERROR_IS_OK(wbc_status)) {
718                 return false;
719         }
720
721         /* Display response */
722
723         d_printf("New gid: %d\n", gid);
724
725         return true;
726 }
727
728 /* Convert sid to string */
729
730 static bool wbinfo_lookupsid(const char *sid_str)
731 {
732         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
733         struct wbcDomainSid sid;
734         char *domain;
735         char *name;
736         enum wbcSidType type;
737
738         /* Send off request */
739
740         wbc_status = wbcStringToSid(sid_str, &sid);
741         if (!WBC_ERROR_IS_OK(wbc_status)) {
742                 return false;
743         }
744
745         wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
746         if (!WBC_ERROR_IS_OK(wbc_status)) {
747                 return false;
748         }
749
750         /* Display response */
751
752         d_printf("%s%c%s %d\n",
753                  domain, winbind_separator(), name, type);
754
755         return true;
756 }
757
758 /* Lookup a list of RIDs */
759
760 static bool wbinfo_lookuprids(const char *domain, const char *arg)
761 {
762         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
763         struct wbcDomainInfo *dinfo = NULL;
764         char *domain_name = NULL;
765         const char **names = NULL;
766         enum wbcSidType *types = NULL;
767         size_t i;
768         int num_rids;
769         uint32 *rids = NULL;
770         const char *p;
771         char *ridstr;
772         TALLOC_CTX *mem_ctx = NULL;
773         bool ret = false;
774
775         if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
776                 domain = get_winbind_domain();
777         }
778
779         /* Send request */
780
781         wbc_status = wbcDomainInfo(domain, &dinfo);
782         if (!WBC_ERROR_IS_OK(wbc_status)) {
783                 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
784                          wbcErrorString(wbc_status));
785                 goto done;
786         }
787
788         mem_ctx = talloc_new(NULL);
789         if (mem_ctx == NULL) {
790                 d_printf("talloc_new failed\n");
791                 goto done;
792         }
793
794         num_rids = 0;
795         rids = NULL;
796         p = arg;
797
798         while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
799                 uint32 rid = strtoul(ridstr, NULL, 10);
800                 ADD_TO_ARRAY(mem_ctx, uint32, rid, &rids, &num_rids);
801         }
802
803         if (rids == NULL) {
804                 d_printf("no rids\n");
805                 goto done;
806         }
807
808         wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
809                                    (const char **)&domain_name, &names, &types);
810         if (!WBC_ERROR_IS_OK(wbc_status)) {
811                 d_printf("winbind_lookup_rids failed: %s\n",
812                          wbcErrorString(wbc_status));
813                 goto done;
814         }
815
816         d_printf("Domain: %s\n", domain_name);
817
818         for (i=0; i<num_rids; i++) {
819                 d_printf("%8d: %s (%s)\n", rids[i], names[i],
820                          sid_type_lookup(types[i]));
821         }
822
823         ret = true;
824 done:
825         if (dinfo) {
826                 wbcFreeMemory(dinfo);
827         }
828         if (domain_name) {
829                 wbcFreeMemory(domain_name);
830         }
831         if (names) {
832                 wbcFreeMemory(names);
833         }
834         if (types) {
835                 wbcFreeMemory(types);
836         }
837         TALLOC_FREE(mem_ctx);
838         return ret;
839 }
840
841 /* Convert string to sid */
842
843 static bool wbinfo_lookupname(const char *full_name)
844 {
845         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
846         struct wbcDomainSid sid;
847         char *sid_str;
848         enum wbcSidType type;
849         fstring domain_name;
850         fstring account_name;
851
852         /* Send off request */
853
854         parse_wbinfo_domain_user(full_name, domain_name,
855                                  account_name);
856
857         wbc_status = wbcLookupName(domain_name, account_name,
858                                    &sid, &type);
859         if (!WBC_ERROR_IS_OK(wbc_status)) {
860                 return false;
861         }
862
863         wbc_status = wbcSidToString(&sid, &sid_str);
864         if (!WBC_ERROR_IS_OK(wbc_status)) {
865                 return false;
866         }
867
868         /* Display response */
869
870         d_printf("%s %s (%d)\n", sid_str, sid_type_lookup(type), type);
871
872         wbcFreeMemory(sid_str);
873
874         return true;
875 }
876
877 /* Authenticate a user with a plaintext password */
878
879 static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32 flags)
880 {
881         struct winbindd_request request;
882         struct winbindd_response response;
883         NSS_STATUS result;
884         char *p;
885
886         /* Send off request */
887
888         ZERO_STRUCT(request);
889         ZERO_STRUCT(response);
890
891         p = strchr(username, '%');
892
893         if (p) {
894                 *p = 0;
895                 fstrcpy(request.data.auth.user, username);
896                 fstrcpy(request.data.auth.pass, p + 1);
897                 *p = '%';
898         } else
899                 fstrcpy(request.data.auth.user, username);
900
901         request.flags = flags;
902
903         fstrcpy(request.data.auth.krb5_cc_type, cctype);
904
905         request.data.auth.uid = geteuid();
906
907         result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
908
909         /* Display response */
910
911         d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n", 
912                 username, (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", cctype);
913
914         if (response.data.auth.nt_status)
915                 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n", 
916                          response.data.auth.nt_status_string, 
917                          response.data.auth.nt_status,
918                          response.data.auth.error_string);
919
920         if (result == NSS_STATUS_SUCCESS) {
921
922                 if (request.flags & WBFLAG_PAM_INFO3_TEXT) {
923                         if (response.data.auth.info3.user_flgs & NETLOGON_CACHED_ACCOUNT) {
924                                 d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
925                         }
926                 }
927
928                 if (response.data.auth.krb5ccname[0] != '\0') {
929                         d_printf("credentials were put in: %s\n", response.data.auth.krb5ccname);
930                 } else {
931                         d_printf("no credentials cached\n");
932                 }
933         }
934
935         return result == NSS_STATUS_SUCCESS;
936 }
937
938 /* Authenticate a user with a plaintext password */
939
940 static bool wbinfo_auth(char *username)
941 {
942         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
943         char *s = NULL;
944         char *p = NULL;
945         const char *password = NULL;
946         char *name = NULL;
947
948         if ((s = SMB_STRDUP(username)) == NULL) {
949                 return false;
950         }
951
952         if ((p = strchr(s, '%')) != NULL) {
953                 *p = 0;
954                 p++;
955                 password = p;
956         } else {
957                 password = "";
958         }
959
960         name = s;
961
962         wbc_status = wbcAuthenticateUser(name, password);
963
964         d_printf("plaintext password authentication %s\n",
965                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
966
967 #if 0
968         if (response.data.auth.nt_status)
969                 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n", 
970                          response.data.auth.nt_status_string,
971                          response.data.auth.nt_status,
972                          response.data.auth.error_string);
973 #endif
974
975         SAFE_FREE(s);
976
977         return WBC_ERROR_IS_OK(wbc_status);
978 }
979
980 /* Authenticate a user with a challenge/response */
981
982 static bool wbinfo_auth_crap(char *username)
983 {
984         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
985         struct wbcAuthUserParams params;
986         struct wbcAuthUserInfo *info = NULL;
987         struct wbcAuthErrorInfo *err = NULL;
988         DATA_BLOB lm = data_blob_null;
989         DATA_BLOB nt = data_blob_null;
990         fstring name_user;
991         fstring name_domain;
992         fstring pass;
993         char *p;
994
995         p = strchr(username, '%');
996
997         if (p) {
998                 *p = 0;
999                 fstrcpy(pass, p + 1);
1000         }
1001                 
1002         parse_wbinfo_domain_user(username, name_domain, name_user);
1003
1004         params.account_name     = name_user;
1005         params.domain_name      = name_domain;
1006         params.workstation_name = NULL;
1007
1008         params.flags            = 0;
1009         params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
1010                                   WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
1011
1012         params.level            = WBC_AUTH_USER_LEVEL_RESPONSE;
1013
1014         generate_random_buffer(params.password.response.challenge, 8);
1015
1016         if (lp_client_ntlmv2_auth()) {
1017                 DATA_BLOB server_chal;
1018                 DATA_BLOB names_blob;
1019
1020                 server_chal = data_blob(params.password.response.challenge, 8);
1021
1022                 /* Pretend this is a login to 'us', for blob purposes */
1023                 names_blob = NTLMv2_generate_names_blob(global_myname(), lp_workgroup());
1024
1025                 if (!SMBNTLMv2encrypt(name_user, name_domain, pass, &server_chal,
1026                                       &names_blob,
1027                                       &lm, &nt, NULL)) {
1028                         data_blob_free(&names_blob);
1029                         data_blob_free(&server_chal);
1030                         return false;
1031                 }
1032                 data_blob_free(&names_blob);
1033                 data_blob_free(&server_chal);
1034
1035         } else {
1036                 if (lp_client_lanman_auth()) {
1037                         bool ok;
1038                         lm = data_blob(NULL, 24);
1039                         ok = SMBencrypt(pass, params.password.response.challenge,
1040                                         lm.data);
1041                         if (!ok) {
1042                                 data_blob_free(&lm);
1043                         }
1044                 }
1045                 nt = data_blob(NULL, 24);
1046                 SMBNTencrypt(pass, params.password.response.challenge,
1047                              nt.data);
1048         }
1049
1050         params.password.response.nt_length      = nt.length;
1051         params.password.response.nt_data        = nt.data;
1052         params.password.response.lm_length      = lm.length;
1053         params.password.response.lm_data        = lm.data;
1054
1055         wbc_status = wbcAuthenticateUserEx(&params, &info, &err);
1056
1057         /* Display response */
1058
1059         d_printf("challenge/response password authentication %s\n",
1060                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1061
1062         if (wbc_status == WBC_ERR_AUTH_ERROR) {
1063                 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n", 
1064                          err->nt_string,
1065                          err->nt_status,
1066                          err->display_string);
1067                 wbcFreeMemory(err);
1068         } else if (WBC_ERROR_IS_OK(wbc_status)) {
1069                 wbcFreeMemory(info);
1070         }
1071
1072         data_blob_free(&nt);
1073         data_blob_free(&lm);
1074
1075         return WBC_ERROR_IS_OK(wbc_status);
1076 }
1077
1078 /* Authenticate a user with a plaintext password and set a token */
1079
1080 static bool wbinfo_klog(char *username)
1081 {
1082         struct winbindd_request request;
1083         struct winbindd_response response;
1084         NSS_STATUS result;
1085         char *p;
1086
1087         /* Send off request */
1088
1089         ZERO_STRUCT(request);
1090         ZERO_STRUCT(response);
1091
1092         p = strchr(username, '%');
1093
1094         if (p) {
1095                 *p = 0;
1096                 fstrcpy(request.data.auth.user, username);
1097                 fstrcpy(request.data.auth.pass, p + 1);
1098                 *p = '%';
1099         } else {
1100                 fstrcpy(request.data.auth.user, username);
1101                 fstrcpy(request.data.auth.pass, getpass("Password: "));
1102         }
1103
1104         request.flags |= WBFLAG_PAM_AFS_TOKEN;
1105
1106         result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
1107
1108         /* Display response */
1109
1110         d_printf("plaintext password authentication %s\n",
1111                  (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1112
1113         if (response.data.auth.nt_status)
1114                 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n", 
1115                          response.data.auth.nt_status_string,
1116                          response.data.auth.nt_status,
1117                          response.data.auth.error_string);
1118
1119         if (result != NSS_STATUS_SUCCESS)
1120                 return false;
1121
1122         if (response.extra_data.data == NULL) {
1123                 d_fprintf(stderr, "Did not get token data\n");
1124                 return false;
1125         }
1126
1127         if (!afs_settoken_str((char *)response.extra_data.data)) {
1128                 d_fprintf(stderr, "Could not set token\n");
1129                 return false;
1130         }
1131
1132         d_printf("Successfully created AFS token\n");
1133         return true;
1134 }
1135
1136 /* Print domain users */
1137
1138 static bool print_domain_users(const char *domain)
1139 {
1140         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1141         uint32_t i;
1142         uint32_t num_users = 0;
1143         const char **users = NULL;
1144
1145         /* Send request to winbind daemon */
1146
1147         /* '.' is the special sign for our own domain */
1148         if (domain && strcmp(domain, ".") == 0) {
1149                 domain = get_winbind_domain();
1150         }
1151
1152         wbc_status = wbcListUsers(domain, &num_users, &users);
1153         if (!WBC_ERROR_IS_OK(wbc_status)) {
1154                 return false;
1155         }
1156
1157         for (i=0; i < num_users; i++) {
1158                 d_printf("%s\n", users[i]);
1159         }
1160
1161         wbcFreeMemory(users);
1162
1163         return true;
1164 }
1165
1166 /* Print domain groups */
1167
1168 static bool print_domain_groups(const char *domain)
1169 {
1170         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1171         uint32_t i;
1172         uint32_t num_groups = 0;
1173         const char **groups = NULL;
1174
1175         /* Send request to winbind daemon */
1176
1177         /* '.' is the special sign for our own domain */
1178         if (domain && strcmp(domain, ".") == 0) {
1179                 domain = get_winbind_domain();
1180         }
1181
1182         wbc_status = wbcListGroups(domain, &num_groups, &groups);
1183         if (!WBC_ERROR_IS_OK(wbc_status)) {
1184                 return false;
1185         }
1186
1187         for (i=0; i < num_groups; i++) {
1188                 d_printf("%s\n", groups[i]);
1189         }
1190
1191         wbcFreeMemory(groups);
1192
1193         return true;
1194 }
1195
1196 /* Set the authorised user for winbindd access in secrets.tdb */
1197
1198 static bool wbinfo_set_auth_user(char *username)
1199 {
1200         const char *password;
1201         char *p;
1202         fstring user, domain;
1203
1204         /* Separate into user and password */
1205
1206         parse_wbinfo_domain_user(username, domain, user);
1207
1208         p = strchr(user, '%');
1209
1210         if (p != NULL) {
1211                 *p = 0;
1212                 password = p+1;
1213         } else {
1214                 char *thepass = getpass("Password: ");
1215                 if (thepass) {
1216                         password = thepass;
1217                 } else
1218                         password = "";
1219         }
1220
1221         /* Store or remove DOMAIN\username%password in secrets.tdb */
1222
1223         secrets_init();
1224
1225         if (user[0]) {
1226
1227                 if (!secrets_store(SECRETS_AUTH_USER, user,
1228                                    strlen(user) + 1)) {
1229                         d_fprintf(stderr, "error storing username\n");
1230                         return false;
1231                 }
1232
1233                 /* We always have a domain name added by the
1234                    parse_wbinfo_domain_user() function. */
1235
1236                 if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
1237                                    strlen(domain) + 1)) {
1238                         d_fprintf(stderr, "error storing domain name\n");
1239                         return false;
1240                 }
1241
1242         } else {
1243                 secrets_delete(SECRETS_AUTH_USER);
1244                 secrets_delete(SECRETS_AUTH_DOMAIN);
1245         }
1246
1247         if (password[0]) {
1248
1249                 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
1250                                    strlen(password) + 1)) {
1251                         d_fprintf(stderr, "error storing password\n");
1252                         return false;
1253                 }
1254
1255         } else
1256                 secrets_delete(SECRETS_AUTH_PASSWORD);
1257
1258         return true;
1259 }
1260
1261 static void wbinfo_get_auth_user(void)
1262 {
1263         char *user, *domain, *password;
1264
1265         /* Lift data from secrets file */
1266
1267         secrets_fetch_ipc_userpass(&user, &domain, &password);
1268
1269         if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
1270
1271                 SAFE_FREE(user);
1272                 SAFE_FREE(domain);
1273                 SAFE_FREE(password);
1274                 d_printf("No authorised user configured\n");
1275                 return;
1276         }
1277
1278         /* Pretty print authorised user info */
1279
1280         d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? lp_winbind_separator(): "",
1281                  user, password ? "%" : "", password ? password : "");
1282
1283         SAFE_FREE(user);
1284         SAFE_FREE(domain);
1285         SAFE_FREE(password);
1286 }
1287
1288 static bool wbinfo_ping(void)
1289 {
1290         wbcErr wbc_status;
1291
1292         wbc_status = wbcPing();
1293
1294         /* Display response */
1295
1296         d_printf("Ping to winbindd %s\n",
1297                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1298
1299         return WBC_ERROR_IS_OK(wbc_status);
1300 }
1301
1302 /* Main program */
1303
1304 enum {
1305         OPT_SET_AUTH_USER = 1000,
1306         OPT_GET_AUTH_USER,
1307         OPT_DOMAIN_NAME,
1308         OPT_SEQUENCE,
1309         OPT_GETDCNAME,
1310         OPT_DSGETDCNAME,
1311         OPT_USERDOMGROUPS,
1312         OPT_USERSIDS,
1313         OPT_ALLOCATE_UID,
1314         OPT_ALLOCATE_GID,
1315         OPT_SEPARATOR,
1316         OPT_LIST_ALL_DOMAINS,
1317         OPT_LIST_OWN_DOMAIN,
1318         OPT_UID_INFO,
1319         OPT_GROUP_INFO,
1320         OPT_VERBOSE
1321 };
1322
1323 int main(int argc, char **argv, char **envp)
1324 {
1325         int opt;
1326         TALLOC_CTX *frame = talloc_stackframe();
1327         poptContext pc;
1328         static char *string_arg;
1329         static char *opt_domain_name;
1330         static int int_arg;
1331         int result = 1;
1332         bool verbose = false;
1333
1334         struct poptOption long_options[] = {
1335                 POPT_AUTOHELP
1336
1337                 /* longName, shortName, argInfo, argPtr, value, descrip,
1338                    argDesc */
1339
1340                 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1341                 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1342                 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1343                 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1344                 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1345                 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1346                 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1347                 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1348                 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1349                 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1350                 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1351                 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1352                   "Get a new UID out of idmap" },
1353                 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1354                   "Get a new GID out of idmap" },
1355                 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1356                 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1357                 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1358                 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1359                 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1360                 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1361                 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1362                 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1363                 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1364                 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1365                 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1366                   OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1367                 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1368                 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1369                 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1370                 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1371                   "Get a DC name for a foreign domain", "domainname" },
1372                 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1373                 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1374                 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1375                 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1376 #ifdef WITH_FAKE_KASERVER
1377                 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1378 #endif
1379 #ifdef HAVE_KRB5
1380                 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1381                         /* destroys wbinfo --help output */
1382                         /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1383 #endif
1384                 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1385                 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1386                 POPT_COMMON_CONFIGFILE
1387                 POPT_COMMON_VERSION
1388                 POPT_TABLEEND
1389         };
1390
1391         /* Samba client initialisation */
1392         load_case_tables();
1393
1394
1395         /* Parse options */
1396
1397         pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
1398
1399         /* Parse command line options */
1400
1401         if (argc == 1) {
1402                 poptPrintHelp(pc, stderr, 0);
1403                 return 1;
1404         }
1405
1406         while((opt = poptGetNextOpt(pc)) != -1) {
1407                 /* get the generic configuration parameters like --domain */
1408                 switch (opt) {
1409                 case OPT_VERBOSE:
1410                         verbose = True;
1411                         break;
1412                 }
1413         }
1414
1415         poptFreeContext(pc);
1416
1417         if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, true)) {
1418                 d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
1419                         get_dyn_CONFIGFILE(), strerror(errno));
1420                 exit(1);
1421         }
1422
1423         if (!init_names())
1424                 return 1;
1425
1426         load_interfaces();
1427
1428         pc = poptGetContext(NULL, argc, (const char **)argv, long_options, 
1429                             POPT_CONTEXT_KEEP_FIRST);
1430
1431         while((opt = poptGetNextOpt(pc)) != -1) {
1432                 switch (opt) {
1433                 case 'u':
1434                         if (!print_domain_users(opt_domain_name)) {
1435                                 d_fprintf(stderr, "Error looking up domain users\n");
1436                                 goto done;
1437                         }
1438                         break;
1439                 case 'g':
1440                         if (!print_domain_groups(opt_domain_name)) {
1441                                 d_fprintf(stderr, "Error looking up domain groups\n");
1442                                 goto done;
1443                         }
1444                         break;
1445                 case 's':
1446                         if (!wbinfo_lookupsid(string_arg)) {
1447                                 d_fprintf(stderr, "Could not lookup sid %s\n", string_arg);
1448                                 goto done;
1449                         }
1450                         break;
1451                 case 'R':
1452                         if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1453                                 d_fprintf(stderr, "Could not lookup RIDs %s\n", string_arg);
1454                                 goto done;
1455                         }
1456                         break;
1457                 case 'n':
1458                         if (!wbinfo_lookupname(string_arg)) {
1459                                 d_fprintf(stderr, "Could not lookup name %s\n", string_arg);
1460                                 goto done;
1461                         }
1462                         break;
1463                 case 'N':
1464                         if (!wbinfo_wins_byname(string_arg)) {
1465                                 d_fprintf(stderr, "Could not lookup WINS by name %s\n", string_arg);
1466                                 goto done;
1467                         }
1468                         break;
1469                 case 'I':
1470                         if (!wbinfo_wins_byip(string_arg)) {
1471                                 d_fprintf(stderr, "Could not lookup WINS by IP %s\n", string_arg);
1472                                 goto done;
1473                         }
1474                         break;
1475                 case 'U':
1476                         if (!wbinfo_uid_to_sid(int_arg)) {
1477                                 d_fprintf(stderr, "Could not convert uid %d to sid\n", int_arg);
1478                                 goto done;
1479                         }
1480                         break;
1481                 case 'G':
1482                         if (!wbinfo_gid_to_sid(int_arg)) {
1483                                 d_fprintf(stderr, "Could not convert gid %d to sid\n",
1484                                        int_arg);
1485                                 goto done;
1486                         }
1487                         break;
1488                 case 'S':
1489                         if (!wbinfo_sid_to_uid(string_arg)) {
1490                                 d_fprintf(stderr, "Could not convert sid %s to uid\n",
1491                                        string_arg);
1492                                 goto done;
1493                         }
1494                         break;
1495                 case 'Y':
1496                         if (!wbinfo_sid_to_gid(string_arg)) {
1497                                 d_fprintf(stderr, "Could not convert sid %s to gid\n",
1498                                        string_arg);
1499                                 goto done;
1500                         }
1501                         break;
1502                 case OPT_ALLOCATE_UID:
1503                         if (!wbinfo_allocate_uid()) {
1504                                 d_fprintf(stderr, "Could not allocate a uid\n");
1505                                 goto done;
1506                         }
1507                         break;
1508                 case OPT_ALLOCATE_GID:
1509                         if (!wbinfo_allocate_gid()) {
1510                                 d_fprintf(stderr, "Could not allocate a gid\n");
1511                                 goto done;
1512                         }
1513                         break;
1514                 case 't':
1515                         if (!wbinfo_check_secret()) {
1516                                 d_fprintf(stderr, "Could not check secret\n");
1517                                 goto done;
1518                         }
1519                         break;
1520                 case 'm':
1521                         if (!wbinfo_list_domains(false, verbose)) {
1522                                 d_fprintf(stderr, "Could not list trusted domains\n");
1523                                 goto done;
1524                         }
1525                         break;
1526                 case OPT_SEQUENCE:
1527                         if (!wbinfo_show_sequence(opt_domain_name)) {
1528                                 d_fprintf(stderr, "Could not show sequence numbers\n");
1529                                 goto done;
1530                         }
1531                         break;
1532                 case 'D':
1533                         if (!wbinfo_domain_info(string_arg)) {
1534                                 d_fprintf(stderr, "Could not get domain info\n");
1535                                 goto done;
1536                         }
1537                         break;
1538                 case 'i':
1539                         if (!wbinfo_get_userinfo(string_arg)) {
1540                                 d_fprintf(stderr, "Could not get info for user %s\n",
1541                                                   string_arg);
1542                                 goto done;
1543                         }
1544                         break;
1545                 case OPT_UID_INFO:
1546                         if ( !wbinfo_get_uidinfo(int_arg)) {
1547                                 d_fprintf(stderr, "Could not get info for uid "
1548                                                 "%d\n", int_arg);
1549                                 goto done;
1550                         }
1551                         break;
1552                 case OPT_GROUP_INFO:
1553                         if ( !wbinfo_get_groupinfo(string_arg)) {
1554                                 d_fprintf(stderr, "Could not get info for "
1555                                           "group %s\n", string_arg);
1556                                 goto done;
1557                         }
1558                         break;
1559                 case 'r':
1560                         if (!wbinfo_get_usergroups(string_arg)) {
1561                                 d_fprintf(stderr, "Could not get groups for user %s\n", 
1562                                        string_arg);
1563                                 goto done;
1564                         }
1565                         break;
1566                 case OPT_USERSIDS:
1567                         if (!wbinfo_get_usersids(string_arg)) {
1568                                 d_fprintf(stderr, "Could not get group SIDs for user SID %s\n", 
1569                                        string_arg);
1570                                 goto done;
1571                         }
1572                         break;
1573                 case OPT_USERDOMGROUPS:
1574                         if (!wbinfo_get_userdomgroups(string_arg)) {
1575                                 d_fprintf(stderr, "Could not get user's domain groups "
1576                                          "for user SID %s\n", string_arg);
1577                                 goto done;
1578                         }
1579                         break;
1580                 case 'a': {
1581                                 bool got_error = false;
1582
1583                                 if (!wbinfo_auth(string_arg)) {
1584                                         d_fprintf(stderr, "Could not authenticate user %s with "
1585                                                 "plaintext password\n", string_arg);
1586                                         got_error = true;
1587                                 }
1588
1589                                 if (!wbinfo_auth_crap(string_arg)) {
1590                                         d_fprintf(stderr, "Could not authenticate user %s with "
1591                                                 "challenge/response\n", string_arg);
1592                                         got_error = true;
1593                                 }
1594
1595                                 if (got_error)
1596                                         goto done;
1597                                 break;
1598                         }
1599                 case 'K': {
1600                                 uint32 flags =  WBFLAG_PAM_KRB5 |
1601                                                 WBFLAG_PAM_CACHED_LOGIN |
1602                                                 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
1603                                                 WBFLAG_PAM_INFO3_TEXT;
1604
1605                                 if (!wbinfo_auth_krb5(string_arg, "FILE", flags)) {
1606                                         d_fprintf(stderr, "Could not authenticate user [%s] with "
1607                                                 "Kerberos (ccache: %s)\n", string_arg, "FILE");
1608                                         goto done;
1609                                 }
1610                                 break;
1611                         }
1612                 case 'k':
1613                         if (!wbinfo_klog(string_arg)) {
1614                                 d_fprintf(stderr, "Could not klog user\n");
1615                                 goto done;
1616                         }
1617                         break;
1618                 case 'p':
1619                         if (!wbinfo_ping()) {
1620                                 d_fprintf(stderr, "could not ping winbindd!\n");
1621                                 goto done;
1622                         }
1623                         break;
1624                 case OPT_SET_AUTH_USER:
1625                         if (!wbinfo_set_auth_user(string_arg)) {
1626                                 goto done;
1627                         }
1628                         break;
1629                 case OPT_GET_AUTH_USER:
1630                         wbinfo_get_auth_user();
1631                         break;
1632                 case OPT_GETDCNAME:
1633                         if (!wbinfo_getdcname(string_arg)) {
1634                                 goto done;
1635                         }
1636                         break;
1637                 case OPT_DSGETDCNAME:
1638                         if (!wbinfo_dsgetdcname(string_arg, 0)) {
1639                                 goto done;
1640                         }
1641                         break;
1642                 case OPT_SEPARATOR: {
1643                         const char sep = winbind_separator_int(true);
1644                         if ( !sep ) {
1645                                 goto done;
1646                         }
1647                         d_printf("%c\n", sep);
1648                         break;
1649                 }
1650                 case OPT_LIST_ALL_DOMAINS:
1651                         if (!wbinfo_list_domains(true, verbose)) {
1652                                 goto done;
1653                         }
1654                         break;
1655                 case OPT_LIST_OWN_DOMAIN:
1656                         if (!wbinfo_list_own_domain()) {
1657                                 goto done;
1658                         }
1659                         break;
1660                 /* generic configuration options */
1661                 case OPT_DOMAIN_NAME:
1662                         break;
1663                 case OPT_VERBOSE:
1664                         break;
1665                 default:
1666                         d_fprintf(stderr, "Invalid option\n");
1667                         poptPrintHelp(pc, stderr, 0);
1668                         goto done;
1669                 }
1670         }
1671
1672         result = 0;
1673
1674         /* Exit code */
1675
1676  done:
1677         talloc_destroy(frame);
1678
1679         poptFreeContext(pc);
1680         return result;
1681 }