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