s3 wbinfo: Explicitly include popt header, remove unused common options.
[sfrench/samba-autobuild/.git] / 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 #include "lib/popt/popt.h"
27 #include "../libcli/auth/libcli_auth.h"
28 #if !(_SAMBA_VERSION_) < 4
29 #include "lib/cmdline/popt_common.h"
30 #endif
31
32
33 #undef DBGC_CLASS
34 #define DBGC_CLASS DBGC_WINBIND
35
36 static struct wbcInterfaceDetails *init_interface_details(void)
37 {
38         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
39         static struct wbcInterfaceDetails *details;
40
41         if (details) {
42                 return details;
43         }
44
45         wbc_status = wbcInterfaceDetails(&details);
46         if (!WBC_ERROR_IS_OK(wbc_status)) {
47                 d_fprintf(stderr, "could not obtain winbind interface "
48                                   "details!\n");
49         }
50
51         return details;
52 }
53
54 static char winbind_separator(void)
55 {
56         struct wbcInterfaceDetails *details;
57         static bool got_sep;
58         static char sep;
59
60         if (got_sep)
61                 return sep;
62
63         details = init_interface_details();
64
65         if (!details) {
66                 d_fprintf(stderr, "could not obtain winbind separator!\n");
67                 return 0;
68         }
69
70         sep = details->winbind_separator;
71         got_sep = true;
72
73         if (!sep) {
74                 d_fprintf(stderr, "winbind separator was NULL!\n");
75                 return 0;
76         }
77
78         return sep;
79 }
80
81 static const char *get_winbind_domain(void)
82 {
83         static struct wbcInterfaceDetails *details;
84
85         details = init_interface_details();
86
87         if (!details) {
88                 d_fprintf(stderr, "could not obtain winbind domain name!\n");
89                 return 0;
90         }
91
92         return details->netbios_domain;
93 }
94
95 static const char *get_winbind_netbios_name(void)
96 {
97         static struct wbcInterfaceDetails *details;
98
99         details = init_interface_details();
100
101         if (!details) {
102                 d_fprintf(stderr, "could not obtain winbind netbios name!\n");
103                 return 0;
104         }
105
106         return details->netbios_name;
107 }
108
109 /* Copy of parse_domain_user from winbindd_util.c.  Parse a string of the
110    form DOMAIN/user into a domain and a user */
111
112 static bool parse_wbinfo_domain_user(const char *domuser, fstring domain,
113                                      fstring user)
114 {
115
116         char *p = strchr(domuser,winbind_separator());
117
118         if (!p) {
119                 /* Maybe it was a UPN? */
120                 if ((p = strchr(domuser, '@')) != NULL) {
121                         fstrcpy(domain, "");
122                         fstrcpy(user, domuser);
123                         return true;
124                 }
125
126                 fstrcpy(user, domuser);
127                 fstrcpy(domain, get_winbind_domain());
128                 return true;
129         }
130
131         fstrcpy(user, p+1);
132         fstrcpy(domain, domuser);
133         domain[PTR_DIFF(p, domuser)] = 0;
134         strupper_m(domain);
135
136         return true;
137 }
138
139 /* Parse string of "uid,sid" or "gid,sid" into separate int and string values.
140  * Return true if input was valid, false otherwise. */
141 static bool parse_mapping_arg(char *arg, int *id, char **sid)
142 {
143         char *tmp, *endptr;
144
145         if (!arg || !*arg)
146                 return false;
147
148         tmp = strtok(arg, ",");
149         *sid = strtok(NULL, ",");
150
151         if (!tmp || !*tmp || !*sid || !**sid)
152                 return false;
153
154         /* Because atoi() can return 0 on invalid input, which would be a valid
155          * UID/GID we must use strtoul() and do error checking */
156         *id = strtoul(tmp, &endptr, 10);
157
158         if (endptr[0] != '\0')
159                 return false;
160
161         return true;
162 }
163
164 /* pull pwent info for a given user */
165
166 static bool wbinfo_get_userinfo(char *user)
167 {
168         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
169         struct passwd *pwd = NULL;
170
171         wbc_status = wbcGetpwnam(user, &pwd);
172         if (!WBC_ERROR_IS_OK(wbc_status)) {
173                 return false;
174         }
175
176         d_printf("%s:%s:%u:%u:%s:%s:%s\n",
177                  pwd->pw_name,
178                  pwd->pw_passwd,
179                  (unsigned int)pwd->pw_uid,
180                  (unsigned int)pwd->pw_gid,
181                  pwd->pw_gecos,
182                  pwd->pw_dir,
183                  pwd->pw_shell);
184
185         return true;
186 }
187
188 /* pull pwent info for a given uid */
189 static bool wbinfo_get_uidinfo(int uid)
190 {
191         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
192         struct passwd *pwd = NULL;
193
194         wbc_status = wbcGetpwuid(uid, &pwd);
195         if (!WBC_ERROR_IS_OK(wbc_status)) {
196                 return false;
197         }
198
199         d_printf("%s:%s:%u:%u:%s:%s:%s\n",
200                  pwd->pw_name,
201                  pwd->pw_passwd,
202                  (unsigned int)pwd->pw_uid,
203                  (unsigned int)pwd->pw_gid,
204                  pwd->pw_gecos,
205                  pwd->pw_dir,
206                  pwd->pw_shell);
207
208         return true;
209 }
210
211 static bool wbinfo_get_user_sidinfo(const char *sid_str)
212 {
213         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
214         struct passwd *pwd = NULL;
215         struct wbcDomainSid sid;
216
217         wbc_status = wbcStringToSid(sid_str, &sid);
218         wbc_status = wbcGetpwsid(&sid, &pwd);
219         if (!WBC_ERROR_IS_OK(wbc_status)) {
220                 return false;
221         }
222
223         d_printf("%s:%s:%u:%u:%s:%s:%s\n",
224                  pwd->pw_name,
225                  pwd->pw_passwd,
226                  (unsigned int)pwd->pw_uid,
227                  (unsigned int)pwd->pw_gid,
228                  pwd->pw_gecos,
229                  pwd->pw_dir,
230                  pwd->pw_shell);
231
232         return true;
233 }
234
235
236 /* pull grent for a given group */
237 static bool wbinfo_get_groupinfo(const char *group)
238 {
239         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
240         struct group *grp;
241         char **mem;
242
243         wbc_status = wbcGetgrnam(group, &grp);
244         if (!WBC_ERROR_IS_OK(wbc_status)) {
245                 return false;
246         }
247
248         d_printf("%s:%s:%u:",
249                  grp->gr_name,
250                  grp->gr_passwd,
251                  (unsigned int)grp->gr_gid);
252
253         mem = grp->gr_mem;
254         while (*mem != NULL) {
255                 d_printf("%s%s", *mem, *(mem+1) != NULL ? "," : "");
256                 mem += 1;
257         }
258         d_printf("\n");
259
260         wbcFreeMemory(grp);
261
262         return true;
263 }
264
265 /* pull grent for a given gid */
266 static bool wbinfo_get_gidinfo(int gid)
267 {
268         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
269         struct group *grp;
270         char **mem;
271
272         wbc_status = wbcGetgrgid(gid, &grp);
273         if (!WBC_ERROR_IS_OK(wbc_status)) {
274                 return false;
275         }
276
277         d_printf("%s:%s:%u:",
278                  grp->gr_name,
279                  grp->gr_passwd,
280                  (unsigned int)grp->gr_gid);
281
282         mem = grp->gr_mem;
283         while (*mem != NULL) {
284                 d_printf("%s%s", *mem, *(mem+1) != NULL ? "," : "");
285                 mem += 1;
286         }
287         d_printf("\n");
288
289         wbcFreeMemory(grp);
290
291         return true;
292 }
293
294 /* List groups a user is a member of */
295
296 static bool wbinfo_get_usergroups(const char *user)
297 {
298         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
299         uint32_t num_groups;
300         uint32_t i;
301         gid_t *groups = NULL;
302
303         /* Send request */
304
305         wbc_status = wbcGetGroups(user, &num_groups, &groups);
306         if (!WBC_ERROR_IS_OK(wbc_status)) {
307                 return false;
308         }
309
310         for (i = 0; i < num_groups; i++) {
311                 d_printf("%d\n", (int)groups[i]);
312         }
313
314         wbcFreeMemory(groups);
315
316         return true;
317 }
318
319
320 /* List group SIDs a user SID is a member of */
321 static bool wbinfo_get_usersids(const char *user_sid_str)
322 {
323         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
324         uint32_t num_sids;
325         uint32_t i;
326         struct wbcDomainSid user_sid, *sids = NULL;
327
328         /* Send request */
329
330         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
331         if (!WBC_ERROR_IS_OK(wbc_status)) {
332                 return false;
333         }
334
335         wbc_status = wbcLookupUserSids(&user_sid, false, &num_sids, &sids);
336         if (!WBC_ERROR_IS_OK(wbc_status)) {
337                 return false;
338         }
339
340         for (i = 0; i < num_sids; i++) {
341                 char *str = NULL;
342                 wbc_status = wbcSidToString(&sids[i], &str);
343                 if (!WBC_ERROR_IS_OK(wbc_status)) {
344                         wbcFreeMemory(sids);
345                         return false;
346                 }
347                 d_printf("%s\n", str);
348                 wbcFreeMemory(str);
349         }
350
351         wbcFreeMemory(sids);
352
353         return true;
354 }
355
356 static bool wbinfo_get_userdomgroups(const char *user_sid_str)
357 {
358         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
359         uint32_t num_sids;
360         uint32_t i;
361         struct wbcDomainSid user_sid, *sids = NULL;
362
363         /* Send request */
364
365         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
366         if (!WBC_ERROR_IS_OK(wbc_status)) {
367                 return false;
368         }
369
370         wbc_status = wbcLookupUserSids(&user_sid, true, &num_sids, &sids);
371         if (!WBC_ERROR_IS_OK(wbc_status)) {
372                 return false;
373         }
374
375         for (i = 0; i < num_sids; i++) {
376                 char *str = NULL;
377                 wbc_status = wbcSidToString(&sids[i], &str);
378                 if (!WBC_ERROR_IS_OK(wbc_status)) {
379                         wbcFreeMemory(sids);
380                         return false;
381                 }
382                 d_printf("%s\n", str);
383                 wbcFreeMemory(str);
384         }
385
386         wbcFreeMemory(sids);
387
388         return true;
389 }
390
391 static bool wbinfo_get_sidaliases(const char *domain,
392                                   const char *user_sid_str)
393 {
394         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
395         struct wbcDomainInfo *dinfo = NULL;
396         uint32_t i;
397         struct wbcDomainSid user_sid;
398         uint32_t *alias_rids = NULL;
399         uint32_t num_alias_rids;
400         char *domain_sid_str = NULL;
401
402         /* Send request */
403         if ((domain == NULL) || (strequal(domain, ".")) ||
404            (domain[0] == '\0')) {
405                 domain = get_winbind_domain();
406         }
407
408         /* Send request */
409
410         wbc_status = wbcDomainInfo(domain, &dinfo);
411         if (!WBC_ERROR_IS_OK(wbc_status)) {
412                 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
413                          wbcErrorString(wbc_status));
414                 goto done;
415         }
416         wbc_status = wbcStringToSid(user_sid_str, &user_sid);
417         if (!WBC_ERROR_IS_OK(wbc_status)) {
418                 goto done;
419         }
420
421         wbc_status = wbcGetSidAliases(&dinfo->sid, &user_sid, 1,
422             &alias_rids, &num_alias_rids);
423         if (!WBC_ERROR_IS_OK(wbc_status)) {
424                 goto done;
425         }
426
427         wbc_status = wbcSidToString(&dinfo->sid, &domain_sid_str);
428         if (!WBC_ERROR_IS_OK(wbc_status)) {
429                 goto done;
430         }
431
432         for (i = 0; i < num_alias_rids; i++) {
433                 d_printf("%s-%d\n", domain_sid_str, alias_rids[i]);
434         }
435
436         wbcFreeMemory(alias_rids);
437
438 done:
439         if (domain_sid_str) {
440                 wbcFreeMemory(domain_sid_str);
441         }
442         if (dinfo) {
443                 wbcFreeMemory(dinfo);
444         }
445         return (WBC_ERR_SUCCESS == wbc_status);
446 }
447
448
449 /* Convert NetBIOS name to IP */
450
451 static bool wbinfo_wins_byname(const char *name)
452 {
453         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
454         char *ip = NULL;
455
456         wbc_status = wbcResolveWinsByName(name, &ip);
457         if (!WBC_ERROR_IS_OK(wbc_status)) {
458                 return false;
459         }
460
461         /* Display response */
462
463         d_printf("%s\n", ip);
464
465         wbcFreeMemory(ip);
466
467         return true;
468 }
469
470 /* Convert IP to NetBIOS name */
471
472 static bool wbinfo_wins_byip(const char *ip)
473 {
474         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
475         char *name = NULL;
476
477         wbc_status = wbcResolveWinsByIP(ip, &name);
478         if (!WBC_ERROR_IS_OK(wbc_status)) {
479                 return false;
480         }
481
482         /* Display response */
483
484         d_printf("%s\n", name);
485
486         wbcFreeMemory(name);
487
488         return true;
489 }
490
491 /* List all/trusted domains */
492
493 static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
494 {
495         struct wbcDomainInfo *domain_list = NULL;
496         size_t num_domains;
497         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
498         bool print_all = !list_all_domains && verbose;
499         int i;
500
501         wbc_status = wbcListTrusts(&domain_list, &num_domains);
502         if (!WBC_ERROR_IS_OK(wbc_status)) {
503                 return false;
504         }
505
506         if (print_all) {
507                 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
508                          "Domain Name", "DNS Domain", "Trust Type",
509                          "Transitive", "In", "Out");
510         }
511
512         for (i=0; i<num_domains; i++) {
513                 if (print_all) {
514                         d_printf("%-16s", domain_list[i].short_name);
515                 } else {
516                         d_printf("%s", domain_list[i].short_name);
517                         d_printf("\n");
518                         continue;
519                 }
520
521                 d_printf("%-24s", domain_list[i].dns_name);
522
523                 switch(domain_list[i].trust_type) {
524                 case WBC_DOMINFO_TRUSTTYPE_NONE:
525                         d_printf("None        ");
526                         break;
527                 case WBC_DOMINFO_TRUSTTYPE_FOREST:
528                         d_printf("Forest      ");
529                         break;
530                 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:
531                         d_printf("External    ");
532                         break;
533                 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
534                         d_printf("In-Forest   ");
535                         break;
536                 }
537
538                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
539                         d_printf("Yes         ");
540                 } else {
541                         d_printf("No          ");
542                 }
543
544                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
545                         d_printf("Yes  ");
546                 } else {
547                         d_printf("No   ");
548                 }
549
550                 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
551                         d_printf("Yes  ");
552                 } else {
553                         d_printf("No   ");
554                 }
555
556                 d_printf("\n");
557         }
558
559         return true;
560 }
561
562 /* List own domain */
563
564 static bool wbinfo_list_own_domain(void)
565 {
566         d_printf("%s\n", get_winbind_domain());
567
568         return true;
569 }
570
571 /* show sequence numbers */
572 static bool wbinfo_show_sequence(const char *domain)
573 {
574         d_printf("This command has been deprecated.  Please use the "
575                  "--online-status option instead.\n");
576         return false;
577 }
578
579 /* show sequence numbers */
580 static bool wbinfo_show_onlinestatus(const char *domain)
581 {
582         struct wbcDomainInfo *domain_list = NULL;
583         size_t num_domains;
584         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
585         int i;
586
587         wbc_status = wbcListTrusts(&domain_list, &num_domains);
588         if (!WBC_ERROR_IS_OK(wbc_status)) {
589                 return false;
590         }
591
592         for (i=0; i<num_domains; i++) {
593                 bool is_offline;
594
595                 if (domain) {
596                         if (!strequal(domain_list[i].short_name, domain)) {
597                                 continue;
598                         }
599                 }
600
601                 is_offline = (domain_list[i].domain_flags &
602                               WBC_DOMINFO_DOMAIN_OFFLINE);
603
604                 d_printf("%s : %s\n",
605                          domain_list[i].short_name,
606                          is_offline ? "offline" : "online" );
607         }
608
609         return true;
610 }
611
612
613 /* Show domain info */
614
615 static bool wbinfo_domain_info(const char *domain)
616 {
617         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
618         struct wbcDomainInfo *dinfo = NULL;
619         char *sid_str = NULL;
620
621         if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')){
622                 domain = get_winbind_domain();
623         }
624
625         /* Send request */
626
627         wbc_status = wbcDomainInfo(domain, &dinfo);
628         if (!WBC_ERROR_IS_OK(wbc_status)) {
629                 return false;
630         }
631
632         wbc_status = wbcSidToString(&dinfo->sid, &sid_str);
633         if (!WBC_ERROR_IS_OK(wbc_status)) {
634                 wbcFreeMemory(dinfo);
635                 return false;
636         }
637
638         /* Display response */
639
640         d_printf("Name              : %s\n", dinfo->short_name);
641         d_printf("Alt_Name          : %s\n", dinfo->dns_name);
642
643         d_printf("SID               : %s\n", sid_str);
644
645         d_printf("Active Directory  : %s\n",
646                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
647         d_printf("Native            : %s\n",
648                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ?
649                  "Yes" : "No");
650
651         d_printf("Primary           : %s\n",
652                  (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ?
653                  "Yes" : "No");
654
655         wbcFreeMemory(sid_str);
656         wbcFreeMemory(dinfo);
657
658         return true;
659 }
660
661 /* Get a foreign DC's name */
662 static bool wbinfo_getdcname(const char *domain_name)
663 {
664         struct winbindd_request request;
665         struct winbindd_response response;
666
667         ZERO_STRUCT(request);
668         ZERO_STRUCT(response);
669
670         fstrcpy(request.domain_name, domain_name);
671
672         /* Send request */
673
674         if (winbindd_request_response(WINBINDD_GETDCNAME, &request,
675                                       &response) != NSS_STATUS_SUCCESS) {
676                 d_fprintf(stderr, "Could not get dc name for %s\n",domain_name);
677                 return false;
678         }
679
680         /* Display response */
681
682         d_printf("%s\n", response.data.dc_name);
683
684         return true;
685 }
686
687 /* Find a DC */
688 static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
689 {
690         struct winbindd_request request;
691         struct winbindd_response response;
692
693         ZERO_STRUCT(request);
694         ZERO_STRUCT(response);
695
696         fstrcpy(request.data.dsgetdcname.domain_name, domain_name);
697         request.data.dsgetdcname.flags = flags;
698
699         request.flags |= DS_DIRECTORY_SERVICE_REQUIRED;
700
701         /* Send request */
702
703         if (winbindd_request_response(WINBINDD_DSGETDCNAME, &request,
704                                       &response) != NSS_STATUS_SUCCESS) {
705                 d_fprintf(stderr, "Could not find dc for %s\n", domain_name);
706                 return false;
707         }
708
709         /* Display response */
710
711         d_printf("%s\n", response.data.dsgetdcname.dc_unc);
712         d_printf("%s\n", response.data.dsgetdcname.dc_address);
713         d_printf("%d\n", response.data.dsgetdcname.dc_address_type);
714         d_printf("%s\n", response.data.dsgetdcname.domain_guid);
715         d_printf("%s\n", response.data.dsgetdcname.domain_name);
716         d_printf("%s\n", response.data.dsgetdcname.forest_name);
717         d_printf("0x%08x\n", response.data.dsgetdcname.dc_flags);
718         d_printf("%s\n", response.data.dsgetdcname.dc_site_name);
719         d_printf("%s\n", response.data.dsgetdcname.client_site_name);
720
721         return true;
722 }
723
724 /* Check trust account password */
725
726 static bool wbinfo_check_secret(void)
727 {
728         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
729         struct wbcAuthErrorInfo *error = NULL;
730
731         wbc_status = wbcCheckTrustCredentials(NULL, &error);
732
733         d_printf("checking the trust secret via RPC calls %s\n",
734                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
735
736         if (wbc_status == WBC_ERR_AUTH_ERROR) {
737                 d_fprintf(stderr, "error code was %s (0x%x)\n",
738                           error->nt_string, error->nt_status);
739                 wbcFreeMemory(error);
740         }
741         if (!WBC_ERROR_IS_OK(wbc_status)) {
742                 return false;
743         }
744
745         return true;
746 }
747
748 /* Convert uid to sid */
749
750 static bool wbinfo_uid_to_sid(uid_t uid)
751 {
752         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
753         struct wbcDomainSid sid;
754         char *sid_str = NULL;
755
756         /* Send request */
757
758         wbc_status = wbcUidToSid(uid, &sid);
759         if (!WBC_ERROR_IS_OK(wbc_status)) {
760                 return false;
761         }
762
763         wbc_status = wbcSidToString(&sid, &sid_str);
764         if (!WBC_ERROR_IS_OK(wbc_status)) {
765                 return false;
766         }
767
768         /* Display response */
769
770         d_printf("%s\n", sid_str);
771
772         wbcFreeMemory(sid_str);
773
774         return true;
775 }
776
777 /* Convert gid to sid */
778
779 static bool wbinfo_gid_to_sid(gid_t gid)
780 {
781         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
782         struct wbcDomainSid sid;
783         char *sid_str = NULL;
784
785         /* Send request */
786
787         wbc_status = wbcGidToSid(gid, &sid);
788         if (!WBC_ERROR_IS_OK(wbc_status)) {
789                 return false;
790         }
791
792         wbc_status = wbcSidToString(&sid, &sid_str);
793         if (!WBC_ERROR_IS_OK(wbc_status)) {
794                 return false;
795         }
796
797         /* Display response */
798
799         d_printf("%s\n", sid_str);
800
801         wbcFreeMemory(sid_str);
802
803         return true;
804 }
805
806 /* Convert sid to uid */
807
808 static bool wbinfo_sid_to_uid(const char *sid_str)
809 {
810         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
811         struct wbcDomainSid sid;
812         uid_t uid;
813
814         /* Send request */
815
816         wbc_status = wbcStringToSid(sid_str, &sid);
817         if (!WBC_ERROR_IS_OK(wbc_status)) {
818                 return false;
819         }
820
821         wbc_status = wbcSidToUid(&sid, &uid);
822         if (!WBC_ERROR_IS_OK(wbc_status)) {
823                 return false;
824         }
825
826         /* Display response */
827
828         d_printf("%d\n", (int)uid);
829
830         return true;
831 }
832
833 static bool wbinfo_sid_to_gid(const char *sid_str)
834 {
835         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
836         struct wbcDomainSid sid;
837         gid_t gid;
838
839         /* Send request */
840
841         wbc_status = wbcStringToSid(sid_str, &sid);
842         if (!WBC_ERROR_IS_OK(wbc_status)) {
843                 return false;
844         }
845
846         wbc_status = wbcSidToGid(&sid, &gid);
847         if (!WBC_ERROR_IS_OK(wbc_status)) {
848                 return false;
849         }
850
851         /* Display response */
852
853         d_printf("%d\n", (int)gid);
854
855         return true;
856 }
857
858 static bool wbinfo_allocate_uid(void)
859 {
860         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
861         uid_t uid;
862
863         /* Send request */
864
865         wbc_status = wbcAllocateUid(&uid);
866         if (!WBC_ERROR_IS_OK(wbc_status)) {
867                 return false;
868         }
869
870         /* Display response */
871
872         d_printf("New uid: %u\n", (unsigned int)uid);
873
874         return true;
875 }
876
877 static bool wbinfo_allocate_gid(void)
878 {
879         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
880         gid_t gid;
881
882         /* Send request */
883
884         wbc_status = wbcAllocateGid(&gid);
885         if (!WBC_ERROR_IS_OK(wbc_status)) {
886                 return false;
887         }
888
889         /* Display response */
890
891         d_printf("New gid: %u\n", (unsigned int)gid);
892
893         return true;
894 }
895
896 static bool wbinfo_set_uid_mapping(uid_t uid, const char *sid_str)
897 {
898         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
899         struct wbcDomainSid sid;
900
901         /* Send request */
902
903         wbc_status = wbcStringToSid(sid_str, &sid);
904         if (!WBC_ERROR_IS_OK(wbc_status)) {
905                 return false;
906         }
907
908         wbc_status = wbcSetUidMapping(uid, &sid);
909         if (!WBC_ERROR_IS_OK(wbc_status)) {
910                 return false;
911         }
912
913         /* Display response */
914
915         d_printf("uid %u now mapped to sid %s\n",
916                 (unsigned int)uid, sid_str);
917
918         return true;
919 }
920
921 static bool wbinfo_set_gid_mapping(gid_t gid, const char *sid_str)
922 {
923         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
924         struct wbcDomainSid sid;
925
926         /* Send request */
927
928         wbc_status = wbcStringToSid(sid_str, &sid);
929         if (!WBC_ERROR_IS_OK(wbc_status)) {
930                 return false;
931         }
932
933         wbc_status = wbcSetGidMapping(gid, &sid);
934         if (!WBC_ERROR_IS_OK(wbc_status)) {
935                 return false;
936         }
937
938         /* Display response */
939
940         d_printf("gid %u now mapped to sid %s\n",
941                 (unsigned int)gid, sid_str);
942
943         return true;
944 }
945
946 static bool wbinfo_remove_uid_mapping(uid_t uid, const char *sid_str)
947 {
948         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
949         struct wbcDomainSid sid;
950
951         /* Send request */
952
953         wbc_status = wbcStringToSid(sid_str, &sid);
954         if (!WBC_ERROR_IS_OK(wbc_status)) {
955                 return false;
956         }
957
958         wbc_status = wbcRemoveUidMapping(uid, &sid);
959         if (!WBC_ERROR_IS_OK(wbc_status)) {
960                 return false;
961         }
962
963         /* Display response */
964
965         d_printf("Removed uid %u to sid %s mapping\n",
966                 (unsigned int)uid, sid_str);
967
968         return true;
969 }
970
971 static bool wbinfo_remove_gid_mapping(gid_t gid, const char *sid_str)
972 {
973         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
974         struct wbcDomainSid sid;
975
976         /* Send request */
977
978         wbc_status = wbcStringToSid(sid_str, &sid);
979         if (!WBC_ERROR_IS_OK(wbc_status)) {
980                 return false;
981         }
982
983         wbc_status = wbcRemoveGidMapping(gid, &sid);
984         if (!WBC_ERROR_IS_OK(wbc_status)) {
985                 return false;
986         }
987
988         /* Display response */
989
990         d_printf("Removed gid %u to sid %s mapping\n",
991                 (unsigned int)gid, sid_str);
992
993         return true;
994 }
995
996 /* Convert sid to string */
997
998 static bool wbinfo_lookupsid(const char *sid_str)
999 {
1000         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1001         struct wbcDomainSid sid;
1002         char *domain;
1003         char *name;
1004         enum wbcSidType type;
1005
1006         /* Send off request */
1007
1008         wbc_status = wbcStringToSid(sid_str, &sid);
1009         if (!WBC_ERROR_IS_OK(wbc_status)) {
1010                 return false;
1011         }
1012
1013         wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
1014         if (!WBC_ERROR_IS_OK(wbc_status)) {
1015                 return false;
1016         }
1017
1018         /* Display response */
1019
1020         d_printf("%s%c%s %d\n",
1021                  domain, winbind_separator(), name, type);
1022
1023         return true;
1024 }
1025
1026 /* Convert sid to fullname */
1027
1028 static bool wbinfo_lookupsid_fullname(const char *sid_str)
1029 {
1030         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1031         struct wbcDomainSid sid;
1032         char *domain;
1033         char *name;
1034         enum wbcSidType type;
1035
1036         /* Send off request */
1037
1038         wbc_status = wbcStringToSid(sid_str, &sid);
1039         if (!WBC_ERROR_IS_OK(wbc_status)) {
1040                 return false;
1041         }
1042
1043         wbc_status = wbcGetDisplayName(&sid, &domain, &name, &type);
1044         if (!WBC_ERROR_IS_OK(wbc_status)) {
1045                 return false;
1046         }
1047
1048         /* Display response */
1049
1050         d_printf("%s%c%s %d\n",
1051                  domain, winbind_separator(), name, type);
1052
1053         return true;
1054 }
1055
1056 /* Lookup a list of RIDs */
1057
1058 static bool wbinfo_lookuprids(const char *domain, const char *arg)
1059 {
1060         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1061         struct wbcDomainInfo *dinfo = NULL;
1062         char *domain_name = NULL;
1063         const char **names = NULL;
1064         enum wbcSidType *types = NULL;
1065         size_t i;
1066         int num_rids;
1067         uint32_t *rids = NULL;
1068         const char *p;
1069         char *ridstr;
1070         TALLOC_CTX *mem_ctx = NULL;
1071         bool ret = false;
1072
1073         if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')){
1074                 domain = get_winbind_domain();
1075         }
1076
1077         /* Send request */
1078
1079         wbc_status = wbcDomainInfo(domain, &dinfo);
1080         if (!WBC_ERROR_IS_OK(wbc_status)) {
1081                 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
1082                          wbcErrorString(wbc_status));
1083                 goto done;
1084         }
1085
1086         mem_ctx = talloc_new(NULL);
1087         if (mem_ctx == NULL) {
1088                 d_printf("talloc_new failed\n");
1089                 goto done;
1090         }
1091
1092         num_rids = 0;
1093         rids = NULL;
1094         p = arg;
1095
1096         while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
1097                 uint32_t rid = strtoul(ridstr, NULL, 10);
1098                 rids = talloc_realloc(mem_ctx, rids, uint32_t, num_rids + 1);
1099                 if (rids == NULL) {
1100                         d_printf("talloc_realloc failed\n");
1101                 }
1102                 rids[num_rids] = rid;
1103                 num_rids += 1;
1104         }
1105
1106         if (rids == NULL) {
1107                 d_printf("no rids\n");
1108                 goto done;
1109         }
1110
1111         wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
1112                                    (const char **)&domain_name, &names, &types);
1113         if (!WBC_ERROR_IS_OK(wbc_status)) {
1114                 d_printf("winbind_lookup_rids failed: %s\n",
1115                          wbcErrorString(wbc_status));
1116                 goto done;
1117         }
1118
1119         d_printf("Domain: %s\n", domain_name);
1120
1121         for (i=0; i<num_rids; i++) {
1122                 d_printf("%8d: %s (%s)\n", rids[i], names[i],
1123                          sid_type_lookup(types[i]));
1124         }
1125
1126         ret = true;
1127 done:
1128         if (dinfo) {
1129                 wbcFreeMemory(dinfo);
1130         }
1131         if (domain_name) {
1132                 wbcFreeMemory(domain_name);
1133         }
1134         if (names) {
1135                 wbcFreeMemory(names);
1136         }
1137         if (types) {
1138                 wbcFreeMemory(types);
1139         }
1140         TALLOC_FREE(mem_ctx);
1141         return ret;
1142 }
1143
1144 /* Convert string to sid */
1145
1146 static bool wbinfo_lookupname(const char *full_name)
1147 {
1148         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1149         struct wbcDomainSid sid;
1150         char *sid_str;
1151         enum wbcSidType type;
1152         fstring domain_name;
1153         fstring account_name;
1154
1155         /* Send off request */
1156
1157         parse_wbinfo_domain_user(full_name, domain_name,
1158                                  account_name);
1159
1160         wbc_status = wbcLookupName(domain_name, account_name,
1161                                    &sid, &type);
1162         if (!WBC_ERROR_IS_OK(wbc_status)) {
1163                 return false;
1164         }
1165
1166         wbc_status = wbcSidToString(&sid, &sid_str);
1167         if (!WBC_ERROR_IS_OK(wbc_status)) {
1168                 return false;
1169         }
1170
1171         /* Display response */
1172
1173         d_printf("%s %s (%d)\n", sid_str, sid_type_lookup(type), type);
1174
1175         wbcFreeMemory(sid_str);
1176
1177         return true;
1178 }
1179
1180 static char *wbinfo_prompt_pass(TALLOC_CTX *mem_ctx,
1181                                 const char *prefix,
1182                                 const char *username)
1183 {
1184         char *prompt;
1185         const char *ret = NULL;
1186
1187         prompt = talloc_asprintf(mem_ctx, "Enter %s's ", username);
1188         if (!prompt) {
1189                 return NULL;
1190         }
1191         if (prefix) {
1192                 prompt = talloc_asprintf_append(prompt, "%s ", prefix);
1193                 if (!prompt) {
1194                         return NULL;
1195                 }
1196         }
1197         prompt = talloc_asprintf_append(prompt, "password: ");
1198         if (!prompt) {
1199                 return NULL;
1200         }
1201
1202         ret = getpass(prompt);
1203         TALLOC_FREE(prompt);
1204
1205         return talloc_strdup(mem_ctx, ret);
1206 }
1207
1208 /* Authenticate a user with a plaintext password */
1209
1210 static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32_t flags)
1211 {
1212         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1213         char *s = NULL;
1214         char *p = NULL;
1215         char *password = NULL;
1216         char *name = NULL;
1217         uid_t uid;
1218         struct wbcLogonUserParams params;
1219         struct wbcLogonUserInfo *info;
1220         struct wbcAuthErrorInfo *error;
1221         struct wbcUserPasswordPolicyInfo *policy;
1222         TALLOC_CTX *frame = talloc_tos();
1223
1224         if ((s = talloc_strdup(frame, username)) == NULL) {
1225                 return false;
1226         }
1227
1228         if ((p = strchr(s, '%')) != NULL) {
1229                 *p = 0;
1230                 p++;
1231                 password = talloc_strdup(frame, p);
1232         } else {
1233                 password = wbinfo_prompt_pass(frame, NULL, username);
1234         }
1235
1236         name = s;
1237
1238         uid = geteuid();
1239
1240         params.username = name;
1241         params.password = password;
1242         params.num_blobs = 0;
1243         params.blobs = NULL;
1244
1245         wbc_status = wbcAddNamedBlob(&params.num_blobs,
1246                                      &params.blobs,
1247                                      "flags",
1248                                      0,
1249                                      (uint8_t *)&flags,
1250                                      sizeof(flags));
1251         if (!WBC_ERROR_IS_OK(wbc_status)) {
1252                 goto done;
1253         }
1254
1255         wbc_status = wbcAddNamedBlob(&params.num_blobs,
1256                                      &params.blobs,
1257                                      "user_uid",
1258                                      0,
1259                                      (uint8_t *)&uid,
1260                                      sizeof(uid));
1261         if (!WBC_ERROR_IS_OK(wbc_status)) {
1262                 goto done;
1263         }
1264
1265         wbc_status = wbcAddNamedBlob(&params.num_blobs,
1266                                      &params.blobs,
1267                                      "krb5_cc_type",
1268                                      0,
1269                                      (uint8_t *)cctype,
1270                                      strlen(cctype)+1);
1271         if (!WBC_ERROR_IS_OK(wbc_status)) {
1272                 goto done;
1273         }
1274
1275         wbc_status = wbcLogonUser(&params, &info, &error, &policy);
1276
1277         d_printf("plaintext kerberos password authentication for [%s] %s "
1278                  "(requesting cctype: %s)\n",
1279                  username, WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed",
1280                  cctype);
1281
1282         if (error) {
1283                 d_fprintf(stderr,
1284                          "error code was %s (0x%x)\nerror messsage was: %s\n",
1285                          error->nt_string,
1286                          error->nt_status,
1287                          error->display_string);
1288         }
1289
1290         if (WBC_ERROR_IS_OK(wbc_status)) {
1291                 if (flags & WBFLAG_PAM_INFO3_TEXT) {
1292                         if (info && info->info && info->info->user_flags &
1293                             NETLOGON_CACHED_ACCOUNT) {
1294                                 d_printf("user_flgs: "
1295                                          "NETLOGON_CACHED_ACCOUNT\n");
1296                         }
1297                 }
1298
1299                 if (info) {
1300                         int i;
1301                         for (i=0; i < info->num_blobs; i++) {
1302                                 if (strequal(info->blobs[i].name,
1303                                              "krb5ccname")) {
1304                                         d_printf("credentials were put "
1305                                                  "in: %s\n",
1306                                                 (const char *)
1307                                                       info->blobs[i].blob.data);
1308                                         break;
1309                                 }
1310                         }
1311                 } else {
1312                         d_printf("no credentials cached\n");
1313                 }
1314         }
1315  done:
1316
1317         TALLOC_FREE(frame);
1318         wbcFreeMemory(params.blobs);
1319
1320         return WBC_ERROR_IS_OK(wbc_status);
1321 }
1322
1323 /* Authenticate a user with a plaintext password */
1324
1325 static bool wbinfo_auth(char *username)
1326 {
1327         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1328         char *s = NULL;
1329         char *p = NULL;
1330         char *password = NULL;
1331         char *name = NULL;
1332         TALLOC_CTX *frame = talloc_tos();
1333
1334         if ((s = talloc_strdup(frame, username)) == NULL) {
1335                 return false;
1336         }
1337
1338         if ((p = strchr(s, '%')) != NULL) {
1339                 *p = 0;
1340                 p++;
1341                 password = talloc_strdup(frame, p);
1342         } else {
1343                 password = wbinfo_prompt_pass(frame, NULL, username);
1344         }
1345
1346         name = s;
1347
1348         wbc_status = wbcAuthenticateUser(name, password);
1349
1350         d_printf("plaintext password authentication %s\n",
1351                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1352
1353 #if 0
1354         if (response.data.auth.nt_status)
1355                 d_fprintf(stderr,
1356                          "error code was %s (0x%x)\nerror messsage was: %s\n",
1357                          response.data.auth.nt_status_string,
1358                          response.data.auth.nt_status,
1359                          response.data.auth.error_string);
1360 #endif
1361
1362         TALLOC_FREE(frame);
1363
1364         return WBC_ERROR_IS_OK(wbc_status);
1365 }
1366
1367 /* Authenticate a user with a challenge/response */
1368
1369 static bool wbinfo_auth_crap(char *username, bool use_ntlmv2, bool use_lanman)
1370 {
1371         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1372         struct wbcAuthUserParams params;
1373         struct wbcAuthUserInfo *info = NULL;
1374         struct wbcAuthErrorInfo *err = NULL;
1375         DATA_BLOB lm = data_blob_null;
1376         DATA_BLOB nt = data_blob_null;
1377         fstring name_user;
1378         fstring name_domain;
1379         char *pass;
1380         char *p;
1381         TALLOC_CTX *frame = talloc_tos();
1382
1383         p = strchr(username, '%');
1384
1385         if (p) {
1386                 *p = 0;
1387                 pass = talloc_strdup(frame, p + 1);
1388         } else {
1389                 pass = wbinfo_prompt_pass(frame, NULL, username);
1390         }
1391
1392         parse_wbinfo_domain_user(username, name_domain, name_user);
1393
1394         params.account_name     = name_user;
1395         params.domain_name      = name_domain;
1396         params.workstation_name = NULL;
1397
1398         params.flags            = 0;
1399         params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
1400                                   WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
1401
1402         params.level            = WBC_AUTH_USER_LEVEL_RESPONSE;
1403
1404         generate_random_buffer(params.password.response.challenge, 8);
1405
1406         if (use_ntlmv2) {
1407                 DATA_BLOB server_chal;
1408                 DATA_BLOB names_blob;
1409
1410                 server_chal = data_blob(params.password.response.challenge, 8);
1411
1412                 /* Pretend this is a login to 'us', for blob purposes */
1413                 names_blob = NTLMv2_generate_names_blob(NULL,
1414                                                 get_winbind_netbios_name(),
1415                                                 get_winbind_domain());
1416
1417                 if (!SMBNTLMv2encrypt(NULL, name_user, name_domain, pass,
1418                                       &server_chal,
1419                                       &names_blob,
1420                                       &lm, &nt, NULL, NULL)) {
1421                         data_blob_free(&names_blob);
1422                         data_blob_free(&server_chal);
1423                         SAFE_FREE(pass);
1424                         return false;
1425                 }
1426                 data_blob_free(&names_blob);
1427                 data_blob_free(&server_chal);
1428
1429         } else {
1430                 if (use_lanman) {
1431                         bool ok;
1432                         lm = data_blob(NULL, 24);
1433                         ok = SMBencrypt(pass,
1434                                         params.password.response.challenge,
1435                                         lm.data);
1436                         if (!ok) {
1437                                 data_blob_free(&lm);
1438                         }
1439                 }
1440                 nt = data_blob(NULL, 24);
1441                 SMBNTencrypt(pass, params.password.response.challenge,
1442                              nt.data);
1443         }
1444
1445         params.password.response.nt_length      = nt.length;
1446         params.password.response.nt_data        = nt.data;
1447         params.password.response.lm_length      = lm.length;
1448         params.password.response.lm_data        = lm.data;
1449
1450         wbc_status = wbcAuthenticateUserEx(&params, &info, &err);
1451
1452         /* Display response */
1453
1454         d_printf("challenge/response password authentication %s\n",
1455                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1456
1457         if (wbc_status == WBC_ERR_AUTH_ERROR) {
1458                 d_fprintf(stderr,
1459                          "error code was %s (0x%x)\nerror messsage was: %s\n",
1460                          err->nt_string,
1461                          err->nt_status,
1462                          err->display_string);
1463                 wbcFreeMemory(err);
1464         } else if (WBC_ERROR_IS_OK(wbc_status)) {
1465                 wbcFreeMemory(info);
1466         }
1467
1468         data_blob_free(&nt);
1469         data_blob_free(&lm);
1470         TALLOC_FREE(frame);
1471
1472         return WBC_ERROR_IS_OK(wbc_status);
1473 }
1474
1475 /* Authenticate a user with a plaintext password and set a token */
1476
1477 static bool wbinfo_klog(char *username)
1478 {
1479         struct winbindd_request request;
1480         struct winbindd_response response;
1481         NSS_STATUS result;
1482         char *p;
1483
1484         /* Send off request */
1485
1486         ZERO_STRUCT(request);
1487         ZERO_STRUCT(response);
1488
1489         p = strchr(username, '%');
1490
1491         if (p) {
1492                 *p = 0;
1493                 fstrcpy(request.data.auth.user, username);
1494                 fstrcpy(request.data.auth.pass, p + 1);
1495                 *p = '%';
1496         } else {
1497                 fstrcpy(request.data.auth.user, username);
1498                 fstrcpy(request.data.auth.pass, getpass("Password: "));
1499         }
1500
1501         request.flags |= WBFLAG_PAM_AFS_TOKEN;
1502
1503         result = winbindd_request_response(WINBINDD_PAM_AUTH, &request,
1504                                            &response);
1505
1506         /* Display response */
1507
1508         d_printf("plaintext password authentication %s\n",
1509                  (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1510
1511         if (response.data.auth.nt_status)
1512                 d_fprintf(stderr,
1513                          "error code was %s (0x%x)\nerror messsage was: %s\n",
1514                          response.data.auth.nt_status_string,
1515                          response.data.auth.nt_status,
1516                          response.data.auth.error_string);
1517
1518         if (result != NSS_STATUS_SUCCESS)
1519                 return false;
1520
1521         if (response.extra_data.data == NULL) {
1522                 d_fprintf(stderr, "Did not get token data\n");
1523                 return false;
1524         }
1525
1526         if (!afs_settoken_str((char *)response.extra_data.data)) {
1527                 d_fprintf(stderr, "Could not set token\n");
1528                 return false;
1529         }
1530
1531         d_printf("Successfully created AFS token\n");
1532         return true;
1533 }
1534
1535 /* Print domain users */
1536
1537 static bool print_domain_users(const char *domain)
1538 {
1539         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1540         uint32_t i;
1541         uint32_t num_users = 0;
1542         const char **users = NULL;
1543
1544         /* Send request to winbind daemon */
1545
1546         /* '.' is the special sign for our own domain */
1547         if (domain && strcmp(domain, ".") == 0) {
1548                 domain = get_winbind_domain();
1549         }
1550
1551         wbc_status = wbcListUsers(domain, &num_users, &users);
1552         if (!WBC_ERROR_IS_OK(wbc_status)) {
1553                 return false;
1554         }
1555
1556         for (i=0; i < num_users; i++) {
1557                 d_printf("%s\n", users[i]);
1558         }
1559
1560         wbcFreeMemory(users);
1561
1562         return true;
1563 }
1564
1565 /* Print domain groups */
1566
1567 static bool print_domain_groups(const char *domain)
1568 {
1569         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1570         uint32_t i;
1571         uint32_t num_groups = 0;
1572         const char **groups = NULL;
1573
1574         /* Send request to winbind daemon */
1575
1576         /* '.' is the special sign for our own domain */
1577         if (domain && strcmp(domain, ".") == 0) {
1578                 domain = get_winbind_domain();
1579         }
1580
1581         wbc_status = wbcListGroups(domain, &num_groups, &groups);
1582         if (!WBC_ERROR_IS_OK(wbc_status)) {
1583                 return false;
1584         }
1585
1586         for (i=0; i < num_groups; i++) {
1587                 d_printf("%s\n", groups[i]);
1588         }
1589
1590         wbcFreeMemory(groups);
1591
1592         return true;
1593 }
1594
1595 /* Set the authorised user for winbindd access in secrets.tdb */
1596
1597 static bool wbinfo_set_auth_user(char *username)
1598 {
1599         d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1600                           "See 'net help setauthuser' for details.\n");
1601         return false;
1602 }
1603
1604 static void wbinfo_get_auth_user(void)
1605 {
1606         d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1607                           "See 'net help getauthuser' for details.\n");
1608 }
1609
1610 static bool wbinfo_ping(void)
1611 {
1612         wbcErr wbc_status;
1613
1614         wbc_status = wbcPing();
1615
1616         /* Display response */
1617
1618         d_printf("Ping to winbindd %s\n",
1619                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1620
1621         return WBC_ERROR_IS_OK(wbc_status);
1622 }
1623
1624 static bool wbinfo_change_user_password(const char *username)
1625 {
1626         wbcErr wbc_status;
1627         char *old_password = NULL;
1628         char *new_password = NULL;
1629         TALLOC_CTX *frame = talloc_tos();
1630
1631         old_password = wbinfo_prompt_pass(frame, "old", username);
1632         new_password = wbinfo_prompt_pass(frame, "new", username);
1633
1634         wbc_status = wbcChangeUserPassword(username, old_password,new_password);
1635
1636         /* Display response */
1637
1638         d_printf("Password change for user %s %s\n", username,
1639                 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1640
1641         TALLOC_FREE(frame);
1642
1643         return WBC_ERROR_IS_OK(wbc_status);
1644 }
1645
1646 /* Main program */
1647
1648 enum {
1649         OPT_SET_AUTH_USER = 1000,
1650         OPT_GET_AUTH_USER,
1651         OPT_DOMAIN_NAME,
1652         OPT_SEQUENCE,
1653         OPT_GETDCNAME,
1654         OPT_DSGETDCNAME,
1655         OPT_USERDOMGROUPS,
1656         OPT_SIDALIASES,
1657         OPT_USERSIDS,
1658         OPT_ALLOCATE_UID,
1659         OPT_ALLOCATE_GID,
1660         OPT_SET_UID_MAPPING,
1661         OPT_SET_GID_MAPPING,
1662         OPT_REMOVE_UID_MAPPING,
1663         OPT_REMOVE_GID_MAPPING,
1664         OPT_SEPARATOR,
1665         OPT_LIST_ALL_DOMAINS,
1666         OPT_LIST_OWN_DOMAIN,
1667         OPT_UID_INFO,
1668         OPT_USER_SIDINFO,
1669         OPT_GROUP_INFO,
1670         OPT_GID_INFO,
1671         OPT_VERBOSE,
1672         OPT_ONLINESTATUS,
1673         OPT_CHANGE_USER_PASSWORD,
1674         OPT_SID_TO_FULLNAME,
1675         OPT_NTLMV2,
1676         OPT_LANMAN
1677 };
1678
1679 int main(int argc, char **argv, char **envp)
1680 {
1681         int opt;
1682         TALLOC_CTX *frame = talloc_stackframe();
1683         poptContext pc;
1684         static char *string_arg;
1685         char *string_subarg = NULL;
1686         static char *opt_domain_name;
1687         static int int_arg;
1688         int int_subarg = -1;
1689         int result = 1;
1690         bool verbose = false;
1691         bool use_ntlmv2 = false;
1692         bool use_lanman = false;
1693
1694         struct poptOption long_options[] = {
1695                 POPT_AUTOHELP
1696
1697                 /* longName, shortName, argInfo, argPtr, value, descrip,
1698                    argDesc */
1699
1700                 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1701                 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1702                 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1703                 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1704                 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1705                 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1706                 { "sid-to-fullname", 0, POPT_ARG_STRING, &string_arg,
1707                   OPT_SID_TO_FULLNAME, "Converts sid to fullname", "SID" },
1708                 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1709                 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1710                 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1711                 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1712                 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1713                 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1714                   "Get a new UID out of idmap" },
1715                 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1716                   "Get a new GID out of idmap" },
1717                 { "set-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_UID_MAPPING, "Create or modify uid to sid mapping in idmap", "UID,SID" },
1718                 { "set-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_GID_MAPPING, "Create or modify gid to sid mapping in idmap", "GID,SID" },
1719                 { "remove-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_UID_MAPPING, "Remove uid to sid mapping in idmap", "UID,SID" },
1720                 { "remove-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_GID_MAPPING, "Remove gid to sid mapping in idmap", "GID,SID" },
1721                 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1722                 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1723                 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1724                 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1725                 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1726                 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
1727                 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1728                 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1729                 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1730                 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1731                 { "user-sidinfo", 0, POPT_ARG_STRING, &string_arg, OPT_USER_SIDINFO, "Get user info from sid", "SID" },
1732                 { "gid-info", 0, POPT_ARG_INT, &int_arg, OPT_GID_INFO, "Get group info from gid", "GID" },
1733                 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1734                 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1735                   OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1736                 { "sid-aliases", 0, POPT_ARG_STRING, &string_arg, OPT_SIDALIASES, "Get sid aliases", "SID" },
1737                 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1738                 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1739                 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1740                 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1741                   "Get a DC name for a foreign domain", "domainname" },
1742                 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1743                 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1744                 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1745                 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1746 #ifdef WITH_FAKE_KASERVER
1747                 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1748 #endif
1749 #ifdef HAVE_KRB5
1750                 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1751                         /* destroys wbinfo --help output */
1752                         /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1753 #endif
1754                 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1755                 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1756                 { "change-user-password", 0, POPT_ARG_STRING, &string_arg, OPT_CHANGE_USER_PASSWORD, "Change the password for a user", NULL },
1757                 { "ntlmv2", 0, POPT_ARG_NONE, 0, OPT_NTLMV2, "Use NTLMv2 cryptography for user authentication", NULL},
1758                 { "lanman", 0, POPT_ARG_NONE, 0, OPT_LANMAN, "Use lanman cryptography for user authentication", NULL},
1759                 POPT_COMMON_VERSION
1760                 POPT_TABLEEND
1761         };
1762
1763         /* Samba client initialisation */
1764         load_case_tables();
1765
1766
1767         /* Parse options */
1768
1769         pc = poptGetContext("wbinfo", argc, (const char **)argv,
1770                             long_options, 0);
1771
1772         /* Parse command line options */
1773
1774         if (argc == 1) {
1775                 poptPrintHelp(pc, stderr, 0);
1776                 return 1;
1777         }
1778
1779         while((opt = poptGetNextOpt(pc)) != -1) {
1780                 /* get the generic configuration parameters like --domain */
1781                 switch (opt) {
1782                 case OPT_VERBOSE:
1783                         verbose = True;
1784                         break;
1785                 case OPT_NTLMV2:
1786                         use_ntlmv2 = true;
1787                         break;
1788                 case OPT_LANMAN:
1789                         use_lanman = true;
1790                         break;
1791                 }
1792         }
1793
1794         poptFreeContext(pc);
1795
1796         if (!init_names())
1797                 return 1;
1798
1799         load_interfaces();
1800
1801         pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1802                             POPT_CONTEXT_KEEP_FIRST);
1803
1804         while((opt = poptGetNextOpt(pc)) != -1) {
1805                 switch (opt) {
1806                 case 'u':
1807                         if (!print_domain_users(opt_domain_name)) {
1808                                 d_fprintf(stderr,
1809                                           "Error looking up domain users\n");
1810                                 goto done;
1811                         }
1812                         break;
1813                 case 'g':
1814                         if (!print_domain_groups(opt_domain_name)) {
1815                                 d_fprintf(stderr,
1816                                           "Error looking up domain groups\n");
1817                                 goto done;
1818                         }
1819                         break;
1820                 case 's':
1821                         if (!wbinfo_lookupsid(string_arg)) {
1822                                 d_fprintf(stderr,
1823                                           "Could not lookup sid %s\n",
1824                                           string_arg);
1825                                 goto done;
1826                         }
1827                         break;
1828                 case OPT_SID_TO_FULLNAME:
1829                         if (!wbinfo_lookupsid_fullname(string_arg)) {
1830                                 d_fprintf(stderr, "Could not lookup sid %s\n",
1831                                           string_arg);
1832                                 goto done;
1833                         }
1834                         break;
1835                 case 'R':
1836                         if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1837                                 d_fprintf(stderr, "Could not lookup RIDs %s\n",
1838                                           string_arg);
1839                                 goto done;
1840                         }
1841                         break;
1842                 case 'n':
1843                         if (!wbinfo_lookupname(string_arg)) {
1844                                 d_fprintf(stderr, "Could not lookup name %s\n",
1845                                           string_arg);
1846                                 goto done;
1847                         }
1848                         break;
1849                 case 'N':
1850                         if (!wbinfo_wins_byname(string_arg)) {
1851                                 d_fprintf(stderr,
1852                                           "Could not lookup WINS by name %s\n",
1853                                           string_arg);
1854                                 goto done;
1855                         }
1856                         break;
1857                 case 'I':
1858                         if (!wbinfo_wins_byip(string_arg)) {
1859                                 d_fprintf(stderr,
1860                                           "Could not lookup WINS by IP %s\n",
1861                                           string_arg);
1862                                 goto done;
1863                         }
1864                         break;
1865                 case 'U':
1866                         if (!wbinfo_uid_to_sid(int_arg)) {
1867                                 d_fprintf(stderr,
1868                                           "Could not convert uid %d to sid\n",
1869                                           int_arg);
1870                                 goto done;
1871                         }
1872                         break;
1873                 case 'G':
1874                         if (!wbinfo_gid_to_sid(int_arg)) {
1875                                 d_fprintf(stderr,
1876                                           "Could not convert gid %d to sid\n",
1877                                           int_arg);
1878                                 goto done;
1879                         }
1880                         break;
1881                 case 'S':
1882                         if (!wbinfo_sid_to_uid(string_arg)) {
1883                                 d_fprintf(stderr,
1884                                           "Could not convert sid %s to uid\n",
1885                                           string_arg);
1886                                 goto done;
1887                         }
1888                         break;
1889                 case 'Y':
1890                         if (!wbinfo_sid_to_gid(string_arg)) {
1891                                 d_fprintf(stderr,
1892                                           "Could not convert sid %s to gid\n",
1893                                           string_arg);
1894                                 goto done;
1895                         }
1896                         break;
1897                 case OPT_ALLOCATE_UID:
1898                         if (!wbinfo_allocate_uid()) {
1899                                 d_fprintf(stderr, "Could not allocate a uid\n");
1900                                 goto done;
1901                         }
1902                         break;
1903                 case OPT_ALLOCATE_GID:
1904                         if (!wbinfo_allocate_gid()) {
1905                                 d_fprintf(stderr, "Could not allocate a gid\n");
1906                                 goto done;
1907                         }
1908                         break;
1909                 case OPT_SET_UID_MAPPING:
1910                         if (!parse_mapping_arg(string_arg, &int_subarg,
1911                                 &string_subarg) ||
1912                             !wbinfo_set_uid_mapping(int_subarg, string_subarg))
1913                         {
1914                                 d_fprintf(stderr, "Could not create or modify "
1915                                           "uid to sid mapping\n");
1916                                 goto done;
1917                         }
1918                         break;
1919                 case OPT_SET_GID_MAPPING:
1920                         if (!parse_mapping_arg(string_arg, &int_subarg,
1921                                 &string_subarg) ||
1922                             !wbinfo_set_gid_mapping(int_subarg, string_subarg))
1923                         {
1924                                 d_fprintf(stderr, "Could not create or modify "
1925                                           "gid to sid mapping\n");
1926                                 goto done;
1927                         }
1928                         break;
1929                 case OPT_REMOVE_UID_MAPPING:
1930                         if (!parse_mapping_arg(string_arg, &int_subarg,
1931                                 &string_subarg) ||
1932                             !wbinfo_remove_uid_mapping(int_subarg,
1933                                 string_subarg))
1934                         {
1935                                 d_fprintf(stderr, "Could not remove uid to sid "
1936                                     "mapping\n");
1937                                 goto done;
1938                         }
1939                         break;
1940                 case OPT_REMOVE_GID_MAPPING:
1941                         if (!parse_mapping_arg(string_arg, &int_subarg,
1942                                 &string_subarg) ||
1943                             !wbinfo_remove_gid_mapping(int_subarg,
1944                                 string_subarg))
1945                         {
1946                                 d_fprintf(stderr, "Could not remove gid to sid "
1947                                     "mapping\n");
1948                                 goto done;
1949                         }
1950                         break;
1951                 case 't':
1952                         if (!wbinfo_check_secret()) {
1953                                 d_fprintf(stderr, "Could not check secret\n");
1954                                 goto done;
1955                         }
1956                         break;
1957                 case 'm':
1958                         if (!wbinfo_list_domains(false, verbose)) {
1959                                 d_fprintf(stderr,
1960                                           "Could not list trusted domains\n");
1961                                 goto done;
1962                         }
1963                         break;
1964                 case OPT_SEQUENCE:
1965                         if (!wbinfo_show_sequence(opt_domain_name)) {
1966                                 d_fprintf(stderr,
1967                                           "Could not show sequence numbers\n");
1968                                 goto done;
1969                         }
1970                         break;
1971                 case OPT_ONLINESTATUS:
1972                         if (!wbinfo_show_onlinestatus(opt_domain_name)) {
1973                                 d_fprintf(stderr,
1974                                           "Could not show online-status\n");
1975                                 goto done;
1976                         }
1977                         break;
1978                 case 'D':
1979                         if (!wbinfo_domain_info(string_arg)) {
1980                                 d_fprintf(stderr,
1981                                           "Could not get domain info\n");
1982                                 goto done;
1983                         }
1984                         break;
1985                 case 'i':
1986                         if (!wbinfo_get_userinfo(string_arg)) {
1987                                 d_fprintf(stderr,
1988                                           "Could not get info for user %s\n",
1989                                           string_arg);
1990                                 goto done;
1991                         }
1992                         break;
1993                 case OPT_USER_SIDINFO:
1994                         if ( !wbinfo_get_user_sidinfo(string_arg)) {
1995                                 d_fprintf(stderr,
1996                                           "Could not get info for user "
1997                                           "sid %s\n", string_arg);
1998                                 goto done;
1999                         }
2000                         break;
2001                 case OPT_UID_INFO:
2002                         if ( !wbinfo_get_uidinfo(int_arg)) {
2003                                 d_fprintf(stderr, "Could not get info for uid "
2004                                                 "%d\n", int_arg);
2005                                 goto done;
2006                         }
2007                         break;
2008                 case OPT_GROUP_INFO:
2009                         if ( !wbinfo_get_groupinfo(string_arg)) {
2010                                 d_fprintf(stderr, "Could not get info for "
2011                                           "group %s\n", string_arg);
2012                                 goto done;
2013                         }
2014                         break;
2015                 case OPT_GID_INFO:
2016                         if ( !wbinfo_get_gidinfo(int_arg)) {
2017                                 d_fprintf(stderr, "Could not get info for gid "
2018                                                 "%d\n", int_arg);
2019                                 goto done;
2020                         }
2021                         break;
2022                 case 'r':
2023                         if (!wbinfo_get_usergroups(string_arg)) {
2024                                 d_fprintf(stderr,
2025                                           "Could not get groups for user %s\n",
2026                                           string_arg);
2027                                 goto done;
2028                         }
2029                         break;
2030                 case OPT_USERSIDS:
2031                         if (!wbinfo_get_usersids(string_arg)) {
2032                                 d_fprintf(stderr, "Could not get group SIDs "
2033                                           "for user SID %s\n",
2034                                           string_arg);
2035                                 goto done;
2036                         }
2037                         break;
2038                 case OPT_USERDOMGROUPS:
2039                         if (!wbinfo_get_userdomgroups(string_arg)) {
2040                                 d_fprintf(stderr, "Could not get user's domain "
2041                                          "groups for user SID %s\n",
2042                                          string_arg);
2043                                 goto done;
2044                         }
2045                         break;
2046                 case OPT_SIDALIASES:
2047                         if (!wbinfo_get_sidaliases(opt_domain_name,
2048                                                    string_arg)) {
2049                                 d_fprintf(stderr, "Could not get sid aliases "
2050                                          "for user SID %s\n", string_arg);
2051                                 goto done;
2052                         }
2053                         break;
2054                 case 'a': {
2055                                 bool got_error = false;
2056
2057                                 if (!wbinfo_auth(string_arg)) {
2058                                         d_fprintf(stderr,
2059                                                   "Could not authenticate user "
2060                                                   "%s with plaintext "
2061                                                   "password\n", string_arg);
2062                                         got_error = true;
2063                                 }
2064
2065                                 if (!wbinfo_auth_crap(string_arg, use_ntlmv2,
2066                                                       use_lanman)) {
2067                                         d_fprintf(stderr,
2068                                                 "Could not authenticate user "
2069                                                 "%s with challenge/response\n",
2070                                                 string_arg);
2071                                         got_error = true;
2072                                 }
2073
2074                                 if (got_error)
2075                                         goto done;
2076                                 break;
2077                         }
2078                 case 'K': {
2079                                 uint32_t flags = WBFLAG_PAM_KRB5 |
2080                                                  WBFLAG_PAM_CACHED_LOGIN |
2081                                                 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
2082                                                  WBFLAG_PAM_INFO3_TEXT |
2083                                                  WBFLAG_PAM_CONTACT_TRUSTDOM;
2084
2085                                 if (!wbinfo_auth_krb5(string_arg, "FILE",
2086                                                       flags)) {
2087                                         d_fprintf(stderr,
2088                                                 "Could not authenticate user "
2089                                                 "[%s] with Kerberos "
2090                                                 "(ccache: %s)\n", string_arg,
2091                                                 "FILE");
2092                                         goto done;
2093                                 }
2094                                 break;
2095                         }
2096                 case 'k':
2097                         if (!wbinfo_klog(string_arg)) {
2098                                 d_fprintf(stderr, "Could not klog user\n");
2099                                 goto done;
2100                         }
2101                         break;
2102                 case 'p':
2103                         if (!wbinfo_ping()) {
2104                                 d_fprintf(stderr, "could not ping winbindd!\n");
2105                                 goto done;
2106                         }
2107                         break;
2108                 case OPT_SET_AUTH_USER:
2109                         if (!wbinfo_set_auth_user(string_arg)) {
2110                                 goto done;
2111                         }
2112                         break;
2113                 case OPT_GET_AUTH_USER:
2114                         wbinfo_get_auth_user();
2115                         goto done;
2116                         break;
2117                 case OPT_GETDCNAME:
2118                         if (!wbinfo_getdcname(string_arg)) {
2119                                 goto done;
2120                         }
2121                         break;
2122                 case OPT_DSGETDCNAME:
2123                         if (!wbinfo_dsgetdcname(string_arg, 0)) {
2124                                 goto done;
2125                         }
2126                         break;
2127                 case OPT_SEPARATOR: {
2128                         const char sep = winbind_separator();
2129                         if ( !sep ) {
2130                                 goto done;
2131                         }
2132                         d_printf("%c\n", sep);
2133                         break;
2134                 }
2135                 case OPT_LIST_ALL_DOMAINS:
2136                         if (!wbinfo_list_domains(true, verbose)) {
2137                                 goto done;
2138                         }
2139                         break;
2140                 case OPT_LIST_OWN_DOMAIN:
2141                         if (!wbinfo_list_own_domain()) {
2142                                 goto done;
2143                         }
2144                         break;
2145                 case OPT_CHANGE_USER_PASSWORD:
2146                         if (!wbinfo_change_user_password(string_arg)) {
2147                                 d_fprintf(stderr,
2148                                         "Could not change user password "
2149                                          "for user %s\n", string_arg);
2150                                 goto done;
2151                         }
2152                         break;
2153
2154                 /* generic configuration options */
2155                 case OPT_DOMAIN_NAME:
2156                         break;
2157                 case OPT_VERBOSE:
2158                         break;
2159                 case OPT_NTLMV2:
2160                         break;
2161                 case OPT_LANMAN:
2162                         break;
2163                 default:
2164                         d_fprintf(stderr, "Invalid option\n");
2165                         poptPrintHelp(pc, stderr, 0);
2166                         goto done;
2167                 }
2168         }
2169
2170         result = 0;
2171
2172         /* Exit code */
2173
2174  done:
2175         talloc_free(frame);
2176
2177         poptFreeContext(pc);
2178         return result;
2179 }