2 Unix SMB/CIFS implementation.
4 Winbind status program.
6 Copyright (C) Tim Potter 2000-2003
7 Copyright (C) Andrew Bartlett 2002-2007
8 Copyright (C) Volker Lendecke 2009
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "popt_common.h"
26 #include "winbind_client.h"
27 #include "libwbclient/wbclient.h"
28 #include "lib/popt/popt.h"
29 #include "../libcli/auth/libcli_auth.h"
30 #if (_SAMBA_BUILD_) >= 4
31 #include "lib/cmdline/popt_common.h"
36 #define DBGC_CLASS DBGC_WINBIND
39 static struct wbcInterfaceDetails
*init_interface_details(void)
41 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
42 static struct wbcInterfaceDetails
*details
;
48 wbc_status
= wbcInterfaceDetails(&details
);
49 if (!WBC_ERROR_IS_OK(wbc_status
)) {
50 d_fprintf(stderr
, "could not obtain winbind interface "
51 "details: %s\n", wbcErrorString(wbc_status
));
57 static char winbind_separator(void)
59 struct wbcInterfaceDetails
*details
;
66 details
= init_interface_details();
69 d_fprintf(stderr
, "could not obtain winbind separator!\n");
73 sep
= details
->winbind_separator
;
77 d_fprintf(stderr
, "winbind separator was NULL!\n");
84 static const char *get_winbind_domain(void)
86 static struct wbcInterfaceDetails
*details
;
88 details
= init_interface_details();
91 d_fprintf(stderr
, "could not obtain winbind domain name!\n");
95 return details
->netbios_domain
;
98 static const char *get_winbind_netbios_name(void)
100 static struct wbcInterfaceDetails
*details
;
102 details
= init_interface_details();
105 d_fprintf(stderr
, "could not obtain winbind netbios name!\n");
109 return details
->netbios_name
;
112 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
113 form DOMAIN/user into a domain and a user */
115 static bool parse_wbinfo_domain_user(const char *domuser
, fstring domain
,
119 char *p
= strchr(domuser
,winbind_separator());
122 /* Maybe it was a UPN? */
123 if ((p
= strchr(domuser
, '@')) != NULL
) {
125 fstrcpy(user
, domuser
);
129 fstrcpy(user
, domuser
);
130 fstrcpy(domain
, get_winbind_domain());
135 fstrcpy(domain
, domuser
);
136 domain
[PTR_DIFF(p
, domuser
)] = 0;
141 /* Parse string of "uid,sid" or "gid,sid" into separate int and string values.
142 * Return true if input was valid, false otherwise. */
143 static bool parse_mapping_arg(char *arg
, int *id
, char **sid
)
150 tmp
= strtok(arg
, ",");
151 *sid
= strtok(NULL
, ",");
153 if (!tmp
|| !*tmp
|| !*sid
|| !**sid
)
156 /* Because atoi() can return 0 on invalid input, which would be a valid
157 * UID/GID we must use strtoul() and do error checking */
158 *id
= strtoul(tmp
, &endptr
, 10);
160 if (endptr
[0] != '\0')
166 /* pull pwent info for a given user */
168 static bool wbinfo_get_userinfo(char *user
)
170 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
171 struct passwd
*pwd
= NULL
;
173 wbc_status
= wbcGetpwnam(user
, &pwd
);
174 if (!WBC_ERROR_IS_OK(wbc_status
)) {
175 d_fprintf(stderr
, "failed to call wbcGetpwnam: %s\n",
176 wbcErrorString(wbc_status
));
180 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
183 (unsigned int)pwd
->pw_uid
,
184 (unsigned int)pwd
->pw_gid
,
194 /* pull pwent info for a given uid */
195 static bool wbinfo_get_uidinfo(int uid
)
197 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
198 struct passwd
*pwd
= NULL
;
200 wbc_status
= wbcGetpwuid(uid
, &pwd
);
201 if (!WBC_ERROR_IS_OK(wbc_status
)) {
202 d_fprintf(stderr
, "failed to call wbcGetpwuid: %s\n",
203 wbcErrorString(wbc_status
));
207 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
210 (unsigned int)pwd
->pw_uid
,
211 (unsigned int)pwd
->pw_gid
,
221 static bool wbinfo_get_user_sidinfo(const char *sid_str
)
223 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
224 struct passwd
*pwd
= NULL
;
225 struct wbcDomainSid sid
;
227 wbc_status
= wbcStringToSid(sid_str
, &sid
);
228 wbc_status
= wbcGetpwsid(&sid
, &pwd
);
229 if (!WBC_ERROR_IS_OK(wbc_status
)) {
230 d_fprintf(stderr
, "failed to call wbcGetpwsid: %s\n",
231 wbcErrorString(wbc_status
));
235 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
238 (unsigned int)pwd
->pw_uid
,
239 (unsigned int)pwd
->pw_gid
,
248 /* pull grent for a given group */
249 static bool wbinfo_get_groupinfo(const char *group
)
251 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
255 wbc_status
= wbcGetgrnam(group
, &grp
);
256 if (!WBC_ERROR_IS_OK(wbc_status
)) {
257 d_fprintf(stderr
, "failed to call wbcGetgrnam: %s\n",
258 wbcErrorString(wbc_status
));
262 d_printf("%s:%s:%u:",
265 (unsigned int)grp
->gr_gid
);
268 while (*mem
!= NULL
) {
269 d_printf("%s%s", *mem
, *(mem
+1) != NULL
? "," : "");
279 /* pull grent for a given gid */
280 static bool wbinfo_get_gidinfo(int gid
)
282 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
286 wbc_status
= wbcGetgrgid(gid
, &grp
);
287 if (!WBC_ERROR_IS_OK(wbc_status
)) {
288 d_fprintf(stderr
, "failed to call wbcGetgrgid: %s\n",
289 wbcErrorString(wbc_status
));
293 d_printf("%s:%s:%u:",
296 (unsigned int)grp
->gr_gid
);
299 while (*mem
!= NULL
) {
300 d_printf("%s%s", *mem
, *(mem
+1) != NULL
? "," : "");
310 /* List groups a user is a member of */
312 static bool wbinfo_get_usergroups(const char *user
)
314 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
317 gid_t
*groups
= NULL
;
321 wbc_status
= wbcGetGroups(user
, &num_groups
, &groups
);
322 if (!WBC_ERROR_IS_OK(wbc_status
)) {
323 d_fprintf(stderr
, "failed to call wbcGetGroups: %s\n",
324 wbcErrorString(wbc_status
));
328 for (i
= 0; i
< num_groups
; i
++) {
329 d_printf("%d\n", (int)groups
[i
]);
332 wbcFreeMemory(groups
);
338 /* List group SIDs a user SID is a member of */
339 static bool wbinfo_get_usersids(const char *user_sid_str
)
341 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
344 struct wbcDomainSid user_sid
, *sids
= NULL
;
348 wbc_status
= wbcStringToSid(user_sid_str
, &user_sid
);
349 if (!WBC_ERROR_IS_OK(wbc_status
)) {
350 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
351 wbcErrorString(wbc_status
));
355 wbc_status
= wbcLookupUserSids(&user_sid
, false, &num_sids
, &sids
);
356 if (!WBC_ERROR_IS_OK(wbc_status
)) {
357 d_fprintf(stderr
, "failed to call wbcLookupUserSids: %s\n",
358 wbcErrorString(wbc_status
));
362 for (i
= 0; i
< num_sids
; i
++) {
363 char str
[WBC_SID_STRING_BUFLEN
];
364 wbcSidToStringBuf(&sids
[i
], str
, sizeof(str
));
365 d_printf("%s\n", str
);
373 static bool wbinfo_get_userdomgroups(const char *user_sid_str
)
375 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
378 struct wbcDomainSid user_sid
, *sids
= NULL
;
382 wbc_status
= wbcStringToSid(user_sid_str
, &user_sid
);
383 if (!WBC_ERROR_IS_OK(wbc_status
)) {
384 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
385 wbcErrorString(wbc_status
));
389 wbc_status
= wbcLookupUserSids(&user_sid
, true, &num_sids
, &sids
);
390 if (!WBC_ERROR_IS_OK(wbc_status
)) {
391 d_fprintf(stderr
, "failed to call wbcLookupUserSids: %s\n",
392 wbcErrorString(wbc_status
));
396 for (i
= 0; i
< num_sids
; i
++) {
397 char str
[WBC_SID_STRING_BUFLEN
];
398 wbcSidToStringBuf(&sids
[i
], str
, sizeof(str
));
399 d_printf("%s\n", str
);
407 static bool wbinfo_get_sidaliases(const char *domain
,
408 const char *user_sid_str
)
410 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
411 struct wbcDomainInfo
*dinfo
= NULL
;
413 struct wbcDomainSid user_sid
;
414 uint32_t *alias_rids
= NULL
;
415 uint32_t num_alias_rids
;
416 char domain_sid_str
[WBC_SID_STRING_BUFLEN
];
419 if ((domain
== NULL
) || (strequal(domain
, ".")) ||
420 (domain
[0] == '\0')) {
421 domain
= get_winbind_domain();
426 wbc_status
= wbcDomainInfo(domain
, &dinfo
);
427 if (!WBC_ERROR_IS_OK(wbc_status
)) {
428 d_fprintf(stderr
, "wbcDomainInfo(%s) failed: %s\n", domain
,
429 wbcErrorString(wbc_status
));
432 wbc_status
= wbcStringToSid(user_sid_str
, &user_sid
);
433 if (!WBC_ERROR_IS_OK(wbc_status
)) {
437 wbc_status
= wbcGetSidAliases(&dinfo
->sid
, &user_sid
, 1,
438 &alias_rids
, &num_alias_rids
);
439 if (!WBC_ERROR_IS_OK(wbc_status
)) {
443 wbcSidToStringBuf(&dinfo
->sid
, domain_sid_str
, sizeof(domain_sid_str
));
445 for (i
= 0; i
< num_alias_rids
; i
++) {
446 d_printf("%s-%d\n", domain_sid_str
, alias_rids
[i
]);
449 wbcFreeMemory(alias_rids
);
452 wbcFreeMemory(dinfo
);
453 return (WBC_ERR_SUCCESS
== wbc_status
);
457 /* Convert NetBIOS name to IP */
459 static bool wbinfo_wins_byname(const char *name
)
461 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
464 wbc_status
= wbcResolveWinsByName(name
, &ip
);
465 if (!WBC_ERROR_IS_OK(wbc_status
)) {
466 d_fprintf(stderr
, "failed to call wbcResolveWinsByName: %s\n",
467 wbcErrorString(wbc_status
));
471 /* Display response */
473 d_printf("%s\n", ip
);
480 /* Convert IP to NetBIOS name */
482 static bool wbinfo_wins_byip(const char *ip
)
484 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
487 wbc_status
= wbcResolveWinsByIP(ip
, &name
);
488 if (!WBC_ERROR_IS_OK(wbc_status
)) {
489 d_fprintf(stderr
, "failed to call wbcResolveWinsByIP: %s\n",
490 wbcErrorString(wbc_status
));
494 /* Display response */
496 d_printf("%s\n", name
);
503 /* List all/trusted domains */
505 static bool wbinfo_list_domains(bool list_all_domains
, bool verbose
)
507 struct wbcDomainInfo
*domain_list
= NULL
;
509 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
510 bool print_all
= !list_all_domains
&& verbose
;
513 wbc_status
= wbcListTrusts(&domain_list
, &num_domains
);
514 if (!WBC_ERROR_IS_OK(wbc_status
)) {
515 d_fprintf(stderr
, "failed to call wbcListTrusts: %s\n",
516 wbcErrorString(wbc_status
));
521 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
522 "Domain Name", "DNS Domain", "Trust Type",
523 "Transitive", "In", "Out");
526 for (i
=0; i
<num_domains
; i
++) {
528 d_printf("%-16s", domain_list
[i
].short_name
);
530 d_printf("%s", domain_list
[i
].short_name
);
535 d_printf("%-24s", domain_list
[i
].dns_name
);
537 switch(domain_list
[i
].trust_type
) {
538 case WBC_DOMINFO_TRUSTTYPE_NONE
:
541 case WBC_DOMINFO_TRUSTTYPE_FOREST
:
544 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL
:
545 d_printf("External ");
547 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST
:
548 d_printf("In-Forest ");
552 if (domain_list
[i
].trust_flags
& WBC_DOMINFO_TRUST_TRANSITIVE
) {
558 if (domain_list
[i
].trust_flags
& WBC_DOMINFO_TRUST_INCOMING
) {
564 if (domain_list
[i
].trust_flags
& WBC_DOMINFO_TRUST_OUTGOING
) {
573 wbcFreeMemory(domain_list
);
578 /* List own domain */
580 static bool wbinfo_list_own_domain(void)
582 d_printf("%s\n", get_winbind_domain());
587 /* show sequence numbers */
588 static bool wbinfo_show_sequence(const char *domain
)
590 d_printf("This command has been deprecated. Please use the "
591 "--online-status option instead.\n");
595 /* show sequence numbers */
596 static bool wbinfo_show_onlinestatus(const char *domain
)
598 struct wbcDomainInfo
*domain_list
= NULL
;
600 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
603 wbc_status
= wbcListTrusts(&domain_list
, &num_domains
);
604 if (!WBC_ERROR_IS_OK(wbc_status
)) {
605 d_fprintf(stderr
, "failed to call wbcListTrusts: %s\n",
606 wbcErrorString(wbc_status
));
610 for (i
=0; i
<num_domains
; i
++) {
614 if (!strequal(domain_list
[i
].short_name
, domain
)) {
619 is_offline
= (domain_list
[i
].domain_flags
&
620 WBC_DOMINFO_DOMAIN_OFFLINE
);
622 d_printf("%s : %s\n",
623 domain_list
[i
].short_name
,
624 is_offline
? "offline" : "online" );
627 wbcFreeMemory(domain_list
);
633 /* Show domain info */
635 static bool wbinfo_domain_info(const char *domain
)
637 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
638 struct wbcDomainInfo
*dinfo
= NULL
;
639 char sid_str
[WBC_SID_STRING_BUFLEN
];
641 if ((domain
== NULL
) || (strequal(domain
, ".")) || (domain
[0] == '\0')){
642 domain
= get_winbind_domain();
647 wbc_status
= wbcDomainInfo(domain
, &dinfo
);
648 if (!WBC_ERROR_IS_OK(wbc_status
)) {
649 d_fprintf(stderr
, "failed to call wbcDomainInfo: %s\n",
650 wbcErrorString(wbc_status
));
654 wbcSidToStringBuf(&dinfo
->sid
, sid_str
, sizeof(sid_str
));
656 /* Display response */
658 d_printf("Name : %s\n", dinfo
->short_name
);
659 d_printf("Alt_Name : %s\n", dinfo
->dns_name
);
661 d_printf("SID : %s\n", sid_str
);
663 d_printf("Active Directory : %s\n",
664 (dinfo
->domain_flags
& WBC_DOMINFO_DOMAIN_AD
) ? "Yes" : "No");
665 d_printf("Native : %s\n",
666 (dinfo
->domain_flags
& WBC_DOMINFO_DOMAIN_NATIVE
) ?
669 d_printf("Primary : %s\n",
670 (dinfo
->domain_flags
& WBC_DOMINFO_DOMAIN_PRIMARY
) ?
673 wbcFreeMemory(dinfo
);
678 /* Get a foreign DC's name */
679 static bool wbinfo_getdcname(const char *domain_name
)
681 struct winbindd_request request
;
682 struct winbindd_response response
;
684 ZERO_STRUCT(request
);
685 ZERO_STRUCT(response
);
687 fstrcpy(request
.domain_name
, domain_name
);
691 if (winbindd_request_response(WINBINDD_GETDCNAME
, &request
,
692 &response
) != NSS_STATUS_SUCCESS
) {
693 d_fprintf(stderr
, "Could not get dc name for %s\n",domain_name
);
697 /* Display response */
699 d_printf("%s\n", response
.data
.dc_name
);
705 static bool wbinfo_dsgetdcname(const char *domain_name
, uint32_t flags
)
707 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
708 struct wbcDomainControllerInfoEx
*dc_info
;
711 wbc_status
= wbcLookupDomainControllerEx(domain_name
, NULL
, NULL
,
712 flags
| DS_DIRECTORY_SERVICE_REQUIRED
,
714 if (!WBC_ERROR_IS_OK(wbc_status
)) {
715 printf("Could not find dc for %s\n", domain_name
);
719 wbcGuidToString(dc_info
->domain_guid
, &str
);
721 d_printf("%s\n", dc_info
->dc_unc
);
722 d_printf("%s\n", dc_info
->dc_address
);
723 d_printf("%d\n", dc_info
->dc_address_type
);
724 d_printf("%s\n", str
);
725 d_printf("%s\n", dc_info
->domain_name
);
726 d_printf("%s\n", dc_info
->forest_name
);
727 d_printf("0x%08x\n", dc_info
->dc_flags
);
728 d_printf("%s\n", dc_info
->dc_site_name
);
729 d_printf("%s\n", dc_info
->client_site_name
);
734 /* Check trust account password */
736 static bool wbinfo_check_secret(const char *domain
)
738 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
739 struct wbcAuthErrorInfo
*error
= NULL
;
740 const char *domain_name
;
743 domain_name
= domain
;
745 domain_name
= get_winbind_domain();
748 wbc_status
= wbcCheckTrustCredentials(domain_name
, &error
);
750 d_printf("checking the trust secret for domain %s via RPC calls %s\n",
752 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
754 if (wbc_status
== WBC_ERR_AUTH_ERROR
) {
755 d_fprintf(stderr
, "error code was %s (0x%x)\n",
756 error
->nt_string
, error
->nt_status
);
757 wbcFreeMemory(error
);
759 if (!WBC_ERROR_IS_OK(wbc_status
)) {
760 d_fprintf(stderr
, "failed to call wbcCheckTrustCredentials: "
761 "%s\n", wbcErrorString(wbc_status
));
768 /* Find the currently connected DCs */
770 static bool wbinfo_dc_info(const char *domain_name
)
772 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
774 const char **dc_names
, **dc_ips
;
776 wbc_status
= wbcDcInfo(domain_name
, &num_dcs
,
778 if (!WBC_ERROR_IS_OK(wbc_status
)) {
779 printf("Could not find dc info %s\n",
780 domain_name
? domain_name
: "our domain");
784 for (i
=0; i
<num_dcs
; i
++) {
785 printf("%s (%s)\n", dc_names
[i
], dc_ips
[i
]);
787 wbcFreeMemory(dc_names
);
788 wbcFreeMemory(dc_ips
);
793 /* Change trust account password */
795 static bool wbinfo_change_secret(const char *domain
)
797 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
798 struct wbcAuthErrorInfo
*error
= NULL
;
799 const char *domain_name
;
802 domain_name
= domain
;
804 domain_name
= get_winbind_domain();
807 wbc_status
= wbcChangeTrustCredentials(domain_name
, &error
);
809 d_printf("changing the trust secret for domain %s via RPC calls %s\n",
811 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
813 if (wbc_status
== WBC_ERR_AUTH_ERROR
) {
814 d_fprintf(stderr
, "error code was %s (0x%x)\n",
815 error
->nt_string
, error
->nt_status
);
816 wbcFreeMemory(error
);
818 if (!WBC_ERROR_IS_OK(wbc_status
)) {
819 d_fprintf(stderr
, "failed to call wbcChangeTrustCredentials: "
820 "%s\n", wbcErrorString(wbc_status
));
827 /* Check DC connection */
829 static bool wbinfo_ping_dc(void)
831 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
832 struct wbcAuthErrorInfo
*error
= NULL
;
834 wbc_status
= wbcPingDc(NULL
, &error
);
836 d_printf("checking the NETLOGON dc connection %s\n",
837 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
839 if (wbc_status
== WBC_ERR_AUTH_ERROR
) {
840 d_fprintf(stderr
, "error code was %s (0x%x)\n",
841 error
->nt_string
, error
->nt_status
);
842 wbcFreeMemory(error
);
844 if (!WBC_ERROR_IS_OK(wbc_status
)) {
845 d_fprintf(stderr
, "failed to call wbcPingDc: %s\n",
846 wbcErrorString(wbc_status
));
853 /* Convert uid to sid */
855 static bool wbinfo_uid_to_sid(uid_t uid
)
857 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
858 struct wbcDomainSid sid
;
859 char sid_str
[WBC_SID_STRING_BUFLEN
];
863 wbc_status
= wbcUidToSid(uid
, &sid
);
864 if (!WBC_ERROR_IS_OK(wbc_status
)) {
865 d_fprintf(stderr
, "failed to call wbcUidToSid: %s\n",
866 wbcErrorString(wbc_status
));
870 wbcSidToStringBuf(&sid
, sid_str
, sizeof(sid_str
));
872 /* Display response */
874 d_printf("%s\n", sid_str
);
879 /* Convert gid to sid */
881 static bool wbinfo_gid_to_sid(gid_t gid
)
883 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
884 struct wbcDomainSid sid
;
885 char sid_str
[WBC_SID_STRING_BUFLEN
];
889 wbc_status
= wbcGidToSid(gid
, &sid
);
890 if (!WBC_ERROR_IS_OK(wbc_status
)) {
891 d_fprintf(stderr
, "failed to call wbcGidToSid: %s\n",
892 wbcErrorString(wbc_status
));
896 wbcSidToStringBuf(&sid
, sid_str
, sizeof(sid_str
));
898 /* Display response */
900 d_printf("%s\n", sid_str
);
905 /* Convert sid to uid */
907 static bool wbinfo_sid_to_uid(const char *sid_str
)
909 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
910 struct wbcDomainSid sid
;
915 wbc_status
= wbcStringToSid(sid_str
, &sid
);
916 if (!WBC_ERROR_IS_OK(wbc_status
)) {
917 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
918 wbcErrorString(wbc_status
));
922 wbc_status
= wbcSidToUid(&sid
, &uid
);
923 if (!WBC_ERROR_IS_OK(wbc_status
)) {
924 d_fprintf(stderr
, "failed to call wbcSidToUid: %s\n",
925 wbcErrorString(wbc_status
));
929 /* Display response */
931 d_printf("%d\n", (int)uid
);
936 static bool wbinfo_sid_to_gid(const char *sid_str
)
938 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
939 struct wbcDomainSid sid
;
944 wbc_status
= wbcStringToSid(sid_str
, &sid
);
945 if (!WBC_ERROR_IS_OK(wbc_status
)) {
946 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
947 wbcErrorString(wbc_status
));
951 wbc_status
= wbcSidToGid(&sid
, &gid
);
952 if (!WBC_ERROR_IS_OK(wbc_status
)) {
953 d_fprintf(stderr
, "failed to call wbcSidToGid: %s\n",
954 wbcErrorString(wbc_status
));
958 /* Display response */
960 d_printf("%d\n", (int)gid
);
965 static bool wbinfo_sids_to_unix_ids(const char *arg
)
967 char sidstr
[WBC_SID_STRING_BUFLEN
];
968 struct wbcDomainSid
*sids
;
969 struct wbcUnixId
*unix_ids
;
979 while (next_token(&p
, sidstr
, LIST_SEP
, sizeof(sidstr
))) {
980 sids
= talloc_realloc(talloc_tos(), sids
, struct wbcDomainSid
,
983 d_fprintf(stderr
, "talloc failed\n");
986 wbc_status
= wbcStringToSid(sidstr
, &sids
[num_sids
]);
987 if (!WBC_ERROR_IS_OK(wbc_status
)) {
988 d_fprintf(stderr
, "wbcSidToString(%s) failed: %s\n",
989 sidstr
, wbcErrorString(wbc_status
));
996 unix_ids
= talloc_array(talloc_tos(), struct wbcUnixId
, num_sids
);
997 if (unix_ids
== NULL
) {
1002 wbc_status
= wbcSidsToUnixIds(sids
, num_sids
, unix_ids
);
1003 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1004 d_fprintf(stderr
, "wbcSidsToUnixIds failed: %s\n",
1005 wbcErrorString(wbc_status
));
1010 for (i
=0; i
<num_sids
; i
++) {
1012 wbcSidToStringBuf(&sids
[i
], sidstr
, sizeof(sidstr
));
1014 switch(unix_ids
[i
].type
) {
1015 case WBC_ID_TYPE_UID
:
1016 d_printf("%s -> uid %d\n", sidstr
, unix_ids
[i
].id
.uid
);
1018 case WBC_ID_TYPE_GID
:
1019 d_printf("%s -> gid %d\n", sidstr
, unix_ids
[i
].id
.gid
);
1022 d_printf("%s -> unmapped\n", sidstr
);
1028 TALLOC_FREE(unix_ids
);
1033 static bool wbinfo_allocate_uid(void)
1035 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1040 wbc_status
= wbcAllocateUid(&uid
);
1041 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1042 d_fprintf(stderr
, "failed to call wbcAllocateUid: %s\n",
1043 wbcErrorString(wbc_status
));
1047 /* Display response */
1049 d_printf("New uid: %u\n", (unsigned int)uid
);
1054 static bool wbinfo_allocate_gid(void)
1056 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1061 wbc_status
= wbcAllocateGid(&gid
);
1062 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1063 d_fprintf(stderr
, "failed to call wbcAllocateGid: %s\n",
1064 wbcErrorString(wbc_status
));
1068 /* Display response */
1070 d_printf("New gid: %u\n", (unsigned int)gid
);
1075 static bool wbinfo_set_uid_mapping(uid_t uid
, const char *sid_str
)
1077 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1078 struct wbcDomainSid sid
;
1082 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1083 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1084 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
1085 wbcErrorString(wbc_status
));
1089 wbc_status
= wbcSetUidMapping(uid
, &sid
);
1090 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1091 d_fprintf(stderr
, "failed to call wbcSetUidMapping: %s\n",
1092 wbcErrorString(wbc_status
));
1096 /* Display response */
1098 d_printf("uid %u now mapped to sid %s\n",
1099 (unsigned int)uid
, sid_str
);
1104 static bool wbinfo_set_gid_mapping(gid_t gid
, const char *sid_str
)
1106 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1107 struct wbcDomainSid sid
;
1111 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1112 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1113 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
1114 wbcErrorString(wbc_status
));
1118 wbc_status
= wbcSetGidMapping(gid
, &sid
);
1119 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1120 d_fprintf(stderr
, "failed to call wbcSetGidMapping: %s\n",
1121 wbcErrorString(wbc_status
));
1125 /* Display response */
1127 d_printf("gid %u now mapped to sid %s\n",
1128 (unsigned int)gid
, sid_str
);
1133 static bool wbinfo_remove_uid_mapping(uid_t uid
, const char *sid_str
)
1135 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1136 struct wbcDomainSid sid
;
1140 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1141 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1142 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
1143 wbcErrorString(wbc_status
));
1147 wbc_status
= wbcRemoveUidMapping(uid
, &sid
);
1148 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1149 d_fprintf(stderr
, "failed to call wbcRemoveUidMapping: %s\n",
1150 wbcErrorString(wbc_status
));
1154 /* Display response */
1156 d_printf("Removed uid %u to sid %s mapping\n",
1157 (unsigned int)uid
, sid_str
);
1162 static bool wbinfo_remove_gid_mapping(gid_t gid
, const char *sid_str
)
1164 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1165 struct wbcDomainSid sid
;
1169 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1170 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1171 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
1172 wbcErrorString(wbc_status
));
1176 wbc_status
= wbcRemoveGidMapping(gid
, &sid
);
1177 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1178 d_fprintf(stderr
, "failed to call wbcRemoveGidMapping: %s\n",
1179 wbcErrorString(wbc_status
));
1183 /* Display response */
1185 d_printf("Removed gid %u to sid %s mapping\n",
1186 (unsigned int)gid
, sid_str
);
1191 /* Convert sid to string */
1193 static bool wbinfo_lookupsid(const char *sid_str
)
1195 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1196 struct wbcDomainSid sid
;
1199 enum wbcSidType type
;
1201 /* Send off request */
1203 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1204 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1205 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
1206 wbcErrorString(wbc_status
));
1210 wbc_status
= wbcLookupSid(&sid
, &domain
, &name
, &type
);
1211 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1212 d_fprintf(stderr
, "failed to call wbcLookupSid: %s\n",
1213 wbcErrorString(wbc_status
));
1217 /* Display response */
1219 d_printf("%s%c%s %d\n",
1220 domain
, winbind_separator(), name
, type
);
1225 /* Convert sid to fullname */
1227 static bool wbinfo_lookupsid_fullname(const char *sid_str
)
1229 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1230 struct wbcDomainSid sid
;
1233 enum wbcSidType type
;
1235 /* Send off request */
1237 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1238 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1239 d_fprintf(stderr
, "failed to call wbcStringToSid: %s\n",
1240 wbcErrorString(wbc_status
));
1244 wbc_status
= wbcGetDisplayName(&sid
, &domain
, &name
, &type
);
1245 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1246 d_fprintf(stderr
, "failed to call wbcGetDisplayName: %s\n",
1247 wbcErrorString(wbc_status
));
1251 /* Display response */
1253 d_printf("%s%c%s %d\n",
1254 domain
, winbind_separator(), name
, type
);
1259 /* Lookup a list of RIDs */
1261 static bool wbinfo_lookuprids(const char *domain
, const char *arg
)
1263 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1264 struct wbcDomainInfo
*dinfo
= NULL
;
1265 char *domain_name
= NULL
;
1266 const char **names
= NULL
;
1267 enum wbcSidType
*types
= NULL
;
1270 uint32_t *rids
= NULL
;
1273 TALLOC_CTX
*mem_ctx
= NULL
;
1276 if ((domain
== NULL
) || (strequal(domain
, ".")) || (domain
[0] == '\0')){
1277 domain
= get_winbind_domain();
1282 wbc_status
= wbcDomainInfo(domain
, &dinfo
);
1283 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1284 d_printf("wbcDomainInfo(%s) failed: %s\n", domain
,
1285 wbcErrorString(wbc_status
));
1289 mem_ctx
= talloc_new(NULL
);
1290 if (mem_ctx
== NULL
) {
1291 d_printf("talloc_new failed\n");
1299 while (next_token_talloc(mem_ctx
, &p
, &ridstr
, " ,\n")) {
1300 uint32_t rid
= strtoul(ridstr
, NULL
, 10);
1301 rids
= talloc_realloc(mem_ctx
, rids
, uint32_t, num_rids
+ 1);
1303 d_printf("talloc_realloc failed\n");
1305 rids
[num_rids
] = rid
;
1310 d_printf("no rids\n");
1314 wbc_status
= wbcLookupRids(&dinfo
->sid
, num_rids
, rids
,
1315 (const char **)&domain_name
, &names
, &types
);
1316 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1317 d_printf("winbind_lookup_rids failed: %s\n",
1318 wbcErrorString(wbc_status
));
1322 d_printf("Domain: %s\n", domain_name
);
1324 for (i
=0; i
<num_rids
; i
++) {
1325 d_printf("%8d: %s (%s)\n", rids
[i
], names
[i
],
1326 wbcSidTypeString(types
[i
]));
1331 wbcFreeMemory(dinfo
);
1332 wbcFreeMemory(domain_name
);
1333 wbcFreeMemory(names
);
1334 wbcFreeMemory(types
);
1335 TALLOC_FREE(mem_ctx
);
1339 static bool wbinfo_lookup_sids(const char *arg
)
1341 char sidstr
[WBC_SID_STRING_BUFLEN
];
1342 struct wbcDomainSid
*sids
;
1343 struct wbcDomainInfo
*domains
;
1344 struct wbcTranslatedName
*names
;
1355 while (next_token(&p
, sidstr
, LIST_SEP
, sizeof(sidstr
))) {
1356 sids
= talloc_realloc(talloc_tos(), sids
, struct wbcDomainSid
,
1359 d_fprintf(stderr
, "talloc failed\n");
1362 wbc_status
= wbcStringToSid(sidstr
, &sids
[num_sids
]);
1363 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1364 d_fprintf(stderr
, "wbcSidToString(%s) failed: %s\n",
1365 sidstr
, wbcErrorString(wbc_status
));
1372 wbc_status
= wbcLookupSids(sids
, num_sids
, &domains
, &num_domains
,
1374 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1375 d_fprintf(stderr
, "wbcLookupSids failed: %s\n",
1376 wbcErrorString(wbc_status
));
1381 for (i
=0; i
<num_sids
; i
++) {
1382 wbcSidToStringBuf(&sids
[i
], sidstr
, sizeof(sidstr
));
1384 d_printf("%s -> %s\\%s %d\n", sidstr
,
1385 domains
[names
[i
].domain_index
].short_name
,
1386 names
[i
].name
, names
[i
].type
);
1391 /* Convert string to sid */
1393 static bool wbinfo_lookupname(const char *full_name
)
1395 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1396 struct wbcDomainSid sid
;
1397 char sid_str
[WBC_SID_STRING_BUFLEN
];
1398 enum wbcSidType type
;
1399 fstring domain_name
;
1400 fstring account_name
;
1402 /* Send off request */
1404 parse_wbinfo_domain_user(full_name
, domain_name
,
1407 wbc_status
= wbcLookupName(domain_name
, account_name
,
1409 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1410 d_fprintf(stderr
, "failed to call wbcLookupName: %s\n",
1411 wbcErrorString(wbc_status
));
1415 wbcSidToStringBuf(&sid
, sid_str
, sizeof(sid_str
));
1417 /* Display response */
1419 d_printf("%s %s (%d)\n", sid_str
, wbcSidTypeString(type
), type
);
1424 static char *wbinfo_prompt_pass(TALLOC_CTX
*mem_ctx
,
1426 const char *username
)
1429 const char *ret
= NULL
;
1431 prompt
= talloc_asprintf(mem_ctx
, "Enter %s's ", username
);
1436 prompt
= talloc_asprintf_append(prompt
, "%s ", prefix
);
1441 prompt
= talloc_asprintf_append(prompt
, "password: ");
1446 ret
= getpass(prompt
);
1447 TALLOC_FREE(prompt
);
1449 return talloc_strdup(mem_ctx
, ret
);
1452 /* Authenticate a user with a plaintext password */
1454 static bool wbinfo_auth_krb5(char *username
, const char *cctype
, uint32_t flags
)
1456 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1459 char *password
= NULL
;
1461 char *local_cctype
= NULL
;
1463 struct wbcLogonUserParams params
;
1464 struct wbcLogonUserInfo
*info
;
1465 struct wbcAuthErrorInfo
*error
;
1466 struct wbcUserPasswordPolicyInfo
*policy
;
1467 TALLOC_CTX
*frame
= talloc_tos();
1469 if ((s
= talloc_strdup(frame
, username
)) == NULL
) {
1473 if ((p
= strchr(s
, '%')) != NULL
) {
1476 password
= talloc_strdup(frame
, p
);
1478 password
= wbinfo_prompt_pass(frame
, NULL
, username
);
1481 local_cctype
= talloc_strdup(frame
, cctype
);
1487 params
.username
= name
;
1488 params
.password
= password
;
1489 params
.num_blobs
= 0;
1490 params
.blobs
= NULL
;
1492 wbc_status
= wbcAddNamedBlob(¶ms
.num_blobs
,
1498 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1499 d_fprintf(stderr
, "failed to call wbcAddNamedBlob: %s\n",
1500 wbcErrorString(wbc_status
));
1504 wbc_status
= wbcAddNamedBlob(¶ms
.num_blobs
,
1510 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1511 d_fprintf(stderr
, "failed to call wbcAddNamedBlob: %s\n",
1512 wbcErrorString(wbc_status
));
1516 wbc_status
= wbcAddNamedBlob(¶ms
.num_blobs
,
1520 (uint8_t *)local_cctype
,
1522 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1523 d_fprintf(stderr
, "failed to call wbcAddNamedBlob: %s\n",
1524 wbcErrorString(wbc_status
));
1528 wbc_status
= wbcLogonUser(¶ms
, &info
, &error
, &policy
);
1530 d_printf("plaintext kerberos password authentication for [%s] %s "
1531 "(requesting cctype: %s)\n",
1532 username
, WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed",
1537 "error code was %s (0x%x)\nerror message was: %s\n",
1540 error
->display_string
);
1543 if (WBC_ERROR_IS_OK(wbc_status
)) {
1544 if (flags
& WBFLAG_PAM_INFO3_TEXT
) {
1545 if (info
&& info
->info
&& info
->info
->user_flags
&
1546 NETLOGON_CACHED_ACCOUNT
) {
1547 d_printf("user_flgs: "
1548 "NETLOGON_CACHED_ACCOUNT\n");
1554 for (i
=0; i
< info
->num_blobs
; i
++) {
1555 if (strequal(info
->blobs
[i
].name
,
1557 d_printf("credentials were put "
1560 info
->blobs
[i
].blob
.data
);
1565 d_printf("no credentials cached\n");
1570 wbcFreeMemory(params
.blobs
);
1572 return WBC_ERROR_IS_OK(wbc_status
);
1575 /* Authenticate a user with a plaintext password */
1577 static bool wbinfo_auth(char *username
)
1579 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1582 char *password
= NULL
;
1584 TALLOC_CTX
*frame
= talloc_tos();
1586 if ((s
= talloc_strdup(frame
, username
)) == NULL
) {
1590 if ((p
= strchr(s
, '%')) != NULL
) {
1593 password
= talloc_strdup(frame
, p
);
1595 password
= wbinfo_prompt_pass(frame
, NULL
, username
);
1600 wbc_status
= wbcAuthenticateUser(name
, password
);
1602 d_printf("plaintext password authentication %s\n",
1603 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1606 if (response
.data
.auth
.nt_status
)
1608 "error code was %s (0x%x)\nerror message was: %s\n",
1609 response
.data
.auth
.nt_status_string
,
1610 response
.data
.auth
.nt_status
,
1611 response
.data
.auth
.error_string
);
1614 return WBC_ERROR_IS_OK(wbc_status
);
1617 /* Authenticate a user with a challenge/response */
1619 static bool wbinfo_auth_crap(char *username
, bool use_ntlmv2
, bool use_lanman
)
1621 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1622 struct wbcAuthUserParams params
;
1623 struct wbcAuthUserInfo
*info
= NULL
;
1624 struct wbcAuthErrorInfo
*err
= NULL
;
1625 DATA_BLOB lm
= data_blob_null
;
1626 DATA_BLOB nt
= data_blob_null
;
1628 fstring name_domain
;
1631 TALLOC_CTX
*frame
= talloc_tos();
1633 p
= strchr(username
, '%');
1637 pass
= talloc_strdup(frame
, p
+ 1);
1639 pass
= wbinfo_prompt_pass(frame
, NULL
, username
);
1642 parse_wbinfo_domain_user(username
, name_domain
, name_user
);
1644 params
.account_name
= name_user
;
1645 params
.domain_name
= name_domain
;
1646 params
.workstation_name
= NULL
;
1649 params
.parameter_control
= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
|
1650 WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
;
1652 params
.level
= WBC_AUTH_USER_LEVEL_RESPONSE
;
1654 generate_random_buffer(params
.password
.response
.challenge
, 8);
1657 DATA_BLOB server_chal
;
1658 DATA_BLOB names_blob
;
1660 server_chal
= data_blob(params
.password
.response
.challenge
, 8);
1662 /* Pretend this is a login to 'us', for blob purposes */
1663 names_blob
= NTLMv2_generate_names_blob(NULL
,
1664 get_winbind_netbios_name(),
1665 get_winbind_domain());
1667 if (!SMBNTLMv2encrypt(NULL
, name_user
, name_domain
, pass
,
1670 &lm
, &nt
, NULL
, NULL
)) {
1671 data_blob_free(&names_blob
);
1672 data_blob_free(&server_chal
);
1676 data_blob_free(&names_blob
);
1677 data_blob_free(&server_chal
);
1682 lm
= data_blob(NULL
, 24);
1683 ok
= SMBencrypt(pass
,
1684 params
.password
.response
.challenge
,
1687 data_blob_free(&lm
);
1690 nt
= data_blob(NULL
, 24);
1691 SMBNTencrypt(pass
, params
.password
.response
.challenge
,
1695 params
.password
.response
.nt_length
= nt
.length
;
1696 params
.password
.response
.nt_data
= nt
.data
;
1697 params
.password
.response
.lm_length
= lm
.length
;
1698 params
.password
.response
.lm_data
= lm
.data
;
1700 wbc_status
= wbcAuthenticateUserEx(¶ms
, &info
, &err
);
1702 /* Display response */
1704 d_printf("challenge/response password authentication %s\n",
1705 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1707 if (wbc_status
== WBC_ERR_AUTH_ERROR
) {
1709 "error code was %s (0x%x)\nerror message was: %s\n",
1712 err
->display_string
);
1714 } else if (WBC_ERROR_IS_OK(wbc_status
)) {
1715 wbcFreeMemory(info
);
1718 data_blob_free(&nt
);
1719 data_blob_free(&lm
);
1721 return WBC_ERROR_IS_OK(wbc_status
);
1724 /* Authenticate a user with a plaintext password */
1726 static bool wbinfo_pam_logon(char *username
)
1728 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1729 struct wbcLogonUserParams params
;
1730 struct wbcAuthErrorInfo
*error
;
1733 TALLOC_CTX
*frame
= talloc_tos();
1737 ZERO_STRUCT(params
);
1739 if ((s
= talloc_strdup(frame
, username
)) == NULL
) {
1743 if ((p
= strchr(s
, '%')) != NULL
) {
1746 params
.password
= talloc_strdup(frame
, p
);
1748 params
.password
= wbinfo_prompt_pass(frame
, NULL
, username
);
1750 params
.username
= s
;
1752 flags
= WBFLAG_PAM_CACHED_LOGIN
;
1754 wbc_status
= wbcAddNamedBlob(¶ms
.num_blobs
, ¶ms
.blobs
,
1756 (uint8_t *)&flags
, sizeof(flags
));
1757 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1758 d_printf("wbcAddNamedBlob failed: %s\n",
1759 wbcErrorString(wbc_status
));
1765 wbc_status
= wbcAddNamedBlob(¶ms
.num_blobs
, ¶ms
.blobs
,
1767 (uint8_t *)&uid
, sizeof(uid
));
1768 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1769 d_printf("wbcAddNamedBlob failed: %s\n",
1770 wbcErrorString(wbc_status
));
1774 wbc_status
= wbcLogonUser(¶ms
, NULL
, &error
, NULL
);
1776 wbcFreeMemory(params
.blobs
);
1778 d_printf("plaintext password authentication %s\n",
1779 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1781 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1783 "error code was %s (0x%x)\nerror message was: %s\n",
1785 (int)error
->nt_status
,
1786 error
->display_string
);
1787 wbcFreeMemory(error
);
1793 /* Save creds with winbind */
1795 static bool wbinfo_ccache_save(char *username
)
1797 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1800 char *password
= NULL
;
1802 TALLOC_CTX
*frame
= talloc_stackframe();
1804 s
= talloc_strdup(frame
, username
);
1813 password
= talloc_strdup(frame
, p
);
1815 password
= wbinfo_prompt_pass(frame
, NULL
, username
);
1820 wbc_status
= wbcCredentialSave(name
, password
);
1822 d_printf("saving creds %s\n",
1823 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1827 return WBC_ERROR_IS_OK(wbc_status
);
1830 #ifdef WITH_FAKE_KASERVER
1831 /* Authenticate a user with a plaintext password and set a token */
1833 static bool wbinfo_klog(char *username
)
1835 struct winbindd_request request
;
1836 struct winbindd_response response
;
1840 /* Send off request */
1842 ZERO_STRUCT(request
);
1843 ZERO_STRUCT(response
);
1845 p
= strchr(username
, '%');
1849 fstrcpy(request
.data
.auth
.user
, username
);
1850 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
1853 fstrcpy(request
.data
.auth
.user
, username
);
1854 fstrcpy(request
.data
.auth
.pass
, getpass("Password: "));
1857 request
.flags
|= WBFLAG_PAM_AFS_TOKEN
;
1859 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
,
1862 /* Display response */
1864 d_printf("plaintext password authentication %s\n",
1865 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
1867 if (response
.data
.auth
.nt_status
)
1869 "error code was %s (0x%x)\nerror message was: %s\n",
1870 response
.data
.auth
.nt_status_string
,
1871 response
.data
.auth
.nt_status
,
1872 response
.data
.auth
.error_string
);
1874 if (result
!= NSS_STATUS_SUCCESS
)
1877 if (response
.extra_data
.data
== NULL
) {
1878 d_fprintf(stderr
, "Did not get token data\n");
1882 if (!afs_settoken_str((char *)response
.extra_data
.data
)) {
1883 d_fprintf(stderr
, "Could not set token\n");
1887 d_printf("Successfully created AFS token\n");
1891 static bool wbinfo_klog(char *username
)
1893 d_fprintf(stderr
, "No AFS support compiled in.\n");
1898 /* Print domain users */
1900 static bool print_domain_users(const char *domain
)
1902 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1904 uint32_t num_users
= 0;
1905 const char **users
= NULL
;
1907 /* Send request to winbind daemon */
1909 /* '.' is the special sign for our own domain */
1910 if (domain
&& strcmp(domain
, ".") == 0) {
1911 domain
= get_winbind_domain();
1914 wbc_status
= wbcListUsers(domain
, &num_users
, &users
);
1915 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1919 for (i
=0; i
< num_users
; i
++) {
1920 d_printf("%s\n", users
[i
]);
1923 wbcFreeMemory(users
);
1928 /* Print domain groups */
1930 static bool print_domain_groups(const char *domain
)
1932 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1934 uint32_t num_groups
= 0;
1935 const char **groups
= NULL
;
1937 /* Send request to winbind daemon */
1939 /* '.' is the special sign for our own domain */
1940 if (domain
&& strcmp(domain
, ".") == 0) {
1941 domain
= get_winbind_domain();
1944 wbc_status
= wbcListGroups(domain
, &num_groups
, &groups
);
1945 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1946 d_fprintf(stderr
, "failed to call wbcListGroups: %s\n",
1947 wbcErrorString(wbc_status
));
1951 for (i
=0; i
< num_groups
; i
++) {
1952 d_printf("%s\n", groups
[i
]);
1955 wbcFreeMemory(groups
);
1960 /* Set the authorised user for winbindd access in secrets.tdb */
1962 static bool wbinfo_set_auth_user(char *username
)
1964 d_fprintf(stderr
, "This functionality was moved to the 'net' utility.\n"
1965 "See 'net help setauthuser' for details.\n");
1969 static void wbinfo_get_auth_user(void)
1971 d_fprintf(stderr
, "This functionality was moved to the 'net' utility.\n"
1972 "See 'net help getauthuser' for details.\n");
1975 static bool wbinfo_ping(void)
1979 wbc_status
= wbcPing();
1981 /* Display response */
1983 d_printf("Ping to winbindd %s\n",
1984 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1986 return WBC_ERROR_IS_OK(wbc_status
);
1989 static bool wbinfo_change_user_password(const char *username
)
1992 char *old_password
= NULL
;
1993 char *new_password
= NULL
;
1994 TALLOC_CTX
*frame
= talloc_tos();
1996 old_password
= wbinfo_prompt_pass(frame
, "old", username
);
1997 new_password
= wbinfo_prompt_pass(frame
, "new", username
);
1999 wbc_status
= wbcChangeUserPassword(username
, old_password
,new_password
);
2001 /* Display response */
2003 d_printf("Password change for user %s %s\n", username
,
2004 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
2006 return WBC_ERROR_IS_OK(wbc_status
);
2012 OPT_SET_AUTH_USER
= 1000,
2025 OPT_SET_UID_MAPPING
,
2026 OPT_SET_GID_MAPPING
,
2027 OPT_REMOVE_UID_MAPPING
,
2028 OPT_REMOVE_GID_MAPPING
,
2031 OPT_LIST_ALL_DOMAINS
,
2032 OPT_LIST_OWN_DOMAIN
,
2039 OPT_CHANGE_USER_PASSWORD
,
2041 OPT_SID_TO_FULLNAME
,
2050 int main(int argc
, char **argv
, char **envp
)
2053 TALLOC_CTX
*frame
= talloc_stackframe();
2055 static char *string_arg
;
2056 char *string_subarg
= NULL
;
2057 static char *opt_domain_name
;
2059 int int_subarg
= -1;
2061 bool verbose
= false;
2062 bool use_ntlmv2
= false;
2063 bool use_lanman
= false;
2064 char *logoff_user
= getenv("USER");
2065 int logoff_uid
= geteuid();
2067 struct poptOption long_options
[] = {
2070 /* longName, shortName, argInfo, argPtr, value, descrip,
2073 { "domain-users", 'u', POPT_ARG_NONE
, 0, 'u', "Lists all domain users", "domain"},
2074 { "domain-groups", 'g', POPT_ARG_NONE
, 0, 'g', "Lists all domain groups", "domain" },
2075 { "WINS-by-name", 'N', POPT_ARG_STRING
, &string_arg
, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
2076 { "WINS-by-ip", 'I', POPT_ARG_STRING
, &string_arg
, 'I', "Converts IP address to NetBIOS name", "IP" },
2077 { "name-to-sid", 'n', POPT_ARG_STRING
, &string_arg
, 'n', "Converts name to sid", "NAME" },
2078 { "sid-to-name", 's', POPT_ARG_STRING
, &string_arg
, 's', "Converts sid to name", "SID" },
2079 { "sid-to-fullname", 0, POPT_ARG_STRING
, &string_arg
,
2080 OPT_SID_TO_FULLNAME
, "Converts sid to fullname", "SID" },
2081 { "lookup-rids", 'R', POPT_ARG_STRING
, &string_arg
, 'R', "Converts RIDs to names", "RIDs" },
2082 { "lookup-sids", 0, POPT_ARG_STRING
, &string_arg
,
2083 OPT_LOOKUP_SIDS
, "Converts SIDs to types and names",
2085 { "uid-to-sid", 'U', POPT_ARG_INT
, &int_arg
, 'U', "Converts uid to sid" , "UID" },
2086 { "gid-to-sid", 'G', POPT_ARG_INT
, &int_arg
, 'G', "Converts gid to sid", "GID" },
2087 { "sid-to-uid", 'S', POPT_ARG_STRING
, &string_arg
, 'S', "Converts sid to uid", "SID" },
2088 { "sid-to-gid", 'Y', POPT_ARG_STRING
, &string_arg
, 'Y', "Converts sid to gid", "SID" },
2089 { "allocate-uid", 0, POPT_ARG_NONE
, 0, OPT_ALLOCATE_UID
,
2090 "Get a new UID out of idmap" },
2091 { "allocate-gid", 0, POPT_ARG_NONE
, 0, OPT_ALLOCATE_GID
,
2092 "Get a new GID out of idmap" },
2093 { "set-uid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_SET_UID_MAPPING
, "Create or modify uid to sid mapping in idmap", "UID,SID" },
2094 { "set-gid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_SET_GID_MAPPING
, "Create or modify gid to sid mapping in idmap", "GID,SID" },
2095 { "remove-uid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_REMOVE_UID_MAPPING
, "Remove uid to sid mapping in idmap", "UID,SID" },
2096 { "remove-gid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_REMOVE_GID_MAPPING
, "Remove gid to sid mapping in idmap", "GID,SID" },
2097 { "sids-to-unix-ids", 0, POPT_ARG_STRING
, &string_arg
,
2098 OPT_SIDS_TO_XIDS
, "Translate SIDs to Unix IDs", "Sid-List" },
2099 { "check-secret", 't', POPT_ARG_NONE
, 0, 't', "Check shared secret" },
2100 { "change-secret", 'c', POPT_ARG_NONE
, 0, 'c', "Change shared secret" },
2101 { "ping-dc", 'P', POPT_ARG_NONE
, 0, 'P',
2102 "Check the NETLOGON connection" },
2103 { "trusted-domains", 'm', POPT_ARG_NONE
, 0, 'm', "List trusted domains" },
2104 { "all-domains", 0, POPT_ARG_NONE
, 0, OPT_LIST_ALL_DOMAINS
, "List all domains (trusted and own domain)" },
2105 { "own-domain", 0, POPT_ARG_NONE
, 0, OPT_LIST_OWN_DOMAIN
, "List own domain" },
2106 { "sequence", 0, POPT_ARG_NONE
, 0, OPT_SEQUENCE
, "Deprecated command, see --online-status" },
2107 { "online-status", 0, POPT_ARG_NONE
, 0, OPT_ONLINESTATUS
, "Show whether domains are marked as online or offline"},
2108 { "domain-info", 'D', POPT_ARG_STRING
, &string_arg
, 'D', "Show most of the info we have about the domain" },
2109 { "user-info", 'i', POPT_ARG_STRING
, &string_arg
, 'i', "Get user info", "USER" },
2110 { "uid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_UID_INFO
, "Get user info from uid", "UID" },
2111 { "group-info", 0, POPT_ARG_STRING
, &string_arg
, OPT_GROUP_INFO
, "Get group info", "GROUP" },
2112 { "user-sidinfo", 0, POPT_ARG_STRING
, &string_arg
, OPT_USER_SIDINFO
, "Get user info from sid", "SID" },
2113 { "gid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_GID_INFO
, "Get group info from gid", "GID" },
2114 { "user-groups", 'r', POPT_ARG_STRING
, &string_arg
, 'r', "Get user groups", "USER" },
2115 { "user-domgroups", 0, POPT_ARG_STRING
, &string_arg
,
2116 OPT_USERDOMGROUPS
, "Get user domain groups", "SID" },
2117 { "sid-aliases", 0, POPT_ARG_STRING
, &string_arg
, OPT_SIDALIASES
, "Get sid aliases", "SID" },
2118 { "user-sids", 0, POPT_ARG_STRING
, &string_arg
, OPT_USERSIDS
, "Get user group sids for user SID", "SID" },
2119 { "authenticate", 'a', POPT_ARG_STRING
, &string_arg
, 'a', "authenticate user", "user%password" },
2120 { "pam-logon", 0, POPT_ARG_STRING
, &string_arg
, OPT_PAM_LOGON
,
2121 "do a pam logon equivalent", "user%password" },
2122 { "logoff", 0, POPT_ARG_NONE
, NULL
, OPT_LOGOFF
,
2123 "log off user", "uid" },
2124 { "logoff-user", 0, POPT_ARG_STRING
, &logoff_user
,
2125 OPT_LOGOFF_USER
, "username to log off" },
2126 { "logoff-uid", 0, POPT_ARG_INT
, &logoff_uid
,
2127 OPT_LOGOFF_UID
, "uid to log off" },
2128 { "set-auth-user", 0, POPT_ARG_STRING
, &string_arg
, OPT_SET_AUTH_USER
, "Store user and password used by winbindd (root only)", "user%password" },
2129 { "ccache-save", 0, POPT_ARG_STRING
, &string_arg
,
2130 OPT_CCACHE_SAVE
, "Store user and password for ccache "
2131 "operation", "user%password" },
2132 { "getdcname", 0, POPT_ARG_STRING
, &string_arg
, OPT_GETDCNAME
,
2133 "Get a DC name for a foreign domain", "domainname" },
2134 { "dsgetdcname", 0, POPT_ARG_STRING
, &string_arg
, OPT_DSGETDCNAME
, "Find a DC for a domain", "domainname" },
2135 { "dc-info", 0, POPT_ARG_STRING
, &string_arg
, OPT_DC_INFO
,
2136 "Find the currently known DCs", "domainname" },
2137 { "get-auth-user", 0, POPT_ARG_NONE
, NULL
, OPT_GET_AUTH_USER
, "Retrieve user and password used by winbindd (root only)", NULL
},
2138 { "ping", 'p', POPT_ARG_NONE
, 0, 'p', "Ping winbindd to see if it is alive" },
2139 { "domain", 0, POPT_ARG_STRING
, &opt_domain_name
, OPT_DOMAIN_NAME
, "Define to the domain to restrict operation", "domain" },
2140 #ifdef WITH_FAKE_KASERVER
2141 { "klog", 'k', POPT_ARG_STRING
, &string_arg
, 'k', "set an AFS token from winbind", "user%password" },
2144 { "krb5auth", 'K', POPT_ARG_STRING
, &string_arg
, 'K', "authenticate user using Kerberos", "user%password" },
2145 /* destroys wbinfo --help output */
2146 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
2148 { "separator", 0, POPT_ARG_NONE
, 0, OPT_SEPARATOR
, "Get the active winbind separator", NULL
},
2149 { "verbose", 0, POPT_ARG_NONE
, 0, OPT_VERBOSE
, "Print additional information per command", NULL
},
2150 { "change-user-password", 0, POPT_ARG_STRING
, &string_arg
, OPT_CHANGE_USER_PASSWORD
, "Change the password for a user", NULL
},
2151 { "ntlmv2", 0, POPT_ARG_NONE
, 0, OPT_NTLMV2
, "Use NTLMv2 cryptography for user authentication", NULL
},
2152 { "lanman", 0, POPT_ARG_NONE
, 0, OPT_LANMAN
, "Use lanman cryptography for user authentication", NULL
},
2157 /* Samba client initialisation */
2163 pc
= poptGetContext("wbinfo", argc
, (const char **)argv
,
2166 /* Parse command line options */
2169 poptPrintHelp(pc
, stderr
, 0);
2173 while((opt
= poptGetNextOpt(pc
)) != -1) {
2174 /* get the generic configuration parameters like --domain */
2188 poptFreeContext(pc
);
2190 pc
= poptGetContext(NULL
, argc
, (const char **)argv
, long_options
,
2191 POPT_CONTEXT_KEEP_FIRST
);
2193 while((opt
= poptGetNextOpt(pc
)) != -1) {
2196 if (!print_domain_users(opt_domain_name
)) {
2198 "Error looking up domain users\n");
2203 if (!print_domain_groups(opt_domain_name
)) {
2205 "Error looking up domain groups\n");
2210 if (!wbinfo_lookupsid(string_arg
)) {
2212 "Could not lookup sid %s\n",
2217 case OPT_SID_TO_FULLNAME
:
2218 if (!wbinfo_lookupsid_fullname(string_arg
)) {
2219 d_fprintf(stderr
, "Could not lookup sid %s\n",
2225 if (!wbinfo_lookuprids(opt_domain_name
, string_arg
)) {
2226 d_fprintf(stderr
, "Could not lookup RIDs %s\n",
2231 case OPT_LOOKUP_SIDS
:
2232 if (!wbinfo_lookup_sids(string_arg
)) {
2233 d_fprintf(stderr
, "Could not lookup SIDs %s\n",
2239 if (!wbinfo_lookupname(string_arg
)) {
2240 d_fprintf(stderr
, "Could not lookup name %s\n",
2246 if (!wbinfo_wins_byname(string_arg
)) {
2248 "Could not lookup WINS by name %s\n",
2254 if (!wbinfo_wins_byip(string_arg
)) {
2256 "Could not lookup WINS by IP %s\n",
2262 if (!wbinfo_uid_to_sid(int_arg
)) {
2264 "Could not convert uid %d to sid\n",
2270 if (!wbinfo_gid_to_sid(int_arg
)) {
2272 "Could not convert gid %d to sid\n",
2278 if (!wbinfo_sid_to_uid(string_arg
)) {
2280 "Could not convert sid %s to uid\n",
2286 if (!wbinfo_sid_to_gid(string_arg
)) {
2288 "Could not convert sid %s to gid\n",
2293 case OPT_ALLOCATE_UID
:
2294 if (!wbinfo_allocate_uid()) {
2295 d_fprintf(stderr
, "Could not allocate a uid\n");
2299 case OPT_ALLOCATE_GID
:
2300 if (!wbinfo_allocate_gid()) {
2301 d_fprintf(stderr
, "Could not allocate a gid\n");
2305 case OPT_SET_UID_MAPPING
:
2306 if (!parse_mapping_arg(string_arg
, &int_subarg
,
2308 !wbinfo_set_uid_mapping(int_subarg
, string_subarg
))
2310 d_fprintf(stderr
, "Could not create or modify "
2311 "uid to sid mapping\n");
2315 case OPT_SET_GID_MAPPING
:
2316 if (!parse_mapping_arg(string_arg
, &int_subarg
,
2318 !wbinfo_set_gid_mapping(int_subarg
, string_subarg
))
2320 d_fprintf(stderr
, "Could not create or modify "
2321 "gid to sid mapping\n");
2325 case OPT_REMOVE_UID_MAPPING
:
2326 if (!parse_mapping_arg(string_arg
, &int_subarg
,
2328 !wbinfo_remove_uid_mapping(int_subarg
,
2331 d_fprintf(stderr
, "Could not remove uid to sid "
2336 case OPT_REMOVE_GID_MAPPING
:
2337 if (!parse_mapping_arg(string_arg
, &int_subarg
,
2339 !wbinfo_remove_gid_mapping(int_subarg
,
2342 d_fprintf(stderr
, "Could not remove gid to sid "
2347 case OPT_SIDS_TO_XIDS
:
2348 if (!wbinfo_sids_to_unix_ids(string_arg
)) {
2349 d_fprintf(stderr
, "wbinfo_sids_to_unix_ids "
2355 if (!wbinfo_check_secret(opt_domain_name
)) {
2356 d_fprintf(stderr
, "Could not check secret\n");
2361 if (!wbinfo_change_secret(opt_domain_name
)) {
2362 d_fprintf(stderr
, "Could not change secret\n");
2367 if (!wbinfo_ping_dc()) {
2368 d_fprintf(stderr
, "Could not ping our DC\n");
2373 if (!wbinfo_list_domains(false, verbose
)) {
2375 "Could not list trusted domains\n");
2380 if (!wbinfo_show_sequence(opt_domain_name
)) {
2382 "Could not show sequence numbers\n");
2386 case OPT_ONLINESTATUS
:
2387 if (!wbinfo_show_onlinestatus(opt_domain_name
)) {
2389 "Could not show online-status\n");
2394 if (!wbinfo_domain_info(string_arg
)) {
2396 "Could not get domain info\n");
2401 if (!wbinfo_get_userinfo(string_arg
)) {
2403 "Could not get info for user %s\n",
2408 case OPT_USER_SIDINFO
:
2409 if ( !wbinfo_get_user_sidinfo(string_arg
)) {
2411 "Could not get info for user "
2412 "sid %s\n", string_arg
);
2417 if ( !wbinfo_get_uidinfo(int_arg
)) {
2418 d_fprintf(stderr
, "Could not get info for uid "
2423 case OPT_GROUP_INFO
:
2424 if ( !wbinfo_get_groupinfo(string_arg
)) {
2425 d_fprintf(stderr
, "Could not get info for "
2426 "group %s\n", string_arg
);
2431 if ( !wbinfo_get_gidinfo(int_arg
)) {
2432 d_fprintf(stderr
, "Could not get info for gid "
2438 if (!wbinfo_get_usergroups(string_arg
)) {
2440 "Could not get groups for user %s\n",
2446 if (!wbinfo_get_usersids(string_arg
)) {
2447 d_fprintf(stderr
, "Could not get group SIDs "
2448 "for user SID %s\n",
2453 case OPT_USERDOMGROUPS
:
2454 if (!wbinfo_get_userdomgroups(string_arg
)) {
2455 d_fprintf(stderr
, "Could not get user's domain "
2456 "groups for user SID %s\n",
2461 case OPT_SIDALIASES
:
2462 if (!wbinfo_get_sidaliases(opt_domain_name
,
2464 d_fprintf(stderr
, "Could not get sid aliases "
2465 "for user SID %s\n", string_arg
);
2470 bool got_error
= false;
2472 if (!wbinfo_auth(string_arg
)) {
2474 "Could not authenticate user "
2475 "%s with plaintext "
2476 "password\n", string_arg
);
2480 if (!wbinfo_auth_crap(string_arg
, use_ntlmv2
,
2483 "Could not authenticate user "
2484 "%s with challenge/response\n",
2494 if (!wbinfo_pam_logon(string_arg
)) {
2495 d_fprintf(stderr
, "pam_logon failed for %s\n",
2504 wbc_status
= wbcLogoffUser(logoff_user
, logoff_uid
,
2506 d_printf("Logoff %s (%d): %s\n", logoff_user
,
2507 logoff_uid
, wbcErrorString(wbc_status
));
2511 uint32_t flags
= WBFLAG_PAM_KRB5
|
2512 WBFLAG_PAM_CACHED_LOGIN
|
2513 WBFLAG_PAM_FALLBACK_AFTER_KRB5
|
2514 WBFLAG_PAM_INFO3_TEXT
|
2515 WBFLAG_PAM_CONTACT_TRUSTDOM
;
2517 if (!wbinfo_auth_krb5(string_arg
, "FILE",
2520 "Could not authenticate user "
2521 "[%s] with Kerberos "
2522 "(ccache: %s)\n", string_arg
,
2529 if (!wbinfo_klog(string_arg
)) {
2530 d_fprintf(stderr
, "Could not klog user\n");
2535 if (!wbinfo_ping()) {
2536 d_fprintf(stderr
, "could not ping winbindd!\n");
2540 case OPT_SET_AUTH_USER
:
2541 if (!wbinfo_set_auth_user(string_arg
)) {
2545 case OPT_GET_AUTH_USER
:
2546 wbinfo_get_auth_user();
2549 case OPT_CCACHE_SAVE
:
2550 if (!wbinfo_ccache_save(string_arg
)) {
2555 if (!wbinfo_getdcname(string_arg
)) {
2559 case OPT_DSGETDCNAME
:
2560 if (!wbinfo_dsgetdcname(string_arg
, 0)) {
2565 if (!wbinfo_dc_info(string_arg
)) {
2569 case OPT_SEPARATOR
: {
2570 const char sep
= winbind_separator();
2574 d_printf("%c\n", sep
);
2577 case OPT_LIST_ALL_DOMAINS
:
2578 if (!wbinfo_list_domains(true, verbose
)) {
2582 case OPT_LIST_OWN_DOMAIN
:
2583 if (!wbinfo_list_own_domain()) {
2587 case OPT_CHANGE_USER_PASSWORD
:
2588 if (!wbinfo_change_user_password(string_arg
)) {
2590 "Could not change user password "
2591 "for user %s\n", string_arg
);
2596 /* generic configuration options */
2597 case OPT_DOMAIN_NAME
:
2601 case OPT_LOGOFF_USER
:
2602 case OPT_LOGOFF_UID
:
2605 d_fprintf(stderr
, "Invalid option\n");
2606 poptPrintHelp(pc
, stderr
, 0);
2618 poptFreeContext(pc
);