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