s3 wbinfo: Remove unused functions, use C99-types
[Samba/gebeck_regimport.git] / nsswitch / wbinfo.c
blob80d267a1bcb1e3aafc85e400dfccf41ba7dbc733
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 sid_type_lookup(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, sid_type_lookup(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 /* Authenticate a user with a plaintext password and set a token */
1477 static bool wbinfo_klog(char *username)
1479 struct winbindd_request request;
1480 struct winbindd_response response;
1481 NSS_STATUS result;
1482 char *p;
1484 /* Send off request */
1486 ZERO_STRUCT(request);
1487 ZERO_STRUCT(response);
1489 p = strchr(username, '%');
1491 if (p) {
1492 *p = 0;
1493 fstrcpy(request.data.auth.user, username);
1494 fstrcpy(request.data.auth.pass, p + 1);
1495 *p = '%';
1496 } else {
1497 fstrcpy(request.data.auth.user, username);
1498 fstrcpy(request.data.auth.pass, getpass("Password: "));
1501 request.flags |= WBFLAG_PAM_AFS_TOKEN;
1503 result = winbindd_request_response(WINBINDD_PAM_AUTH, &request,
1504 &response);
1506 /* Display response */
1508 d_printf("plaintext password authentication %s\n",
1509 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
1511 if (response.data.auth.nt_status)
1512 d_fprintf(stderr,
1513 "error code was %s (0x%x)\nerror messsage was: %s\n",
1514 response.data.auth.nt_status_string,
1515 response.data.auth.nt_status,
1516 response.data.auth.error_string);
1518 if (result != NSS_STATUS_SUCCESS)
1519 return false;
1521 if (response.extra_data.data == NULL) {
1522 d_fprintf(stderr, "Did not get token data\n");
1523 return false;
1526 if (!afs_settoken_str((char *)response.extra_data.data)) {
1527 d_fprintf(stderr, "Could not set token\n");
1528 return false;
1531 d_printf("Successfully created AFS token\n");
1532 return true;
1535 /* Print domain users */
1537 static bool print_domain_users(const char *domain)
1539 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1540 uint32_t i;
1541 uint32_t num_users = 0;
1542 const char **users = NULL;
1544 /* Send request to winbind daemon */
1546 /* '.' is the special sign for our own domain */
1547 if (domain && strcmp(domain, ".") == 0) {
1548 domain = get_winbind_domain();
1551 wbc_status = wbcListUsers(domain, &num_users, &users);
1552 if (!WBC_ERROR_IS_OK(wbc_status)) {
1553 return false;
1556 for (i=0; i < num_users; i++) {
1557 d_printf("%s\n", users[i]);
1560 wbcFreeMemory(users);
1562 return true;
1565 /* Print domain groups */
1567 static bool print_domain_groups(const char *domain)
1569 wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
1570 uint32_t i;
1571 uint32_t num_groups = 0;
1572 const char **groups = NULL;
1574 /* Send request to winbind daemon */
1576 /* '.' is the special sign for our own domain */
1577 if (domain && strcmp(domain, ".") == 0) {
1578 domain = get_winbind_domain();
1581 wbc_status = wbcListGroups(domain, &num_groups, &groups);
1582 if (!WBC_ERROR_IS_OK(wbc_status)) {
1583 return false;
1586 for (i=0; i < num_groups; i++) {
1587 d_printf("%s\n", groups[i]);
1590 wbcFreeMemory(groups);
1592 return true;
1595 /* Set the authorised user for winbindd access in secrets.tdb */
1597 static bool wbinfo_set_auth_user(char *username)
1599 d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1600 "See 'net help setauthuser' for details.\n");
1601 return false;
1604 static void wbinfo_get_auth_user(void)
1606 d_fprintf(stderr, "This functionality was moved to the 'net' utility.\n"
1607 "See 'net help getauthuser' for details.\n");
1610 static bool wbinfo_ping(void)
1612 wbcErr wbc_status;
1614 wbc_status = wbcPing();
1616 /* Display response */
1618 d_printf("Ping to winbindd %s\n",
1619 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1621 return WBC_ERROR_IS_OK(wbc_status);
1624 static bool wbinfo_change_user_password(const char *username)
1626 wbcErr wbc_status;
1627 char *old_password = NULL;
1628 char *new_password = NULL;
1629 TALLOC_CTX *frame = talloc_tos();
1631 old_password = wbinfo_prompt_pass(frame, "old", username);
1632 new_password = wbinfo_prompt_pass(frame, "new", username);
1634 wbc_status = wbcChangeUserPassword(username, old_password,new_password);
1636 /* Display response */
1638 d_printf("Password change for user %s %s\n", username,
1639 WBC_ERROR_IS_OK(wbc_status) ? "succeeded" : "failed");
1641 TALLOC_FREE(frame);
1643 return WBC_ERROR_IS_OK(wbc_status);
1646 /* Main program */
1648 enum {
1649 OPT_SET_AUTH_USER = 1000,
1650 OPT_GET_AUTH_USER,
1651 OPT_DOMAIN_NAME,
1652 OPT_SEQUENCE,
1653 OPT_GETDCNAME,
1654 OPT_DSGETDCNAME,
1655 OPT_USERDOMGROUPS,
1656 OPT_SIDALIASES,
1657 OPT_USERSIDS,
1658 OPT_ALLOCATE_UID,
1659 OPT_ALLOCATE_GID,
1660 OPT_SET_UID_MAPPING,
1661 OPT_SET_GID_MAPPING,
1662 OPT_REMOVE_UID_MAPPING,
1663 OPT_REMOVE_GID_MAPPING,
1664 OPT_SEPARATOR,
1665 OPT_LIST_ALL_DOMAINS,
1666 OPT_LIST_OWN_DOMAIN,
1667 OPT_UID_INFO,
1668 OPT_USER_SIDINFO,
1669 OPT_GROUP_INFO,
1670 OPT_GID_INFO,
1671 OPT_VERBOSE,
1672 OPT_ONLINESTATUS,
1673 OPT_CHANGE_USER_PASSWORD,
1674 OPT_SID_TO_FULLNAME,
1675 OPT_NTLMV2,
1676 OPT_LANMAN
1679 int main(int argc, char **argv, char **envp)
1681 int opt;
1682 TALLOC_CTX *frame = talloc_stackframe();
1683 poptContext pc;
1684 static char *string_arg;
1685 char *string_subarg = NULL;
1686 static char *opt_domain_name;
1687 static int int_arg;
1688 int int_subarg = -1;
1689 int result = 1;
1690 bool verbose = false;
1691 bool use_ntlmv2 = false;
1692 bool use_lanman = false;
1694 struct poptOption long_options[] = {
1695 POPT_AUTOHELP
1697 /* longName, shortName, argInfo, argPtr, value, descrip,
1698 argDesc */
1700 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1701 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1702 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1703 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1704 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1705 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1706 { "sid-to-fullname", 0, POPT_ARG_STRING, &string_arg,
1707 OPT_SID_TO_FULLNAME, "Converts sid to fullname", "SID" },
1708 { "lookup-rids", 'R', POPT_ARG_STRING, &string_arg, 'R', "Converts RIDs to names", "RIDs" },
1709 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1710 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1711 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1712 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1713 { "allocate-uid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_UID,
1714 "Get a new UID out of idmap" },
1715 { "allocate-gid", 0, POPT_ARG_NONE, 0, OPT_ALLOCATE_GID,
1716 "Get a new GID out of idmap" },
1717 { "set-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_UID_MAPPING, "Create or modify uid to sid mapping in idmap", "UID,SID" },
1718 { "set-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_SET_GID_MAPPING, "Create or modify gid to sid mapping in idmap", "GID,SID" },
1719 { "remove-uid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_UID_MAPPING, "Remove uid to sid mapping in idmap", "UID,SID" },
1720 { "remove-gid-mapping", 0, POPT_ARG_STRING, &string_arg, OPT_REMOVE_GID_MAPPING, "Remove gid to sid mapping in idmap", "GID,SID" },
1721 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1722 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1723 { "all-domains", 0, POPT_ARG_NONE, 0, OPT_LIST_ALL_DOMAINS, "List all domains (trusted and own domain)" },
1724 { "own-domain", 0, POPT_ARG_NONE, 0, OPT_LIST_OWN_DOMAIN, "List own domain" },
1725 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1726 { "online-status", 0, POPT_ARG_NONE, 0, OPT_ONLINESTATUS, "Show whether domains are marked as online or offline"},
1727 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1728 { "user-info", 'i', POPT_ARG_STRING, &string_arg, 'i', "Get user info", "USER" },
1729 { "uid-info", 0, POPT_ARG_INT, &int_arg, OPT_UID_INFO, "Get user info from uid", "UID" },
1730 { "group-info", 0, POPT_ARG_STRING, &string_arg, OPT_GROUP_INFO, "Get group info", "GROUP" },
1731 { "user-sidinfo", 0, POPT_ARG_STRING, &string_arg, OPT_USER_SIDINFO, "Get user info from sid", "SID" },
1732 { "gid-info", 0, POPT_ARG_INT, &int_arg, OPT_GID_INFO, "Get group info from gid", "GID" },
1733 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1734 { "user-domgroups", 0, POPT_ARG_STRING, &string_arg,
1735 OPT_USERDOMGROUPS, "Get user domain groups", "SID" },
1736 { "sid-aliases", 0, POPT_ARG_STRING, &string_arg, OPT_SIDALIASES, "Get sid aliases", "SID" },
1737 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1738 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1739 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1740 { "getdcname", 0, POPT_ARG_STRING, &string_arg, OPT_GETDCNAME,
1741 "Get a DC name for a foreign domain", "domainname" },
1742 { "dsgetdcname", 0, POPT_ARG_STRING, &string_arg, OPT_DSGETDCNAME, "Find a DC for a domain", "domainname" },
1743 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1744 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1745 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1746 #ifdef WITH_FAKE_KASERVER
1747 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1748 #endif
1749 #ifdef HAVE_KRB5
1750 { "krb5auth", 'K', POPT_ARG_STRING, &string_arg, 'K', "authenticate user using Kerberos", "user%password" },
1751 /* destroys wbinfo --help output */
1752 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1753 #endif
1754 { "separator", 0, POPT_ARG_NONE, 0, OPT_SEPARATOR, "Get the active winbind separator", NULL },
1755 { "verbose", 0, POPT_ARG_NONE, 0, OPT_VERBOSE, "Print additional information per command", NULL },
1756 { "change-user-password", 0, POPT_ARG_STRING, &string_arg, OPT_CHANGE_USER_PASSWORD, "Change the password for a user", NULL },
1757 { "ntlmv2", 0, POPT_ARG_NONE, 0, OPT_NTLMV2, "Use NTLMv2 cryptography for user authentication", NULL},
1758 { "lanman", 0, POPT_ARG_NONE, 0, OPT_LANMAN, "Use lanman cryptography for user authentication", NULL},
1759 POPT_COMMON_VERSION
1760 POPT_TABLEEND
1763 /* Samba client initialisation */
1764 load_case_tables();
1767 /* Parse options */
1769 pc = poptGetContext("wbinfo", argc, (const char **)argv,
1770 long_options, 0);
1772 /* Parse command line options */
1774 if (argc == 1) {
1775 poptPrintHelp(pc, stderr, 0);
1776 return 1;
1779 while((opt = poptGetNextOpt(pc)) != -1) {
1780 /* get the generic configuration parameters like --domain */
1781 switch (opt) {
1782 case OPT_VERBOSE:
1783 verbose = true;
1784 break;
1785 case OPT_NTLMV2:
1786 use_ntlmv2 = true;
1787 break;
1788 case OPT_LANMAN:
1789 use_lanman = true;
1790 break;
1794 poptFreeContext(pc);
1796 pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1797 POPT_CONTEXT_KEEP_FIRST);
1799 while((opt = poptGetNextOpt(pc)) != -1) {
1800 switch (opt) {
1801 case 'u':
1802 if (!print_domain_users(opt_domain_name)) {
1803 d_fprintf(stderr,
1804 "Error looking up domain users\n");
1805 goto done;
1807 break;
1808 case 'g':
1809 if (!print_domain_groups(opt_domain_name)) {
1810 d_fprintf(stderr,
1811 "Error looking up domain groups\n");
1812 goto done;
1814 break;
1815 case 's':
1816 if (!wbinfo_lookupsid(string_arg)) {
1817 d_fprintf(stderr,
1818 "Could not lookup sid %s\n",
1819 string_arg);
1820 goto done;
1822 break;
1823 case OPT_SID_TO_FULLNAME:
1824 if (!wbinfo_lookupsid_fullname(string_arg)) {
1825 d_fprintf(stderr, "Could not lookup sid %s\n",
1826 string_arg);
1827 goto done;
1829 break;
1830 case 'R':
1831 if (!wbinfo_lookuprids(opt_domain_name, string_arg)) {
1832 d_fprintf(stderr, "Could not lookup RIDs %s\n",
1833 string_arg);
1834 goto done;
1836 break;
1837 case 'n':
1838 if (!wbinfo_lookupname(string_arg)) {
1839 d_fprintf(stderr, "Could not lookup name %s\n",
1840 string_arg);
1841 goto done;
1843 break;
1844 case 'N':
1845 if (!wbinfo_wins_byname(string_arg)) {
1846 d_fprintf(stderr,
1847 "Could not lookup WINS by name %s\n",
1848 string_arg);
1849 goto done;
1851 break;
1852 case 'I':
1853 if (!wbinfo_wins_byip(string_arg)) {
1854 d_fprintf(stderr,
1855 "Could not lookup WINS by IP %s\n",
1856 string_arg);
1857 goto done;
1859 break;
1860 case 'U':
1861 if (!wbinfo_uid_to_sid(int_arg)) {
1862 d_fprintf(stderr,
1863 "Could not convert uid %d to sid\n",
1864 int_arg);
1865 goto done;
1867 break;
1868 case 'G':
1869 if (!wbinfo_gid_to_sid(int_arg)) {
1870 d_fprintf(stderr,
1871 "Could not convert gid %d to sid\n",
1872 int_arg);
1873 goto done;
1875 break;
1876 case 'S':
1877 if (!wbinfo_sid_to_uid(string_arg)) {
1878 d_fprintf(stderr,
1879 "Could not convert sid %s to uid\n",
1880 string_arg);
1881 goto done;
1883 break;
1884 case 'Y':
1885 if (!wbinfo_sid_to_gid(string_arg)) {
1886 d_fprintf(stderr,
1887 "Could not convert sid %s to gid\n",
1888 string_arg);
1889 goto done;
1891 break;
1892 case OPT_ALLOCATE_UID:
1893 if (!wbinfo_allocate_uid()) {
1894 d_fprintf(stderr, "Could not allocate a uid\n");
1895 goto done;
1897 break;
1898 case OPT_ALLOCATE_GID:
1899 if (!wbinfo_allocate_gid()) {
1900 d_fprintf(stderr, "Could not allocate a gid\n");
1901 goto done;
1903 break;
1904 case OPT_SET_UID_MAPPING:
1905 if (!parse_mapping_arg(string_arg, &int_subarg,
1906 &string_subarg) ||
1907 !wbinfo_set_uid_mapping(int_subarg, string_subarg))
1909 d_fprintf(stderr, "Could not create or modify "
1910 "uid to sid mapping\n");
1911 goto done;
1913 break;
1914 case OPT_SET_GID_MAPPING:
1915 if (!parse_mapping_arg(string_arg, &int_subarg,
1916 &string_subarg) ||
1917 !wbinfo_set_gid_mapping(int_subarg, string_subarg))
1919 d_fprintf(stderr, "Could not create or modify "
1920 "gid to sid mapping\n");
1921 goto done;
1923 break;
1924 case OPT_REMOVE_UID_MAPPING:
1925 if (!parse_mapping_arg(string_arg, &int_subarg,
1926 &string_subarg) ||
1927 !wbinfo_remove_uid_mapping(int_subarg,
1928 string_subarg))
1930 d_fprintf(stderr, "Could not remove uid to sid "
1931 "mapping\n");
1932 goto done;
1934 break;
1935 case OPT_REMOVE_GID_MAPPING:
1936 if (!parse_mapping_arg(string_arg, &int_subarg,
1937 &string_subarg) ||
1938 !wbinfo_remove_gid_mapping(int_subarg,
1939 string_subarg))
1941 d_fprintf(stderr, "Could not remove gid to sid "
1942 "mapping\n");
1943 goto done;
1945 break;
1946 case 't':
1947 if (!wbinfo_check_secret()) {
1948 d_fprintf(stderr, "Could not check secret\n");
1949 goto done;
1951 break;
1952 case 'm':
1953 if (!wbinfo_list_domains(false, verbose)) {
1954 d_fprintf(stderr,
1955 "Could not list trusted domains\n");
1956 goto done;
1958 break;
1959 case OPT_SEQUENCE:
1960 if (!wbinfo_show_sequence(opt_domain_name)) {
1961 d_fprintf(stderr,
1962 "Could not show sequence numbers\n");
1963 goto done;
1965 break;
1966 case OPT_ONLINESTATUS:
1967 if (!wbinfo_show_onlinestatus(opt_domain_name)) {
1968 d_fprintf(stderr,
1969 "Could not show online-status\n");
1970 goto done;
1972 break;
1973 case 'D':
1974 if (!wbinfo_domain_info(string_arg)) {
1975 d_fprintf(stderr,
1976 "Could not get domain info\n");
1977 goto done;
1979 break;
1980 case 'i':
1981 if (!wbinfo_get_userinfo(string_arg)) {
1982 d_fprintf(stderr,
1983 "Could not get info for user %s\n",
1984 string_arg);
1985 goto done;
1987 break;
1988 case OPT_USER_SIDINFO:
1989 if ( !wbinfo_get_user_sidinfo(string_arg)) {
1990 d_fprintf(stderr,
1991 "Could not get info for user "
1992 "sid %s\n", string_arg);
1993 goto done;
1995 break;
1996 case OPT_UID_INFO:
1997 if ( !wbinfo_get_uidinfo(int_arg)) {
1998 d_fprintf(stderr, "Could not get info for uid "
1999 "%d\n", int_arg);
2000 goto done;
2002 break;
2003 case OPT_GROUP_INFO:
2004 if ( !wbinfo_get_groupinfo(string_arg)) {
2005 d_fprintf(stderr, "Could not get info for "
2006 "group %s\n", string_arg);
2007 goto done;
2009 break;
2010 case OPT_GID_INFO:
2011 if ( !wbinfo_get_gidinfo(int_arg)) {
2012 d_fprintf(stderr, "Could not get info for gid "
2013 "%d\n", int_arg);
2014 goto done;
2016 break;
2017 case 'r':
2018 if (!wbinfo_get_usergroups(string_arg)) {
2019 d_fprintf(stderr,
2020 "Could not get groups for user %s\n",
2021 string_arg);
2022 goto done;
2024 break;
2025 case OPT_USERSIDS:
2026 if (!wbinfo_get_usersids(string_arg)) {
2027 d_fprintf(stderr, "Could not get group SIDs "
2028 "for user SID %s\n",
2029 string_arg);
2030 goto done;
2032 break;
2033 case OPT_USERDOMGROUPS:
2034 if (!wbinfo_get_userdomgroups(string_arg)) {
2035 d_fprintf(stderr, "Could not get user's domain "
2036 "groups for user SID %s\n",
2037 string_arg);
2038 goto done;
2040 break;
2041 case OPT_SIDALIASES:
2042 if (!wbinfo_get_sidaliases(opt_domain_name,
2043 string_arg)) {
2044 d_fprintf(stderr, "Could not get sid aliases "
2045 "for user SID %s\n", string_arg);
2046 goto done;
2048 break;
2049 case 'a': {
2050 bool got_error = false;
2052 if (!wbinfo_auth(string_arg)) {
2053 d_fprintf(stderr,
2054 "Could not authenticate user "
2055 "%s with plaintext "
2056 "password\n", string_arg);
2057 got_error = true;
2060 if (!wbinfo_auth_crap(string_arg, use_ntlmv2,
2061 use_lanman)) {
2062 d_fprintf(stderr,
2063 "Could not authenticate user "
2064 "%s with challenge/response\n",
2065 string_arg);
2066 got_error = true;
2069 if (got_error)
2070 goto done;
2071 break;
2073 case 'K': {
2074 uint32_t flags = WBFLAG_PAM_KRB5 |
2075 WBFLAG_PAM_CACHED_LOGIN |
2076 WBFLAG_PAM_FALLBACK_AFTER_KRB5 |
2077 WBFLAG_PAM_INFO3_TEXT |
2078 WBFLAG_PAM_CONTACT_TRUSTDOM;
2080 if (!wbinfo_auth_krb5(string_arg, "FILE",
2081 flags)) {
2082 d_fprintf(stderr,
2083 "Could not authenticate user "
2084 "[%s] with Kerberos "
2085 "(ccache: %s)\n", string_arg,
2086 "FILE");
2087 goto done;
2089 break;
2091 case 'k':
2092 if (!wbinfo_klog(string_arg)) {
2093 d_fprintf(stderr, "Could not klog user\n");
2094 goto done;
2096 break;
2097 case 'p':
2098 if (!wbinfo_ping()) {
2099 d_fprintf(stderr, "could not ping winbindd!\n");
2100 goto done;
2102 break;
2103 case OPT_SET_AUTH_USER:
2104 if (!wbinfo_set_auth_user(string_arg)) {
2105 goto done;
2107 break;
2108 case OPT_GET_AUTH_USER:
2109 wbinfo_get_auth_user();
2110 goto done;
2111 break;
2112 case OPT_GETDCNAME:
2113 if (!wbinfo_getdcname(string_arg)) {
2114 goto done;
2116 break;
2117 case OPT_DSGETDCNAME:
2118 if (!wbinfo_dsgetdcname(string_arg, 0)) {
2119 goto done;
2121 break;
2122 case OPT_SEPARATOR: {
2123 const char sep = winbind_separator();
2124 if ( !sep ) {
2125 goto done;
2127 d_printf("%c\n", sep);
2128 break;
2130 case OPT_LIST_ALL_DOMAINS:
2131 if (!wbinfo_list_domains(true, verbose)) {
2132 goto done;
2134 break;
2135 case OPT_LIST_OWN_DOMAIN:
2136 if (!wbinfo_list_own_domain()) {
2137 goto done;
2139 break;
2140 case OPT_CHANGE_USER_PASSWORD:
2141 if (!wbinfo_change_user_password(string_arg)) {
2142 d_fprintf(stderr,
2143 "Could not change user password "
2144 "for user %s\n", string_arg);
2145 goto done;
2147 break;
2149 /* generic configuration options */
2150 case OPT_DOMAIN_NAME:
2151 break;
2152 case OPT_VERBOSE:
2153 break;
2154 case OPT_NTLMV2:
2155 break;
2156 case OPT_LANMAN:
2157 break;
2158 default:
2159 d_fprintf(stderr, "Invalid option\n");
2160 poptPrintHelp(pc, stderr, 0);
2161 goto done;
2165 result = 0;
2167 /* Exit code */
2169 done:
2170 talloc_free(frame);
2172 poptFreeContext(pc);
2173 return result;