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