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/>.
24 #include "winbind_client.h"
25 #include "libwbclient/wbclient.h"
26 #include "../libcli/auth/libcli_auth.h"
29 #define DBGC_CLASS DBGC_WINBIND
31 static struct wbcInterfaceDetails
*init_interface_details(void)
33 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
34 static struct wbcInterfaceDetails
*details
;
40 wbc_status
= wbcInterfaceDetails(&details
);
41 if (!WBC_ERROR_IS_OK(wbc_status
)) {
42 d_fprintf(stderr
, "could not obtain winbind interface details!\n");
48 static char winbind_separator_int(bool strict
)
50 struct wbcInterfaceDetails
*details
;
57 details
= init_interface_details();
60 d_fprintf(stderr
, "could not obtain winbind separator!\n");
64 /* HACK: (this module should not call lp_ funtions) */
65 return *lp_winbind_separator();
68 sep
= details
->winbind_separator
;
72 d_fprintf(stderr
, "winbind separator was NULL!\n");
76 /* HACK: (this module should not call lp_ funtions) */
77 sep
= *lp_winbind_separator();
83 static char winbind_separator(void)
85 return winbind_separator_int(false);
88 static const char *get_winbind_domain(void)
90 static struct wbcInterfaceDetails
*details
;
92 details
= init_interface_details();
95 d_fprintf(stderr
, "could not obtain winbind domain name!\n");
97 /* HACK: (this module should not call lp_ functions) */
98 return lp_workgroup();
101 return details
->netbios_domain
;
104 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
105 form DOMAIN/user into a domain and a user */
107 static bool parse_wbinfo_domain_user(const char *domuser
, fstring domain
,
111 char *p
= strchr(domuser
,winbind_separator());
114 /* Maybe it was a UPN? */
115 if ((p
= strchr(domuser
, '@')) != NULL
) {
117 fstrcpy(user
, domuser
);
121 fstrcpy(user
, domuser
);
122 fstrcpy(domain
, get_winbind_domain());
127 fstrcpy(domain
, domuser
);
128 domain
[PTR_DIFF(p
, domuser
)] = 0;
134 /* Parse string of "uid,sid" or "gid,sid" into separate int and string values.
135 * Return true if input was valid, false otherwise. */
136 static bool parse_mapping_arg(char *arg
, int *id
, char **sid
)
143 tmp
= strtok(arg
, ",");
144 *sid
= strtok(NULL
, ",");
146 if (!tmp
|| !*tmp
|| !*sid
|| !**sid
)
149 /* Because atoi() can return 0 on invalid input, which would be a valid
150 * UID/GID we must use strtoul() and do error checking */
151 *id
= strtoul(tmp
, &endptr
, 10);
153 if (endptr
[0] != '\0')
159 /* pull pwent info for a given user */
161 static bool wbinfo_get_userinfo(char *user
)
163 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
164 struct passwd
*pwd
= NULL
;
166 wbc_status
= wbcGetpwnam(user
, &pwd
);
167 if (!WBC_ERROR_IS_OK(wbc_status
)) {
171 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
174 (unsigned int)pwd
->pw_uid
,
175 (unsigned int)pwd
->pw_gid
,
183 /* pull pwent info for a given uid */
184 static bool wbinfo_get_uidinfo(int uid
)
186 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
187 struct passwd
*pwd
= NULL
;
189 wbc_status
= wbcGetpwuid(uid
, &pwd
);
190 if (!WBC_ERROR_IS_OK(wbc_status
)) {
194 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
197 (unsigned int)pwd
->pw_uid
,
198 (unsigned int)pwd
->pw_gid
,
206 static bool wbinfo_get_user_sidinfo(const char *sid_str
)
208 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
209 struct passwd
*pwd
= NULL
;
210 struct wbcDomainSid sid
;
212 wbc_status
= wbcStringToSid(sid_str
, &sid
);
213 wbc_status
= wbcGetpwsid(&sid
, &pwd
);
214 if (!WBC_ERROR_IS_OK(wbc_status
)) {
218 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
221 (unsigned int)pwd
->pw_uid
,
222 (unsigned int)pwd
->pw_gid
,
231 /* pull grent for a given group */
232 static bool wbinfo_get_groupinfo(const char *group
)
234 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
237 wbc_status
= wbcGetgrnam(group
, &grp
);
238 if (!WBC_ERROR_IS_OK(wbc_status
)) {
242 d_printf("%s:%s:%u\n",
245 (unsigned int)grp
->gr_gid
);
252 /* pull grent for a given gid */
253 static bool wbinfo_get_gidinfo(int gid
)
255 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
258 wbc_status
= wbcGetgrgid(gid
, &grp
);
259 if (!WBC_ERROR_IS_OK(wbc_status
)) {
263 d_printf("%s:%s:%u\n",
266 (unsigned int)grp
->gr_gid
);
273 /* List groups a user is a member of */
275 static bool wbinfo_get_usergroups(const char *user
)
277 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
280 gid_t
*groups
= NULL
;
284 wbc_status
= wbcGetGroups(user
, &num_groups
, &groups
);
285 if (!WBC_ERROR_IS_OK(wbc_status
)) {
289 for (i
= 0; i
< num_groups
; i
++) {
290 d_printf("%d\n", (int)groups
[i
]);
293 wbcFreeMemory(groups
);
299 /* List group SIDs a user SID is a member of */
300 static bool wbinfo_get_usersids(const char *user_sid_str
)
302 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
305 struct wbcDomainSid user_sid
, *sids
= NULL
;
309 wbc_status
= wbcStringToSid(user_sid_str
, &user_sid
);
310 if (!WBC_ERROR_IS_OK(wbc_status
)) {
314 wbc_status
= wbcLookupUserSids(&user_sid
, false, &num_sids
, &sids
);
315 if (!WBC_ERROR_IS_OK(wbc_status
)) {
319 for (i
= 0; i
< num_sids
; i
++) {
321 wbc_status
= wbcSidToString(&sids
[i
], &str
);
322 if (!WBC_ERROR_IS_OK(wbc_status
)) {
326 d_printf("%s\n", str
);
335 static bool wbinfo_get_userdomgroups(const char *user_sid_str
)
337 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
340 struct wbcDomainSid user_sid
, *sids
= NULL
;
344 wbc_status
= wbcStringToSid(user_sid_str
, &user_sid
);
345 if (!WBC_ERROR_IS_OK(wbc_status
)) {
349 wbc_status
= wbcLookupUserSids(&user_sid
, true, &num_sids
, &sids
);
350 if (!WBC_ERROR_IS_OK(wbc_status
)) {
354 for (i
= 0; i
< num_sids
; i
++) {
356 wbc_status
= wbcSidToString(&sids
[i
], &str
);
357 if (!WBC_ERROR_IS_OK(wbc_status
)) {
361 d_printf("%s\n", str
);
370 static bool wbinfo_get_sidaliases(const char *domain
,
371 const char *user_sid_str
)
373 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
374 struct wbcDomainInfo
*dinfo
= NULL
;
376 struct wbcDomainSid user_sid
;
377 uint32_t *alias_rids
= NULL
;
378 uint32_t num_alias_rids
;
379 char *domain_sid_str
= NULL
;
382 if ((domain
== NULL
) || (strequal(domain
, ".")) ||
383 (domain
[0] == '\0')) {
384 domain
= get_winbind_domain();
389 wbc_status
= wbcDomainInfo(domain
, &dinfo
);
390 if (!WBC_ERROR_IS_OK(wbc_status
)) {
391 d_printf("wbcDomainInfo(%s) failed: %s\n", domain
,
392 wbcErrorString(wbc_status
));
395 wbc_status
= wbcStringToSid(user_sid_str
, &user_sid
);
396 if (!WBC_ERROR_IS_OK(wbc_status
)) {
400 wbc_status
= wbcGetSidAliases(&dinfo
->sid
, &user_sid
, 1,
401 &alias_rids
, &num_alias_rids
);
402 if (!WBC_ERROR_IS_OK(wbc_status
)) {
406 wbc_status
= wbcSidToString(&dinfo
->sid
, &domain_sid_str
);
407 if (!WBC_ERROR_IS_OK(wbc_status
)) {
411 for (i
= 0; i
< num_alias_rids
; i
++) {
412 d_printf("%s-%d\n", domain_sid_str
, alias_rids
[i
]);
415 wbcFreeMemory(alias_rids
);
418 if (domain_sid_str
) {
419 wbcFreeMemory(domain_sid_str
);
422 wbcFreeMemory(dinfo
);
424 return (WBC_ERR_SUCCESS
== wbc_status
);
428 /* Convert NetBIOS name to IP */
430 static bool wbinfo_wins_byname(const char *name
)
432 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
435 wbc_status
= wbcResolveWinsByName(name
, &ip
);
436 if (!WBC_ERROR_IS_OK(wbc_status
)) {
440 /* Display response */
442 d_printf("%s\n", ip
);
449 /* Convert IP to NetBIOS name */
451 static bool wbinfo_wins_byip(const char *ip
)
453 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
456 wbc_status
= wbcResolveWinsByIP(ip
, &name
);
457 if (!WBC_ERROR_IS_OK(wbc_status
)) {
461 /* Display response */
463 d_printf("%s\n", name
);
470 /* List all/trusted domains */
472 static bool wbinfo_list_domains(bool list_all_domains
, bool verbose
)
474 struct wbcDomainInfo
*domain_list
= NULL
;
476 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
477 bool print_all
= !list_all_domains
&& verbose
;
480 wbc_status
= wbcListTrusts(&domain_list
, &num_domains
);
481 if (!WBC_ERROR_IS_OK(wbc_status
)) {
486 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
487 "Domain Name", "DNS Domain", "Trust Type",
488 "Transitive", "In", "Out");
491 for (i
=0; i
<num_domains
; i
++) {
493 d_printf("%-16s", domain_list
[i
].short_name
);
495 d_printf("%s", domain_list
[i
].short_name
);
500 d_printf("%-24s", domain_list
[i
].dns_name
);
502 switch(domain_list
[i
].trust_type
) {
503 case WBC_DOMINFO_TRUSTTYPE_NONE
:
506 case WBC_DOMINFO_TRUSTTYPE_FOREST
:
509 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL
:
510 d_printf("External ");
512 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST
:
513 d_printf("In-Forest ");
517 if (domain_list
[i
].trust_flags
& WBC_DOMINFO_TRUST_TRANSITIVE
) {
523 if (domain_list
[i
].trust_flags
& WBC_DOMINFO_TRUST_INCOMING
) {
529 if (domain_list
[i
].trust_flags
& WBC_DOMINFO_TRUST_OUTGOING
) {
541 /* List own domain */
543 static bool wbinfo_list_own_domain(void)
545 d_printf("%s\n", get_winbind_domain());
550 /* show sequence numbers */
551 static bool wbinfo_show_sequence(const char *domain
)
553 d_printf("This command has been deprecated. Please use the --online-status option instead.\n");
557 /* show sequence numbers */
558 static bool wbinfo_show_onlinestatus(const char *domain
)
560 struct wbcDomainInfo
*domain_list
= NULL
;
562 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
565 wbc_status
= wbcListTrusts(&domain_list
, &num_domains
);
566 if (!WBC_ERROR_IS_OK(wbc_status
)) {
570 for (i
=0; i
<num_domains
; i
++) {
574 if (!strequal(domain_list
[i
].short_name
, domain
)) {
579 is_offline
= (domain_list
[i
].domain_flags
& WBC_DOMINFO_DOMAIN_OFFLINE
);
581 d_printf("%s : %s\n",
582 domain_list
[i
].short_name
,
583 is_offline
? "offline" : "online" );
590 /* Show domain info */
592 static bool wbinfo_domain_info(const char *domain
)
594 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
595 struct wbcDomainInfo
*dinfo
= NULL
;
596 char *sid_str
= NULL
;
598 if ((domain
== NULL
) || (strequal(domain
, ".")) || (domain
[0] == '\0')) {
599 domain
= get_winbind_domain();
604 wbc_status
= wbcDomainInfo(domain
, &dinfo
);
605 if (!WBC_ERROR_IS_OK(wbc_status
)) {
609 wbc_status
= wbcSidToString(&dinfo
->sid
, &sid_str
);
610 if (!WBC_ERROR_IS_OK(wbc_status
)) {
611 wbcFreeMemory(dinfo
);
615 /* Display response */
617 d_printf("Name : %s\n", dinfo
->short_name
);
618 d_printf("Alt_Name : %s\n", dinfo
->dns_name
);
620 d_printf("SID : %s\n", sid_str
);
622 d_printf("Active Directory : %s\n",
623 (dinfo
->domain_flags
& WBC_DOMINFO_DOMAIN_AD
) ? "Yes" : "No");
624 d_printf("Native : %s\n",
625 (dinfo
->domain_flags
& WBC_DOMINFO_DOMAIN_NATIVE
) ? "Yes" : "No");
627 d_printf("Primary : %s\n",
628 (dinfo
->domain_flags
& WBC_DOMINFO_DOMAIN_PRIMARY
) ? "Yes" : "No");
630 wbcFreeMemory(sid_str
);
631 wbcFreeMemory(dinfo
);
636 /* Get a foreign DC's name */
637 static bool wbinfo_getdcname(const char *domain_name
)
639 struct winbindd_request request
;
640 struct winbindd_response response
;
642 ZERO_STRUCT(request
);
643 ZERO_STRUCT(response
);
645 fstrcpy(request
.domain_name
, domain_name
);
649 if (winbindd_request_response(WINBINDD_GETDCNAME
, &request
, &response
) !=
650 NSS_STATUS_SUCCESS
) {
651 d_fprintf(stderr
, "Could not get dc name for %s\n", domain_name
);
655 /* Display response */
657 d_printf("%s\n", response
.data
.dc_name
);
663 static bool wbinfo_dsgetdcname(const char *domain_name
, uint32_t flags
)
665 struct winbindd_request request
;
666 struct winbindd_response response
;
668 ZERO_STRUCT(request
);
669 ZERO_STRUCT(response
);
671 fstrcpy(request
.data
.dsgetdcname
.domain_name
, domain_name
);
672 request
.data
.dsgetdcname
.flags
= flags
;
674 request
.flags
|= DS_DIRECTORY_SERVICE_REQUIRED
;
678 if (winbindd_request_response(WINBINDD_DSGETDCNAME
, &request
, &response
) !=
679 NSS_STATUS_SUCCESS
) {
680 d_fprintf(stderr
, "Could not find dc for %s\n", domain_name
);
684 /* Display response */
686 d_printf("%s\n", response
.data
.dsgetdcname
.dc_unc
);
687 d_printf("%s\n", response
.data
.dsgetdcname
.dc_address
);
688 d_printf("%d\n", response
.data
.dsgetdcname
.dc_address_type
);
689 d_printf("%s\n", response
.data
.dsgetdcname
.domain_guid
);
690 d_printf("%s\n", response
.data
.dsgetdcname
.domain_name
);
691 d_printf("%s\n", response
.data
.dsgetdcname
.forest_name
);
692 d_printf("0x%08x\n", response
.data
.dsgetdcname
.dc_flags
);
693 d_printf("%s\n", response
.data
.dsgetdcname
.dc_site_name
);
694 d_printf("%s\n", response
.data
.dsgetdcname
.client_site_name
);
699 /* Check trust account password */
701 static bool wbinfo_check_secret(void)
703 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
704 struct wbcAuthErrorInfo
*error
= NULL
;
706 wbc_status
= wbcCheckTrustCredentials(NULL
, &error
);
708 d_printf("checking the trust secret via RPC calls %s\n",
709 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
711 if (wbc_status
== WBC_ERR_AUTH_ERROR
) {
712 d_fprintf(stderr
, "error code was %s (0x%x)\n",
713 error
->nt_string
, error
->nt_status
);
714 wbcFreeMemory(error
);
716 if (!WBC_ERROR_IS_OK(wbc_status
)) {
723 /* Convert uid to sid */
725 static bool wbinfo_uid_to_sid(uid_t uid
)
727 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
728 struct wbcDomainSid sid
;
729 char *sid_str
= NULL
;
733 wbc_status
= wbcUidToSid(uid
, &sid
);
734 if (!WBC_ERROR_IS_OK(wbc_status
)) {
738 wbc_status
= wbcSidToString(&sid
, &sid_str
);
739 if (!WBC_ERROR_IS_OK(wbc_status
)) {
743 /* Display response */
745 d_printf("%s\n", sid_str
);
747 wbcFreeMemory(sid_str
);
752 /* Convert gid to sid */
754 static bool wbinfo_gid_to_sid(gid_t gid
)
756 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
757 struct wbcDomainSid sid
;
758 char *sid_str
= NULL
;
762 wbc_status
= wbcGidToSid(gid
, &sid
);
763 if (!WBC_ERROR_IS_OK(wbc_status
)) {
767 wbc_status
= wbcSidToString(&sid
, &sid_str
);
768 if (!WBC_ERROR_IS_OK(wbc_status
)) {
772 /* Display response */
774 d_printf("%s\n", sid_str
);
776 wbcFreeMemory(sid_str
);
781 /* Convert sid to uid */
783 static bool wbinfo_sid_to_uid(const char *sid_str
)
785 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
786 struct wbcDomainSid sid
;
791 wbc_status
= wbcStringToSid(sid_str
, &sid
);
792 if (!WBC_ERROR_IS_OK(wbc_status
)) {
796 wbc_status
= wbcSidToUid(&sid
, &uid
);
797 if (!WBC_ERROR_IS_OK(wbc_status
)) {
801 /* Display response */
803 d_printf("%d\n", (int)uid
);
808 static bool wbinfo_sid_to_gid(const char *sid_str
)
810 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
811 struct wbcDomainSid sid
;
816 wbc_status
= wbcStringToSid(sid_str
, &sid
);
817 if (!WBC_ERROR_IS_OK(wbc_status
)) {
821 wbc_status
= wbcSidToGid(&sid
, &gid
);
822 if (!WBC_ERROR_IS_OK(wbc_status
)) {
826 /* Display response */
828 d_printf("%d\n", (int)gid
);
833 static bool wbinfo_allocate_uid(void)
835 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
840 wbc_status
= wbcAllocateUid(&uid
);
841 if (!WBC_ERROR_IS_OK(wbc_status
)) {
845 /* Display response */
847 d_printf("New uid: %u\n", (unsigned int)uid
);
852 static bool wbinfo_allocate_gid(void)
854 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
859 wbc_status
= wbcAllocateGid(&gid
);
860 if (!WBC_ERROR_IS_OK(wbc_status
)) {
864 /* Display response */
866 d_printf("New gid: %u\n", (unsigned int)gid
);
871 static bool wbinfo_set_uid_mapping(uid_t uid
, const char *sid_str
)
873 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
874 struct wbcDomainSid sid
;
878 wbc_status
= wbcStringToSid(sid_str
, &sid
);
879 if (!WBC_ERROR_IS_OK(wbc_status
)) {
883 wbc_status
= wbcSetUidMapping(uid
, &sid
);
884 if (!WBC_ERROR_IS_OK(wbc_status
)) {
888 /* Display response */
890 d_printf("uid %u now mapped to sid %s\n",
891 (unsigned int)uid
, sid_str
);
896 static bool wbinfo_set_gid_mapping(gid_t gid
, const char *sid_str
)
898 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
899 struct wbcDomainSid sid
;
903 wbc_status
= wbcStringToSid(sid_str
, &sid
);
904 if (!WBC_ERROR_IS_OK(wbc_status
)) {
908 wbc_status
= wbcSetGidMapping(gid
, &sid
);
909 if (!WBC_ERROR_IS_OK(wbc_status
)) {
913 /* Display response */
915 d_printf("gid %u now mapped to sid %s\n",
916 (unsigned int)gid
, sid_str
);
921 static bool wbinfo_remove_uid_mapping(uid_t uid
, const char *sid_str
)
923 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
924 struct wbcDomainSid sid
;
928 wbc_status
= wbcStringToSid(sid_str
, &sid
);
929 if (!WBC_ERROR_IS_OK(wbc_status
)) {
933 wbc_status
= wbcRemoveUidMapping(uid
, &sid
);
934 if (!WBC_ERROR_IS_OK(wbc_status
)) {
938 /* Display response */
940 d_printf("Removed uid %u to sid %s mapping\n",
941 (unsigned int)uid
, sid_str
);
946 static bool wbinfo_remove_gid_mapping(gid_t gid
, const char *sid_str
)
948 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
949 struct wbcDomainSid sid
;
953 wbc_status
= wbcStringToSid(sid_str
, &sid
);
954 if (!WBC_ERROR_IS_OK(wbc_status
)) {
958 wbc_status
= wbcRemoveGidMapping(gid
, &sid
);
959 if (!WBC_ERROR_IS_OK(wbc_status
)) {
963 /* Display response */
965 d_printf("Removed gid %u to sid %s mapping\n",
966 (unsigned int)gid
, sid_str
);
971 /* Convert sid to string */
973 static bool wbinfo_lookupsid(const char *sid_str
)
975 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
976 struct wbcDomainSid sid
;
979 enum wbcSidType type
;
981 /* Send off request */
983 wbc_status
= wbcStringToSid(sid_str
, &sid
);
984 if (!WBC_ERROR_IS_OK(wbc_status
)) {
988 wbc_status
= wbcLookupSid(&sid
, &domain
, &name
, &type
);
989 if (!WBC_ERROR_IS_OK(wbc_status
)) {
993 /* Display response */
995 d_printf("%s%c%s %d\n",
996 domain
, winbind_separator(), name
, type
);
1001 /* Convert sid to fullname */
1003 static bool wbinfo_lookupsid_fullname(const char *sid_str
)
1005 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1006 struct wbcDomainSid sid
;
1009 enum wbcSidType type
;
1011 /* Send off request */
1013 wbc_status
= wbcStringToSid(sid_str
, &sid
);
1014 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1018 wbc_status
= wbcGetDisplayName(&sid
, &domain
, &name
, &type
);
1019 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1023 /* Display response */
1025 d_printf("%s%c%s %d\n",
1026 domain
, winbind_separator(), name
, type
);
1031 /* Lookup a list of RIDs */
1033 static bool wbinfo_lookuprids(const char *domain
, const char *arg
)
1035 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1036 struct wbcDomainInfo
*dinfo
= NULL
;
1037 char *domain_name
= NULL
;
1038 const char **names
= NULL
;
1039 enum wbcSidType
*types
= NULL
;
1042 uint32
*rids
= NULL
;
1045 TALLOC_CTX
*mem_ctx
= NULL
;
1048 if ((domain
== NULL
) || (strequal(domain
, ".")) || (domain
[0] == '\0')) {
1049 domain
= get_winbind_domain();
1054 wbc_status
= wbcDomainInfo(domain
, &dinfo
);
1055 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1056 d_printf("wbcDomainInfo(%s) failed: %s\n", domain
,
1057 wbcErrorString(wbc_status
));
1061 mem_ctx
= talloc_new(NULL
);
1062 if (mem_ctx
== NULL
) {
1063 d_printf("talloc_new failed\n");
1071 while (next_token_talloc(mem_ctx
, &p
, &ridstr
, " ,\n")) {
1072 uint32 rid
= strtoul(ridstr
, NULL
, 10);
1073 ADD_TO_ARRAY(mem_ctx
, uint32
, rid
, &rids
, &num_rids
);
1077 d_printf("no rids\n");
1081 wbc_status
= wbcLookupRids(&dinfo
->sid
, num_rids
, rids
,
1082 (const char **)&domain_name
, &names
, &types
);
1083 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1084 d_printf("winbind_lookup_rids failed: %s\n",
1085 wbcErrorString(wbc_status
));
1089 d_printf("Domain: %s\n", domain_name
);
1091 for (i
=0; i
<num_rids
; i
++) {
1092 d_printf("%8d: %s (%s)\n", rids
[i
], names
[i
],
1093 sid_type_lookup(types
[i
]));
1099 wbcFreeMemory(dinfo
);
1102 wbcFreeMemory(domain_name
);
1105 wbcFreeMemory(names
);
1108 wbcFreeMemory(types
);
1110 TALLOC_FREE(mem_ctx
);
1114 /* Convert string to sid */
1116 static bool wbinfo_lookupname(const char *full_name
)
1118 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1119 struct wbcDomainSid sid
;
1121 enum wbcSidType type
;
1122 fstring domain_name
;
1123 fstring account_name
;
1125 /* Send off request */
1127 parse_wbinfo_domain_user(full_name
, domain_name
,
1130 wbc_status
= wbcLookupName(domain_name
, account_name
,
1132 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1136 wbc_status
= wbcSidToString(&sid
, &sid_str
);
1137 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1141 /* Display response */
1143 d_printf("%s %s (%d)\n", sid_str
, sid_type_lookup(type
), type
);
1145 wbcFreeMemory(sid_str
);
1150 static char *wbinfo_prompt_pass(const char *prefix
,
1151 const char *username
)
1154 const char *ret
= NULL
;
1156 prompt
= talloc_asprintf(talloc_tos(), "Enter %s's ", username
);
1161 prompt
= talloc_asprintf_append(prompt
, "%s ", prefix
);
1166 prompt
= talloc_asprintf_append(prompt
, "password: ");
1171 ret
= getpass(prompt
);
1172 TALLOC_FREE(prompt
);
1174 return SMB_STRDUP(ret
);
1177 /* Authenticate a user with a plaintext password */
1179 static bool wbinfo_auth_krb5(char *username
, const char *cctype
, uint32 flags
)
1181 struct winbindd_request request
;
1182 struct winbindd_response response
;
1187 /* Send off request */
1189 ZERO_STRUCT(request
);
1190 ZERO_STRUCT(response
);
1192 p
= strchr(username
, '%');
1196 fstrcpy(request
.data
.auth
.user
, username
);
1197 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
1200 fstrcpy(request
.data
.auth
.user
, username
);
1201 password
= wbinfo_prompt_pass(NULL
, username
);
1202 fstrcpy(request
.data
.auth
.pass
, password
);
1203 SAFE_FREE(password
);
1206 request
.flags
= flags
;
1208 fstrcpy(request
.data
.auth
.krb5_cc_type
, cctype
);
1210 request
.data
.auth
.uid
= geteuid();
1212 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
1214 /* Display response */
1216 d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
1217 username
, (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed", cctype
);
1219 if (response
.data
.auth
.nt_status
)
1220 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
1221 response
.data
.auth
.nt_status_string
,
1222 response
.data
.auth
.nt_status
,
1223 response
.data
.auth
.error_string
);
1225 if (result
== NSS_STATUS_SUCCESS
) {
1227 if (request
.flags
& WBFLAG_PAM_INFO3_TEXT
) {
1228 if (response
.data
.auth
.info3
.user_flgs
& NETLOGON_CACHED_ACCOUNT
) {
1229 d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
1233 if (response
.data
.auth
.krb5ccname
[0] != '\0') {
1234 d_printf("credentials were put in: %s\n", response
.data
.auth
.krb5ccname
);
1236 d_printf("no credentials cached\n");
1240 return result
== NSS_STATUS_SUCCESS
;
1243 /* Authenticate a user with a plaintext password */
1245 static bool wbinfo_auth(char *username
)
1247 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1250 char *password
= NULL
;
1253 if ((s
= SMB_STRDUP(username
)) == NULL
) {
1257 if ((p
= strchr(s
, '%')) != NULL
) {
1260 password
= SMB_STRDUP(p
);
1262 password
= wbinfo_prompt_pass(NULL
, username
);
1267 wbc_status
= wbcAuthenticateUser(name
, password
);
1269 d_printf("plaintext password authentication %s\n",
1270 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1273 if (response
.data
.auth
.nt_status
)
1274 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
1275 response
.data
.auth
.nt_status_string
,
1276 response
.data
.auth
.nt_status
,
1277 response
.data
.auth
.error_string
);
1281 SAFE_FREE(password
);
1283 return WBC_ERROR_IS_OK(wbc_status
);
1286 /* Authenticate a user with a challenge/response */
1288 static bool wbinfo_auth_crap(char *username
)
1290 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1291 struct wbcAuthUserParams params
;
1292 struct wbcAuthUserInfo
*info
= NULL
;
1293 struct wbcAuthErrorInfo
*err
= NULL
;
1294 DATA_BLOB lm
= data_blob_null
;
1295 DATA_BLOB nt
= data_blob_null
;
1297 fstring name_domain
;
1301 p
= strchr(username
, '%');
1305 pass
= SMB_STRDUP(p
+ 1);
1307 pass
= wbinfo_prompt_pass(NULL
, username
);
1310 parse_wbinfo_domain_user(username
, name_domain
, name_user
);
1312 params
.account_name
= name_user
;
1313 params
.domain_name
= name_domain
;
1314 params
.workstation_name
= NULL
;
1317 params
.parameter_control
= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
|
1318 WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
;
1320 params
.level
= WBC_AUTH_USER_LEVEL_RESPONSE
;
1322 generate_random_buffer(params
.password
.response
.challenge
, 8);
1324 if (lp_client_ntlmv2_auth()) {
1325 DATA_BLOB server_chal
;
1326 DATA_BLOB names_blob
;
1328 server_chal
= data_blob(params
.password
.response
.challenge
, 8);
1330 /* Pretend this is a login to 'us', for blob purposes */
1331 names_blob
= NTLMv2_generate_names_blob(NULL
, global_myname(), lp_workgroup());
1333 if (!SMBNTLMv2encrypt(NULL
, name_user
, name_domain
, pass
, &server_chal
,
1335 &lm
, &nt
, NULL
, NULL
)) {
1336 data_blob_free(&names_blob
);
1337 data_blob_free(&server_chal
);
1341 data_blob_free(&names_blob
);
1342 data_blob_free(&server_chal
);
1345 if (lp_client_lanman_auth()) {
1347 lm
= data_blob(NULL
, 24);
1348 ok
= SMBencrypt(pass
, params
.password
.response
.challenge
,
1351 data_blob_free(&lm
);
1354 nt
= data_blob(NULL
, 24);
1355 SMBNTencrypt(pass
, params
.password
.response
.challenge
,
1359 params
.password
.response
.nt_length
= nt
.length
;
1360 params
.password
.response
.nt_data
= nt
.data
;
1361 params
.password
.response
.lm_length
= lm
.length
;
1362 params
.password
.response
.lm_data
= lm
.data
;
1364 wbc_status
= wbcAuthenticateUserEx(¶ms
, &info
, &err
);
1366 /* Display response */
1368 d_printf("challenge/response password authentication %s\n",
1369 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1371 if (wbc_status
== WBC_ERR_AUTH_ERROR
) {
1372 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
1375 err
->display_string
);
1377 } else if (WBC_ERROR_IS_OK(wbc_status
)) {
1378 wbcFreeMemory(info
);
1381 data_blob_free(&nt
);
1382 data_blob_free(&lm
);
1385 return WBC_ERROR_IS_OK(wbc_status
);
1388 /* Authenticate a user with a plaintext password and set a token */
1390 static bool wbinfo_klog(char *username
)
1392 struct winbindd_request request
;
1393 struct winbindd_response response
;
1397 /* Send off request */
1399 ZERO_STRUCT(request
);
1400 ZERO_STRUCT(response
);
1402 p
= strchr(username
, '%');
1406 fstrcpy(request
.data
.auth
.user
, username
);
1407 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
1410 fstrcpy(request
.data
.auth
.user
, username
);
1411 fstrcpy(request
.data
.auth
.pass
, getpass("Password: "));
1414 request
.flags
|= WBFLAG_PAM_AFS_TOKEN
;
1416 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
1418 /* Display response */
1420 d_printf("plaintext password authentication %s\n",
1421 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
1423 if (response
.data
.auth
.nt_status
)
1424 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
1425 response
.data
.auth
.nt_status_string
,
1426 response
.data
.auth
.nt_status
,
1427 response
.data
.auth
.error_string
);
1429 if (result
!= NSS_STATUS_SUCCESS
)
1432 if (response
.extra_data
.data
== NULL
) {
1433 d_fprintf(stderr
, "Did not get token data\n");
1437 if (!afs_settoken_str((char *)response
.extra_data
.data
)) {
1438 d_fprintf(stderr
, "Could not set token\n");
1442 d_printf("Successfully created AFS token\n");
1446 /* Print domain users */
1448 static bool print_domain_users(const char *domain
)
1450 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1452 uint32_t num_users
= 0;
1453 const char **users
= NULL
;
1455 /* Send request to winbind daemon */
1457 /* '.' is the special sign for our own domain */
1458 if (domain
&& strcmp(domain
, ".") == 0) {
1459 domain
= get_winbind_domain();
1462 wbc_status
= wbcListUsers(domain
, &num_users
, &users
);
1463 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1467 for (i
=0; i
< num_users
; i
++) {
1468 d_printf("%s\n", users
[i
]);
1471 wbcFreeMemory(users
);
1476 /* Print domain groups */
1478 static bool print_domain_groups(const char *domain
)
1480 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
1482 uint32_t num_groups
= 0;
1483 const char **groups
= NULL
;
1485 /* Send request to winbind daemon */
1487 /* '.' is the special sign for our own domain */
1488 if (domain
&& strcmp(domain
, ".") == 0) {
1489 domain
= get_winbind_domain();
1492 wbc_status
= wbcListGroups(domain
, &num_groups
, &groups
);
1493 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1497 for (i
=0; i
< num_groups
; i
++) {
1498 d_printf("%s\n", groups
[i
]);
1501 wbcFreeMemory(groups
);
1506 /* Set the authorised user for winbindd access in secrets.tdb */
1508 static bool wbinfo_set_auth_user(char *username
)
1510 const char *password
;
1512 fstring user
, domain
;
1514 /* Separate into user and password */
1516 parse_wbinfo_domain_user(username
, domain
, user
);
1518 p
= strchr(user
, '%');
1524 char *thepass
= getpass("Password: ");
1531 /* Store or remove DOMAIN\username%password in secrets.tdb */
1537 if (!secrets_store(SECRETS_AUTH_USER
, user
,
1538 strlen(user
) + 1)) {
1539 d_fprintf(stderr
, "error storing username\n");
1543 /* We always have a domain name added by the
1544 parse_wbinfo_domain_user() function. */
1546 if (!secrets_store(SECRETS_AUTH_DOMAIN
, domain
,
1547 strlen(domain
) + 1)) {
1548 d_fprintf(stderr
, "error storing domain name\n");
1553 secrets_delete(SECRETS_AUTH_USER
);
1554 secrets_delete(SECRETS_AUTH_DOMAIN
);
1559 if (!secrets_store(SECRETS_AUTH_PASSWORD
, password
,
1560 strlen(password
) + 1)) {
1561 d_fprintf(stderr
, "error storing password\n");
1566 secrets_delete(SECRETS_AUTH_PASSWORD
);
1571 static void wbinfo_get_auth_user(void)
1573 char *user
, *domain
, *password
;
1575 /* Lift data from secrets file */
1577 secrets_fetch_ipc_userpass(&user
, &domain
, &password
);
1579 if ((!user
|| !*user
) && (!domain
|| !*domain
) && (!password
|| !*password
)){
1583 SAFE_FREE(password
);
1584 d_printf("No authorised user configured\n");
1588 /* Pretty print authorised user info */
1590 d_printf("%s%s%s%s%s\n", domain
? domain
: "", domain
? lp_winbind_separator(): "",
1591 user
, password
? "%" : "", password
? password
: "");
1595 SAFE_FREE(password
);
1598 static bool wbinfo_ping(void)
1602 wbc_status
= wbcPing();
1604 /* Display response */
1606 d_printf("Ping to winbindd %s\n",
1607 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1609 return WBC_ERROR_IS_OK(wbc_status
);
1612 static bool wbinfo_change_user_password(const char *username
)
1615 char *old_password
= NULL
;
1616 char *new_password
= NULL
;
1618 old_password
= wbinfo_prompt_pass("old", username
);
1619 new_password
= wbinfo_prompt_pass("new", username
);
1621 wbc_status
= wbcChangeUserPassword(username
, old_password
, new_password
);
1623 /* Display response */
1625 d_printf("Password change for user %s %s\n", username
,
1626 WBC_ERROR_IS_OK(wbc_status
) ? "succeeded" : "failed");
1628 SAFE_FREE(old_password
);
1629 SAFE_FREE(new_password
);
1631 return WBC_ERROR_IS_OK(wbc_status
);
1637 OPT_SET_AUTH_USER
= 1000,
1648 OPT_SET_UID_MAPPING
,
1649 OPT_SET_GID_MAPPING
,
1650 OPT_REMOVE_UID_MAPPING
,
1651 OPT_REMOVE_GID_MAPPING
,
1653 OPT_LIST_ALL_DOMAINS
,
1654 OPT_LIST_OWN_DOMAIN
,
1661 OPT_CHANGE_USER_PASSWORD
,
1665 int main(int argc
, char **argv
, char **envp
)
1668 TALLOC_CTX
*frame
= talloc_stackframe();
1670 static char *string_arg
;
1671 char *string_subarg
= NULL
;
1672 static char *opt_domain_name
;
1674 int int_subarg
= -1;
1676 bool verbose
= false;
1678 struct poptOption long_options
[] = {
1681 /* longName, shortName, argInfo, argPtr, value, descrip,
1684 { "domain-users", 'u', POPT_ARG_NONE
, 0, 'u', "Lists all domain users", "domain"},
1685 { "domain-groups", 'g', POPT_ARG_NONE
, 0, 'g', "Lists all domain groups", "domain" },
1686 { "WINS-by-name", 'N', POPT_ARG_STRING
, &string_arg
, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1687 { "WINS-by-ip", 'I', POPT_ARG_STRING
, &string_arg
, 'I', "Converts IP address to NetBIOS name", "IP" },
1688 { "name-to-sid", 'n', POPT_ARG_STRING
, &string_arg
, 'n', "Converts name to sid", "NAME" },
1689 { "sid-to-name", 's', POPT_ARG_STRING
, &string_arg
, 's', "Converts sid to name", "SID" },
1690 { "sid-to-fullname", 0, POPT_ARG_STRING
, &string_arg
,
1691 OPT_SID_TO_FULLNAME
, "Converts sid to fullname", "SID" },
1692 { "lookup-rids", 'R', POPT_ARG_STRING
, &string_arg
, 'R', "Converts RIDs to names", "RIDs" },
1693 { "uid-to-sid", 'U', POPT_ARG_INT
, &int_arg
, 'U', "Converts uid to sid" , "UID" },
1694 { "gid-to-sid", 'G', POPT_ARG_INT
, &int_arg
, 'G', "Converts gid to sid", "GID" },
1695 { "sid-to-uid", 'S', POPT_ARG_STRING
, &string_arg
, 'S', "Converts sid to uid", "SID" },
1696 { "sid-to-gid", 'Y', POPT_ARG_STRING
, &string_arg
, 'Y', "Converts sid to gid", "SID" },
1697 { "allocate-uid", 0, POPT_ARG_NONE
, 0, OPT_ALLOCATE_UID
,
1698 "Get a new UID out of idmap" },
1699 { "allocate-gid", 0, POPT_ARG_NONE
, 0, OPT_ALLOCATE_GID
,
1700 "Get a new GID out of idmap" },
1701 { "set-uid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_SET_UID_MAPPING
, "Create or modify uid to sid mapping in idmap", "UID,SID" },
1702 { "set-gid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_SET_GID_MAPPING
, "Create or modify gid to sid mapping in idmap", "GID,SID" },
1703 { "remove-uid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_REMOVE_UID_MAPPING
, "Remove uid to sid mapping in idmap", "UID,SID" },
1704 { "remove-gid-mapping", 0, POPT_ARG_STRING
, &string_arg
, OPT_REMOVE_GID_MAPPING
, "Remove gid to sid mapping in idmap", "GID,SID" },
1705 { "check-secret", 't', POPT_ARG_NONE
, 0, 't', "Check shared secret" },
1706 { "trusted-domains", 'm', POPT_ARG_NONE
, 0, 'm', "List trusted domains" },
1707 { "all-domains", 0, POPT_ARG_NONE
, 0, OPT_LIST_ALL_DOMAINS
, "List all domains (trusted and own domain)" },
1708 { "own-domain", 0, POPT_ARG_NONE
, 0, OPT_LIST_OWN_DOMAIN
, "List own domain" },
1709 { "sequence", 0, POPT_ARG_NONE
, 0, OPT_SEQUENCE
, "Show sequence numbers of all domains" },
1710 { "online-status", 0, POPT_ARG_NONE
, 0, OPT_ONLINESTATUS
, "Show whether domains are marked as online or offline"},
1711 { "domain-info", 'D', POPT_ARG_STRING
, &string_arg
, 'D', "Show most of the info we have about the domain" },
1712 { "user-info", 'i', POPT_ARG_STRING
, &string_arg
, 'i', "Get user info", "USER" },
1713 { "uid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_UID_INFO
, "Get user info from uid", "UID" },
1714 { "group-info", 0, POPT_ARG_STRING
, &string_arg
, OPT_GROUP_INFO
, "Get group info", "GROUP" },
1715 { "user-sidinfo", 0, POPT_ARG_STRING
, &string_arg
, OPT_USER_SIDINFO
, "Get user info from sid", "SID" },
1716 { "gid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_GID_INFO
, "Get group info from gid", "GID" },
1717 { "user-groups", 'r', POPT_ARG_STRING
, &string_arg
, 'r', "Get user groups", "USER" },
1718 { "user-domgroups", 0, POPT_ARG_STRING
, &string_arg
,
1719 OPT_USERDOMGROUPS
, "Get user domain groups", "SID" },
1720 { "sid-aliases", 0, POPT_ARG_STRING
, &string_arg
, OPT_SIDALIASES
, "Get sid aliases", "SID" },
1721 { "user-sids", 0, POPT_ARG_STRING
, &string_arg
, OPT_USERSIDS
, "Get user group sids for user SID", "SID" },
1722 { "authenticate", 'a', POPT_ARG_STRING
, &string_arg
, 'a', "authenticate user", "user%password" },
1723 { "set-auth-user", 0, POPT_ARG_STRING
, &string_arg
, OPT_SET_AUTH_USER
, "Store user and password used by winbindd (root only)", "user%password" },
1724 { "getdcname", 0, POPT_ARG_STRING
, &string_arg
, OPT_GETDCNAME
,
1725 "Get a DC name for a foreign domain", "domainname" },
1726 { "dsgetdcname", 0, POPT_ARG_STRING
, &string_arg
, OPT_DSGETDCNAME
, "Find a DC for a domain", "domainname" },
1727 { "get-auth-user", 0, POPT_ARG_NONE
, NULL
, OPT_GET_AUTH_USER
, "Retrieve user and password used by winbindd (root only)", NULL
},
1728 { "ping", 'p', POPT_ARG_NONE
, 0, 'p', "Ping winbindd to see if it is alive" },
1729 { "domain", 0, POPT_ARG_STRING
, &opt_domain_name
, OPT_DOMAIN_NAME
, "Define to the domain to restrict operation", "domain" },
1730 #ifdef WITH_FAKE_KASERVER
1731 { "klog", 'k', POPT_ARG_STRING
, &string_arg
, 'k', "set an AFS token from winbind", "user%password" },
1734 { "krb5auth", 'K', POPT_ARG_STRING
, &string_arg
, 'K', "authenticate user using Kerberos", "user%password" },
1735 /* destroys wbinfo --help output */
1736 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1738 { "separator", 0, POPT_ARG_NONE
, 0, OPT_SEPARATOR
, "Get the active winbind separator", NULL
},
1739 { "verbose", 0, POPT_ARG_NONE
, 0, OPT_VERBOSE
, "Print additional information per command", NULL
},
1740 { "change-user-password", 0, POPT_ARG_STRING
, &string_arg
, OPT_CHANGE_USER_PASSWORD
, "Change the password for a user", NULL
},
1741 POPT_COMMON_CONFIGFILE
1746 /* Samba client initialisation */
1752 pc
= poptGetContext("wbinfo", argc
, (const char **)argv
, long_options
, 0);
1754 /* Parse command line options */
1757 poptPrintHelp(pc
, stderr
, 0);
1761 while((opt
= poptGetNextOpt(pc
)) != -1) {
1762 /* get the generic configuration parameters like --domain */
1770 poptFreeContext(pc
);
1772 if (!lp_load(get_dyn_CONFIGFILE(), true, false, false, true)) {
1773 d_fprintf(stderr
, "wbinfo: error opening config file %s. Error was %s\n",
1774 get_dyn_CONFIGFILE(), strerror(errno
));
1783 pc
= poptGetContext(NULL
, argc
, (const char **)argv
, long_options
,
1784 POPT_CONTEXT_KEEP_FIRST
);
1786 while((opt
= poptGetNextOpt(pc
)) != -1) {
1789 if (!print_domain_users(opt_domain_name
)) {
1790 d_fprintf(stderr
, "Error looking up domain users\n");
1795 if (!print_domain_groups(opt_domain_name
)) {
1796 d_fprintf(stderr
, "Error looking up domain groups\n");
1801 if (!wbinfo_lookupsid(string_arg
)) {
1802 d_fprintf(stderr
, "Could not lookup sid %s\n", string_arg
);
1806 case OPT_SID_TO_FULLNAME
:
1807 if (!wbinfo_lookupsid_fullname(string_arg
)) {
1808 d_fprintf(stderr
, "Could not lookup sid %s\n",
1814 if (!wbinfo_lookuprids(opt_domain_name
, string_arg
)) {
1815 d_fprintf(stderr
, "Could not lookup RIDs %s\n", string_arg
);
1820 if (!wbinfo_lookupname(string_arg
)) {
1821 d_fprintf(stderr
, "Could not lookup name %s\n", string_arg
);
1826 if (!wbinfo_wins_byname(string_arg
)) {
1827 d_fprintf(stderr
, "Could not lookup WINS by name %s\n", string_arg
);
1832 if (!wbinfo_wins_byip(string_arg
)) {
1833 d_fprintf(stderr
, "Could not lookup WINS by IP %s\n", string_arg
);
1838 if (!wbinfo_uid_to_sid(int_arg
)) {
1839 d_fprintf(stderr
, "Could not convert uid %d to sid\n", int_arg
);
1844 if (!wbinfo_gid_to_sid(int_arg
)) {
1845 d_fprintf(stderr
, "Could not convert gid %d to sid\n",
1851 if (!wbinfo_sid_to_uid(string_arg
)) {
1852 d_fprintf(stderr
, "Could not convert sid %s to uid\n",
1858 if (!wbinfo_sid_to_gid(string_arg
)) {
1859 d_fprintf(stderr
, "Could not convert sid %s to gid\n",
1864 case OPT_ALLOCATE_UID
:
1865 if (!wbinfo_allocate_uid()) {
1866 d_fprintf(stderr
, "Could not allocate a uid\n");
1870 case OPT_ALLOCATE_GID
:
1871 if (!wbinfo_allocate_gid()) {
1872 d_fprintf(stderr
, "Could not allocate a gid\n");
1876 case OPT_SET_UID_MAPPING
:
1877 if (!parse_mapping_arg(string_arg
, &int_subarg
,
1879 !wbinfo_set_uid_mapping(int_subarg
, string_subarg
))
1881 d_fprintf(stderr
, "Could not create or modify "
1882 "uid to sid mapping\n");
1886 case OPT_SET_GID_MAPPING
:
1887 if (!parse_mapping_arg(string_arg
, &int_subarg
,
1889 !wbinfo_set_gid_mapping(int_subarg
, string_subarg
))
1891 d_fprintf(stderr
, "Could not create or modify "
1892 "gid to sid mapping\n");
1896 case OPT_REMOVE_UID_MAPPING
:
1897 if (!parse_mapping_arg(string_arg
, &int_subarg
,
1899 !wbinfo_remove_uid_mapping(int_subarg
,
1902 d_fprintf(stderr
, "Could not remove uid to sid "
1907 case OPT_REMOVE_GID_MAPPING
:
1908 if (!parse_mapping_arg(string_arg
, &int_subarg
,
1910 !wbinfo_remove_gid_mapping(int_subarg
,
1913 d_fprintf(stderr
, "Could not remove gid to sid "
1919 if (!wbinfo_check_secret()) {
1920 d_fprintf(stderr
, "Could not check secret\n");
1925 if (!wbinfo_list_domains(false, verbose
)) {
1926 d_fprintf(stderr
, "Could not list trusted domains\n");
1931 if (!wbinfo_show_sequence(opt_domain_name
)) {
1932 d_fprintf(stderr
, "Could not show sequence numbers\n");
1936 case OPT_ONLINESTATUS
:
1937 if (!wbinfo_show_onlinestatus(opt_domain_name
)) {
1938 d_fprintf(stderr
, "Could not show online-status\n");
1943 if (!wbinfo_domain_info(string_arg
)) {
1944 d_fprintf(stderr
, "Could not get domain info\n");
1949 if (!wbinfo_get_userinfo(string_arg
)) {
1950 d_fprintf(stderr
, "Could not get info for user %s\n",
1955 case OPT_USER_SIDINFO
:
1956 if ( !wbinfo_get_user_sidinfo(string_arg
)) {
1957 d_fprintf(stderr
, "Could not get info for user sid %s\n",
1963 if ( !wbinfo_get_uidinfo(int_arg
)) {
1964 d_fprintf(stderr
, "Could not get info for uid "
1969 case OPT_GROUP_INFO
:
1970 if ( !wbinfo_get_groupinfo(string_arg
)) {
1971 d_fprintf(stderr
, "Could not get info for "
1972 "group %s\n", string_arg
);
1977 if ( !wbinfo_get_gidinfo(int_arg
)) {
1978 d_fprintf(stderr
, "Could not get info for gid "
1984 if (!wbinfo_get_usergroups(string_arg
)) {
1985 d_fprintf(stderr
, "Could not get groups for user %s\n",
1991 if (!wbinfo_get_usersids(string_arg
)) {
1992 d_fprintf(stderr
, "Could not get group SIDs for user SID %s\n",
1997 case OPT_USERDOMGROUPS
:
1998 if (!wbinfo_get_userdomgroups(string_arg
)) {
1999 d_fprintf(stderr
, "Could not get user's domain groups "
2000 "for user SID %s\n", string_arg
);
2004 case OPT_SIDALIASES
:
2005 if (!wbinfo_get_sidaliases(opt_domain_name
, string_arg
)) {
2006 d_fprintf(stderr
, "Could not get sid aliases "
2007 "for user SID %s\n", string_arg
);
2012 bool got_error
= false;
2014 if (!wbinfo_auth(string_arg
)) {
2015 d_fprintf(stderr
, "Could not authenticate user %s with "
2016 "plaintext password\n", string_arg
);
2020 if (!wbinfo_auth_crap(string_arg
)) {
2021 d_fprintf(stderr
, "Could not authenticate user %s with "
2022 "challenge/response\n", string_arg
);
2031 uint32 flags
= WBFLAG_PAM_KRB5
|
2032 WBFLAG_PAM_CACHED_LOGIN
|
2033 WBFLAG_PAM_FALLBACK_AFTER_KRB5
|
2034 WBFLAG_PAM_INFO3_TEXT
|
2035 WBFLAG_PAM_CONTACT_TRUSTDOM
;
2037 if (!wbinfo_auth_krb5(string_arg
, "FILE", flags
)) {
2038 d_fprintf(stderr
, "Could not authenticate user [%s] with "
2039 "Kerberos (ccache: %s)\n", string_arg
, "FILE");
2045 if (!wbinfo_klog(string_arg
)) {
2046 d_fprintf(stderr
, "Could not klog user\n");
2051 if (!wbinfo_ping()) {
2052 d_fprintf(stderr
, "could not ping winbindd!\n");
2056 case OPT_SET_AUTH_USER
:
2057 if (!wbinfo_set_auth_user(string_arg
)) {
2061 case OPT_GET_AUTH_USER
:
2062 wbinfo_get_auth_user();
2065 if (!wbinfo_getdcname(string_arg
)) {
2069 case OPT_DSGETDCNAME
:
2070 if (!wbinfo_dsgetdcname(string_arg
, 0)) {
2074 case OPT_SEPARATOR
: {
2075 const char sep
= winbind_separator_int(true);
2079 d_printf("%c\n", sep
);
2082 case OPT_LIST_ALL_DOMAINS
:
2083 if (!wbinfo_list_domains(true, verbose
)) {
2087 case OPT_LIST_OWN_DOMAIN
:
2088 if (!wbinfo_list_own_domain()) {
2092 case OPT_CHANGE_USER_PASSWORD
:
2093 if (!wbinfo_change_user_password(string_arg
)) {
2094 d_fprintf(stderr
, "Could not change user password "
2095 "for user %s\n", string_arg
);
2100 /* generic configuration options */
2101 case OPT_DOMAIN_NAME
:
2106 d_fprintf(stderr
, "Invalid option\n");
2107 poptPrintHelp(pc
, stderr
, 0);
2117 talloc_destroy(frame
);
2119 poptFreeContext(pc
);