smbldap: Fix typo in debug message.
[Samba.git] / source / nsswitch / wbinfo.c
blob2fb46c4a2f701f5cf30cd7824d1ec91989069e79
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 d_printf("%-16s", domain_list[i].short_name);
364 if (!print_all) {
365 d_printf("\n");
366 continue;
369 d_printf("%-24s", domain_list[i].dns_name);
371 switch(domain_list[i].trust_type) {
372 case WBC_DOMINFO_TRUSTTYPE_NONE:
373 d_printf("None ");
374 break;
375 case WBC_DOMINFO_TRUSTTYPE_FOREST:
376 d_printf("Forest ");
377 break;
378 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:
379 d_printf("External ");
380 break;
381 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
382 d_printf("In-Forest ");
383 break;
386 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
387 d_printf("Yes ");
388 } else {
389 d_printf("No ");
392 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
393 d_printf("Yes ");
394 } else {
395 d_printf("No ");
398 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
399 d_printf("Yes ");
400 } else {
401 d_printf("No ");
404 d_printf("\n");
407 return true;
410 /* List own domain */
412 static bool wbinfo_list_own_domain(void)
414 d_printf("%s\n", get_winbind_domain());
416 return true;
419 /* show sequence numbers */
420 static bool wbinfo_show_sequence(const char *domain)
422 d_printf("This command has been deprecated. Please use the --online-status option instead.\n");
423 return false;
426 /* show sequence numbers */
427 static bool wbinfo_show_onlinestatus(const char *domain)
429 struct wbcDomainInfo *domain_list = NULL;
430 size_t num_domains;
431 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
432 int i;
434 wbc_status = wbcListTrusts(&domain_list, &num_domains);
435 if (!WBC_ERROR_IS_OK(wbc_status)) {
436 return false;
439 for (i=0; i<num_domains; i++) {
440 bool is_offline;
442 if (domain) {
443 if (!strequal(domain_list[i].short_name, domain)) {
444 continue;
448 is_offline = (domain_list[i].domain_flags & WBC_DOMINFO_DOMAIN_OFFLINE);
450 d_printf("%s : %s\n",
451 domain_list[i].short_name,
452 is_offline ? "offline" : "online" );
455 return true;
459 /* Show domain info */
461 static bool wbinfo_domain_info(const char *domain)
463 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
464 struct wbcDomainInfo *dinfo = NULL;
465 char *sid_str = NULL;
467 if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
468 domain = get_winbind_domain();
471 /* Send request */
473 wbc_status = wbcDomainInfo(domain, &dinfo);
474 if (!WBC_ERROR_IS_OK(wbc_status)) {
475 return false;
478 wbc_status = wbcSidToString(&dinfo->sid, &sid_str);
479 if (!WBC_ERROR_IS_OK(wbc_status)) {
480 wbcFreeMemory(dinfo);
481 return false;
484 /* Display response */
486 d_printf("Name : %s\n", dinfo->short_name);
487 d_printf("Alt_Name : %s\n", dinfo->dns_name);
489 d_printf("SID : %s\n", sid_str);
491 d_printf("Active Directory : %s\n",
492 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
493 d_printf("Native : %s\n",
494 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ? "Yes" : "No");
496 d_printf("Primary : %s\n",
497 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ? "Yes" : "No");
499 wbcFreeMemory(sid_str);
500 wbcFreeMemory(dinfo);
502 return true;
505 /* Get a foreign DC's name */
506 static bool wbinfo_getdcname(const char *domain_name)
508 struct winbindd_request request;
509 struct winbindd_response response;
511 ZERO_STRUCT(request);
512 ZERO_STRUCT(response);
514 fstrcpy(request.domain_name, domain_name);
516 /* Send request */
518 if (winbindd_request_response(WINBINDD_GETDCNAME, &request, &response) !=
519 NSS_STATUS_SUCCESS) {
520 d_fprintf(stderr, "Could not get dc name for %s\n", domain_name);
521 return false;
524 /* Display response */
526 d_printf("%s\n", response.data.dc_name);
528 return true;
531 /* Find a DC */
532 static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
534 struct winbindd_request request;
535 struct winbindd_response response;
537 ZERO_STRUCT(request);
538 ZERO_STRUCT(response);
540 fstrcpy(request.domain_name, domain_name);
541 request.flags = flags;
543 request.flags |= DS_DIRECTORY_SERVICE_REQUIRED;
545 /* Send request */
547 if (winbindd_request_response(WINBINDD_DSGETDCNAME, &request, &response) !=
548 NSS_STATUS_SUCCESS) {
549 d_fprintf(stderr, "Could not find dc for %s\n", domain_name);
550 return false;
553 /* Display response */
555 d_printf("%s\n", response.data.dc_name);
557 return true;
560 /* Check trust account password */
562 static bool wbinfo_check_secret(void)
564 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
565 struct wbcAuthErrorInfo *error = NULL;
567 wbc_status = wbcCheckTrustCredentials(NULL, &error);
569 d_printf("checking the trust secret via RPC calls %s\n",
570 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
572 if (wbc_status == WBC_ERR_AUTH_ERROR) {
573 d_fprintf(stderr, "error code was %s (0x%x)\n",
574 error->nt_string, error->nt_status);
575 wbcFreeMemory(error);
577 if (!WBC_ERROR_IS_OK(wbc_status)) {
578 return false;
581 return true;
584 /* Convert uid to sid */
586 static bool wbinfo_uid_to_sid(uid_t uid)
588 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
589 struct wbcDomainSid sid;
590 char *sid_str = NULL;
592 /* Send request */
594 wbc_status = wbcUidToSid(uid, &sid);
595 if (!WBC_ERROR_IS_OK(wbc_status)) {
596 return false;
599 wbc_status = wbcSidToString(&sid, &sid_str);
600 if (!WBC_ERROR_IS_OK(wbc_status)) {
601 return false;
604 /* Display response */
606 d_printf("%s\n", sid_str);
608 wbcFreeMemory(sid_str);
610 return true;
613 /* Convert gid to sid */
615 static bool wbinfo_gid_to_sid(gid_t gid)
617 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
618 struct wbcDomainSid sid;
619 char *sid_str = NULL;
621 /* Send request */
623 wbc_status = wbcGidToSid(gid, &sid);
624 if (!WBC_ERROR_IS_OK(wbc_status)) {
625 return false;
628 wbc_status = wbcSidToString(&sid, &sid_str);
629 if (!WBC_ERROR_IS_OK(wbc_status)) {
630 return false;
633 /* Display response */
635 d_printf("%s\n", sid_str);
637 wbcFreeMemory(sid_str);
639 return true;
642 /* Convert sid to uid */
644 static bool wbinfo_sid_to_uid(const char *sid_str)
646 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
647 struct wbcDomainSid sid;
648 uid_t uid;
650 /* Send request */
652 wbc_status = wbcStringToSid(sid_str, &sid);
653 if (!WBC_ERROR_IS_OK(wbc_status)) {
654 return false;
657 wbc_status = wbcSidToUid(&sid, &uid);
658 if (!WBC_ERROR_IS_OK(wbc_status)) {
659 return false;
662 /* Display response */
664 d_printf("%d\n", (int)uid);
666 return true;
669 static bool wbinfo_sid_to_gid(const char *sid_str)
671 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
672 struct wbcDomainSid sid;
673 gid_t gid;
675 /* Send request */
677 wbc_status = wbcStringToSid(sid_str, &sid);
678 if (!WBC_ERROR_IS_OK(wbc_status)) {
679 return false;
682 wbc_status = wbcSidToGid(&sid, &gid);
683 if (!WBC_ERROR_IS_OK(wbc_status)) {
684 return false;
687 /* Display response */
689 d_printf("%d\n", (int)gid);
691 return true;
694 static bool wbinfo_allocate_uid(void)
696 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
697 uid_t uid;
699 /* Send request */
701 wbc_status = wbcAllocateUid(&uid);
702 if (!WBC_ERROR_IS_OK(wbc_status)) {
703 return false;
706 /* Display response */
708 d_printf("New uid: %d\n", uid);
710 return true;
713 static bool wbinfo_allocate_gid(void)
715 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
716 gid_t gid;
718 /* Send request */
720 wbc_status = wbcAllocateGid(&gid);
721 if (!WBC_ERROR_IS_OK(wbc_status)) {
722 return false;
725 /* Display response */
727 d_printf("New gid: %d\n", gid);
729 return true;
732 /* Convert sid to string */
734 static bool wbinfo_lookupsid(const char *sid_str)
736 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
737 struct wbcDomainSid sid;
738 char *domain;
739 char *name;
740 enum wbcSidType type;
742 /* Send off request */
744 wbc_status = wbcStringToSid(sid_str, &sid);
745 if (!WBC_ERROR_IS_OK(wbc_status)) {
746 return false;
749 wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
750 if (!WBC_ERROR_IS_OK(wbc_status)) {
751 return false;
754 /* Display response */
756 d_printf("%s%c%s %d\n",
757 domain, winbind_separator(), name, type);
759 return true;
762 /* Lookup a list of RIDs */
764 static bool wbinfo_lookuprids(const char *domain, const char *arg)
766 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
767 struct wbcDomainInfo *dinfo = NULL;
768 char *domain_name = NULL;
769 const char **names = NULL;
770 enum wbcSidType *types = NULL;
771 size_t i;
772 int num_rids;
773 uint32 *rids = NULL;
774 const char *p;
775 char *ridstr;
776 TALLOC_CTX *mem_ctx = NULL;
777 bool ret = false;
779 if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')) {
780 domain = get_winbind_domain();
783 /* Send request */
785 wbc_status = wbcDomainInfo(domain, &dinfo);
786 if (!WBC_ERROR_IS_OK(wbc_status)) {
787 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
788 wbcErrorString(wbc_status));
789 goto done;
792 mem_ctx = talloc_new(NULL);
793 if (mem_ctx == NULL) {
794 d_printf("talloc_new failed\n");
795 goto done;
798 num_rids = 0;
799 rids = NULL;
800 p = arg;
802 while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
803 uint32 rid = strtoul(ridstr, NULL, 10);
804 ADD_TO_ARRAY(mem_ctx, uint32, rid, &rids, &num_rids);
807 if (rids == NULL) {
808 d_printf("no rids\n");
809 goto done;
812 wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
813 (const char **)&domain_name, &names, &types);
814 if (!WBC_ERROR_IS_OK(wbc_status)) {
815 d_printf("winbind_lookup_rids failed: %s\n",
816 wbcErrorString(wbc_status));
817 goto done;
820 d_printf("Domain: %s\n", domain_name);
822 for (i=0; i<num_rids; i++) {
823 d_printf("%8d: %s (%s)\n", rids[i], names[i],
824 sid_type_lookup(types[i]));
827 ret = true;
828 done:
829 if (dinfo) {
830 wbcFreeMemory(dinfo);
832 if (domain_name) {
833 wbcFreeMemory(domain_name);
835 if (names) {
836 wbcFreeMemory(names);
838 if (types) {
839 wbcFreeMemory(types);
841 TALLOC_FREE(mem_ctx);
842 return ret;
845 /* Convert string to sid */
847 static bool wbinfo_lookupname(const char *full_name)
849 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
850 struct wbcDomainSid sid;
851 char *sid_str;
852 enum wbcSidType type;
853 fstring domain_name;
854 fstring account_name;
856 /* Send off request */
858 parse_wbinfo_domain_user(full_name, domain_name,
859 account_name);
861 wbc_status = wbcLookupName(domain_name, account_name,
862 &sid, &type);
863 if (!WBC_ERROR_IS_OK(wbc_status)) {
864 return false;
867 wbc_status = wbcSidToString(&sid, &sid_str);
868 if (!WBC_ERROR_IS_OK(wbc_status)) {
869 return false;
872 /* Display response */
874 d_printf("%s %s (%d)\n", sid_str, sid_type_lookup(type), type);
876 wbcFreeMemory(sid_str);
878 return true;
881 /* Authenticate a user with a plaintext password */
883 static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32 flags)
885 struct winbindd_request request;
886 struct winbindd_response response;
887 NSS_STATUS result;
888 char *p;
890 /* Send off request */
892 ZERO_STRUCT(request);
893 ZERO_STRUCT(response);
895 p = strchr(username, '%');
897 if (p) {
898 *p = 0;
899 fstrcpy(request.data.auth.user, username);
900 fstrcpy(request.data.auth.pass, p + 1);
901 *p = '%';
902 } else
903 fstrcpy(request.data.auth.user, username);
905 request.flags = flags;
907 fstrcpy(request.data.auth.krb5_cc_type, cctype);
909 request.data.auth.uid = geteuid();
911 result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
913 /* Display response */
915 d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
916 username, (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", cctype);
918 if (response.data.auth.nt_status)
919 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
920 response.data.auth.nt_status_string,
921 response.data.auth.nt_status,
922 response.data.auth.error_string);
924 if (result == NSS_STATUS_SUCCESS) {
926 if (request.flags & WBFLAG_PAM_INFO3_TEXT) {
927 if (response.data.auth.info3.user_flgs & NETLOGON_CACHED_ACCOUNT) {
928 d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
932 if (response.data.auth.krb5ccname[0] != '\0') {
933 d_printf("credentials were put in: %s\n", response.data.auth.krb5ccname);
934 } else {
935 d_printf("no credentials cached\n");
939 return result == NSS_STATUS_SUCCESS;
942 /* Authenticate a user with a plaintext password */
944 static bool wbinfo_auth(char *username)
946 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
947 char *s = NULL;
948 char *p = NULL;
949 const char *password = NULL;
950 char *name = NULL;
952 if ((s = SMB_STRDUP(username)) == NULL) {
953 return false;
956 if ((p = strchr(s, '%')) != NULL) {
957 *p = 0;
958 p++;
959 password = p;
960 } else {
961 char *prompt;
962 asprintf(&prompt, "Enter %s's password:", username);
963 if (!prompt) {
964 return false;
967 password = getpass(prompt);
968 SAFE_FREE(prompt);
971 name = s;
973 wbc_status = wbcAuthenticateUser(name, password);
975 d_printf("plaintext password authentication %s\n",
976 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
978 #if 0
979 if (response.data.auth.nt_status)
980 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
981 response.data.auth.nt_status_string,
982 response.data.auth.nt_status,
983 response.data.auth.error_string);
984 #endif
986 SAFE_FREE(s);
988 return WBC_ERROR_IS_OK(wbc_status);
991 /* Authenticate a user with a challenge/response */
993 static bool wbinfo_auth_crap(char *username)
995 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
996 struct wbcAuthUserParams params;
997 struct wbcAuthUserInfo *info = NULL;
998 struct wbcAuthErrorInfo *err = NULL;
999 DATA_BLOB lm = data_blob_null;
1000 DATA_BLOB nt = data_blob_null;
1001 fstring name_user;
1002 fstring name_domain;
1003 fstring pass;
1004 char *p;
1006 p = strchr(username, '%');
1008 if (p) {
1009 *p = 0;
1010 fstrcpy(pass, p + 1);
1011 } else {
1012 char *prompt;
1013 asprintf(&prompt, "Enter %s's password:", username);
1014 if (!prompt) {
1015 return false;
1018 fstrcpy(pass, getpass(prompt));
1019 SAFE_FREE(prompt);
1023 parse_wbinfo_domain_user(username, name_domain, name_user);
1025 params.account_name = name_user;
1026 params.domain_name = name_domain;
1027 params.workstation_name = NULL;
1029 params.flags = 0;
1030 params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
1031 WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
1033 params.level = WBC_AUTH_USER_LEVEL_RESPONSE;
1035 generate_random_buffer(params.password.response.challenge, 8);
1037 if (lp_client_ntlmv2_auth()) {
1038 DATA_BLOB server_chal;
1039 DATA_BLOB names_blob;
1041 server_chal = data_blob(params.password.response.challenge, 8);
1043 /* Pretend this is a login to 'us', for blob purposes */
1044 names_blob = NTLMv2_generate_names_blob(global_myname(), lp_workgroup());
1046 if (!SMBNTLMv2encrypt(name_user, name_domain, pass, &server_chal,
1047 &names_blob,
1048 &lm, &nt, NULL)) {
1049 data_blob_free(&names_blob);
1050 data_blob_free(&server_chal);
1051 return false;
1053 data_blob_free(&names_blob);
1054 data_blob_free(&server_chal);
1056 } else {
1057 if (lp_client_lanman_auth()) {
1058 bool ok;
1059 lm = data_blob(NULL, 24);
1060 ok = SMBencrypt(pass, params.password.response.challenge,
1061 lm.data);
1062 if (!ok) {
1063 data_blob_free(&lm);
1066 nt = data_blob(NULL, 24);
1067 SMBNTencrypt(pass, params.password.response.challenge,
1068 nt.data);
1071 params.password.response.nt_length = nt.length;
1072 params.password.response.nt_data = nt.data;
1073 params.password.response.lm_length = lm.length;
1074 params.password.response.lm_data = lm.data;
1076 wbc_status = wbcAuthenticateUserEx(&params, &info, &err);
1078 /* Display response */
1080 d_printf("challenge/response password authentication %s\n",
1081 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1083 if (wbc_status == WBC_ERR_AUTH_ERROR) {
1084 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
1085 err->nt_string,
1086 err->nt_status,
1087 err->display_string);
1088 wbcFreeMemory(err);
1089 } else if (WBC_ERROR_IS_OK(wbc_status)) {
1090 wbcFreeMemory(info);
1093 data_blob_free(&nt);
1094 data_blob_free(&lm);
1096 return WBC_ERROR_IS_OK(wbc_status);
1099 /* Authenticate a user with a plaintext password and set a token */
1101 static bool wbinfo_klog(char *username)
1103 struct winbindd_request request;
1104 struct winbindd_response response;
1105 NSS_STATUS result;
1106 char *p;
1108 /* Send off request */
1110 ZERO_STRUCT(request);
1111 ZERO_STRUCT(response);
1113 p = strchr(username, '%');
1115 if (p) {
1116 *p = 0;
1117 fstrcpy(request.data.auth.user, username);
1118 fstrcpy(request.data.auth.pass, p + 1);
1119 *p = '%';
1120 } else {
1121 fstrcpy(request.data.auth.user, username);
1122 fstrcpy(request.data.auth.pass, getpass("Password: "));
1125 request.flags |= WBFLAG_PAM_AFS_TOKEN;
1127 result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
1129 /* Display response */
1131 d_printf("plaintext password authentication %s\n",
1132 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1134 if (response.data.auth.nt_status)
1135 d_fprintf(stderr, "error code was %s (0x%x)\nerror messsage was: %s\n",
1136 response.data.auth.nt_status_string,
1137 response.data.auth.nt_status,
1138 response.data.auth.error_string);
1140 if (result != NSS_STATUS_SUCCESS)
1141 return false;
1143 if (response.extra_data.data == NULL) {
1144 d_fprintf(stderr, "Did not get token data\n");
1145 return false;
1148 if (!afs_settoken_str((char *)response.extra_data.data)) {
1149 d_fprintf(stderr, "Could not set token\n");
1150 return false;
1153 d_printf("Successfully created AFS token\n");
1154 return true;
1157 /* Print domain users */
1159 static bool print_domain_users(const char *domain)
1161 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1162 uint32_t i;
1163 uint32_t num_users = 0;
1164 const char **users = NULL;
1166 /* Send request to winbind daemon */
1168 /* '.' is the special sign for our own domain */
1169 if (domain && strcmp(domain, ".") == 0) {
1170 domain = get_winbind_domain();
1173 wbc_status = wbcListUsers(domain, &num_users, &users);
1174 if (!WBC_ERROR_IS_OK(wbc_status)) {
1175 return false;
1178 for (i=0; i < num_users; i++) {
1179 d_printf("%s\n", users[i]);
1182 wbcFreeMemory(users);
1184 return true;
1187 /* Print domain groups */
1189 static bool print_domain_groups(const char *domain)
1191 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1192 uint32_t i;
1193 uint32_t num_groups = 0;
1194 const char **groups = NULL;
1196 /* Send request to winbind daemon */
1198 /* '.' is the special sign for our own domain */
1199 if (domain && strcmp(domain, ".") == 0) {
1200 domain = get_winbind_domain();
1203 wbc_status = wbcListGroups(domain, &num_groups, &groups);
1204 if (!WBC_ERROR_IS_OK(wbc_status)) {
1205 return false;
1208 for (i=0; i < num_groups; i++) {
1209 d_printf("%s\n", groups[i]);
1212 wbcFreeMemory(groups);
1214 return true;
1217 /* Set the authorised user for winbindd access in secrets.tdb */
1219 static bool wbinfo_set_auth_user(char *username)
1221 const char *password;
1222 char *p;
1223 fstring user, domain;
1225 /* Separate into user and password */
1227 parse_wbinfo_domain_user(username, domain, user);
1229 p = strchr(user, '%');
1231 if (p != NULL) {
1232 *p = 0;
1233 password = p+1;
1234 } else {
1235 char *thepass = getpass("Password: ");
1236 if (thepass) {
1237 password = thepass;
1238 } else
1239 password = "";
1242 /* Store or remove DOMAIN\username%password in secrets.tdb */
1244 secrets_init();
1246 if (user[0]) {
1248 if (!secrets_store(SECRETS_AUTH_USER, user,
1249 strlen(user) + 1)) {
1250 d_fprintf(stderr, "error storing username\n");
1251 return false;
1254 /* We always have a domain name added by the
1255 parse_wbinfo_domain_user() function. */
1257 if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
1258 strlen(domain) + 1)) {
1259 d_fprintf(stderr, "error storing domain name\n");
1260 return false;
1263 } else {
1264 secrets_delete(SECRETS_AUTH_USER);
1265 secrets_delete(SECRETS_AUTH_DOMAIN);
1268 if (password[0]) {
1270 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
1271 strlen(password) + 1)) {
1272 d_fprintf(stderr, "error storing password\n");
1273 return false;
1276 } else
1277 secrets_delete(SECRETS_AUTH_PASSWORD);
1279 return true;
1282 static void wbinfo_get_auth_user(void)
1284 char *user, *domain, *password;
1286 /* Lift data from secrets file */
1288 secrets_fetch_ipc_userpass(&user, &domain, &password);
1290 if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
1292 SAFE_FREE(user);
1293 SAFE_FREE(domain);
1294 SAFE_FREE(password);
1295 d_printf("No authorised user configured\n");
1296 return;
1299 /* Pretty print authorised user info */
1301 d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? lp_winbind_separator(): "",
1302 user, password ? "%" : "", password ? password : "");
1304 SAFE_FREE(user);
1305 SAFE_FREE(domain);
1306 SAFE_FREE(password);
1309 static bool wbinfo_ping(void)
1311 wbcErr wbc_status;
1313 wbc_status = wbcPing();
1315 /* Display response */
1317 d_printf("Ping to winbindd %s\n",
1318 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1320 return WBC_ERROR_IS_OK(wbc_status);
1323 /* Main program */
1325 enum {
1326 OPT_SET_AUTH_USER = 1000,
1327 OPT_GET_AUTH_USER,
1328 OPT_DOMAIN_NAME,
1329 OPT_SEQUENCE,
1330 OPT_GETDCNAME,
1331 OPT_DSGETDCNAME,
1332 OPT_USERDOMGROUPS,
1333 OPT_USERSIDS,
1334 OPT_ALLOCATE_UID,
1335 OPT_ALLOCATE_GID,
1336 OPT_SEPARATOR,
1337 OPT_LIST_ALL_DOMAINS,
1338 OPT_LIST_OWN_DOMAIN,
1339 OPT_UID_INFO,
1340 OPT_GROUP_INFO,
1341 OPT_VERBOSE,
1342 OPT_ONLINESTATUS
1345 int main(int argc, char **argv, char **envp)
1347 int opt;
1348 TALLOC_CTX *frame = talloc_stackframe();
1349 poptContext pc;
1350 static char *string_arg;
1351 static char *opt_domain_name;
1352 static int int_arg;
1353 int result = 1;
1354 bool verbose = false;
1356 struct poptOption long_options[] = {
1357 POPT_AUTOHELP
1359 /* longName, shortName, argInfo, argPtr, value, descrip,
1360 argDesc */
1362 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1363 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1364 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1365 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1366 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1367 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1368 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1369 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1370 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1371 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1372 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1373 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1374 "Get a new UID out of idmap" },
1375 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1376 "Get a new GID out of idmap" },
1377 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1378 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1379 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1380 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1381 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1382 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
1383 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1384 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1385 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1386 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1387 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1388 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1389 OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1390 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1391 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1392 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1393 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1394 "Get a DC name for a foreign domain", "domainname" },
1395 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1396 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1397 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1398 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1399 #ifdef WITH_FAKE_KASERVER
1400 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1401 #endif
1402 #ifdef HAVE_KRB5
1403 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1404 /* destroys wbinfo --help output */
1405 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1406 #endif
1407 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1408 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1409 POPT_COMMON_CONFIGFILE
1410 POPT_COMMON_VERSION
1411 POPT_TABLEEND
1414 /* Samba client initialisation */
1415 load_case_tables();
1418 /* Parse options */
1420 pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
1422 /* Parse command line options */
1424 if (argc == 1) {
1425 poptPrintHelp(pc, stderr, 0);
1426 return 1;
1429 while((opt = poptGetNextOpt(pc)) != -1) {
1430 /* get the generic configuration parameters like --domain */
1431 switch (opt) {
1432 case OPT_VERBOSE:
1433 verbose = True;
1434 break;
1438 poptFreeContext(pc);
1440 if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, true)) {
1441 d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
1442 get_dyn_CONFIGFILE(), strerror(errno));
1443 exit(1);
1446 if (!init_names())
1447 return 1;
1449 load_interfaces();
1451 pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1452 POPT_CONTEXT_KEEP_FIRST);
1454 while((opt = poptGetNextOpt(pc)) != -1) {
1455 switch (opt) {
1456 case 'u':
1457 if (!print_domain_users(opt_domain_name)) {
1458 d_fprintf(stderr, "Error looking up domain users\n");
1459 goto done;
1461 break;
1462 case 'g':
1463 if (!print_domain_groups(opt_domain_name)) {
1464 d_fprintf(stderr, "Error looking up domain groups\n");
1465 goto done;
1467 break;
1468 case 's':
1469 if (!wbinfo_lookupsid(string_arg)) {
1470 d_fprintf(stderr, "Could not lookup sid %s\n", string_arg);
1471 goto done;
1473 break;
1474 case 'R':
1475 if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1476 d_fprintf(stderr, "Could not lookup RIDs %s\n", string_arg);
1477 goto done;
1479 break;
1480 case 'n':
1481 if (!wbinfo_lookupname(string_arg)) {
1482 d_fprintf(stderr, "Could not lookup name %s\n", string_arg);
1483 goto done;
1485 break;
1486 case 'N':
1487 if (!wbinfo_wins_byname(string_arg)) {
1488 d_fprintf(stderr, "Could not lookup WINS by name %s\n", string_arg);
1489 goto done;
1491 break;
1492 case 'I':
1493 if (!wbinfo_wins_byip(string_arg)) {
1494 d_fprintf(stderr, "Could not lookup WINS by IP %s\n", string_arg);
1495 goto done;
1497 break;
1498 case 'U':
1499 if (!wbinfo_uid_to_sid(int_arg)) {
1500 d_fprintf(stderr, "Could not convert uid %d to sid\n", int_arg);
1501 goto done;
1503 break;
1504 case 'G':
1505 if (!wbinfo_gid_to_sid(int_arg)) {
1506 d_fprintf(stderr, "Could not convert gid %d to sid\n",
1507 int_arg);
1508 goto done;
1510 break;
1511 case 'S':
1512 if (!wbinfo_sid_to_uid(string_arg)) {
1513 d_fprintf(stderr, "Could not convert sid %s to uid\n",
1514 string_arg);
1515 goto done;
1517 break;
1518 case 'Y':
1519 if (!wbinfo_sid_to_gid(string_arg)) {
1520 d_fprintf(stderr, "Could not convert sid %s to gid\n",
1521 string_arg);
1522 goto done;
1524 break;
1525 case OPT_ALLOCATE_UID:
1526 if (!wbinfo_allocate_uid()) {
1527 d_fprintf(stderr, "Could not allocate a uid\n");
1528 goto done;
1530 break;
1531 case OPT_ALLOCATE_GID:
1532 if (!wbinfo_allocate_gid()) {
1533 d_fprintf(stderr, "Could not allocate a gid\n");
1534 goto done;
1536 break;
1537 case 't':
1538 if (!wbinfo_check_secret()) {
1539 d_fprintf(stderr, "Could not check secret\n");
1540 goto done;
1542 break;
1543 case 'm':
1544 if (!wbinfo_list_domains(false, verbose)) {
1545 d_fprintf(stderr, "Could not list trusted domains\n");
1546 goto done;
1548 break;
1549 case OPT_SEQUENCE:
1550 if (!wbinfo_show_sequence(opt_domain_name)) {
1551 d_fprintf(stderr, "Could not show sequence numbers\n");
1552 goto done;
1554 break;
1555 case OPT_ONLINESTATUS:
1556 if (!wbinfo_show_onlinestatus(opt_domain_name)) {
1557 d_fprintf(stderr, "Could not show online-status\n");
1558 goto done;
1560 break;
1561 case 'D':
1562 if (!wbinfo_domain_info(string_arg)) {
1563 d_fprintf(stderr, "Could not get domain info\n");
1564 goto done;
1566 break;
1567 case 'i':
1568 if (!wbinfo_get_userinfo(string_arg)) {
1569 d_fprintf(stderr, "Could not get info for user %s\n",
1570 string_arg);
1571 goto done;
1573 break;
1574 case OPT_UID_INFO:
1575 if ( !wbinfo_get_uidinfo(int_arg)) {
1576 d_fprintf(stderr, "Could not get info for uid "
1577 "%d\n", int_arg);
1578 goto done;
1580 break;
1581 case OPT_GROUP_INFO:
1582 if ( !wbinfo_get_groupinfo(string_arg)) {
1583 d_fprintf(stderr, "Could not get info for "
1584 "group %s\n", string_arg);
1585 goto done;
1587 break;
1588 case 'r':
1589 if (!wbinfo_get_usergroups(string_arg)) {
1590 d_fprintf(stderr, "Could not get groups for user %s\n",
1591 string_arg);
1592 goto done;
1594 break;
1595 case OPT_USERSIDS:
1596 if (!wbinfo_get_usersids(string_arg)) {
1597 d_fprintf(stderr, "Could not get group SIDs for user SID %s\n",
1598 string_arg);
1599 goto done;
1601 break;
1602 case OPT_USERDOMGROUPS:
1603 if (!wbinfo_get_userdomgroups(string_arg)) {
1604 d_fprintf(stderr, "Could not get user's domain groups "
1605 "for user SID %s\n", string_arg);
1606 goto done;
1608 break;
1609 case 'a': {
1610 bool got_error = false;
1612 if (!wbinfo_auth(string_arg)) {
1613 d_fprintf(stderr, "Could not authenticate user %s with "
1614 "plaintext password\n", string_arg);
1615 got_error = true;
1618 if (!wbinfo_auth_crap(string_arg)) {
1619 d_fprintf(stderr, "Could not authenticate user %s with "
1620 "challenge/response\n", string_arg);
1621 got_error = true;
1624 if (got_error)
1625 goto done;
1626 break;
1628 case 'K': {
1629 uint32 flags = WBFLAG_PAM_KRB5 |
1630 WBFLAG_PAM_CACHED_LOGIN |
1631 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
1632 WBFLAG_PAM_INFO3_TEXT;
1634 if (!wbinfo_auth_krb5(string_arg, "FILE", flags)) {
1635 d_fprintf(stderr, "Could not authenticate user [%s] with "
1636 "Kerberos (ccache: %s)\n", string_arg, "FILE");
1637 goto done;
1639 break;
1641 case 'k':
1642 if (!wbinfo_klog(string_arg)) {
1643 d_fprintf(stderr, "Could not klog user\n");
1644 goto done;
1646 break;
1647 case 'p':
1648 if (!wbinfo_ping()) {
1649 d_fprintf(stderr, "could not ping winbindd!\n");
1650 goto done;
1652 break;
1653 case OPT_SET_AUTH_USER:
1654 if (!wbinfo_set_auth_user(string_arg)) {
1655 goto done;
1657 break;
1658 case OPT_GET_AUTH_USER:
1659 wbinfo_get_auth_user();
1660 break;
1661 case OPT_GETDCNAME:
1662 if (!wbinfo_getdcname(string_arg)) {
1663 goto done;
1665 break;
1666 case OPT_DSGETDCNAME:
1667 if (!wbinfo_dsgetdcname(string_arg, 0)) {
1668 goto done;
1670 break;
1671 case OPT_SEPARATOR: {
1672 const char sep = winbind_separator_int(true);
1673 if ( !sep ) {
1674 goto done;
1676 d_printf("%c\n", sep);
1677 break;
1679 case OPT_LIST_ALL_DOMAINS:
1680 if (!wbinfo_list_domains(true, verbose)) {
1681 goto done;
1683 break;
1684 case OPT_LIST_OWN_DOMAIN:
1685 if (!wbinfo_list_own_domain()) {
1686 goto done;
1688 break;
1689 /* generic configuration options */
1690 case OPT_DOMAIN_NAME:
1691 break;
1692 case OPT_VERBOSE:
1693 break;
1694 default:
1695 d_fprintf(stderr, "Invalid option\n");
1696 poptPrintHelp(pc, stderr, 0);
1697 goto done;
1701 result = 0;
1703 /* Exit code */
1705 done:
1706 talloc_destroy(frame);
1708 poptFreeContext(pc);
1709 return result;