Remove trailing withespace from wbinfo -m which breaks gdm auth.
[Samba.git] / source3 / nsswitch / wbinfo.c
blobc1d41a53fdc785e91c867d38966d50a0df09c1f3
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind status program.
6 Copyright (C) Tim Potter 2000-2003
7 Copyright (C) Andrew Bartlett 2002
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.
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.
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/>.
23 #include "includes.h"
24 #include "winbind_client.h"
25 #include "libwbclient/wbclient.h"
27 #undef DBGC_CLASS
28 #define DBGC_CLASS DBGC_WINBIND
30 static struct wbcInterfaceDetails *init_interface_details(void)
32 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
33 static struct wbcInterfaceDetails *details;
35 if (details) {
36 return details;
39 wbc_status = wbcInterfaceDetails(&details);
40 if (!WBC_ERROR_IS_OK(wbc_status)) {
41 d_fprintf(stderr, "could not obtain winbind interface details!\n");
44 return details;
47 static char winbind_separator_int(bool strict)
49 struct wbcInterfaceDetails *details;
50 static bool got_sep;
51 static char sep;
53 if (got_sep)
54 return sep;
56 details = init_interface_details();
58 if (!details) {
59 d_fprintf(stderr, "could not obtain winbind separator!\n");
60 if (strict) {
61 return 0;
63 /* HACK: (this module should not call lp_ funtions) */
64 return *lp_winbind_separator();
67 sep = details->winbind_separator;
68 got_sep = true;
70 if (!sep) {
71 d_fprintf(stderr, "winbind separator was NULL!\n");
72 if (strict) {
73 return 0;
75 /* HACK: (this module should not call lp_ funtions) */
76 sep = *lp_winbind_separator();
79 return sep;
82 static char winbind_separator(void)
84 return winbind_separator_int(false);
87 static const char *get_winbind_domain(void)
89 static struct wbcInterfaceDetails *details;
91 details = init_interface_details();
93 if (!details) {
94 d_fprintf(stderr, "could not obtain winbind domain name!\n");
96 /* HACK: (this module should not call lp_ functions) */
97 return lp_workgroup();
100 return details->netbios_domain;
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 */
106 static bool parse_wbinfo_domain_user(const char *domuser, fstring domain,
107 fstring user)
110 char *p = strchr(domuser,winbind_separator());
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;
120 fstrcpy(user, domuser);
121 fstrcpy(domain, get_winbind_domain());
122 return true;
125 fstrcpy(user, p+1);
126 fstrcpy(domain, domuser);
127 domain[PTR_DIFF(p, domuser)] = 0;
128 strupper_m(domain);
130 return true;
133 /* pull pwent info for a given user */
135 static bool wbinfo_get_userinfo(char *user)
137 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
138 struct passwd *pwd = NULL;
140 wbc_status = wbcGetpwnam(user, &pwd);
141 if (!WBC_ERROR_IS_OK(wbc_status)) {
142 return false;
145 d_printf("%s:%s:%d:%d:%s:%s:%s\n",
146 pwd->pw_name,
147 pwd->pw_passwd,
148 pwd->pw_uid,
149 pwd->pw_gid,
150 pwd->pw_gecos,
151 pwd->pw_dir,
152 pwd->pw_shell);
154 return true;
157 /* pull pwent info for a given uid */
158 static bool wbinfo_get_uidinfo(int uid)
160 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
161 struct passwd *pwd = NULL;
163 wbc_status = wbcGetpwuid(uid, &pwd);
164 if (!WBC_ERROR_IS_OK(wbc_status)) {
165 return false;
168 d_printf("%s:%s:%d:%d:%s:%s:%s\n",
169 pwd->pw_name,
170 pwd->pw_passwd,
171 pwd->pw_uid,
172 pwd->pw_gid,
173 pwd->pw_gecos,
174 pwd->pw_dir,
175 pwd->pw_shell);
177 return true;
180 /* pull grent for a given group */
181 static bool wbinfo_get_groupinfo(const char *group)
183 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
184 struct group *grp;
186 wbc_status = wbcGetgrnam(group, &grp);
187 if (!WBC_ERROR_IS_OK(wbc_status)) {
188 return false;
191 d_printf("%s:%s:%d\n",
192 grp->gr_name,
193 grp->gr_passwd,
194 grp->gr_gid);
196 wbcFreeMemory(grp);
198 return true;
201 /* List groups a user is a member of */
203 static bool wbinfo_get_usergroups(const char *user)
205 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
206 uint32_t num_groups;
207 uint32_t i;
208 gid_t *groups = NULL;
210 /* Send request */
212 wbc_status = wbcGetGroups(user, &num_groups, &groups);
213 if (!WBC_ERROR_IS_OK(wbc_status)) {
214 return false;
217 for (i = 0; i < num_groups; i++) {
218 d_printf("%d\n", (int)groups[i]);
221 wbcFreeMemory(groups);
223 return true;
227 /* List group SIDs a user SID is a member of */
228 static bool wbinfo_get_usersids(const char *user_sid_str)
230 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
231 uint32_t num_sids;
232 uint32_t i;
233 struct wbcDomainSid user_sid, *sids = NULL;
235 /* Send request */
237 wbc_status = wbcStringToSid(user_sid_str, &user_sid);
238 if (!WBC_ERROR_IS_OK(wbc_status)) {
239 return false;
242 wbc_status = wbcLookupUserSids(&user_sid, false, &num_sids, &sids);
243 if (!WBC_ERROR_IS_OK(wbc_status)) {
244 return false;
247 for (i = 0; i < num_sids; i++) {
248 char *str = NULL;
249 wbc_status = wbcSidToString(&sids[i], &str);
250 if (!WBC_ERROR_IS_OK(wbc_status)) {
251 wbcFreeMemory(sids);
252 return false;
254 d_printf("%s\n", str);
255 wbcFreeMemory(str);
258 wbcFreeMemory(sids);
260 return true;
263 static bool wbinfo_get_userdomgroups(const char *user_sid_str)
265 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
266 uint32_t num_sids;
267 uint32_t i;
268 struct wbcDomainSid user_sid, *sids = NULL;
270 /* Send request */
272 wbc_status = wbcStringToSid(user_sid_str, &user_sid);
273 if (!WBC_ERROR_IS_OK(wbc_status)) {
274 return false;
277 wbc_status = wbcLookupUserSids(&user_sid, true, &num_sids, &sids);
278 if (!WBC_ERROR_IS_OK(wbc_status)) {
279 return false;
282 for (i = 0; i < num_sids; i++) {
283 char *str = NULL;
284 wbc_status = wbcSidToString(&sids[i], &str);
285 if (!WBC_ERROR_IS_OK(wbc_status)) {
286 wbcFreeMemory(sids);
287 return false;
289 d_printf("%s\n", str);
290 wbcFreeMemory(str);
293 wbcFreeMemory(sids);
295 return true;
298 /* Convert NetBIOS name to IP */
300 static bool wbinfo_wins_byname(const char *name)
302 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
303 char *ip = NULL;
305 wbc_status = wbcResolveWinsByName(name, &ip);
306 if (!WBC_ERROR_IS_OK(wbc_status)) {
307 return false;
310 /* Display response */
312 d_printf("%s\n", ip);
314 wbcFreeMemory(ip);
316 return true;
319 /* Convert IP to NetBIOS name */
321 static bool wbinfo_wins_byip(const char *ip)
323 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
324 char *name = NULL;
326 wbc_status = wbcResolveWinsByIP(ip, &name);
327 if (!WBC_ERROR_IS_OK(wbc_status)) {
328 return false;
331 /* Display response */
333 d_printf("%s\n", name);
335 wbcFreeMemory(name);
337 return true;
340 /* List all/trusted domains */
342 static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
344 struct wbcDomainInfo *domain_list = NULL;
345 size_t num_domains;
346 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
347 bool print_all = !list_all_domains && verbose;
348 int i;
350 wbc_status = wbcListTrusts(&domain_list, &num_domains);
351 if (!WBC_ERROR_IS_OK(wbc_status)) {
352 return false;
355 if (print_all) {
356 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
357 "Domain Name", "DNS Domain", "Trust Type",
358 "Transitive", "In", "Out");
361 for (i=0; i<num_domains; i++) {
362 if (print_all) {
363 d_printf("%-16s", domain_list[i].short_name);
364 } else {
365 d_printf("%s", domain_list[i].short_name);
366 d_printf("\n");
367 continue;
370 d_printf("%-24s", domain_list[i].dns_name);
372 switch(domain_list[i].trust_type) {
373 case WBC_DOMINFO_TRUSTTYPE_NONE:
374 d_printf("None ");
375 break;
376 case WBC_DOMINFO_TRUSTTYPE_FOREST:
377 d_printf("Forest ");
378 break;
379 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:
380 d_printf("External ");
381 break;
382 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
383 d_printf("In-Forest ");
384 break;
387 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
388 d_printf("Yes ");
389 } else {
390 d_printf("No ");
393 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
394 d_printf("Yes ");
395 } else {
396 d_printf("No ");
399 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
400 d_printf("Yes ");
401 } else {
402 d_printf("No ");
405 d_printf("\n");
408 return true;
411 /* List own domain */
413 static bool wbinfo_list_own_domain(void)
415 d_printf("%s\n", get_winbind_domain());
417 return true;
420 /* show sequence numbers */
421 static bool wbinfo_show_sequence(const char *domain)
423 d_printf("This command has been deprecated. Please use the --online-status option instead.\n");
424 return false;
427 /* show sequence numbers */
428 static bool wbinfo_show_onlinestatus(const char *domain)
430 struct wbcDomainInfo *domain_list = NULL;
431 size_t num_domains;
432 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
433 int i;
435 wbc_status = wbcListTrusts(&domain_list, &num_domains);
436 if (!WBC_ERROR_IS_OK(wbc_status)) {
437 return false;
440 for (i=0; i<num_domains; i++) {
441 bool is_offline;
443 if (domain) {
444 if (!strequal(domain_list[i].short_name, domain)) {
445 continue;
449 is_offline = (domain_list[i].domain_flags & WBC_DOMINFO_DOMAIN_OFFLINE);
451 d_printf("%s : %s\n",
452 domain_list[i].short_name,
453 is_offline ? "offline" : "online" );
456 return true;
460 /* Show domain info */
462 static bool wbinfo_domain_info(const char *domain)
464 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
465 struct wbcDomainInfo *dinfo = NULL;
466 char *sid_str = NULL;
468 if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
469 domain = get_winbind_domain();
472 /* Send request */
474 wbc_status = wbcDomainInfo(domain, &dinfo);
475 if (!WBC_ERROR_IS_OK(wbc_status)) {
476 return false;
479 wbc_status = wbcSidToString(&dinfo->sid, &sid_str);
480 if (!WBC_ERROR_IS_OK(wbc_status)) {
481 wbcFreeMemory(dinfo);
482 return false;
485 /* Display response */
487 d_printf("Name : %s\n", dinfo->short_name);
488 d_printf("Alt_Name : %s\n", dinfo->dns_name);
490 d_printf("SID : %s\n", sid_str);
492 d_printf("Active Directory : %s\n",
493 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
494 d_printf("Native : %s\n",
495 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ? "Yes" : "No");
497 d_printf("Primary : %s\n",
498 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ? "Yes" : "No");
500 wbcFreeMemory(sid_str);
501 wbcFreeMemory(dinfo);
503 return true;
506 /* Get a foreign DC's name */
507 static bool wbinfo_getdcname(const char *domain_name)
509 struct winbindd_request request;
510 struct winbindd_response response;
512 ZERO_STRUCT(request);
513 ZERO_STRUCT(response);
515 fstrcpy(request.domain_name, domain_name);
517 /* Send request */
519 if (winbindd_request_response(WINBINDD_GETDCNAME, &request, &response) !=
520 NSS_STATUS_SUCCESS) {
521 d_fprintf(stderr, "Could not get dc name for %s\n", domain_name);
522 return false;
525 /* Display response */
527 d_printf("%s\n", response.data.dc_name);
529 return true;
532 /* Find a DC */
533 static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
535 struct winbindd_request request;
536 struct winbindd_response response;
538 ZERO_STRUCT(request);
539 ZERO_STRUCT(response);
541 fstrcpy(request.domain_name, domain_name);
542 request.flags = flags;
544 request.flags |= DS_DIRECTORY_SERVICE_REQUIRED;
546 /* Send request */
548 if (winbindd_request_response(WINBINDD_DSGETDCNAME, &request, &response) !=
549 NSS_STATUS_SUCCESS) {
550 d_fprintf(stderr, "Could not find dc for %s\n", domain_name);
551 return false;
554 /* Display response */
556 d_printf("%s\n", response.data.dc_name);
558 return true;
561 /* Check trust account password */
563 static bool wbinfo_check_secret(void)
565 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
566 struct wbcAuthErrorInfo *error = NULL;
568 wbc_status = wbcCheckTrustCredentials(NULL, &error);
570 d_printf("checking the trust secret via RPC calls %s\n",
571 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
573 if (wbc_status == WBC_ERR_AUTH_ERROR) {
574 d_fprintf(stderr, "error code was %s (0x%x)\n",
575 error->nt_string, error->nt_status);
576 wbcFreeMemory(error);
578 if (!WBC_ERROR_IS_OK(wbc_status)) {
579 return false;
582 return true;
585 /* Convert uid to sid */
587 static bool wbinfo_uid_to_sid(uid_t uid)
589 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
590 struct wbcDomainSid sid;
591 char *sid_str = NULL;
593 /* Send request */
595 wbc_status = wbcUidToSid(uid, &sid);
596 if (!WBC_ERROR_IS_OK(wbc_status)) {
597 return false;
600 wbc_status = wbcSidToString(&sid, &sid_str);
601 if (!WBC_ERROR_IS_OK(wbc_status)) {
602 return false;
605 /* Display response */
607 d_printf("%s\n", sid_str);
609 wbcFreeMemory(sid_str);
611 return true;
614 /* Convert gid to sid */
616 static bool wbinfo_gid_to_sid(gid_t gid)
618 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
619 struct wbcDomainSid sid;
620 char *sid_str = NULL;
622 /* Send request */
624 wbc_status = wbcGidToSid(gid, &sid);
625 if (!WBC_ERROR_IS_OK(wbc_status)) {
626 return false;
629 wbc_status = wbcSidToString(&sid, &sid_str);
630 if (!WBC_ERROR_IS_OK(wbc_status)) {
631 return false;
634 /* Display response */
636 d_printf("%s\n", sid_str);
638 wbcFreeMemory(sid_str);
640 return true;
643 /* Convert sid to uid */
645 static bool wbinfo_sid_to_uid(const char *sid_str)
647 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
648 struct wbcDomainSid sid;
649 uid_t uid;
651 /* Send request */
653 wbc_status = wbcStringToSid(sid_str, &sid);
654 if (!WBC_ERROR_IS_OK(wbc_status)) {
655 return false;
658 wbc_status = wbcSidToUid(&sid, &uid);
659 if (!WBC_ERROR_IS_OK(wbc_status)) {
660 return false;
663 /* Display response */
665 d_printf("%d\n", (int)uid);
667 return true;
670 static bool wbinfo_sid_to_gid(const char *sid_str)
672 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
673 struct wbcDomainSid sid;
674 gid_t gid;
676 /* Send request */
678 wbc_status = wbcStringToSid(sid_str, &sid);
679 if (!WBC_ERROR_IS_OK(wbc_status)) {
680 return false;
683 wbc_status = wbcSidToGid(&sid, &gid);
684 if (!WBC_ERROR_IS_OK(wbc_status)) {
685 return false;
688 /* Display response */
690 d_printf("%d\n", (int)gid);
692 return true;
695 static bool wbinfo_allocate_uid(void)
697 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
698 uid_t uid;
700 /* Send request */
702 wbc_status = wbcAllocateUid(&uid);
703 if (!WBC_ERROR_IS_OK(wbc_status)) {
704 return false;
707 /* Display response */
709 d_printf("New uid: %d\n", uid);
711 return true;
714 static bool wbinfo_allocate_gid(void)
716 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
717 gid_t gid;
719 /* Send request */
721 wbc_status = wbcAllocateGid(&gid);
722 if (!WBC_ERROR_IS_OK(wbc_status)) {
723 return false;
726 /* Display response */
728 d_printf("New gid: %d\n", gid);
730 return true;
733 /* Convert sid to string */
735 static bool wbinfo_lookupsid(const char *sid_str)
737 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
738 struct wbcDomainSid sid;
739 char *domain;
740 char *name;
741 enum wbcSidType type;
743 /* Send off request */
745 wbc_status = wbcStringToSid(sid_str, &sid);
746 if (!WBC_ERROR_IS_OK(wbc_status)) {
747 return false;
750 wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
751 if (!WBC_ERROR_IS_OK(wbc_status)) {
752 return false;
755 /* Display response */
757 d_printf("%s%c%s %d\n",
758 domain, winbind_separator(), name, type);
760 return true;
763 /* Lookup a list of RIDs */
765 static bool wbinfo_lookuprids(const char *domain, const char *arg)
767 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
768 struct wbcDomainInfo *dinfo = NULL;
769 char *domain_name = NULL;
770 const char **names = NULL;
771 enum wbcSidType *types = NULL;
772 size_t i;
773 int num_rids;
774 uint32 *rids = NULL;
775 const char *p;
776 char *ridstr;
777 TALLOC_CTX *mem_ctx = NULL;
778 bool ret = false;
780 if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
781 domain = get_winbind_domain();
784 /* Send request */
786 wbc_status = wbcDomainInfo(domain, &dinfo);
787 if (!WBC_ERROR_IS_OK(wbc_status)) {
788 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
789 wbcErrorString(wbc_status));
790 goto done;
793 mem_ctx = talloc_new(NULL);
794 if (mem_ctx == NULL) {
795 d_printf("talloc_new failed\n");
796 goto done;
799 num_rids = 0;
800 rids = NULL;
801 p = arg;
803 while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
804 uint32 rid = strtoul(ridstr, NULL, 10);
805 ADD_TO_ARRAY(mem_ctx, uint32, rid, &rids, &num_rids);
808 if (rids == NULL) {
809 d_printf("no rids\n");
810 goto done;
813 wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
814 (const char **)&domain_name, &names, &types);
815 if (!WBC_ERROR_IS_OK(wbc_status)) {
816 d_printf("winbind_lookup_rids failed: %s\n",
817 wbcErrorString(wbc_status));
818 goto done;
821 d_printf("Domain: %s\n", domain_name);
823 for (i=0; i<num_rids; i++) {
824 d_printf("%8d: %s (%s)\n", rids[i], names[i],
825 sid_type_lookup(types[i]));
828 ret = true;
829 done:
830 if (dinfo) {
831 wbcFreeMemory(dinfo);
833 if (domain_name) {
834 wbcFreeMemory(domain_name);
836 if (names) {
837 wbcFreeMemory(names);
839 if (types) {
840 wbcFreeMemory(types);
842 TALLOC_FREE(mem_ctx);
843 return ret;
846 /* Convert string to sid */
848 static bool wbinfo_lookupname(const char *full_name)
850 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
851 struct wbcDomainSid sid;
852 char *sid_str;
853 enum wbcSidType type;
854 fstring domain_name;
855 fstring account_name;
857 /* Send off request */
859 parse_wbinfo_domain_user(full_name, domain_name,
860 account_name);
862 wbc_status = wbcLookupName(domain_name, account_name,
863 &sid, &type);
864 if (!WBC_ERROR_IS_OK(wbc_status)) {
865 return false;
868 wbc_status = wbcSidToString(&sid, &sid_str);
869 if (!WBC_ERROR_IS_OK(wbc_status)) {
870 return false;
873 /* Display response */
875 d_printf("%s %s (%d)\n", sid_str, sid_type_lookup(type), type);
877 wbcFreeMemory(sid_str);
879 return true;
882 /* Authenticate a user with a plaintext password */
884 static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32 flags)
886 struct winbindd_request request;
887 struct winbindd_response response;
888 NSS_STATUS result;
889 char *p;
891 /* Send off request */
893 ZERO_STRUCT(request);
894 ZERO_STRUCT(response);
896 p = strchr(username, '%');
898 if (p) {
899 *p = 0;
900 fstrcpy(request.data.auth.user, username);
901 fstrcpy(request.data.auth.pass, p + 1);
902 *p = '%';
903 } else
904 fstrcpy(request.data.auth.user, username);
906 request.flags = flags;
908 fstrcpy(request.data.auth.krb5_cc_type, cctype);
910 request.data.auth.uid = geteuid();
912 result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
914 /* Display response */
916 d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
917 username, (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", cctype);
919 if (response.data.auth.nt_status)
920 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
921 response.data.auth.nt_status_string,
922 response.data.auth.nt_status,
923 response.data.auth.error_string);
925 if (result == NSS_STATUS_SUCCESS) {
927 if (request.flags & WBFLAG_PAM_INFO3_TEXT) {
928 if (response.data.auth.info3.user_flgs & NETLOGON_CACHED_ACCOUNT) {
929 d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
933 if (response.data.auth.krb5ccname[0] != '\0') {
934 d_printf("credentials were put in: %s\n", response.data.auth.krb5ccname);
935 } else {
936 d_printf("no credentials cached\n");
940 return result == NSS_STATUS_SUCCESS;
943 /* Authenticate a user with a plaintext password */
945 static bool wbinfo_auth(char *username)
947 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
948 char *s = NULL;
949 char *p = NULL;
950 const char *password = NULL;
951 char *name = NULL;
953 if ((s = SMB_STRDUP(username)) == NULL) {
954 return false;
957 if ((p = strchr(s, '%')) != NULL) {
958 *p = 0;
959 p++;
960 password = p;
961 } else {
962 char *prompt;
963 asprintf(&prompt, "Enter %s's password:", username);
964 if (!prompt) {
965 return false;
968 password = getpass(prompt);
969 SAFE_FREE(prompt);
972 name = s;
974 wbc_status = wbcAuthenticateUser(name, password);
976 d_printf("plaintext password authentication %s\n",
977 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
979 #if 0
980 if (response.data.auth.nt_status)
981 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
982 response.data.auth.nt_status_string,
983 response.data.auth.nt_status,
984 response.data.auth.error_string);
985 #endif
987 SAFE_FREE(s);
989 return WBC_ERROR_IS_OK(wbc_status);
992 /* Authenticate a user with a challenge/response */
994 static bool wbinfo_auth_crap(char *username)
996 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
997 struct wbcAuthUserParams params;
998 struct wbcAuthUserInfo *info = NULL;
999 struct wbcAuthErrorInfo *err = NULL;
1000 DATA_BLOB lm = data_blob_null;
1001 DATA_BLOB nt = data_blob_null;
1002 fstring name_user;
1003 fstring name_domain;
1004 fstring pass;
1005 char *p;
1007 p = strchr(username, '%');
1009 if (p) {
1010 *p = 0;
1011 fstrcpy(pass, p + 1);
1012 } else {
1013 char *prompt;
1014 asprintf(&prompt, "Enter %s's password:", username);
1015 if (!prompt) {
1016 return false;
1019 fstrcpy(pass, getpass(prompt));
1020 SAFE_FREE(prompt);
1024 parse_wbinfo_domain_user(username, name_domain, name_user);
1026 params.account_name = name_user;
1027 params.domain_name = name_domain;
1028 params.workstation_name = NULL;
1030 params.flags = 0;
1031 params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
1032 WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
1034 params.level = WBC_AUTH_USER_LEVEL_RESPONSE;
1036 generate_random_buffer(params.password.response.challenge, 8);
1038 if (lp_client_ntlmv2_auth()) {
1039 DATA_BLOB server_chal;
1040 DATA_BLOB names_blob;
1042 server_chal = data_blob(params.password.response.challenge, 8);
1044 /* Pretend this is a login to 'us', for blob purposes */
1045 names_blob = NTLMv2_generate_names_blob(global_myname(), lp_workgroup());
1047 if (!SMBNTLMv2encrypt(name_user, name_domain, pass, &server_chal,
1048 &names_blob,
1049 &lm, &nt, NULL)) {
1050 data_blob_free(&names_blob);
1051 data_blob_free(&server_chal);
1052 return false;
1054 data_blob_free(&names_blob);
1055 data_blob_free(&server_chal);
1057 } else {
1058 if (lp_client_lanman_auth()) {
1059 bool ok;
1060 lm = data_blob(NULL, 24);
1061 ok = SMBencrypt(pass, params.password.response.challenge,
1062 lm.data);
1063 if (!ok) {
1064 data_blob_free(&lm);
1067 nt = data_blob(NULL, 24);
1068 SMBNTencrypt(pass, params.password.response.challenge,
1069 nt.data);
1072 params.password.response.nt_length = nt.length;
1073 params.password.response.nt_data = nt.data;
1074 params.password.response.lm_length = lm.length;
1075 params.password.response.lm_data = lm.data;
1077 wbc_status = wbcAuthenticateUserEx(&params, &info, &err);
1079 /* Display response */
1081 d_printf("challenge/response password authentication %s\n",
1082 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1084 if (wbc_status == WBC_ERR_AUTH_ERROR) {
1085 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
1086 err->nt_string,
1087 err->nt_status,
1088 err->display_string);
1089 wbcFreeMemory(err);
1090 } else if (WBC_ERROR_IS_OK(wbc_status)) {
1091 wbcFreeMemory(info);
1094 data_blob_free(&nt);
1095 data_blob_free(&lm);
1097 return WBC_ERROR_IS_OK(wbc_status);
1100 /* Authenticate a user with a plaintext password and set a token */
1102 static bool wbinfo_klog(char *username)
1104 struct winbindd_request request;
1105 struct winbindd_response response;
1106 NSS_STATUS result;
1107 char *p;
1109 /* Send off request */
1111 ZERO_STRUCT(request);
1112 ZERO_STRUCT(response);
1114 p = strchr(username, '%');
1116 if (p) {
1117 *p = 0;
1118 fstrcpy(request.data.auth.user, username);
1119 fstrcpy(request.data.auth.pass, p + 1);
1120 *p = '%';
1121 } else {
1122 fstrcpy(request.data.auth.user, username);
1123 fstrcpy(request.data.auth.pass, getpass("Password: "));
1126 request.flags |= WBFLAG_PAM_AFS_TOKEN;
1128 result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
1130 /* Display response */
1132 d_printf("plaintext password authentication %s\n",
1133 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1135 if (response.data.auth.nt_status)
1136 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
1137 response.data.auth.nt_status_string,
1138 response.data.auth.nt_status,
1139 response.data.auth.error_string);
1141 if (result != NSS_STATUS_SUCCESS)
1142 return false;
1144 if (response.extra_data.data == NULL) {
1145 d_fprintf(stderr, "Did not get token data\n");
1146 return false;
1149 if (!afs_settoken_str((char *)response.extra_data.data)) {
1150 d_fprintf(stderr, "Could not set token\n");
1151 return false;
1154 d_printf("Successfully created AFS token\n");
1155 return true;
1158 /* Print domain users */
1160 static bool print_domain_users(const char *domain)
1162 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1163 uint32_t i;
1164 uint32_t num_users = 0;
1165 const char **users = NULL;
1167 /* Send request to winbind daemon */
1169 /* '.' is the special sign for our own domain */
1170 if (domain && strcmp(domain, ".") == 0) {
1171 domain = get_winbind_domain();
1174 wbc_status = wbcListUsers(domain, &num_users, &users);
1175 if (!WBC_ERROR_IS_OK(wbc_status)) {
1176 return false;
1179 for (i=0; i < num_users; i++) {
1180 d_printf("%s\n", users[i]);
1183 wbcFreeMemory(users);
1185 return true;
1188 /* Print domain groups */
1190 static bool print_domain_groups(const char *domain)
1192 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1193 uint32_t i;
1194 uint32_t num_groups = 0;
1195 const char **groups = NULL;
1197 /* Send request to winbind daemon */
1199 /* '.' is the special sign for our own domain */
1200 if (domain && strcmp(domain, ".") == 0) {
1201 domain = get_winbind_domain();
1204 wbc_status = wbcListGroups(domain, &num_groups, &groups);
1205 if (!WBC_ERROR_IS_OK(wbc_status)) {
1206 return false;
1209 for (i=0; i < num_groups; i++) {
1210 d_printf("%s\n", groups[i]);
1213 wbcFreeMemory(groups);
1215 return true;
1218 /* Set the authorised user for winbindd access in secrets.tdb */
1220 static bool wbinfo_set_auth_user(char *username)
1222 const char *password;
1223 char *p;
1224 fstring user, domain;
1226 /* Separate into user and password */
1228 parse_wbinfo_domain_user(username, domain, user);
1230 p = strchr(user, '%');
1232 if (p != NULL) {
1233 *p = 0;
1234 password = p+1;
1235 } else {
1236 char *thepass = getpass("Password: ");
1237 if (thepass) {
1238 password = thepass;
1239 } else
1240 password = "";
1243 /* Store or remove DOMAIN\username%password in secrets.tdb */
1245 secrets_init();
1247 if (user[0]) {
1249 if (!secrets_store(SECRETS_AUTH_USER, user,
1250 strlen(user) + 1)) {
1251 d_fprintf(stderr, "error storing username\n");
1252 return false;
1255 /* We always have a domain name added by the
1256 parse_wbinfo_domain_user() function. */
1258 if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
1259 strlen(domain) + 1)) {
1260 d_fprintf(stderr, "error storing domain name\n");
1261 return false;
1264 } else {
1265 secrets_delete(SECRETS_AUTH_USER);
1266 secrets_delete(SECRETS_AUTH_DOMAIN);
1269 if (password[0]) {
1271 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
1272 strlen(password) + 1)) {
1273 d_fprintf(stderr, "error storing password\n");
1274 return false;
1277 } else
1278 secrets_delete(SECRETS_AUTH_PASSWORD);
1280 return true;
1283 static void wbinfo_get_auth_user(void)
1285 char *user, *domain, *password;
1287 /* Lift data from secrets file */
1289 secrets_fetch_ipc_userpass(&user, &domain, &password);
1291 if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
1293 SAFE_FREE(user);
1294 SAFE_FREE(domain);
1295 SAFE_FREE(password);
1296 d_printf("No authorised user configured\n");
1297 return;
1300 /* Pretty print authorised user info */
1302 d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? lp_winbind_separator(): "",
1303 user, password ? "%" : "", password ? password : "");
1305 SAFE_FREE(user);
1306 SAFE_FREE(domain);
1307 SAFE_FREE(password);
1310 static bool wbinfo_ping(void)
1312 wbcErr wbc_status;
1314 wbc_status = wbcPing();
1316 /* Display response */
1318 d_printf("Ping to winbindd %s\n",
1319 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1321 return WBC_ERROR_IS_OK(wbc_status);
1324 /* Main program */
1326 enum {
1327 OPT_SET_AUTH_USER = 1000,
1328 OPT_GET_AUTH_USER,
1329 OPT_DOMAIN_NAME,
1330 OPT_SEQUENCE,
1331 OPT_GETDCNAME,
1332 OPT_DSGETDCNAME,
1333 OPT_USERDOMGROUPS,
1334 OPT_USERSIDS,
1335 OPT_ALLOCATE_UID,
1336 OPT_ALLOCATE_GID,
1337 OPT_SEPARATOR,
1338 OPT_LIST_ALL_DOMAINS,
1339 OPT_LIST_OWN_DOMAIN,
1340 OPT_UID_INFO,
1341 OPT_GROUP_INFO,
1342 OPT_VERBOSE,
1343 OPT_ONLINESTATUS
1346 int main(int argc, char **argv, char **envp)
1348 int opt;
1349 TALLOC_CTX *frame = talloc_stackframe();
1350 poptContext pc;
1351 static char *string_arg;
1352 static char *opt_domain_name;
1353 static int int_arg;
1354 int result = 1;
1355 bool verbose = false;
1357 struct poptOption long_options[] = {
1358 POPT_AUTOHELP
1360 /* longName, shortName, argInfo, argPtr, value, descrip,
1361 argDesc */
1363 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1364 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1365 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1366 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1367 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1368 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1369 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1370 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1371 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1372 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1373 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1374 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1375 "Get a new UID out of idmap" },
1376 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1377 "Get a new GID out of idmap" },
1378 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1379 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1380 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1381 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1382 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1383 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
1384 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1385 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1386 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1387 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1388 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1389 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1390 OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1391 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1392 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1393 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1394 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1395 "Get a DC name for a foreign domain", "domainname" },
1396 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1397 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1398 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1399 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1400 #ifdef WITH_FAKE_KASERVER
1401 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1402 #endif
1403 #ifdef HAVE_KRB5
1404 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1405 /* destroys wbinfo --help output */
1406 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1407 #endif
1408 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1409 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1410 POPT_COMMON_CONFIGFILE
1411 POPT_COMMON_VERSION
1412 POPT_TABLEEND
1415 /* Samba client initialisation */
1416 load_case_tables();
1419 /* Parse options */
1421 pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
1423 /* Parse command line options */
1425 if (argc == 1) {
1426 poptPrintHelp(pc, stderr, 0);
1427 return 1;
1430 while((opt = poptGetNextOpt(pc)) != -1) {
1431 /* get the generic configuration parameters like --domain */
1432 switch (opt) {
1433 case OPT_VERBOSE:
1434 verbose = True;
1435 break;
1439 poptFreeContext(pc);
1441 if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, true)) {
1442 d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
1443 get_dyn_CONFIGFILE(), strerror(errno));
1444 exit(1);
1447 if (!init_names())
1448 return 1;
1450 load_interfaces();
1452 pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1453 POPT_CONTEXT_KEEP_FIRST);
1455 while((opt = poptGetNextOpt(pc)) != -1) {
1456 switch (opt) {
1457 case 'u':
1458 if (!print_domain_users(opt_domain_name)) {
1459 d_fprintf(stderr, "Error looking up domain users\n");
1460 goto done;
1462 break;
1463 case 'g':
1464 if (!print_domain_groups(opt_domain_name)) {
1465 d_fprintf(stderr, "Error looking up domain groups\n");
1466 goto done;
1468 break;
1469 case 's':
1470 if (!wbinfo_lookupsid(string_arg)) {
1471 d_fprintf(stderr, "Could not lookup sid %s\n", string_arg);
1472 goto done;
1474 break;
1475 case 'R':
1476 if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1477 d_fprintf(stderr, "Could not lookup RIDs %s\n", string_arg);
1478 goto done;
1480 break;
1481 case 'n':
1482 if (!wbinfo_lookupname(string_arg)) {
1483 d_fprintf(stderr, "Could not lookup name %s\n", string_arg);
1484 goto done;
1486 break;
1487 case 'N':
1488 if (!wbinfo_wins_byname(string_arg)) {
1489 d_fprintf(stderr, "Could not lookup WINS by name %s\n", string_arg);
1490 goto done;
1492 break;
1493 case 'I':
1494 if (!wbinfo_wins_byip(string_arg)) {
1495 d_fprintf(stderr, "Could not lookup WINS by IP %s\n", string_arg);
1496 goto done;
1498 break;
1499 case 'U':
1500 if (!wbinfo_uid_to_sid(int_arg)) {
1501 d_fprintf(stderr, "Could not convert uid %d to sid\n", int_arg);
1502 goto done;
1504 break;
1505 case 'G':
1506 if (!wbinfo_gid_to_sid(int_arg)) {
1507 d_fprintf(stderr, "Could not convert gid %d to sid\n",
1508 int_arg);
1509 goto done;
1511 break;
1512 case 'S':
1513 if (!wbinfo_sid_to_uid(string_arg)) {
1514 d_fprintf(stderr, "Could not convert sid %s to uid\n",
1515 string_arg);
1516 goto done;
1518 break;
1519 case 'Y':
1520 if (!wbinfo_sid_to_gid(string_arg)) {
1521 d_fprintf(stderr, "Could not convert sid %s to gid\n",
1522 string_arg);
1523 goto done;
1525 break;
1526 case OPT_ALLOCATE_UID:
1527 if (!wbinfo_allocate_uid()) {
1528 d_fprintf(stderr, "Could not allocate a uid\n");
1529 goto done;
1531 break;
1532 case OPT_ALLOCATE_GID:
1533 if (!wbinfo_allocate_gid()) {
1534 d_fprintf(stderr, "Could not allocate a gid\n");
1535 goto done;
1537 break;
1538 case 't':
1539 if (!wbinfo_check_secret()) {
1540 d_fprintf(stderr, "Could not check secret\n");
1541 goto done;
1543 break;
1544 case 'm':
1545 if (!wbinfo_list_domains(false, verbose)) {
1546 d_fprintf(stderr, "Could not list trusted domains\n");
1547 goto done;
1549 break;
1550 case OPT_SEQUENCE:
1551 if (!wbinfo_show_sequence(opt_domain_name)) {
1552 d_fprintf(stderr, "Could not show sequence numbers\n");
1553 goto done;
1555 break;
1556 case OPT_ONLINESTATUS:
1557 if (!wbinfo_show_onlinestatus(opt_domain_name)) {
1558 d_fprintf(stderr, "Could not show online-status\n");
1559 goto done;
1561 break;
1562 case 'D':
1563 if (!wbinfo_domain_info(string_arg)) {
1564 d_fprintf(stderr, "Could not get domain info\n");
1565 goto done;
1567 break;
1568 case 'i':
1569 if (!wbinfo_get_userinfo(string_arg)) {
1570 d_fprintf(stderr, "Could not get info for user %s\n",
1571 string_arg);
1572 goto done;
1574 break;
1575 case OPT_UID_INFO:
1576 if ( !wbinfo_get_uidinfo(int_arg)) {
1577 d_fprintf(stderr, "Could not get info for uid "
1578 "%d\n", int_arg);
1579 goto done;
1581 break;
1582 case OPT_GROUP_INFO:
1583 if ( !wbinfo_get_groupinfo(string_arg)) {
1584 d_fprintf(stderr, "Could not get info for "
1585 "group %s\n", string_arg);
1586 goto done;
1588 break;
1589 case 'r':
1590 if (!wbinfo_get_usergroups(string_arg)) {
1591 d_fprintf(stderr, "Could not get groups for user %s\n",
1592 string_arg);
1593 goto done;
1595 break;
1596 case OPT_USERSIDS:
1597 if (!wbinfo_get_usersids(string_arg)) {
1598 d_fprintf(stderr, "Could not get group SIDs for user SID %s\n",
1599 string_arg);
1600 goto done;
1602 break;
1603 case OPT_USERDOMGROUPS:
1604 if (!wbinfo_get_userdomgroups(string_arg)) {
1605 d_fprintf(stderr, "Could not get user's domain groups "
1606 "for user SID %s\n", string_arg);
1607 goto done;
1609 break;
1610 case 'a': {
1611 bool got_error = false;
1613 if (!wbinfo_auth(string_arg)) {
1614 d_fprintf(stderr, "Could not authenticate user %s with "
1615 "plaintext password\n", string_arg);
1616 got_error = true;
1619 if (!wbinfo_auth_crap(string_arg)) {
1620 d_fprintf(stderr, "Could not authenticate user %s with "
1621 "challenge/response\n", string_arg);
1622 got_error = true;
1625 if (got_error)
1626 goto done;
1627 break;
1629 case 'K': {
1630 uint32 flags = WBFLAG_PAM_KRB5 |
1631 WBFLAG_PAM_CACHED_LOGIN |
1632 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
1633 WBFLAG_PAM_INFO3_TEXT;
1635 if (!wbinfo_auth_krb5(string_arg, "FILE", flags)) {
1636 d_fprintf(stderr, "Could not authenticate user [%s] with "
1637 "Kerberos (ccache: %s)\n", string_arg, "FILE");
1638 goto done;
1640 break;
1642 case 'k':
1643 if (!wbinfo_klog(string_arg)) {
1644 d_fprintf(stderr, "Could not klog user\n");
1645 goto done;
1647 break;
1648 case 'p':
1649 if (!wbinfo_ping()) {
1650 d_fprintf(stderr, "could not ping winbindd!\n");
1651 goto done;
1653 break;
1654 case OPT_SET_AUTH_USER:
1655 if (!wbinfo_set_auth_user(string_arg)) {
1656 goto done;
1658 break;
1659 case OPT_GET_AUTH_USER:
1660 wbinfo_get_auth_user();
1661 break;
1662 case OPT_GETDCNAME:
1663 if (!wbinfo_getdcname(string_arg)) {
1664 goto done;
1666 break;
1667 case OPT_DSGETDCNAME:
1668 if (!wbinfo_dsgetdcname(string_arg, 0)) {
1669 goto done;
1671 break;
1672 case OPT_SEPARATOR: {
1673 const char sep = winbind_separator_int(true);
1674 if ( !sep ) {
1675 goto done;
1677 d_printf("%c\n", sep);
1678 break;
1680 case OPT_LIST_ALL_DOMAINS:
1681 if (!wbinfo_list_domains(true, verbose)) {
1682 goto done;
1684 break;
1685 case OPT_LIST_OWN_DOMAIN:
1686 if (!wbinfo_list_own_domain()) {
1687 goto done;
1689 break;
1690 /* generic configuration options */
1691 case OPT_DOMAIN_NAME:
1692 break;
1693 case OPT_VERBOSE:
1694 break;
1695 default:
1696 d_fprintf(stderr, "Invalid option\n");
1697 poptPrintHelp(pc, stderr, 0);
1698 goto done;
1702 result = 0;
1704 /* Exit code */
1706 done:
1707 talloc_destroy(frame);
1709 poptFreeContext(pc);
1710 return result;