s3 wbinfo: Only call afs_settoken_str if compiled with WITH_FAKE_KASERVER
[Samba/fernandojvsilva.git] / nsswitch / wbinfo.c
blob5fe0090567aa0da34f7b2e544649ec69e2f5d6d4
1 /*
2 Unix SMB/CIFS implementation.
4 Winbind status program.
6 Copyright (C) Tim Potter 2000-2003
7 Copyright (C) Andrew Bartlett 2002
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "winbind_client.h"
25 #include "libwbclient/wbclient.h"
26 #include "lib/popt/popt.h"
27 #include "../libcli/auth/libcli_auth.h"
28 #if !(_SAMBA_VERSION_) < 4
29 #include "lib/cmdline/popt_common.h"
30 #endif
33 #undef DBGC_CLASS
34 #define DBGC_CLASS DBGC_WINBIND
36 static struct wbcInterfaceDetails *init_interface_details(void)
38 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
39 static struct wbcInterfaceDetails *details;
41 if (details) {
42 return details;
45 wbc_status = wbcInterfaceDetails(&details);
46 if (!WBC_ERROR_IS_OK(wbc_status)) {
47 d_fprintf(stderr, "could not obtain winbind interface "
48 "details!\n");
51 return details;
54 static char winbind_separator(void)
56 struct wbcInterfaceDetails *details;
57 static bool got_sep;
58 static char sep;
60 if (got_sep)
61 return sep;
63 details = init_interface_details();
65 if (!details) {
66 d_fprintf(stderr, "could not obtain winbind separator!\n");
67 return 0;
70 sep = details->winbind_separator;
71 got_sep = true;
73 if (!sep) {
74 d_fprintf(stderr, "winbind separator was NULL!\n");
75 return 0;
78 return sep;
81 static const char *get_winbind_domain(void)
83 static struct wbcInterfaceDetails *details;
85 details = init_interface_details();
87 if (!details) {
88 d_fprintf(stderr, "could not obtain winbind domain name!\n");
89 return 0;
92 return details->netbios_domain;
95 static const char *get_winbind_netbios_name(void)
97 static struct wbcInterfaceDetails *details;
99 details = init_interface_details();
101 if (!details) {
102 d_fprintf(stderr, "could not obtain winbind netbios name!\n");
103 return 0;
106 return details->netbios_name;
109 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
110 form DOMAIN/user into a domain and a user */
112 static bool parse_wbinfo_domain_user(const char *domuser, fstring domain,
113 fstring user)
116 char *p = strchr(domuser,winbind_separator());
118 if (!p) {
119 /* Maybe it was a UPN? */
120 if ((p = strchr(domuser, '@')) != NULL) {
121 fstrcpy(domain, "");
122 fstrcpy(user, domuser);
123 return true;
126 fstrcpy(user, domuser);
127 fstrcpy(domain, get_winbind_domain());
128 return true;
131 fstrcpy(user, p+1);
132 fstrcpy(domain, domuser);
133 domain[PTR_DIFF(p, domuser)] = 0;
134 strupper_m(domain);
136 return true;
139 /* Parse string of "uid,sid" or "gid,sid" into separate int and string values.
140 * Return true if input was valid, false otherwise. */
141 static bool parse_mapping_arg(char *arg, int *id, char **sid)
143 char *tmp, *endptr;
145 if (!arg || !*arg)
146 return false;
148 tmp = strtok(arg, ",");
149 *sid = strtok(NULL, ",");
151 if (!tmp || !*tmp || !*sid || !**sid)
152 return false;
154 /* Because atoi() can return 0 on invalid input, which would be a valid
155 * UID/GID we must use strtoul() and do error checking */
156 *id = strtoul(tmp, &endptr, 10);
158 if (endptr[0] != '\0')
159 return false;
161 return true;
164 /* pull pwent info for a given user */
166 static bool wbinfo_get_userinfo(char *user)
168 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
169 struct passwd *pwd = NULL;
171 wbc_status = wbcGetpwnam(user, &pwd);
172 if (!WBC_ERROR_IS_OK(wbc_status)) {
173 return false;
176 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
177 pwd->pw_name,
178 pwd->pw_passwd,
179 (unsigned int)pwd->pw_uid,
180 (unsigned int)pwd->pw_gid,
181 pwd->pw_gecos,
182 pwd->pw_dir,
183 pwd->pw_shell);
185 return true;
188 /* pull pwent info for a given uid */
189 static bool wbinfo_get_uidinfo(int uid)
191 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
192 struct passwd *pwd = NULL;
194 wbc_status = wbcGetpwuid(uid, &pwd);
195 if (!WBC_ERROR_IS_OK(wbc_status)) {
196 return false;
199 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
200 pwd->pw_name,
201 pwd->pw_passwd,
202 (unsigned int)pwd->pw_uid,
203 (unsigned int)pwd->pw_gid,
204 pwd->pw_gecos,
205 pwd->pw_dir,
206 pwd->pw_shell);
208 return true;
211 static bool wbinfo_get_user_sidinfo(const char *sid_str)
213 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
214 struct passwd *pwd = NULL;
215 struct wbcDomainSid sid;
217 wbc_status = wbcStringToSid(sid_str, &sid);
218 wbc_status = wbcGetpwsid(&sid, &pwd);
219 if (!WBC_ERROR_IS_OK(wbc_status)) {
220 return false;
223 d_printf("%s:%s:%u:%u:%s:%s:%s\n",
224 pwd->pw_name,
225 pwd->pw_passwd,
226 (unsigned int)pwd->pw_uid,
227 (unsigned int)pwd->pw_gid,
228 pwd->pw_gecos,
229 pwd->pw_dir,
230 pwd->pw_shell);
232 return true;
236 /* pull grent for a given group */
237 static bool wbinfo_get_groupinfo(const char *group)
239 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
240 struct group *grp;
241 char **mem;
243 wbc_status = wbcGetgrnam(group, &grp);
244 if (!WBC_ERROR_IS_OK(wbc_status)) {
245 return false;
248 d_printf("%s:%s:%u:",
249 grp->gr_name,
250 grp->gr_passwd,
251 (unsigned int)grp->gr_gid);
253 mem = grp->gr_mem;
254 while (*mem != NULL) {
255 d_printf("%s%s", *mem, *(mem+1) != NULL ? "," : "");
256 mem += 1;
258 d_printf("\n");
260 wbcFreeMemory(grp);
262 return true;
265 /* pull grent for a given gid */
266 static bool wbinfo_get_gidinfo(int gid)
268 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
269 struct group *grp;
270 char **mem;
272 wbc_status = wbcGetgrgid(gid, &grp);
273 if (!WBC_ERROR_IS_OK(wbc_status)) {
274 return false;
277 d_printf("%s:%s:%u:",
278 grp->gr_name,
279 grp->gr_passwd,
280 (unsigned int)grp->gr_gid);
282 mem = grp->gr_mem;
283 while (*mem != NULL) {
284 d_printf("%s%s", *mem, *(mem+1) != NULL ? "," : "");
285 mem += 1;
287 d_printf("\n");
289 wbcFreeMemory(grp);
291 return true;
294 /* List groups a user is a member of */
296 static bool wbinfo_get_usergroups(const char *user)
298 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
299 uint32_t num_groups;
300 uint32_t i;
301 gid_t *groups = NULL;
303 /* Send request */
305 wbc_status = wbcGetGroups(user, &num_groups, &groups);
306 if (!WBC_ERROR_IS_OK(wbc_status)) {
307 return false;
310 for (i = 0; i < num_groups; i++) {
311 d_printf("%d\n", (int)groups[i]);
314 wbcFreeMemory(groups);
316 return true;
320 /* List group SIDs a user SID is a member of */
321 static bool wbinfo_get_usersids(const char *user_sid_str)
323 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
324 uint32_t num_sids;
325 uint32_t i;
326 struct wbcDomainSid user_sid, *sids = NULL;
328 /* Send request */
330 wbc_status = wbcStringToSid(user_sid_str, &user_sid);
331 if (!WBC_ERROR_IS_OK(wbc_status)) {
332 return false;
335 wbc_status = wbcLookupUserSids(&user_sid, false, &num_sids, &sids);
336 if (!WBC_ERROR_IS_OK(wbc_status)) {
337 return false;
340 for (i = 0; i < num_sids; i++) {
341 char *str = NULL;
342 wbc_status = wbcSidToString(&sids[i], &str);
343 if (!WBC_ERROR_IS_OK(wbc_status)) {
344 wbcFreeMemory(sids);
345 return false;
347 d_printf("%s\n", str);
348 wbcFreeMemory(str);
351 wbcFreeMemory(sids);
353 return true;
356 static bool wbinfo_get_userdomgroups(const char *user_sid_str)
358 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
359 uint32_t num_sids;
360 uint32_t i;
361 struct wbcDomainSid user_sid, *sids = NULL;
363 /* Send request */
365 wbc_status = wbcStringToSid(user_sid_str, &user_sid);
366 if (!WBC_ERROR_IS_OK(wbc_status)) {
367 return false;
370 wbc_status = wbcLookupUserSids(&user_sid, true, &num_sids, &sids);
371 if (!WBC_ERROR_IS_OK(wbc_status)) {
372 return false;
375 for (i = 0; i < num_sids; i++) {
376 char *str = NULL;
377 wbc_status = wbcSidToString(&sids[i], &str);
378 if (!WBC_ERROR_IS_OK(wbc_status)) {
379 wbcFreeMemory(sids);
380 return false;
382 d_printf("%s\n", str);
383 wbcFreeMemory(str);
386 wbcFreeMemory(sids);
388 return true;
391 static bool wbinfo_get_sidaliases(const char *domain,
392 const char *user_sid_str)
394 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
395 struct wbcDomainInfo *dinfo = NULL;
396 uint32_t i;
397 struct wbcDomainSid user_sid;
398 uint32_t *alias_rids = NULL;
399 uint32_t num_alias_rids;
400 char *domain_sid_str = NULL;
402 /* Send request */
403 if ((domain == NULL) || (strequal(domain, ".")) ||
404 (domain[0] == '\0')) {
405 domain = get_winbind_domain();
408 /* Send request */
410 wbc_status = wbcDomainInfo(domain, &dinfo);
411 if (!WBC_ERROR_IS_OK(wbc_status)) {
412 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
413 wbcErrorString(wbc_status));
414 goto done;
416 wbc_status = wbcStringToSid(user_sid_str, &user_sid);
417 if (!WBC_ERROR_IS_OK(wbc_status)) {
418 goto done;
421 wbc_status = wbcGetSidAliases(&dinfo->sid, &user_sid, 1,
422 &alias_rids, &num_alias_rids);
423 if (!WBC_ERROR_IS_OK(wbc_status)) {
424 goto done;
427 wbc_status = wbcSidToString(&dinfo->sid, &domain_sid_str);
428 if (!WBC_ERROR_IS_OK(wbc_status)) {
429 goto done;
432 for (i = 0; i < num_alias_rids; i++) {
433 d_printf("%s-%d\n", domain_sid_str, alias_rids[i]);
436 wbcFreeMemory(alias_rids);
438 done:
439 if (domain_sid_str) {
440 wbcFreeMemory(domain_sid_str);
442 if (dinfo) {
443 wbcFreeMemory(dinfo);
445 return (WBC_ERR_SUCCESS == wbc_status);
449 /* Convert NetBIOS name to IP */
451 static bool wbinfo_wins_byname(const char *name)
453 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
454 char *ip = NULL;
456 wbc_status = wbcResolveWinsByName(name, &ip);
457 if (!WBC_ERROR_IS_OK(wbc_status)) {
458 return false;
461 /* Display response */
463 d_printf("%s\n", ip);
465 wbcFreeMemory(ip);
467 return true;
470 /* Convert IP to NetBIOS name */
472 static bool wbinfo_wins_byip(const char *ip)
474 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
475 char *name = NULL;
477 wbc_status = wbcResolveWinsByIP(ip, &name);
478 if (!WBC_ERROR_IS_OK(wbc_status)) {
479 return false;
482 /* Display response */
484 d_printf("%s\n", name);
486 wbcFreeMemory(name);
488 return true;
491 /* List all/trusted domains */
493 static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
495 struct wbcDomainInfo *domain_list = NULL;
496 size_t num_domains;
497 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
498 bool print_all = !list_all_domains && verbose;
499 int i;
501 wbc_status = wbcListTrusts(&domain_list, &num_domains);
502 if (!WBC_ERROR_IS_OK(wbc_status)) {
503 return false;
506 if (print_all) {
507 d_printf("%-16s%-24s%-12s%-12s%-5s%-5s\n",
508 "Domain Name", "DNS Domain", "Trust Type",
509 "Transitive", "In", "Out");
512 for (i=0; i<num_domains; i++) {
513 if (print_all) {
514 d_printf("%-16s", domain_list[i].short_name);
515 } else {
516 d_printf("%s", domain_list[i].short_name);
517 d_printf("\n");
518 continue;
521 d_printf("%-24s", domain_list[i].dns_name);
523 switch(domain_list[i].trust_type) {
524 case WBC_DOMINFO_TRUSTTYPE_NONE:
525 d_printf("None ");
526 break;
527 case WBC_DOMINFO_TRUSTTYPE_FOREST:
528 d_printf("Forest ");
529 break;
530 case WBC_DOMINFO_TRUSTTYPE_EXTERNAL:
531 d_printf("External ");
532 break;
533 case WBC_DOMINFO_TRUSTTYPE_IN_FOREST:
534 d_printf("In-Forest ");
535 break;
538 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_TRANSITIVE) {
539 d_printf("Yes ");
540 } else {
541 d_printf("No ");
544 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_INCOMING) {
545 d_printf("Yes ");
546 } else {
547 d_printf("No ");
550 if (domain_list[i].trust_flags & WBC_DOMINFO_TRUST_OUTGOING) {
551 d_printf("Yes ");
552 } else {
553 d_printf("No ");
556 d_printf("\n");
559 return true;
562 /* List own domain */
564 static bool wbinfo_list_own_domain(void)
566 d_printf("%s\n", get_winbind_domain());
568 return true;
571 /* show sequence numbers */
572 static bool wbinfo_show_sequence(const char *domain)
574 d_printf("This command has been deprecated. Please use the "
575 "--online-status option instead.\n");
576 return false;
579 /* show sequence numbers */
580 static bool wbinfo_show_onlinestatus(const char *domain)
582 struct wbcDomainInfo *domain_list = NULL;
583 size_t num_domains;
584 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
585 int i;
587 wbc_status = wbcListTrusts(&domain_list, &num_domains);
588 if (!WBC_ERROR_IS_OK(wbc_status)) {
589 return false;
592 for (i=0; i<num_domains; i++) {
593 bool is_offline;
595 if (domain) {
596 if (!strequal(domain_list[i].short_name, domain)) {
597 continue;
601 is_offline = (domain_list[i].domain_flags &
602 WBC_DOMINFO_DOMAIN_OFFLINE);
604 d_printf("%s : %s\n",
605 domain_list[i].short_name,
606 is_offline ? "offline" : "online" );
609 return true;
613 /* Show domain info */
615 static bool wbinfo_domain_info(const char *domain)
617 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
618 struct wbcDomainInfo *dinfo = NULL;
619 char *sid_str = NULL;
621 if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')){
622 domain = get_winbind_domain();
625 /* Send request */
627 wbc_status = wbcDomainInfo(domain, &dinfo);
628 if (!WBC_ERROR_IS_OK(wbc_status)) {
629 return false;
632 wbc_status = wbcSidToString(&dinfo->sid, &sid_str);
633 if (!WBC_ERROR_IS_OK(wbc_status)) {
634 wbcFreeMemory(dinfo);
635 return false;
638 /* Display response */
640 d_printf("Name : %s\n", dinfo->short_name);
641 d_printf("Alt_Name : %s\n", dinfo->dns_name);
643 d_printf("SID : %s\n", sid_str);
645 d_printf("Active Directory : %s\n",
646 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_AD) ? "Yes" : "No");
647 d_printf("Native : %s\n",
648 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_NATIVE) ?
649 "Yes" : "No");
651 d_printf("Primary : %s\n",
652 (dinfo->domain_flags & WBC_DOMINFO_DOMAIN_PRIMARY) ?
653 "Yes" : "No");
655 wbcFreeMemory(sid_str);
656 wbcFreeMemory(dinfo);
658 return true;
661 /* Get a foreign DC's name */
662 static bool wbinfo_getdcname(const char *domain_name)
664 struct winbindd_request request;
665 struct winbindd_response response;
667 ZERO_STRUCT(request);
668 ZERO_STRUCT(response);
670 fstrcpy(request.domain_name, domain_name);
672 /* Send request */
674 if (winbindd_request_response(WINBINDD_GETDCNAME, &request,
675 &response) != NSS_STATUS_SUCCESS) {
676 d_fprintf(stderr, "Could not get dc name for %s\n",domain_name);
677 return false;
680 /* Display response */
682 d_printf("%s\n", response.data.dc_name);
684 return true;
687 /* Find a DC */
688 static bool wbinfo_dsgetdcname(const char *domain_name, uint32_t flags)
690 struct winbindd_request request;
691 struct winbindd_response response;
693 ZERO_STRUCT(request);
694 ZERO_STRUCT(response);
696 fstrcpy(request.data.dsgetdcname.domain_name, domain_name);
697 request.data.dsgetdcname.flags = flags;
699 request.flags |= DS_DIRECTORY_SERVICE_REQUIRED;
701 /* Send request */
703 if (winbindd_request_response(WINBINDD_DSGETDCNAME, &request,
704 &response) != NSS_STATUS_SUCCESS) {
705 d_fprintf(stderr, "Could not find dc for %s\n", domain_name);
706 return false;
709 /* Display response */
711 d_printf("%s\n", response.data.dsgetdcname.dc_unc);
712 d_printf("%s\n", response.data.dsgetdcname.dc_address);
713 d_printf("%d\n", response.data.dsgetdcname.dc_address_type);
714 d_printf("%s\n", response.data.dsgetdcname.domain_guid);
715 d_printf("%s\n", response.data.dsgetdcname.domain_name);
716 d_printf("%s\n", response.data.dsgetdcname.forest_name);
717 d_printf("0x%08x\n", response.data.dsgetdcname.dc_flags);
718 d_printf("%s\n", response.data.dsgetdcname.dc_site_name);
719 d_printf("%s\n", response.data.dsgetdcname.client_site_name);
721 return true;
724 /* Check trust account password */
726 static bool wbinfo_check_secret(void)
728 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
729 struct wbcAuthErrorInfo *error = NULL;
731 wbc_status = wbcCheckTrustCredentials(NULL, &error);
733 d_printf("checking the trust secret via RPC calls %s\n",
734 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
736 if (wbc_status == WBC_ERR_AUTH_ERROR) {
737 d_fprintf(stderr, "error code was %s (0x%x)\n",
738 error->nt_string, error->nt_status);
739 wbcFreeMemory(error);
741 if (!WBC_ERROR_IS_OK(wbc_status)) {
742 return false;
745 return true;
748 /* Convert uid to sid */
750 static bool wbinfo_uid_to_sid(uid_t uid)
752 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
753 struct wbcDomainSid sid;
754 char *sid_str = NULL;
756 /* Send request */
758 wbc_status = wbcUidToSid(uid, &sid);
759 if (!WBC_ERROR_IS_OK(wbc_status)) {
760 return false;
763 wbc_status = wbcSidToString(&sid, &sid_str);
764 if (!WBC_ERROR_IS_OK(wbc_status)) {
765 return false;
768 /* Display response */
770 d_printf("%s\n", sid_str);
772 wbcFreeMemory(sid_str);
774 return true;
777 /* Convert gid to sid */
779 static bool wbinfo_gid_to_sid(gid_t gid)
781 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
782 struct wbcDomainSid sid;
783 char *sid_str = NULL;
785 /* Send request */
787 wbc_status = wbcGidToSid(gid, &sid);
788 if (!WBC_ERROR_IS_OK(wbc_status)) {
789 return false;
792 wbc_status = wbcSidToString(&sid, &sid_str);
793 if (!WBC_ERROR_IS_OK(wbc_status)) {
794 return false;
797 /* Display response */
799 d_printf("%s\n", sid_str);
801 wbcFreeMemory(sid_str);
803 return true;
806 /* Convert sid to uid */
808 static bool wbinfo_sid_to_uid(const char *sid_str)
810 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
811 struct wbcDomainSid sid;
812 uid_t uid;
814 /* Send request */
816 wbc_status = wbcStringToSid(sid_str, &sid);
817 if (!WBC_ERROR_IS_OK(wbc_status)) {
818 return false;
821 wbc_status = wbcSidToUid(&sid, &uid);
822 if (!WBC_ERROR_IS_OK(wbc_status)) {
823 return false;
826 /* Display response */
828 d_printf("%d\n", (int)uid);
830 return true;
833 static bool wbinfo_sid_to_gid(const char *sid_str)
835 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
836 struct wbcDomainSid sid;
837 gid_t gid;
839 /* Send request */
841 wbc_status = wbcStringToSid(sid_str, &sid);
842 if (!WBC_ERROR_IS_OK(wbc_status)) {
843 return false;
846 wbc_status = wbcSidToGid(&sid, &gid);
847 if (!WBC_ERROR_IS_OK(wbc_status)) {
848 return false;
851 /* Display response */
853 d_printf("%d\n", (int)gid);
855 return true;
858 static bool wbinfo_allocate_uid(void)
860 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
861 uid_t uid;
863 /* Send request */
865 wbc_status = wbcAllocateUid(&uid);
866 if (!WBC_ERROR_IS_OK(wbc_status)) {
867 return false;
870 /* Display response */
872 d_printf("New uid: %u\n", (unsigned int)uid);
874 return true;
877 static bool wbinfo_allocate_gid(void)
879 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
880 gid_t gid;
882 /* Send request */
884 wbc_status = wbcAllocateGid(&gid);
885 if (!WBC_ERROR_IS_OK(wbc_status)) {
886 return false;
889 /* Display response */
891 d_printf("New gid: %u\n", (unsigned int)gid);
893 return true;
896 static bool wbinfo_set_uid_mapping(uid_t uid, const char *sid_str)
898 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
899 struct wbcDomainSid sid;
901 /* Send request */
903 wbc_status = wbcStringToSid(sid_str, &sid);
904 if (!WBC_ERROR_IS_OK(wbc_status)) {
905 return false;
908 wbc_status = wbcSetUidMapping(uid, &sid);
909 if (!WBC_ERROR_IS_OK(wbc_status)) {
910 return false;
913 /* Display response */
915 d_printf("uid %u now mapped to sid %s\n",
916 (unsigned int)uid, sid_str);
918 return true;
921 static bool wbinfo_set_gid_mapping(gid_t gid, const char *sid_str)
923 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
924 struct wbcDomainSid sid;
926 /* Send request */
928 wbc_status = wbcStringToSid(sid_str, &sid);
929 if (!WBC_ERROR_IS_OK(wbc_status)) {
930 return false;
933 wbc_status = wbcSetGidMapping(gid, &sid);
934 if (!WBC_ERROR_IS_OK(wbc_status)) {
935 return false;
938 /* Display response */
940 d_printf("gid %u now mapped to sid %s\n",
941 (unsigned int)gid, sid_str);
943 return true;
946 static bool wbinfo_remove_uid_mapping(uid_t uid, const char *sid_str)
948 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
949 struct wbcDomainSid sid;
951 /* Send request */
953 wbc_status = wbcStringToSid(sid_str, &sid);
954 if (!WBC_ERROR_IS_OK(wbc_status)) {
955 return false;
958 wbc_status = wbcRemoveUidMapping(uid, &sid);
959 if (!WBC_ERROR_IS_OK(wbc_status)) {
960 return false;
963 /* Display response */
965 d_printf("Removed uid %u to sid %s mapping\n",
966 (unsigned int)uid, sid_str);
968 return true;
971 static bool wbinfo_remove_gid_mapping(gid_t gid, const char *sid_str)
973 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
974 struct wbcDomainSid sid;
976 /* Send request */
978 wbc_status = wbcStringToSid(sid_str, &sid);
979 if (!WBC_ERROR_IS_OK(wbc_status)) {
980 return false;
983 wbc_status = wbcRemoveGidMapping(gid, &sid);
984 if (!WBC_ERROR_IS_OK(wbc_status)) {
985 return false;
988 /* Display response */
990 d_printf("Removed gid %u to sid %s mapping\n",
991 (unsigned int)gid, sid_str);
993 return true;
996 /* Convert sid to string */
998 static bool wbinfo_lookupsid(const char *sid_str)
1000 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1001 struct wbcDomainSid sid;
1002 char *domain;
1003 char *name;
1004 enum wbcSidType type;
1006 /* Send off request */
1008 wbc_status = wbcStringToSid(sid_str, &sid);
1009 if (!WBC_ERROR_IS_OK(wbc_status)) {
1010 return false;
1013 wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
1014 if (!WBC_ERROR_IS_OK(wbc_status)) {
1015 return false;
1018 /* Display response */
1020 d_printf("%s%c%s %d\n",
1021 domain, winbind_separator(), name, type);
1023 return true;
1026 /* Convert sid to fullname */
1028 static bool wbinfo_lookupsid_fullname(const char *sid_str)
1030 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1031 struct wbcDomainSid sid;
1032 char *domain;
1033 char *name;
1034 enum wbcSidType type;
1036 /* Send off request */
1038 wbc_status = wbcStringToSid(sid_str, &sid);
1039 if (!WBC_ERROR_IS_OK(wbc_status)) {
1040 return false;
1043 wbc_status = wbcGetDisplayName(&sid, &domain, &name, &type);
1044 if (!WBC_ERROR_IS_OK(wbc_status)) {
1045 return false;
1048 /* Display response */
1050 d_printf("%s%c%s %d\n",
1051 domain, winbind_separator(), name, type);
1053 return true;
1056 /* Lookup a list of RIDs */
1058 static bool wbinfo_lookuprids(const char *domain, const char *arg)
1060 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1061 struct wbcDomainInfo *dinfo = NULL;
1062 char *domain_name = NULL;
1063 const char **names = NULL;
1064 enum wbcSidType *types = NULL;
1065 size_t i;
1066 int num_rids;
1067 uint32_t *rids = NULL;
1068 const char *p;
1069 char *ridstr;
1070 TALLOC_CTX *mem_ctx = NULL;
1071 bool ret = false;
1073 if ((domain == NULL) || (strequal(domain, ".")) || (domain[0] == '\0')){
1074 domain = get_winbind_domain();
1077 /* Send request */
1079 wbc_status = wbcDomainInfo(domain, &dinfo);
1080 if (!WBC_ERROR_IS_OK(wbc_status)) {
1081 d_printf("wbcDomainInfo(%s) failed: %s\n", domain,
1082 wbcErrorString(wbc_status));
1083 goto done;
1086 mem_ctx = talloc_new(NULL);
1087 if (mem_ctx == NULL) {
1088 d_printf("talloc_new failed\n");
1089 goto done;
1092 num_rids = 0;
1093 rids = NULL;
1094 p = arg;
1096 while (next_token_talloc(mem_ctx, &p, &ridstr, " ,\n")) {
1097 uint32_t rid = strtoul(ridstr, NULL, 10);
1098 rids = talloc_realloc(mem_ctx, rids, uint32_t, num_rids + 1);
1099 if (rids == NULL) {
1100 d_printf("talloc_realloc failed\n");
1102 rids[num_rids] = rid;
1103 num_rids += 1;
1106 if (rids == NULL) {
1107 d_printf("no rids\n");
1108 goto done;
1111 wbc_status = wbcLookupRids(&dinfo->sid, num_rids, rids,
1112 (const char **)&domain_name, &names, &types);
1113 if (!WBC_ERROR_IS_OK(wbc_status)) {
1114 d_printf("winbind_lookup_rids failed: %s\n",
1115 wbcErrorString(wbc_status));
1116 goto done;
1119 d_printf("Domain: %s\n", domain_name);
1121 for (i=0; i<num_rids; i++) {
1122 d_printf("%8d: %s (%s)\n", rids[i], names[i],
1123 wbcSidTypeString(types[i]));
1126 ret = true;
1127 done:
1128 if (dinfo) {
1129 wbcFreeMemory(dinfo);
1131 if (domain_name) {
1132 wbcFreeMemory(domain_name);
1134 if (names) {
1135 wbcFreeMemory(names);
1137 if (types) {
1138 wbcFreeMemory(types);
1140 TALLOC_FREE(mem_ctx);
1141 return ret;
1144 /* Convert string to sid */
1146 static bool wbinfo_lookupname(const char *full_name)
1148 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1149 struct wbcDomainSid sid;
1150 char *sid_str;
1151 enum wbcSidType type;
1152 fstring domain_name;
1153 fstring account_name;
1155 /* Send off request */
1157 parse_wbinfo_domain_user(full_name, domain_name,
1158 account_name);
1160 wbc_status = wbcLookupName(domain_name, account_name,
1161 &sid, &type);
1162 if (!WBC_ERROR_IS_OK(wbc_status)) {
1163 return false;
1166 wbc_status = wbcSidToString(&sid, &sid_str);
1167 if (!WBC_ERROR_IS_OK(wbc_status)) {
1168 return false;
1171 /* Display response */
1173 d_printf("%s %s (%d)\n", sid_str, wbcSidTypeString(type), type);
1175 wbcFreeMemory(sid_str);
1177 return true;
1180 static char *wbinfo_prompt_pass(TALLOC_CTX *mem_ctx,
1181 const char *prefix,
1182 const char *username)
1184 char *prompt;
1185 const char *ret = NULL;
1187 prompt = talloc_asprintf(mem_ctx, "Enter %s's ", username);
1188 if (!prompt) {
1189 return NULL;
1191 if (prefix) {
1192 prompt = talloc_asprintf_append(prompt, "%s ", prefix);
1193 if (!prompt) {
1194 return NULL;
1197 prompt = talloc_asprintf_append(prompt, "password: ");
1198 if (!prompt) {
1199 return NULL;
1202 ret = getpass(prompt);
1203 TALLOC_FREE(prompt);
1205 return talloc_strdup(mem_ctx, ret);
1208 /* Authenticate a user with a plaintext password */
1210 static bool wbinfo_auth_krb5(char *username, const char *cctype, uint32_t flags)
1212 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1213 char *s = NULL;
1214 char *p = NULL;
1215 char *password = NULL;
1216 char *name = NULL;
1217 uid_t uid;
1218 struct wbcLogonUserParams params;
1219 struct wbcLogonUserInfo *info;
1220 struct wbcAuthErrorInfo *error;
1221 struct wbcUserPasswordPolicyInfo *policy;
1222 TALLOC_CTX *frame = talloc_tos();
1224 if ((s = talloc_strdup(frame, username)) == NULL) {
1225 return false;
1228 if ((p = strchr(s, '%')) != NULL) {
1229 *p = 0;
1230 p++;
1231 password = talloc_strdup(frame, p);
1232 } else {
1233 password = wbinfo_prompt_pass(frame, NULL, username);
1236 name = s;
1238 uid = geteuid();
1240 params.username = name;
1241 params.password = password;
1242 params.num_blobs = 0;
1243 params.blobs = NULL;
1245 wbc_status = wbcAddNamedBlob(&params.num_blobs,
1246 &params.blobs,
1247 "flags",
1249 (uint8_t *)&flags,
1250 sizeof(flags));
1251 if (!WBC_ERROR_IS_OK(wbc_status)) {
1252 goto done;
1255 wbc_status = wbcAddNamedBlob(&params.num_blobs,
1256 &params.blobs,
1257 "user_uid",
1259 (uint8_t *)&uid,
1260 sizeof(uid));
1261 if (!WBC_ERROR_IS_OK(wbc_status)) {
1262 goto done;
1265 wbc_status = wbcAddNamedBlob(&params.num_blobs,
1266 &params.blobs,
1267 "krb5_cc_type",
1269 (uint8_t *)cctype,
1270 strlen(cctype)+1);
1271 if (!WBC_ERROR_IS_OK(wbc_status)) {
1272 goto done;
1275 wbc_status = wbcLogonUser(&params, &info, &error, &policy);
1277 d_printf("plaintext kerberos password authentication for [%s] %s "
1278 "(requesting cctype: %s)\n",
1279 username, WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed",
1280 cctype);
1282 if (error) {
1283 d_fprintf(stderr,
1284 "error code was %s (0x%x)\nerror messsage was: %s\n",
1285 error->nt_string,
1286 error->nt_status,
1287 error->display_string);
1290 if (WBC_ERROR_IS_OK(wbc_status)) {
1291 if (flags & WBFLAG_PAM_INFO3_TEXT) {
1292 if (info && info->info && info->info->user_flags &
1293 NETLOGON_CACHED_ACCOUNT) {
1294 d_printf("user_flgs: "
1295 "NETLOGON_CACHED_ACCOUNT\n");
1299 if (info) {
1300 int i;
1301 for (i=0; i < info->num_blobs; i++) {
1302 if (strequal(info->blobs[i].name,
1303 "krb5ccname")) {
1304 d_printf("credentials were put "
1305 "in: %s\n",
1306 (const char *)
1307 info->blobs[i].blob.data);
1308 break;
1311 } else {
1312 d_printf("no credentials cached\n");
1315 done:
1317 TALLOC_FREE(frame);
1318 wbcFreeMemory(params.blobs);
1320 return WBC_ERROR_IS_OK(wbc_status);
1323 /* Authenticate a user with a plaintext password */
1325 static bool wbinfo_auth(char *username)
1327 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1328 char *s = NULL;
1329 char *p = NULL;
1330 char *password = NULL;
1331 char *name = NULL;
1332 TALLOC_CTX *frame = talloc_tos();
1334 if ((s = talloc_strdup(frame, username)) == NULL) {
1335 return false;
1338 if ((p = strchr(s, '%')) != NULL) {
1339 *p = 0;
1340 p++;
1341 password = talloc_strdup(frame, p);
1342 } else {
1343 password = wbinfo_prompt_pass(frame, NULL, username);
1346 name = s;
1348 wbc_status = wbcAuthenticateUser(name, password);
1350 d_printf("plaintext password authentication %s\n",
1351 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1353 #if 0
1354 if (response.data.auth.nt_status)
1355 d_fprintf(stderr,
1356 "error code was %s (0x%x)\nerror messsage was: %s\n",
1357 response.data.auth.nt_status_string,
1358 response.data.auth.nt_status,
1359 response.data.auth.error_string);
1360 #endif
1362 TALLOC_FREE(frame);
1364 return WBC_ERROR_IS_OK(wbc_status);
1367 /* Authenticate a user with a challenge/response */
1369 static bool wbinfo_auth_crap(char *username, bool use_ntlmv2, bool use_lanman)
1371 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1372 struct wbcAuthUserParams params;
1373 struct wbcAuthUserInfo *info = NULL;
1374 struct wbcAuthErrorInfo *err = NULL;
1375 DATA_BLOB lm = data_blob_null;
1376 DATA_BLOB nt = data_blob_null;
1377 fstring name_user;
1378 fstring name_domain;
1379 char *pass;
1380 char *p;
1381 TALLOC_CTX *frame = talloc_tos();
1383 p = strchr(username, '%');
1385 if (p) {
1386 *p = 0;
1387 pass = talloc_strdup(frame, p + 1);
1388 } else {
1389 pass = wbinfo_prompt_pass(frame, NULL, username);
1392 parse_wbinfo_domain_user(username, name_domain, name_user);
1394 params.account_name = name_user;
1395 params.domain_name = name_domain;
1396 params.workstation_name = NULL;
1398 params.flags = 0;
1399 params.parameter_control= WBC_MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT |
1400 WBC_MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
1402 params.level = WBC_AUTH_USER_LEVEL_RESPONSE;
1404 generate_random_buffer(params.password.response.challenge, 8);
1406 if (use_ntlmv2) {
1407 DATA_BLOB server_chal;
1408 DATA_BLOB names_blob;
1410 server_chal = data_blob(params.password.response.challenge, 8);
1412 /* Pretend this is a login to 'us', for blob purposes */
1413 names_blob = NTLMv2_generate_names_blob(NULL,
1414 get_winbind_netbios_name(),
1415 get_winbind_domain());
1417 if (!SMBNTLMv2encrypt(NULL, name_user, name_domain, pass,
1418 &server_chal,
1419 &names_blob,
1420 &lm, &nt, NULL, NULL)) {
1421 data_blob_free(&names_blob);
1422 data_blob_free(&server_chal);
1423 SAFE_FREE(pass);
1424 return false;
1426 data_blob_free(&names_blob);
1427 data_blob_free(&server_chal);
1429 } else {
1430 if (use_lanman) {
1431 bool ok;
1432 lm = data_blob(NULL, 24);
1433 ok = SMBencrypt(pass,
1434 params.password.response.challenge,
1435 lm.data);
1436 if (!ok) {
1437 data_blob_free(&lm);
1440 nt = data_blob(NULL, 24);
1441 SMBNTencrypt(pass, params.password.response.challenge,
1442 nt.data);
1445 params.password.response.nt_length = nt.length;
1446 params.password.response.nt_data = nt.data;
1447 params.password.response.lm_length = lm.length;
1448 params.password.response.lm_data = lm.data;
1450 wbc_status = wbcAuthenticateUserEx(&params, &info, &err);
1452 /* Display response */
1454 d_printf("challenge/response password authentication %s\n",
1455 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1457 if (wbc_status == WBC_ERR_AUTH_ERROR) {
1458 d_fprintf(stderr,
1459 "error code was %s (0x%x)\nerror messsage was: %s\n",
1460 err->nt_string,
1461 err->nt_status,
1462 err->display_string);
1463 wbcFreeMemory(err);
1464 } else if (WBC_ERROR_IS_OK(wbc_status)) {
1465 wbcFreeMemory(info);
1468 data_blob_free(&nt);
1469 data_blob_free(&lm);
1470 TALLOC_FREE(frame);
1472 return WBC_ERROR_IS_OK(wbc_status);
1475 #ifdef WITH_FAKE_KASERVER
1476 /* Authenticate a user with a plaintext password and set a token */
1478 static bool wbinfo_klog(char *username)
1480 struct winbindd_request request;
1481 struct winbindd_response response;
1482 NSS_STATUS result;
1483 char *p;
1485 /* Send off request */
1487 ZERO_STRUCT(request);
1488 ZERO_STRUCT(response);
1490 p = strchr(username, '%');
1492 if (p) {
1493 *p = 0;
1494 fstrcpy(request.data.auth.user, username);
1495 fstrcpy(request.data.auth.pass, p + 1);
1496 *p = '%';
1497 } else {
1498 fstrcpy(request.data.auth.user, username);
1499 fstrcpy(request.data.auth.pass, getpass("Password: "));
1502 request.flags |= WBFLAG_PAM_AFS_TOKEN;
1504 result = winbindd_request_response(WINBINDD_PAM_AUTH, &request,
1505 &response);
1507 /* Display response */
1509 d_printf("plaintext password authentication %s\n",
1510 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1512 if (response.data.auth.nt_status)
1513 d_fprintf(stderr,
1514 "error code was %s (0x%x)\nerror messsage was: %s\n",
1515 response.data.auth.nt_status_string,
1516 response.data.auth.nt_status,
1517 response.data.auth.error_string);
1519 if (result != NSS_STATUS_SUCCESS)
1520 return false;
1522 if (response.extra_data.data == NULL) {
1523 d_fprintf(stderr, "Did not get token data\n");
1524 return false;
1527 if (!afs_settoken_str((char *)response.extra_data.data)) {
1528 d_fprintf(stderr, "Could not set token\n");
1529 return false;
1532 d_printf("Successfully created AFS token\n");
1533 return true;
1535 #else
1536 static bool wbinfo_klog(char *username)
1538 d_fprintf(stderr, "No AFS support compiled in.\n");
1539 return false;
1541 #endif
1543 /* Print domain users */
1545 static bool print_domain_users(const char *domain)
1547 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1548 uint32_t i;
1549 uint32_t num_users = 0;
1550 const char **users = NULL;
1552 /* Send request to winbind daemon */
1554 /* '.' is the special sign for our own domain */
1555 if (domain && strcmp(domain, ".") == 0) {
1556 domain = get_winbind_domain();
1559 wbc_status = wbcListUsers(domain, &num_users, &users);
1560 if (!WBC_ERROR_IS_OK(wbc_status)) {
1561 return false;
1564 for (i=0; i < num_users; i++) {
1565 d_printf("%s\n", users[i]);
1568 wbcFreeMemory(users);
1570 return true;
1573 /* Print domain groups */
1575 static bool print_domain_groups(const char *domain)
1577 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1578 uint32_t i;
1579 uint32_t num_groups = 0;
1580 const char **groups = NULL;
1582 /* Send request to winbind daemon */
1584 /* '.' is the special sign for our own domain */
1585 if (domain && strcmp(domain, ".") == 0) {
1586 domain = get_winbind_domain();
1589 wbc_status = wbcListGroups(domain, &num_groups, &groups);
1590 if (!WBC_ERROR_IS_OK(wbc_status)) {
1591 return false;
1594 for (i=0; i < num_groups; i++) {
1595 d_printf("%s\n", groups[i]);
1598 wbcFreeMemory(groups);
1600 return true;
1603 /* Set the authorised user for winbindd access in secrets.tdb */
1605 static bool wbinfo_set_auth_user(char *username)
1607 d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1608 "See 'net help setauthuser' for details.\n");
1609 return false;
1612 static void wbinfo_get_auth_user(void)
1614 d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1615 "See 'net help getauthuser' for details.\n");
1618 static bool wbinfo_ping(void)
1620 wbcErr wbc_status;
1622 wbc_status = wbcPing();
1624 /* Display response */
1626 d_printf("Ping to winbindd %s\n",
1627 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1629 return WBC_ERROR_IS_OK(wbc_status);
1632 static bool wbinfo_change_user_password(const char *username)
1634 wbcErr wbc_status;
1635 char *old_password = NULL;
1636 char *new_password = NULL;
1637 TALLOC_CTX *frame = talloc_tos();
1639 old_password = wbinfo_prompt_pass(frame, "old", username);
1640 new_password = wbinfo_prompt_pass(frame, "new", username);
1642 wbc_status = wbcChangeUserPassword(username, old_password,new_password);
1644 /* Display response */
1646 d_printf("Password change for user %s %s\n", username,
1647 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1649 TALLOC_FREE(frame);
1651 return WBC_ERROR_IS_OK(wbc_status);
1654 /* Main program */
1656 enum {
1657 OPT_SET_AUTH_USER = 1000,
1658 OPT_GET_AUTH_USER,
1659 OPT_DOMAIN_NAME,
1660 OPT_SEQUENCE,
1661 OPT_GETDCNAME,
1662 OPT_DSGETDCNAME,
1663 OPT_USERDOMGROUPS,
1664 OPT_SIDALIASES,
1665 OPT_USERSIDS,
1666 OPT_ALLOCATE_UID,
1667 OPT_ALLOCATE_GID,
1668 OPT_SET_UID_MAPPING,
1669 OPT_SET_GID_MAPPING,
1670 OPT_REMOVE_UID_MAPPING,
1671 OPT_REMOVE_GID_MAPPING,
1672 OPT_SEPARATOR,
1673 OPT_LIST_ALL_DOMAINS,
1674 OPT_LIST_OWN_DOMAIN,
1675 OPT_UID_INFO,
1676 OPT_USER_SIDINFO,
1677 OPT_GROUP_INFO,
1678 OPT_GID_INFO,
1679 OPT_VERBOSE,
1680 OPT_ONLINESTATUS,
1681 OPT_CHANGE_USER_PASSWORD,
1682 OPT_SID_TO_FULLNAME,
1683 OPT_NTLMV2,
1684 OPT_LANMAN
1687 int main(int argc, char **argv, char **envp)
1689 int opt;
1690 TALLOC_CTX *frame = talloc_stackframe();
1691 poptContext pc;
1692 static char *string_arg;
1693 char *string_subarg = NULL;
1694 static char *opt_domain_name;
1695 static int int_arg;
1696 int int_subarg = -1;
1697 int result = 1;
1698 bool verbose = false;
1699 bool use_ntlmv2 = false;
1700 bool use_lanman = false;
1702 struct poptOption long_options[] = {
1703 POPT_AUTOHELP
1705 /* longName, shortName, argInfo, argPtr, value, descrip,
1706 argDesc */
1708 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1709 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1710 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1711 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1712 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1713 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1714 { "sid-to-fullname", 0, POPT_ARG_STRING, &string_arg,
1715 OPT_SID_TO_FULLNAME, "Converts sid to fullname", "SID" },
1716 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1717 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1718 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1719 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1720 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1721 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1722 "Get a new UID out of idmap" },
1723 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1724 "Get a new GID out of idmap" },
1725 { "set-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_UID_MAPPING, "Create or modify uid to sid mapping in idmap", "UID,SID" },
1726 { "set-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_GID_MAPPING, "Create or modify gid to sid mapping in idmap", "GID,SID" },
1727 { "remove-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_UID_MAPPING, "Remove uid to sid mapping in idmap", "UID,SID" },
1728 { "remove-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_GID_MAPPING, "Remove gid to sid mapping in idmap", "GID,SID" },
1729 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1730 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1731 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1732 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1733 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1734 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
1735 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1736 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1737 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1738 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1739 { "user-sidinfo", 0, POPT_ARG_STRING, &string_arg, OPT_USER_SIDINFO, "Get user info from sid", "SID" },
1740 { "gid-info", 0, POPT_ARG_INT, &int_arg, OPT_GID_INFO, "Get group info from gid", "GID" },
1741 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1742 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1743 OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1744 { "sid-aliases", 0, POPT_ARG_STRING, &string_arg, OPT_SIDALIASES, "Get sid aliases", "SID" },
1745 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1746 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1747 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1748 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1749 "Get a DC name for a foreign domain", "domainname" },
1750 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1751 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1752 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1753 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1754 #ifdef WITH_FAKE_KASERVER
1755 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1756 #endif
1757 #ifdef HAVE_KRB5
1758 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1759 /* destroys wbinfo --help output */
1760 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1761 #endif
1762 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1763 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1764 { "change-user-password", 0, POPT_ARG_STRING, &string_arg, OPT_CHANGE_USER_PASSWORD, "Change the password for a user", NULL },
1765 { "ntlmv2", 0, POPT_ARG_NONE, 0, OPT_NTLMV2, "Use NTLMv2 cryptography for user authentication", NULL},
1766 { "lanman", 0, POPT_ARG_NONE, 0, OPT_LANMAN, "Use lanman cryptography for user authentication", NULL},
1767 POPT_COMMON_VERSION
1768 POPT_TABLEEND
1771 /* Samba client initialisation */
1772 load_case_tables();
1775 /* Parse options */
1777 pc = poptGetContext("wbinfo", argc, (const char **)argv,
1778 long_options, 0);
1780 /* Parse command line options */
1782 if (argc == 1) {
1783 poptPrintHelp(pc, stderr, 0);
1784 return 1;
1787 while((opt = poptGetNextOpt(pc)) != -1) {
1788 /* get the generic configuration parameters like --domain */
1789 switch (opt) {
1790 case OPT_VERBOSE:
1791 verbose = true;
1792 break;
1793 case OPT_NTLMV2:
1794 use_ntlmv2 = true;
1795 break;
1796 case OPT_LANMAN:
1797 use_lanman = true;
1798 break;
1802 poptFreeContext(pc);
1804 pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1805 POPT_CONTEXT_KEEP_FIRST);
1807 while((opt = poptGetNextOpt(pc)) != -1) {
1808 switch (opt) {
1809 case 'u':
1810 if (!print_domain_users(opt_domain_name)) {
1811 d_fprintf(stderr,
1812 "Error looking up domain users\n");
1813 goto done;
1815 break;
1816 case 'g':
1817 if (!print_domain_groups(opt_domain_name)) {
1818 d_fprintf(stderr,
1819 "Error looking up domain groups\n");
1820 goto done;
1822 break;
1823 case 's':
1824 if (!wbinfo_lookupsid(string_arg)) {
1825 d_fprintf(stderr,
1826 "Could not lookup sid %s\n",
1827 string_arg);
1828 goto done;
1830 break;
1831 case OPT_SID_TO_FULLNAME:
1832 if (!wbinfo_lookupsid_fullname(string_arg)) {
1833 d_fprintf(stderr, "Could not lookup sid %s\n",
1834 string_arg);
1835 goto done;
1837 break;
1838 case 'R':
1839 if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1840 d_fprintf(stderr, "Could not lookup RIDs %s\n",
1841 string_arg);
1842 goto done;
1844 break;
1845 case 'n':
1846 if (!wbinfo_lookupname(string_arg)) {
1847 d_fprintf(stderr, "Could not lookup name %s\n",
1848 string_arg);
1849 goto done;
1851 break;
1852 case 'N':
1853 if (!wbinfo_wins_byname(string_arg)) {
1854 d_fprintf(stderr,
1855 "Could not lookup WINS by name %s\n",
1856 string_arg);
1857 goto done;
1859 break;
1860 case 'I':
1861 if (!wbinfo_wins_byip(string_arg)) {
1862 d_fprintf(stderr,
1863 "Could not lookup WINS by IP %s\n",
1864 string_arg);
1865 goto done;
1867 break;
1868 case 'U':
1869 if (!wbinfo_uid_to_sid(int_arg)) {
1870 d_fprintf(stderr,
1871 "Could not convert uid %d to sid\n",
1872 int_arg);
1873 goto done;
1875 break;
1876 case 'G':
1877 if (!wbinfo_gid_to_sid(int_arg)) {
1878 d_fprintf(stderr,
1879 "Could not convert gid %d to sid\n",
1880 int_arg);
1881 goto done;
1883 break;
1884 case 'S':
1885 if (!wbinfo_sid_to_uid(string_arg)) {
1886 d_fprintf(stderr,
1887 "Could not convert sid %s to uid\n",
1888 string_arg);
1889 goto done;
1891 break;
1892 case 'Y':
1893 if (!wbinfo_sid_to_gid(string_arg)) {
1894 d_fprintf(stderr,
1895 "Could not convert sid %s to gid\n",
1896 string_arg);
1897 goto done;
1899 break;
1900 case OPT_ALLOCATE_UID:
1901 if (!wbinfo_allocate_uid()) {
1902 d_fprintf(stderr, "Could not allocate a uid\n");
1903 goto done;
1905 break;
1906 case OPT_ALLOCATE_GID:
1907 if (!wbinfo_allocate_gid()) {
1908 d_fprintf(stderr, "Could not allocate a gid\n");
1909 goto done;
1911 break;
1912 case OPT_SET_UID_MAPPING:
1913 if (!parse_mapping_arg(string_arg, &int_subarg,
1914 &string_subarg) ||
1915 !wbinfo_set_uid_mapping(int_subarg, string_subarg))
1917 d_fprintf(stderr, "Could not create or modify "
1918 "uid to sid mapping\n");
1919 goto done;
1921 break;
1922 case OPT_SET_GID_MAPPING:
1923 if (!parse_mapping_arg(string_arg, &int_subarg,
1924 &string_subarg) ||
1925 !wbinfo_set_gid_mapping(int_subarg, string_subarg))
1927 d_fprintf(stderr, "Could not create or modify "
1928 "gid to sid mapping\n");
1929 goto done;
1931 break;
1932 case OPT_REMOVE_UID_MAPPING:
1933 if (!parse_mapping_arg(string_arg, &int_subarg,
1934 &string_subarg) ||
1935 !wbinfo_remove_uid_mapping(int_subarg,
1936 string_subarg))
1938 d_fprintf(stderr, "Could not remove uid to sid "
1939 "mapping\n");
1940 goto done;
1942 break;
1943 case OPT_REMOVE_GID_MAPPING:
1944 if (!parse_mapping_arg(string_arg, &int_subarg,
1945 &string_subarg) ||
1946 !wbinfo_remove_gid_mapping(int_subarg,
1947 string_subarg))
1949 d_fprintf(stderr, "Could not remove gid to sid "
1950 "mapping\n");
1951 goto done;
1953 break;
1954 case 't':
1955 if (!wbinfo_check_secret()) {
1956 d_fprintf(stderr, "Could not check secret\n");
1957 goto done;
1959 break;
1960 case 'm':
1961 if (!wbinfo_list_domains(false, verbose)) {
1962 d_fprintf(stderr,
1963 "Could not list trusted domains\n");
1964 goto done;
1966 break;
1967 case OPT_SEQUENCE:
1968 if (!wbinfo_show_sequence(opt_domain_name)) {
1969 d_fprintf(stderr,
1970 "Could not show sequence numbers\n");
1971 goto done;
1973 break;
1974 case OPT_ONLINESTATUS:
1975 if (!wbinfo_show_onlinestatus(opt_domain_name)) {
1976 d_fprintf(stderr,
1977 "Could not show online-status\n");
1978 goto done;
1980 break;
1981 case 'D':
1982 if (!wbinfo_domain_info(string_arg)) {
1983 d_fprintf(stderr,
1984 "Could not get domain info\n");
1985 goto done;
1987 break;
1988 case 'i':
1989 if (!wbinfo_get_userinfo(string_arg)) {
1990 d_fprintf(stderr,
1991 "Could not get info for user %s\n",
1992 string_arg);
1993 goto done;
1995 break;
1996 case OPT_USER_SIDINFO:
1997 if ( !wbinfo_get_user_sidinfo(string_arg)) {
1998 d_fprintf(stderr,
1999 "Could not get info for user "
2000 "sid %s\n", string_arg);
2001 goto done;
2003 break;
2004 case OPT_UID_INFO:
2005 if ( !wbinfo_get_uidinfo(int_arg)) {
2006 d_fprintf(stderr, "Could not get info for uid "
2007 "%d\n", int_arg);
2008 goto done;
2010 break;
2011 case OPT_GROUP_INFO:
2012 if ( !wbinfo_get_groupinfo(string_arg)) {
2013 d_fprintf(stderr, "Could not get info for "
2014 "group %s\n", string_arg);
2015 goto done;
2017 break;
2018 case OPT_GID_INFO:
2019 if ( !wbinfo_get_gidinfo(int_arg)) {
2020 d_fprintf(stderr, "Could not get info for gid "
2021 "%d\n", int_arg);
2022 goto done;
2024 break;
2025 case 'r':
2026 if (!wbinfo_get_usergroups(string_arg)) {
2027 d_fprintf(stderr,
2028 "Could not get groups for user %s\n",
2029 string_arg);
2030 goto done;
2032 break;
2033 case OPT_USERSIDS:
2034 if (!wbinfo_get_usersids(string_arg)) {
2035 d_fprintf(stderr, "Could not get group SIDs "
2036 "for user SID %s\n",
2037 string_arg);
2038 goto done;
2040 break;
2041 case OPT_USERDOMGROUPS:
2042 if (!wbinfo_get_userdomgroups(string_arg)) {
2043 d_fprintf(stderr, "Could not get user's domain "
2044 "groups for user SID %s\n",
2045 string_arg);
2046 goto done;
2048 break;
2049 case OPT_SIDALIASES:
2050 if (!wbinfo_get_sidaliases(opt_domain_name,
2051 string_arg)) {
2052 d_fprintf(stderr, "Could not get sid aliases "
2053 "for user SID %s\n", string_arg);
2054 goto done;
2056 break;
2057 case 'a': {
2058 bool got_error = false;
2060 if (!wbinfo_auth(string_arg)) {
2061 d_fprintf(stderr,
2062 "Could not authenticate user "
2063 "%s with plaintext "
2064 "password\n", string_arg);
2065 got_error = true;
2068 if (!wbinfo_auth_crap(string_arg, use_ntlmv2,
2069 use_lanman)) {
2070 d_fprintf(stderr,
2071 "Could not authenticate user "
2072 "%s with challenge/response\n",
2073 string_arg);
2074 got_error = true;
2077 if (got_error)
2078 goto done;
2079 break;
2081 case 'K': {
2082 uint32_t flags = WBFLAG_PAM_KRB5 |
2083 WBFLAG_PAM_CACHED_LOGIN |
2084 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
2085 WBFLAG_PAM_INFO3_TEXT |
2086 WBFLAG_PAM_CONTACT_TRUSTDOM;
2088 if (!wbinfo_auth_krb5(string_arg, "FILE",
2089 flags)) {
2090 d_fprintf(stderr,
2091 "Could not authenticate user "
2092 "[%s] with Kerberos "
2093 "(ccache: %s)\n", string_arg,
2094 "FILE");
2095 goto done;
2097 break;
2099 case 'k':
2100 if (!wbinfo_klog(string_arg)) {
2101 d_fprintf(stderr, "Could not klog user\n");
2102 goto done;
2104 break;
2105 case 'p':
2106 if (!wbinfo_ping()) {
2107 d_fprintf(stderr, "could not ping winbindd!\n");
2108 goto done;
2110 break;
2111 case OPT_SET_AUTH_USER:
2112 if (!wbinfo_set_auth_user(string_arg)) {
2113 goto done;
2115 break;
2116 case OPT_GET_AUTH_USER:
2117 wbinfo_get_auth_user();
2118 goto done;
2119 break;
2120 case OPT_GETDCNAME:
2121 if (!wbinfo_getdcname(string_arg)) {
2122 goto done;
2124 break;
2125 case OPT_DSGETDCNAME:
2126 if (!wbinfo_dsgetdcname(string_arg, 0)) {
2127 goto done;
2129 break;
2130 case OPT_SEPARATOR: {
2131 const char sep = winbind_separator();
2132 if ( !sep ) {
2133 goto done;
2135 d_printf("%c\n", sep);
2136 break;
2138 case OPT_LIST_ALL_DOMAINS:
2139 if (!wbinfo_list_domains(true, verbose)) {
2140 goto done;
2142 break;
2143 case OPT_LIST_OWN_DOMAIN:
2144 if (!wbinfo_list_own_domain()) {
2145 goto done;
2147 break;
2148 case OPT_CHANGE_USER_PASSWORD:
2149 if (!wbinfo_change_user_password(string_arg)) {
2150 d_fprintf(stderr,
2151 "Could not change user password "
2152 "for user %s\n", string_arg);
2153 goto done;
2155 break;
2157 /* generic configuration options */
2158 case OPT_DOMAIN_NAME:
2159 break;
2160 case OPT_VERBOSE:
2161 break;
2162 case OPT_NTLMV2:
2163 break;
2164 case OPT_LANMAN:
2165 break;
2166 default:
2167 d_fprintf(stderr, "Invalid option\n");
2168 poptPrintHelp(pc, stderr, 0);
2169 goto done;
2173 result = 0;
2175 /* Exit code */
2177 done:
2178 talloc_free(frame);
2180 poptFreeContext(pc);
2181 return result;