Print out the 'freindly' error message from winbind. Also print useful
[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-2002
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 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25 #include "winbindd.h"
26 #include "debug.h"
27
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_WINBIND
30
31 extern int winbindd_fd;
32
33 static char winbind_separator(void)
34 {
35         struct winbindd_response response;
36         static BOOL got_sep;
37         static char sep;
38
39         if (got_sep)
40                 return sep;
41
42         ZERO_STRUCT(response);
43
44         /* Send off request */
45
46         if (winbindd_request(WINBINDD_INFO, NULL, &response) !=
47             NSS_STATUS_SUCCESS) {
48                 d_printf("could not obtain winbind separator!\n");
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_printf("winbind separator was NULL!\n");
58                 /* HACK: (this module should not call lp_ funtions) */
59                 sep = *lp_winbind_separator();
60         }
61         
62         return sep;
63 }
64
65 static const char *get_winbind_domain(void)
66 {
67         struct winbindd_response response;
68         static fstring winbind_domain;
69
70         ZERO_STRUCT(response);
71
72         /* Send off request */
73
74         if (winbindd_request(WINBINDD_DOMAIN_NAME, NULL, &response) !=
75             NSS_STATUS_SUCCESS) {
76                 d_printf("could not obtain winbind domain name!\n");
77                 
78                 /* HACK: (this module should not call lp_ funtions) */
79                 return lp_workgroup();
80         }
81
82         fstrcpy(winbind_domain, response.data.domain_name);
83
84         return winbind_domain;
85
86 }
87
88 /* Copy of parse_domain_user from winbindd_util.c.  Parse a string of the
89    form DOMAIN/user into a domain and a user */
90
91 static BOOL parse_wbinfo_domain_user(const char *domuser, fstring domain, 
92                                      fstring user)
93 {
94
95         char *p = strchr(domuser,winbind_separator());
96
97         if (!p) {
98                 fstrcpy(user, domuser);
99                 fstrcpy(domain, get_winbind_domain());
100                 return True;
101         }
102         
103         fstrcpy(user, p+1);
104         fstrcpy(domain, domuser);
105         domain[PTR_DIFF(p, domuser)] = 0;
106         strupper(domain);
107
108         return True;
109 }
110
111 /* List groups a user is a member of */
112
113 static BOOL wbinfo_get_usergroups(char *user)
114 {
115         struct winbindd_request request;
116         struct winbindd_response response;
117         NSS_STATUS result;
118         int i;
119         
120         ZERO_STRUCT(response);
121
122         /* Send request */
123
124         fstrcpy(request.data.username, user);
125
126         result = winbindd_request(WINBINDD_GETGROUPS, &request, &response);
127
128         if (result != NSS_STATUS_SUCCESS)
129                 return False;
130
131         for (i = 0; i < response.data.num_entries; i++)
132                 d_printf("%d\n", (int)((gid_t *)response.extra_data)[i]);
133
134         SAFE_FREE(response.extra_data);
135
136         return True;
137 }
138
139 /* Convert NetBIOS name to IP */
140
141 static BOOL wbinfo_wins_byname(char *name)
142 {
143         struct winbindd_request request;
144         struct winbindd_response response;
145
146         ZERO_STRUCT(request);
147         ZERO_STRUCT(response);
148
149         /* Send request */
150
151         fstrcpy(request.data.winsreq, name);
152
153         if (winbindd_request(WINBINDD_WINS_BYNAME, &request, &response) !=
154             NSS_STATUS_SUCCESS) {
155                 return False;
156         }
157
158         /* Display response */
159
160         printf("%s\n", response.data.winsresp);
161
162         return True;
163 }
164
165 /* Convert IP to NetBIOS name */
166
167 static BOOL wbinfo_wins_byip(char *ip)
168 {
169         struct winbindd_request request;
170         struct winbindd_response response;
171
172         ZERO_STRUCT(request);
173         ZERO_STRUCT(response);
174
175         /* Send request */
176
177         fstrcpy(request.data.winsreq, ip);
178
179         if (winbindd_request(WINBINDD_WINS_BYIP, &request, &response) !=
180             NSS_STATUS_SUCCESS) {
181                 return False;
182         }
183
184         /* Display response */
185
186         printf("%s\n", response.data.winsresp);
187
188         return True;
189 }
190
191 /* List trusted domains */
192
193 static BOOL wbinfo_list_domains(void)
194 {
195         struct winbindd_response response;
196         fstring name;
197
198         ZERO_STRUCT(response);
199
200         /* Send request */
201
202         if (winbindd_request(WINBINDD_LIST_TRUSTDOM, NULL, &response) !=
203             NSS_STATUS_SUCCESS)
204                 return False;
205
206         /* Display response */
207
208         if (response.extra_data) {
209                 const char *extra_data = (char *)response.extra_data;
210
211                 while(next_token(&extra_data, name, ",", sizeof(fstring)))
212                         d_printf("%s\n", name);
213
214                 SAFE_FREE(response.extra_data);
215         }
216
217         return True;
218 }
219
220
221 /* show sequence numbers */
222 static BOOL wbinfo_show_sequence(void)
223 {
224         struct winbindd_response response;
225
226         ZERO_STRUCT(response);
227
228         /* Send request */
229
230         if (winbindd_request(WINBINDD_SHOW_SEQUENCE, NULL, &response) !=
231             NSS_STATUS_SUCCESS)
232                 return False;
233
234         /* Display response */
235
236         if (response.extra_data) {
237                 char *extra_data = (char *)response.extra_data;
238                 d_printf("%s", extra_data);
239                 SAFE_FREE(response.extra_data);
240         }
241
242         return True;
243 }
244
245 /* Check trust account password */
246
247 static BOOL wbinfo_check_secret(void)
248 {
249         struct winbindd_response response;
250         NSS_STATUS result;
251
252         ZERO_STRUCT(response);
253
254         result = winbindd_request(WINBINDD_CHECK_MACHACC, NULL, &response);
255                 
256         d_printf("checking the trust secret via RPC calls %s\n", 
257                  (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
258
259         if (result != NSS_STATUS_SUCCESS)       
260                 d_printf("error code was %s (0x%x)\n", 
261                          response.data.auth.nt_status_string, 
262                          response.data.auth.nt_status);
263         
264         return result == NSS_STATUS_SUCCESS;    
265 }
266
267 /* Convert uid to sid */
268
269 static BOOL wbinfo_uid_to_sid(uid_t uid)
270 {
271         struct winbindd_request request;
272         struct winbindd_response response;
273
274         ZERO_STRUCT(request);
275         ZERO_STRUCT(response);
276
277         /* Send request */
278
279         request.data.uid = uid;
280
281         if (winbindd_request(WINBINDD_UID_TO_SID, &request, &response) !=
282             NSS_STATUS_SUCCESS)
283                 return False;
284
285         /* Display response */
286
287         d_printf("%s\n", response.data.sid.sid);
288
289         return True;
290 }
291
292 /* Convert gid to sid */
293
294 static BOOL wbinfo_gid_to_sid(gid_t gid)
295 {
296         struct winbindd_request request;
297         struct winbindd_response response;
298
299         ZERO_STRUCT(request);
300         ZERO_STRUCT(response);
301
302         /* Send request */
303
304         request.data.gid = gid;
305
306         if (winbindd_request(WINBINDD_GID_TO_SID, &request, &response) !=
307             NSS_STATUS_SUCCESS)
308                 return False;
309
310         /* Display response */
311
312         d_printf("%s\n", response.data.sid.sid);
313
314         return True;
315 }
316
317 /* Convert sid to uid */
318
319 static BOOL wbinfo_sid_to_uid(char *sid)
320 {
321         struct winbindd_request request;
322         struct winbindd_response response;
323
324         ZERO_STRUCT(request);
325         ZERO_STRUCT(response);
326
327         /* Send request */
328
329         fstrcpy(request.data.sid, sid);
330
331         if (winbindd_request(WINBINDD_SID_TO_UID, &request, &response) !=
332             NSS_STATUS_SUCCESS)
333                 return False;
334
335         /* Display response */
336
337         d_printf("%d\n", (int)response.data.uid);
338
339         return True;
340 }
341
342 static BOOL wbinfo_sid_to_gid(char *sid)
343 {
344         struct winbindd_request request;
345         struct winbindd_response response;
346
347         ZERO_STRUCT(request);
348         ZERO_STRUCT(response);
349
350         /* Send request */
351
352         fstrcpy(request.data.sid, sid);
353
354         if (winbindd_request(WINBINDD_SID_TO_GID, &request, &response) !=
355             NSS_STATUS_SUCCESS)
356                 return False;
357
358         /* Display response */
359
360         d_printf("%d\n", (int)response.data.gid);
361
362         return True;
363 }
364
365 /* Convert sid to string */
366
367 static BOOL wbinfo_lookupsid(char *sid)
368 {
369         struct winbindd_request request;
370         struct winbindd_response response;
371
372         ZERO_STRUCT(request);
373         ZERO_STRUCT(response);
374
375         /* Send off request */
376
377         fstrcpy(request.data.sid, sid);
378
379         if (winbindd_request(WINBINDD_LOOKUPSID, &request, &response) !=
380             NSS_STATUS_SUCCESS)
381                 return False;
382
383         /* Display response */
384
385         d_printf("%s%c%s %d\n", response.data.name.dom_name, 
386                  winbind_separator(), response.data.name.name, 
387                  response.data.name.type);
388
389         return True;
390 }
391
392 /* Convert string to sid */
393
394 static BOOL wbinfo_lookupname(char *name)
395 {
396         struct winbindd_request request;
397         struct winbindd_response response;
398
399         /* Send off request */
400
401         ZERO_STRUCT(request);
402         ZERO_STRUCT(response);
403
404         parse_wbinfo_domain_user(name, request.data.name.dom_name, 
405                                  request.data.name.name);
406
407         if (winbindd_request(WINBINDD_LOOKUPNAME, &request, &response) !=
408             NSS_STATUS_SUCCESS)
409                 return False;
410
411         /* Display response */
412
413         d_printf("%s %d\n", response.data.sid.sid, response.data.sid.type);
414
415         return True;
416 }
417
418 /* Authenticate a user with a plaintext password */
419
420 static BOOL wbinfo_auth(char *username)
421 {
422         struct winbindd_request request;
423         struct winbindd_response response;
424         NSS_STATUS result;
425         char *p;
426
427         /* Send off request */
428
429         ZERO_STRUCT(request);
430         ZERO_STRUCT(response);
431
432         p = strchr(username, '%');
433
434         if (p) {
435                 *p = 0;
436                 fstrcpy(request.data.auth.user, username);
437                 fstrcpy(request.data.auth.pass, p + 1);
438                 *p = '%';
439         } else
440                 fstrcpy(request.data.auth.user, username);
441
442         result = winbindd_request(WINBINDD_PAM_AUTH, &request, &response);
443
444         /* Display response */
445
446         d_printf("plaintext password authentication %s\n", 
447                (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
448
449         if (response.data.auth.nt_status)
450                 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n", 
451                          response.data.auth.nt_status_string, 
452                          response.data.auth.nt_status,
453                          response.data.auth.error_string);
454
455         return result == NSS_STATUS_SUCCESS;
456 }
457
458 /* Authenticate a user with a challenge/response */
459
460 static BOOL wbinfo_auth_crap(char *username)
461 {
462         struct winbindd_request request;
463         struct winbindd_response response;
464         NSS_STATUS result;
465         fstring name_user;
466         fstring name_domain;
467         fstring pass;
468         char *p;
469
470         /* Send off request */
471
472         ZERO_STRUCT(request);
473         ZERO_STRUCT(response);
474
475         p = strchr(username, '%');
476
477         if (p) {
478                 *p = 0;
479                 fstrcpy(pass, p + 1);
480         }
481                 
482         parse_wbinfo_domain_user(username, name_domain, name_user);
483
484         fstrcpy(request.data.auth_crap.user, name_user);
485
486         fstrcpy(request.data.auth_crap.domain, name_domain);
487
488         generate_random_buffer(request.data.auth_crap.chal, 8, False);
489         
490         SMBencrypt(pass, request.data.auth_crap.chal, 
491                    (uchar *)request.data.auth_crap.lm_resp);
492         SMBNTencrypt(pass, request.data.auth_crap.chal,
493                      (uchar *)request.data.auth_crap.nt_resp);
494
495         request.data.auth_crap.lm_resp_len = 24;
496         request.data.auth_crap.nt_resp_len = 24;
497
498         result = winbindd_request(WINBINDD_PAM_AUTH_CRAP, &request, &response);
499
500         /* Display response */
501
502         d_printf("challenge/response password authentication %s\n", 
503                (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
504
505         if (response.data.auth.nt_status)
506                 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n", 
507                          response.data.auth.nt_status_string, 
508                          response.data.auth.nt_status,
509                          response.data.auth.error_string);
510
511         return result == NSS_STATUS_SUCCESS;
512 }
513
514 /* Print domain users */
515
516 static BOOL print_domain_users(void)
517 {
518         struct winbindd_response response;
519         const char *extra_data;
520         fstring name;
521
522         /* Send request to winbind daemon */
523
524         ZERO_STRUCT(response);
525
526         if (winbindd_request(WINBINDD_LIST_USERS, NULL, &response) !=
527             NSS_STATUS_SUCCESS)
528                 return False;
529
530         /* Look through extra data */
531
532         if (!response.extra_data)
533                 return False;
534
535         extra_data = (const char *)response.extra_data;
536
537         while(next_token(&extra_data, name, ",", sizeof(fstring)))
538                 d_printf("%s\n", name);
539         
540         SAFE_FREE(response.extra_data);
541
542         return True;
543 }
544
545 /* Print domain groups */
546
547 static BOOL print_domain_groups(void)
548 {
549         struct winbindd_response response;
550         const char *extra_data;
551         fstring name;
552
553         ZERO_STRUCT(response);
554
555         if (winbindd_request(WINBINDD_LIST_GROUPS, NULL, &response) !=
556             NSS_STATUS_SUCCESS)
557                 return False;
558
559         /* Look through extra data */
560
561         if (!response.extra_data)
562                 return False;
563
564         extra_data = (const char *)response.extra_data;
565
566         while(next_token(&extra_data, name, ",", sizeof(fstring)))
567                 d_printf("%s\n", name);
568
569         SAFE_FREE(response.extra_data);
570         
571         return True;
572 }
573
574 /* Set the authorised user for winbindd access in secrets.tdb */
575
576 static BOOL wbinfo_set_auth_user(char *username)
577 {
578         char *password;
579         fstring user, domain;
580
581         /* Separate into user and password */
582
583         parse_wbinfo_domain_user(username, domain, user);
584
585         password = strchr(user, '%');
586
587         if (password) {
588                 *password = 0;
589                 password++;
590         } else
591                 password = "";
592
593         /* Store or remove DOMAIN\username%password in secrets.tdb */
594
595         secrets_init();
596
597         if (user[0]) {
598
599                 if (!secrets_store(SECRETS_AUTH_USER, user,
600                                    strlen(user) + 1)) {
601                         d_fprintf(stderr, "error storing username\n");
602                         return False;
603                 }
604
605                 /* We always have a domain name added by the
606                    parse_wbinfo_domain_user() function. */
607
608                 if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
609                                    strlen(domain) + 1)) {
610                         d_fprintf(stderr, "error storing domain name\n");
611                         return False;
612                 }
613
614         } else {
615                 secrets_delete(SECRETS_AUTH_USER);
616                 secrets_delete(SECRETS_AUTH_DOMAIN);
617         }
618
619         if (password[0]) {
620
621                 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
622                                    strlen(password) + 1)) {
623                         d_fprintf(stderr, "error storing password\n");
624                         return False;
625                 }
626
627         } else
628                 secrets_delete(SECRETS_AUTH_PASSWORD);
629
630         return True;
631 }
632
633 static void wbinfo_get_auth_user(void)
634 {
635         char *user, *domain, *password;
636
637         /* Lift data from secrets file */
638
639         secrets_init();
640
641         user = secrets_fetch(SECRETS_AUTH_USER, NULL);
642         domain = secrets_fetch(SECRETS_AUTH_DOMAIN, NULL);
643         password = secrets_fetch(SECRETS_AUTH_PASSWORD, NULL);
644
645         if (!user && !domain && !password) {
646                 d_printf("No authorised user configured\n");
647                 return;
648         }
649
650         /* Pretty print authorised user info */
651
652         d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? "\\" : "",
653                  user, password ? "%" : "", password ? password : "");
654
655         SAFE_FREE(user);
656         SAFE_FREE(domain);
657         SAFE_FREE(password);
658 }
659
660 static BOOL wbinfo_ping(void)
661 {
662         NSS_STATUS result;
663
664         result = winbindd_request(WINBINDD_PING, NULL, NULL);
665
666         /* Display response */
667
668         d_printf("Ping to winbindd %s on fd %d\n", 
669                (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", winbindd_fd);
670
671         return result == NSS_STATUS_SUCCESS;
672 }
673
674 /* Main program */
675
676 enum {
677         OPT_SET_AUTH_USER = 1000,
678         OPT_GET_AUTH_USER,
679         OPT_SEQUENCE
680 };
681
682 int main(int argc, char **argv)
683 {
684         int opt;
685
686         poptContext pc;
687         static char *string_arg;
688         static int int_arg;
689         BOOL got_command = False;
690         int result = 1;
691
692         struct poptOption long_options[] = {
693                 POPT_AUTOHELP
694
695                 /* longName, shortName, argInfo, argPtr, value, descrip, 
696                    argDesc */
697
698                 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users"},
699                 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups" },
700                 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
701                 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
702                 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
703                 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
704                 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
705                 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
706                 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
707                 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
708                 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
709                 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
710                 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
711                 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
712                 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
713                 { "set-auth-user", 'A', POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
714                 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
715                 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
716                 POPT_COMMON_VERSION
717                 POPT_TABLEEND
718         };
719
720         /* Samba client initialisation */
721
722         if (!lp_load(dyn_CONFIGFILE, True, False, False)) {
723                 d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
724                         dyn_CONFIGFILE, strerror(errno));
725                 exit(1);
726         }
727
728         if (!init_names())
729                 return 1;
730
731         load_interfaces();
732
733         /* Parse options */
734
735         pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
736
737         /* Parse command line options */
738
739         if (argc == 1) {
740                 poptPrintHelp(pc, stderr, 0);
741                 return 1;
742         }
743
744         while((opt = poptGetNextOpt(pc)) != -1) {
745                 if (got_command) {
746                         d_fprintf(stderr, "No more than one command may be specified at once.\n");
747                         exit(1);
748                 }
749                 got_command = True;
750         }
751
752         poptFreeContext(pc);
753
754         pc = poptGetContext(NULL, argc, (const char **)argv, long_options, 
755                             POPT_CONTEXT_KEEP_FIRST);
756
757         while((opt = poptGetNextOpt(pc)) != -1) {
758                 switch (opt) {
759                 case 'u':
760                         if (!print_domain_users()) {
761                                 d_printf("Error looking up domain users\n");
762                                 goto done;
763                         }
764                         break;
765                 case 'g':
766                         if (!print_domain_groups()) {
767                                 d_printf("Error looking up domain groups\n");
768                                 goto done;
769                         }
770                         break;
771                 case 's':
772                         if (!wbinfo_lookupsid(string_arg)) {
773                                 d_printf("Could not lookup sid %s\n", string_arg);
774                                 goto done;
775                         }
776                         break;
777                 case 'n':
778                         if (!wbinfo_lookupname(string_arg)) {
779                                 d_printf("Could not lookup name %s\n", string_arg);
780                                 goto done;
781                         }
782                         break;
783                 case 'N':
784                         if (!wbinfo_wins_byname(string_arg)) {
785                                 d_printf("Could not lookup WINS by name %s\n", string_arg);
786                                 goto done;
787                         }
788                         break;
789                 case 'I':
790                         if (!wbinfo_wins_byip(string_arg)) {
791                                 d_printf("Could not lookup WINS by IP %s\n", string_arg);
792                                 goto done;
793                         }
794                         break;
795                 case 'U':
796                         if (!wbinfo_uid_to_sid(int_arg)) {
797                                 d_printf("Could not convert uid %d to sid\n", int_arg);
798                                 goto done;
799                         }
800                         break;
801                 case 'G':
802                         if (!wbinfo_gid_to_sid(int_arg)) {
803                                 d_printf("Could not convert gid %d to sid\n",
804                                        int_arg);
805                                 goto done;
806                         }
807                         break;
808                 case 'S':
809                         if (!wbinfo_sid_to_uid(string_arg)) {
810                                 d_printf("Could not convert sid %s to uid\n",
811                                        string_arg);
812                                 goto done;
813                         }
814                         break;
815                 case 'Y':
816                         if (!wbinfo_sid_to_gid(string_arg)) {
817                                 d_printf("Could not convert sid %s to gid\n",
818                                        string_arg);
819                                 goto done;
820                         }
821                         break;
822                 case 't':
823                         if (!wbinfo_check_secret()) {
824                                 d_printf("Could not check secret\n");
825                                 goto done;
826                         }
827                         break;
828                 case 'm':
829                         if (!wbinfo_list_domains()) {
830                                 d_printf("Could not list trusted domains\n");
831                                 goto done;
832                         }
833                         break;
834                 case OPT_SEQUENCE:
835                         if (!wbinfo_show_sequence()) {
836                                 d_printf("Could not show sequence numbers\n");
837                                 goto done;
838                         }
839                         break;
840                 case 'r':
841                         if (!wbinfo_get_usergroups(string_arg)) {
842                                 d_printf("Could not get groups for user %s\n", 
843                                        string_arg);
844                                 goto done;
845                         }
846                         break;
847                 case 'a': {
848                                           BOOL got_error = False;
849
850                                           if (!wbinfo_auth(string_arg)) {
851                                                   d_printf("Could not authenticate user %s with "
852                                                                    "plaintext password\n", string_arg);
853                                                   got_error = True;
854                                           }
855
856                                           if (!wbinfo_auth_crap(string_arg)) {
857                                                   d_printf("Could not authenticate user %s with "
858                                                                    "challenge/response\n", string_arg);
859                                                   got_error = True;
860                                           }
861
862                                           if (got_error)
863                                                   goto done;
864                                           break;
865                                   }
866                 case 'p': {
867                                           if (!wbinfo_ping()) {
868                                                   d_printf("could not ping winbindd!\n");
869                                                   goto done;
870                                           }
871                                           break;
872                                   }
873                 case OPT_SET_AUTH_USER:
874                         wbinfo_set_auth_user(string_arg);
875                         break;
876                 case OPT_GET_AUTH_USER:
877                         wbinfo_get_auth_user();
878                         break;
879                 default:
880                         d_fprintf(stderr, "Invalid option\n");
881                         poptPrintHelp(pc, stderr, 0);
882                         goto done;
883                 }
884         }
885
886         result = 0;
887
888         /* Exit code */
889
890  done:
891         poptFreeContext(pc);
892         return result;
893 }