s3 wbinfo: Only call afs_settoken_str if compiled with WITH_FAKE_KASERVER
[metze/samba/wip.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                          wbcSidTypeString(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, wbcSidTypeString(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 #ifdef WITH_FAKE_KASERVER
1476 /* Authenticate a user with a plaintext password and set a token */
1477
1478 static bool wbinfo_klog(char *username)
1479 {
1480         struct winbindd_request request;
1481         struct winbindd_response response;
1482         NSS_STATUS result;
1483         char *p;
1484
1485         /* Send off request */
1486
1487         ZERO_STRUCT(request);
1488         ZERO_STRUCT(response);
1489
1490         p = strchr(username, '%');
1491
1492         if (p) {
1493                 *p = 0;
1494                 fstrcpy(request.data.auth.user, username);
1495                 fstrcpy(request.data.auth.pass, p + 1);
1496                 *p = '%';
1497         } else {
1498                 fstrcpy(request.data.auth.user, username);
1499                 fstrcpy(request.data.auth.pass, getpass("Password: "));
1500         }
1501
1502         request.flags |= WBFLAG_PAM_AFS_TOKEN;
1503
1504         result = winbindd_request_response(WINBINDD_PAM_AUTH, &request,
1505                                            &response);
1506
1507         /* Display response */
1508
1509         d_printf("plaintext password authentication %s\n",
1510                  (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1511
1512         if (response.data.auth.nt_status)
1513                 d_fprintf(stderr,
1514                          "error code was %s (0x%x)\nerror messsage was: %s\n",
1515                          response.data.auth.nt_status_string,
1516                          response.data.auth.nt_status,
1517                          response.data.auth.error_string);
1518
1519         if (result != NSS_STATUS_SUCCESS)
1520                 return false;
1521
1522         if (response.extra_data.data == NULL) {
1523                 d_fprintf(stderr, "Did not get token data\n");
1524                 return false;
1525         }
1526
1527         if (!afs_settoken_str((char *)response.extra_data.data)) {
1528                 d_fprintf(stderr, "Could not set token\n");
1529                 return false;
1530         }
1531
1532         d_printf("Successfully created AFS token\n");
1533         return true;
1534 }
1535 #else
1536 static bool wbinfo_klog(char *username)
1537 {
1538         d_fprintf(stderr, "No AFS support compiled in.\n");
1539         return false;
1540 }
1541 #endif
1542
1543 /* Print domain users */
1544
1545 static bool print_domain_users(const char *domain)
1546 {
1547         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1548         uint32_t i;
1549         uint32_t num_users = 0;
1550         const char **users = NULL;
1551
1552         /* Send request to winbind daemon */
1553
1554         /* '.' is the special sign for our own domain */
1555         if (domain && strcmp(domain, ".") == 0) {
1556                 domain = get_winbind_domain();
1557         }
1558
1559         wbc_status = wbcListUsers(domain, &num_users, &users);
1560         if (!WBC_ERROR_IS_OK(wbc_status)) {
1561                 return false;
1562         }
1563
1564         for (i=0; i < num_users; i++) {
1565                 d_printf("%s\n", users[i]);
1566         }
1567
1568         wbcFreeMemory(users);
1569
1570         return true;
1571 }
1572
1573 /* Print domain groups */
1574
1575 static bool print_domain_groups(const char *domain)
1576 {
1577         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1578         uint32_t i;
1579         uint32_t num_groups = 0;
1580         const char **groups = NULL;
1581
1582         /* Send request to winbind daemon */
1583
1584         /* '.' is the special sign for our own domain */
1585         if (domain && strcmp(domain, ".") == 0) {
1586                 domain = get_winbind_domain();
1587         }
1588
1589         wbc_status = wbcListGroups(domain, &num_groups, &groups);
1590         if (!WBC_ERROR_IS_OK(wbc_status)) {
1591                 return false;
1592         }
1593
1594         for (i=0; i < num_groups; i++) {
1595                 d_printf("%s\n", groups[i]);
1596         }
1597
1598         wbcFreeMemory(groups);
1599
1600         return true;
1601 }
1602
1603 /* Set the authorised user for winbindd access in secrets.tdb */
1604
1605 static bool wbinfo_set_auth_user(char *username)
1606 {
1607         d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1608                           "See 'net help setauthuser' for details.\n");
1609         return false;
1610 }
1611
1612 static void wbinfo_get_auth_user(void)
1613 {
1614         d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1615                           "See 'net help getauthuser' for details.\n");
1616 }
1617
1618 static bool wbinfo_ping(void)
1619 {
1620         wbcErr wbc_status;
1621
1622         wbc_status = wbcPing();
1623
1624         /* Display response */
1625
1626         d_printf("Ping to winbindd %s\n",
1627                  WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1628
1629         return WBC_ERROR_IS_OK(wbc_status);
1630 }
1631
1632 static bool wbinfo_change_user_password(const char *username)
1633 {
1634         wbcErr wbc_status;
1635         char *old_password = NULL;
1636         char *new_password = NULL;
1637         TALLOC_CTX *frame = talloc_tos();
1638
1639         old_password = wbinfo_prompt_pass(frame, "old", username);
1640         new_password = wbinfo_prompt_pass(frame, "new", username);
1641
1642         wbc_status = wbcChangeUserPassword(username, old_password,new_password);
1643
1644         /* Display response */
1645
1646         d_printf("Password change for user %s %s\n", username,
1647                 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1648
1649         TALLOC_FREE(frame);
1650
1651         return WBC_ERROR_IS_OK(wbc_status);
1652 }
1653
1654 /* Main program */
1655
1656 enum {
1657         OPT_SET_AUTH_USER = 1000,
1658         OPT_GET_AUTH_USER,
1659         OPT_DOMAIN_NAME,
1660         OPT_SEQUENCE,
1661         OPT_GETDCNAME,
1662         OPT_DSGETDCNAME,
1663         OPT_USERDOMGROUPS,
1664         OPT_SIDALIASES,
1665         OPT_USERSIDS,
1666         OPT_ALLOCATE_UID,
1667         OPT_ALLOCATE_GID,
1668         OPT_SET_UID_MAPPING,
1669         OPT_SET_GID_MAPPING,
1670         OPT_REMOVE_UID_MAPPING,
1671         OPT_REMOVE_GID_MAPPING,
1672         OPT_SEPARATOR,
1673         OPT_LIST_ALL_DOMAINS,
1674         OPT_LIST_OWN_DOMAIN,
1675         OPT_UID_INFO,
1676         OPT_USER_SIDINFO,
1677         OPT_GROUP_INFO,
1678         OPT_GID_INFO,
1679         OPT_VERBOSE,
1680         OPT_ONLINESTATUS,
1681         OPT_CHANGE_USER_PASSWORD,
1682         OPT_SID_TO_FULLNAME,
1683         OPT_NTLMV2,
1684         OPT_LANMAN
1685 };
1686
1687 int main(int argc, char **argv, char **envp)
1688 {
1689         int opt;
1690         TALLOC_CTX *frame = talloc_stackframe();
1691         poptContext pc;
1692         static char *string_arg;
1693         char *string_subarg = NULL;
1694         static char *opt_domain_name;
1695         static int int_arg;
1696         int int_subarg = -1;
1697         int result = 1;
1698         bool verbose = false;
1699         bool use_ntlmv2 = false;
1700         bool use_lanman = false;
1701
1702         struct poptOption long_options[] = {
1703                 POPT_AUTOHELP
1704
1705                 /* longName, shortName, argInfo, argPtr, value, descrip,
1706                    argDesc */
1707
1708                 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1709                 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1710                 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1711                 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1712                 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1713                 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1714                 { "sid-to-fullname", 0, POPT_ARG_STRING, &string_arg,
1715                   OPT_SID_TO_FULLNAME, "Converts sid to fullname", "SID" },
1716                 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1717                 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1718                 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1719                 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1720                 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1721                 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1722                   "Get a new UID out of idmap" },
1723                 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1724                   "Get a new GID out of idmap" },
1725                 { "set-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_UID_MAPPING, "Create or modify uid to sid mapping in idmap", "UID,SID" },
1726                 { "set-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_GID_MAPPING, "Create or modify gid to sid mapping in idmap", "GID,SID" },
1727                 { "remove-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_UID_MAPPING, "Remove uid to sid mapping in idmap", "UID,SID" },
1728                 { "remove-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_GID_MAPPING, "Remove gid to sid mapping in idmap", "GID,SID" },
1729                 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1730                 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1731                 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1732                 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1733                 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1734                 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
1735                 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1736                 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1737                 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1738                 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1739                 { "user-sidinfo", 0, POPT_ARG_STRING, &string_arg, OPT_USER_SIDINFO, "Get user info from sid", "SID" },
1740                 { "gid-info", 0, POPT_ARG_INT, &int_arg, OPT_GID_INFO, "Get group info from gid", "GID" },
1741                 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1742                 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1743                   OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1744                 { "sid-aliases", 0, POPT_ARG_STRING, &string_arg, OPT_SIDALIASES, "Get sid aliases", "SID" },
1745                 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1746                 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1747                 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1748                 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1749                   "Get a DC name for a foreign domain", "domainname" },
1750                 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1751                 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1752                 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1753                 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1754 #ifdef WITH_FAKE_KASERVER
1755                 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1756 #endif
1757 #ifdef HAVE_KRB5
1758                 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1759                         /* destroys wbinfo --help output */
1760                         /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1761 #endif
1762                 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1763                 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1764                 { "change-user-password", 0, POPT_ARG_STRING, &string_arg, OPT_CHANGE_USER_PASSWORD, "Change the password for a user", NULL },
1765                 { "ntlmv2", 0, POPT_ARG_NONE, 0, OPT_NTLMV2, "Use NTLMv2 cryptography for user authentication", NULL},
1766                 { "lanman", 0, POPT_ARG_NONE, 0, OPT_LANMAN, "Use lanman cryptography for user authentication", NULL},
1767                 POPT_COMMON_VERSION
1768                 POPT_TABLEEND
1769         };
1770
1771         /* Samba client initialisation */
1772         load_case_tables();
1773
1774
1775         /* Parse options */
1776
1777         pc = poptGetContext("wbinfo", argc, (const char **)argv,
1778                             long_options, 0);
1779
1780         /* Parse command line options */
1781
1782         if (argc == 1) {
1783                 poptPrintHelp(pc, stderr, 0);
1784                 return 1;
1785         }
1786
1787         while((opt = poptGetNextOpt(pc)) != -1) {
1788                 /* get the generic configuration parameters like --domain */
1789                 switch (opt) {
1790                 case OPT_VERBOSE:
1791                         verbose = true;
1792                         break;
1793                 case OPT_NTLMV2:
1794                         use_ntlmv2 = true;
1795                         break;
1796                 case OPT_LANMAN:
1797                         use_lanman = true;
1798                         break;
1799                 }
1800         }
1801
1802         poptFreeContext(pc);
1803
1804         pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1805                             POPT_CONTEXT_KEEP_FIRST);
1806
1807         while((opt = poptGetNextOpt(pc)) != -1) {
1808                 switch (opt) {
1809                 case 'u':
1810                         if (!print_domain_users(opt_domain_name)) {
1811                                 d_fprintf(stderr,
1812                                           "Error looking up domain users\n");
1813                                 goto done;
1814                         }
1815                         break;
1816                 case 'g':
1817                         if (!print_domain_groups(opt_domain_name)) {
1818                                 d_fprintf(stderr,
1819                                           "Error looking up domain groups\n");
1820                                 goto done;
1821                         }
1822                         break;
1823                 case 's':
1824                         if (!wbinfo_lookupsid(string_arg)) {
1825                                 d_fprintf(stderr,
1826                                           "Could not lookup sid %s\n",
1827                                           string_arg);
1828                                 goto done;
1829                         }
1830                         break;
1831                 case OPT_SID_TO_FULLNAME:
1832                         if (!wbinfo_lookupsid_fullname(string_arg)) {
1833                                 d_fprintf(stderr, "Could not lookup sid %s\n",
1834                                           string_arg);
1835                                 goto done;
1836                         }
1837                         break;
1838                 case 'R':
1839                         if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1840                                 d_fprintf(stderr, "Could not lookup RIDs %s\n",
1841                                           string_arg);
1842                                 goto done;
1843                         }
1844                         break;
1845                 case 'n':
1846                         if (!wbinfo_lookupname(string_arg)) {
1847                                 d_fprintf(stderr, "Could not lookup name %s\n",
1848                                           string_arg);
1849                                 goto done;
1850                         }
1851                         break;
1852                 case 'N':
1853                         if (!wbinfo_wins_byname(string_arg)) {
1854                                 d_fprintf(stderr,
1855                                           "Could not lookup WINS by name %s\n",
1856                                           string_arg);
1857                                 goto done;
1858                         }
1859                         break;
1860                 case 'I':
1861                         if (!wbinfo_wins_byip(string_arg)) {
1862                                 d_fprintf(stderr,
1863                                           "Could not lookup WINS by IP %s\n",
1864                                           string_arg);
1865                                 goto done;
1866                         }
1867                         break;
1868                 case 'U':
1869                         if (!wbinfo_uid_to_sid(int_arg)) {
1870                                 d_fprintf(stderr,
1871                                           "Could not convert uid %d to sid\n",
1872                                           int_arg);
1873                                 goto done;
1874                         }
1875                         break;
1876                 case 'G':
1877                         if (!wbinfo_gid_to_sid(int_arg)) {
1878                                 d_fprintf(stderr,
1879                                           "Could not convert gid %d to sid\n",
1880                                           int_arg);
1881                                 goto done;
1882                         }
1883                         break;
1884                 case 'S':
1885                         if (!wbinfo_sid_to_uid(string_arg)) {
1886                                 d_fprintf(stderr,
1887                                           "Could not convert sid %s to uid\n",
1888                                           string_arg);
1889                                 goto done;
1890                         }
1891                         break;
1892                 case 'Y':
1893                         if (!wbinfo_sid_to_gid(string_arg)) {
1894                                 d_fprintf(stderr,
1895                                           "Could not convert sid %s to gid\n",
1896                                           string_arg);
1897                                 goto done;
1898                         }
1899                         break;
1900                 case OPT_ALLOCATE_UID:
1901                         if (!wbinfo_allocate_uid()) {
1902                                 d_fprintf(stderr, "Could not allocate a uid\n");
1903                                 goto done;
1904                         }
1905                         break;
1906                 case OPT_ALLOCATE_GID:
1907                         if (!wbinfo_allocate_gid()) {
1908                                 d_fprintf(stderr, "Could not allocate a gid\n");
1909                                 goto done;
1910                         }
1911                         break;
1912                 case OPT_SET_UID_MAPPING:
1913                         if (!parse_mapping_arg(string_arg, &int_subarg,
1914                                 &string_subarg) ||
1915                             !wbinfo_set_uid_mapping(int_subarg, string_subarg))
1916                         {
1917                                 d_fprintf(stderr, "Could not create or modify "
1918                                           "uid to sid mapping\n");
1919                                 goto done;
1920                         }
1921                         break;
1922                 case OPT_SET_GID_MAPPING:
1923                         if (!parse_mapping_arg(string_arg, &int_subarg,
1924                                 &string_subarg) ||
1925                             !wbinfo_set_gid_mapping(int_subarg, string_subarg))
1926                         {
1927                                 d_fprintf(stderr, "Could not create or modify "
1928                                           "gid to sid mapping\n");
1929                                 goto done;
1930                         }
1931                         break;
1932                 case OPT_REMOVE_UID_MAPPING:
1933                         if (!parse_mapping_arg(string_arg, &int_subarg,
1934                                 &string_subarg) ||
1935                             !wbinfo_remove_uid_mapping(int_subarg,
1936                                 string_subarg))
1937                         {
1938                                 d_fprintf(stderr, "Could not remove uid to sid "
1939                                     "mapping\n");
1940                                 goto done;
1941                         }
1942                         break;
1943                 case OPT_REMOVE_GID_MAPPING:
1944                         if (!parse_mapping_arg(string_arg, &int_subarg,
1945                                 &string_subarg) ||
1946                             !wbinfo_remove_gid_mapping(int_subarg,
1947                                 string_subarg))
1948                         {
1949                                 d_fprintf(stderr, "Could not remove gid to sid "
1950                                     "mapping\n");
1951                                 goto done;
1952                         }
1953                         break;
1954                 case 't':
1955                         if (!wbinfo_check_secret()) {
1956                                 d_fprintf(stderr, "Could not check secret\n");
1957                                 goto done;
1958                         }
1959                         break;
1960                 case 'm':
1961                         if (!wbinfo_list_domains(false, verbose)) {
1962                                 d_fprintf(stderr,
1963                                           "Could not list trusted domains\n");
1964                                 goto done;
1965                         }
1966                         break;
1967                 case OPT_SEQUENCE:
1968                         if (!wbinfo_show_sequence(opt_domain_name)) {
1969                                 d_fprintf(stderr,
1970                                           "Could not show sequence numbers\n");
1971                                 goto done;
1972                         }
1973                         break;
1974                 case OPT_ONLINESTATUS:
1975                         if (!wbinfo_show_onlinestatus(opt_domain_name)) {
1976                                 d_fprintf(stderr,
1977                                           "Could not show online-status\n");
1978                                 goto done;
1979                         }
1980                         break;
1981                 case 'D':
1982                         if (!wbinfo_domain_info(string_arg)) {
1983                                 d_fprintf(stderr,
1984                                           "Could not get domain info\n");
1985                                 goto done;
1986                         }
1987                         break;
1988                 case 'i':
1989                         if (!wbinfo_get_userinfo(string_arg)) {
1990                                 d_fprintf(stderr,
1991                                           "Could not get info for user %s\n",
1992                                           string_arg);
1993                                 goto done;
1994                         }
1995                         break;
1996                 case OPT_USER_SIDINFO:
1997                         if ( !wbinfo_get_user_sidinfo(string_arg)) {
1998                                 d_fprintf(stderr,
1999                                           "Could not get info for user "
2000                                           "sid %s\n", string_arg);
2001                                 goto done;
2002                         }
2003                         break;
2004                 case OPT_UID_INFO:
2005                         if ( !wbinfo_get_uidinfo(int_arg)) {
2006                                 d_fprintf(stderr, "Could not get info for uid "
2007                                                 "%d\n", int_arg);
2008                                 goto done;
2009                         }
2010                         break;
2011                 case OPT_GROUP_INFO:
2012                         if ( !wbinfo_get_groupinfo(string_arg)) {
2013                                 d_fprintf(stderr, "Could not get info for "
2014                                           "group %s\n", string_arg);
2015                                 goto done;
2016                         }
2017                         break;
2018                 case OPT_GID_INFO:
2019                         if ( !wbinfo_get_gidinfo(int_arg)) {
2020                                 d_fprintf(stderr, "Could not get info for gid "
2021                                                 "%d\n", int_arg);
2022                                 goto done;
2023                         }
2024                         break;
2025                 case 'r':
2026                         if (!wbinfo_get_usergroups(string_arg)) {
2027                                 d_fprintf(stderr,
2028                                           "Could not get groups for user %s\n",
2029                                           string_arg);
2030                                 goto done;
2031                         }
2032                         break;
2033                 case OPT_USERSIDS:
2034                         if (!wbinfo_get_usersids(string_arg)) {
2035                                 d_fprintf(stderr, "Could not get group SIDs "
2036                                           "for user SID %s\n",
2037                                           string_arg);
2038                                 goto done;
2039                         }
2040                         break;
2041                 case OPT_USERDOMGROUPS:
2042                         if (!wbinfo_get_userdomgroups(string_arg)) {
2043                                 d_fprintf(stderr, "Could not get user's domain "
2044                                          "groups for user SID %s\n",
2045                                          string_arg);
2046                                 goto done;
2047                         }
2048                         break;
2049                 case OPT_SIDALIASES:
2050                         if (!wbinfo_get_sidaliases(opt_domain_name,
2051                                                    string_arg)) {
2052                                 d_fprintf(stderr, "Could not get sid aliases "
2053                                          "for user SID %s\n", string_arg);
2054                                 goto done;
2055                         }
2056                         break;
2057                 case 'a': {
2058                                 bool got_error = false;
2059
2060                                 if (!wbinfo_auth(string_arg)) {
2061                                         d_fprintf(stderr,
2062                                                   "Could not authenticate user "
2063                                                   "%s with plaintext "
2064                                                   "password\n", string_arg);
2065                                         got_error = true;
2066                                 }
2067
2068                                 if (!wbinfo_auth_crap(string_arg, use_ntlmv2,
2069                                                       use_lanman)) {
2070                                         d_fprintf(stderr,
2071                                                 "Could not authenticate user "
2072                                                 "%s with challenge/response\n",
2073                                                 string_arg);
2074                                         got_error = true;
2075                                 }
2076
2077                                 if (got_error)
2078                                         goto done;
2079                                 break;
2080                         }
2081                 case 'K': {
2082                                 uint32_t flags = WBFLAG_PAM_KRB5 |
2083                                                  WBFLAG_PAM_CACHED_LOGIN |
2084                                                 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
2085                                                  WBFLAG_PAM_INFO3_TEXT |
2086                                                  WBFLAG_PAM_CONTACT_TRUSTDOM;
2087
2088                                 if (!wbinfo_auth_krb5(string_arg, "FILE",
2089                                                       flags)) {
2090                                         d_fprintf(stderr,
2091                                                 "Could not authenticate user "
2092                                                 "[%s] with Kerberos "
2093                                                 "(ccache: %s)\n", string_arg,
2094                                                 "FILE");
2095                                         goto done;
2096                                 }
2097                                 break;
2098                         }
2099                 case 'k':
2100                         if (!wbinfo_klog(string_arg)) {
2101                                 d_fprintf(stderr, "Could not klog user\n");
2102                                 goto done;
2103                         }
2104                         break;
2105                 case 'p':
2106                         if (!wbinfo_ping()) {
2107                                 d_fprintf(stderr, "could not ping winbindd!\n");
2108                                 goto done;
2109                         }
2110                         break;
2111                 case OPT_SET_AUTH_USER:
2112                         if (!wbinfo_set_auth_user(string_arg)) {
2113                                 goto done;
2114                         }
2115                         break;
2116                 case OPT_GET_AUTH_USER:
2117                         wbinfo_get_auth_user();
2118                         goto done;
2119                         break;
2120                 case OPT_GETDCNAME:
2121                         if (!wbinfo_getdcname(string_arg)) {
2122                                 goto done;
2123                         }
2124                         break;
2125                 case OPT_DSGETDCNAME:
2126                         if (!wbinfo_dsgetdcname(string_arg, 0)) {
2127                                 goto done;
2128                         }
2129                         break;
2130                 case OPT_SEPARATOR: {
2131                         const char sep = winbind_separator();
2132                         if ( !sep ) {
2133                                 goto done;
2134                         }
2135                         d_printf("%c\n", sep);
2136                         break;
2137                 }
2138                 case OPT_LIST_ALL_DOMAINS:
2139                         if (!wbinfo_list_domains(true, verbose)) {
2140                                 goto done;
2141                         }
2142                         break;
2143                 case OPT_LIST_OWN_DOMAIN:
2144                         if (!wbinfo_list_own_domain()) {
2145                                 goto done;
2146                         }
2147                         break;
2148                 case OPT_CHANGE_USER_PASSWORD:
2149                         if (!wbinfo_change_user_password(string_arg)) {
2150                                 d_fprintf(stderr,
2151                                         "Could not change user password "
2152                                          "for user %s\n", string_arg);
2153                                 goto done;
2154                         }
2155                         break;
2156
2157                 /* generic configuration options */
2158                 case OPT_DOMAIN_NAME:
2159                         break;
2160                 case OPT_VERBOSE:
2161                         break;
2162                 case OPT_NTLMV2:
2163                         break;
2164                 case OPT_LANMAN:
2165                         break;
2166                 default:
2167                         d_fprintf(stderr, "Invalid option\n");
2168                         poptPrintHelp(pc, stderr, 0);
2169                         goto done;
2170                 }
2171         }
2172
2173         result = 0;
2174
2175         /* Exit code */
2176
2177  done:
2178         talloc_free(frame);
2179
2180         poptFreeContext(pc);
2181         return result;
2182 }