r2565: syncing up for 3.0.8pre1
[Samba.git] / source / nsswitch / wbinfo.c
blobb6a09bf2a1f38d54d922fa53df618988a55d4444
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 2 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, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "includes.h"
25 #include "winbindd.h"
26 #include "debug.h"
28 #undef DBGC_CLASS
29 #define DBGC_CLASS DBGC_WINBIND
31 extern int winbindd_fd;
33 static char winbind_separator(void)
35 struct winbindd_response response;
36 static BOOL got_sep;
37 static char sep;
39 if (got_sep)
40 return sep;
42 ZERO_STRUCT(response);
44 /* Send off request */
46 if (winbindd_request(WINBINDD_INFO, NULL, &response) !=
47 NSS_STATUS_SUCCESS) {
48 d_printf("could not obtain winbind separator!\n");
49 /* HACK: (this module should not call lp_ funtions) */
50 return *lp_winbind_separator();
53 sep = response.data.info.winbind_separator;
54 got_sep = True;
56 if (!sep) {
57 d_printf("winbind separator was NULL!\n");
58 /* HACK: (this module should not call lp_ funtions) */
59 sep = *lp_winbind_separator();
62 return sep;
65 static const char *get_winbind_domain(void)
67 struct winbindd_response response;
68 static fstring winbind_domain;
70 ZERO_STRUCT(response);
72 /* Send off request */
74 if (winbindd_request(WINBINDD_DOMAIN_NAME, NULL, &response) !=
75 NSS_STATUS_SUCCESS) {
76 d_printf("could not obtain winbind domain name!\n");
78 /* HACK: (this module should not call lp_ funtions) */
79 return lp_workgroup();
82 fstrcpy(winbind_domain, response.data.domain_name);
84 return winbind_domain;
88 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
89 form DOMAIN/user into a domain and a user */
91 static BOOL parse_wbinfo_domain_user(const char *domuser, fstring domain,
92 fstring user)
95 char *p = strchr(domuser,winbind_separator());
97 if (!p) {
98 fstrcpy(user, domuser);
99 fstrcpy(domain, get_winbind_domain());
100 return True;
103 fstrcpy(user, p+1);
104 fstrcpy(domain, domuser);
105 domain[PTR_DIFF(p, domuser)] = 0;
106 strupper_m(domain);
108 return True;
111 /* List groups a user is a member of */
113 static BOOL wbinfo_get_usergroups(char *user)
115 struct winbindd_request request;
116 struct winbindd_response response;
117 NSS_STATUS result;
118 int i;
120 ZERO_STRUCT(response);
122 /* Send request */
124 fstrcpy(request.data.username, user);
126 result = winbindd_request(WINBINDD_GETGROUPS, &request, &response);
128 if (result != NSS_STATUS_SUCCESS)
129 return False;
131 for (i = 0; i < response.data.num_entries; i++)
132 d_printf("%d\n", (int)((gid_t *)response.extra_data)[i]);
134 SAFE_FREE(response.extra_data);
136 return True;
140 /* List group SIDs a user SID is a member of */
141 static BOOL wbinfo_get_usersids(char *user_sid)
143 struct winbindd_request request;
144 struct winbindd_response response;
145 NSS_STATUS result;
146 int i;
147 const char *s;
149 ZERO_STRUCT(response);
151 /* Send request */
152 fstrcpy(request.data.sid, user_sid);
154 result = winbindd_request(WINBINDD_GETUSERSIDS, &request, &response);
156 if (result != NSS_STATUS_SUCCESS)
157 return False;
159 s = response.extra_data;
160 for (i = 0; i < response.data.num_entries; i++) {
161 d_printf("%s\n", s);
162 s += strlen(s) + 1;
165 SAFE_FREE(response.extra_data);
167 return True;
170 /* Convert NetBIOS name to IP */
172 static BOOL wbinfo_wins_byname(char *name)
174 struct winbindd_request request;
175 struct winbindd_response response;
177 ZERO_STRUCT(request);
178 ZERO_STRUCT(response);
180 /* Send request */
182 fstrcpy(request.data.winsreq, name);
184 if (winbindd_request(WINBINDD_WINS_BYNAME, &request, &response) !=
185 NSS_STATUS_SUCCESS) {
186 return False;
189 /* Display response */
191 printf("%s\n", response.data.winsresp);
193 return True;
196 /* Convert IP to NetBIOS name */
198 static BOOL wbinfo_wins_byip(char *ip)
200 struct winbindd_request request;
201 struct winbindd_response response;
203 ZERO_STRUCT(request);
204 ZERO_STRUCT(response);
206 /* Send request */
208 fstrcpy(request.data.winsreq, ip);
210 if (winbindd_request(WINBINDD_WINS_BYIP, &request, &response) !=
211 NSS_STATUS_SUCCESS) {
212 return False;
215 /* Display response */
217 printf("%s\n", response.data.winsresp);
219 return True;
222 /* List trusted domains */
224 static BOOL wbinfo_list_domains(void)
226 struct winbindd_response response;
227 fstring name;
229 ZERO_STRUCT(response);
231 /* Send request */
233 if (winbindd_request(WINBINDD_LIST_TRUSTDOM, NULL, &response) !=
234 NSS_STATUS_SUCCESS)
235 return False;
237 /* Display response */
239 if (response.extra_data) {
240 const char *extra_data = (char *)response.extra_data;
242 while(next_token(&extra_data, name, ",", sizeof(fstring)))
243 d_printf("%s\n", name);
245 SAFE_FREE(response.extra_data);
248 return True;
252 /* show sequence numbers */
253 static BOOL wbinfo_show_sequence(const char *domain)
255 struct winbindd_request request;
256 struct winbindd_response response;
258 ZERO_STRUCT(response);
259 ZERO_STRUCT(request);
261 if ( domain )
262 fstrcpy( request.domain_name, domain );
264 /* Send request */
266 if (winbindd_request(WINBINDD_SHOW_SEQUENCE, &request, &response) !=
267 NSS_STATUS_SUCCESS)
268 return False;
270 /* Display response */
272 if (response.extra_data) {
273 char *extra_data = (char *)response.extra_data;
274 d_printf("%s", extra_data);
275 SAFE_FREE(response.extra_data);
278 return True;
281 /* Show domain info */
283 static BOOL wbinfo_domain_info(const char *domain_name)
285 struct winbindd_request request;
286 struct winbindd_response response;
288 ZERO_STRUCT(request);
289 ZERO_STRUCT(response);
291 fstrcpy(request.domain_name, domain_name);
293 /* Send request */
295 if (winbindd_request(WINBINDD_DOMAIN_INFO, &request, &response) !=
296 NSS_STATUS_SUCCESS)
297 return False;
299 /* Display response */
301 d_printf("Name : %s\n", response.data.domain_info.name);
302 d_printf("Alt_Name : %s\n", response.data.domain_info.alt_name);
304 d_printf("SID : %s\n", response.data.domain_info.sid);
306 d_printf("Active Directory : %s\n",
307 response.data.domain_info.active_directory ? "Yes" : "No");
308 d_printf("Native : %s\n",
309 response.data.domain_info.native_mode ? "Yes" : "No");
311 d_printf("Primary : %s\n",
312 response.data.domain_info.primary ? "Yes" : "No");
314 d_printf("Sequence : %d\n", response.data.domain_info.sequence_number);
316 return True;
319 /* Check trust account password */
321 static BOOL wbinfo_check_secret(void)
323 struct winbindd_response response;
324 NSS_STATUS result;
326 ZERO_STRUCT(response);
328 result = winbindd_request(WINBINDD_CHECK_MACHACC, NULL, &response);
330 d_printf("checking the trust secret via RPC calls %s\n",
331 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
333 if (result != NSS_STATUS_SUCCESS)
334 d_printf("error code was %s (0x%x)\n",
335 response.data.auth.nt_status_string,
336 response.data.auth.nt_status);
338 return result == NSS_STATUS_SUCCESS;
341 /* Convert uid to sid */
343 static BOOL wbinfo_uid_to_sid(uid_t uid)
345 struct winbindd_request request;
346 struct winbindd_response response;
348 ZERO_STRUCT(request);
349 ZERO_STRUCT(response);
351 /* Send request */
353 request.data.uid = uid;
355 if (winbindd_request(WINBINDD_UID_TO_SID, &request, &response) !=
356 NSS_STATUS_SUCCESS)
357 return False;
359 /* Display response */
361 d_printf("%s\n", response.data.sid.sid);
363 return True;
366 /* Convert gid to sid */
368 static BOOL wbinfo_gid_to_sid(gid_t gid)
370 struct winbindd_request request;
371 struct winbindd_response response;
373 ZERO_STRUCT(request);
374 ZERO_STRUCT(response);
376 /* Send request */
378 request.data.gid = gid;
380 if (winbindd_request(WINBINDD_GID_TO_SID, &request, &response) !=
381 NSS_STATUS_SUCCESS)
382 return False;
384 /* Display response */
386 d_printf("%s\n", response.data.sid.sid);
388 return True;
391 /* Convert sid to uid */
393 static BOOL wbinfo_sid_to_uid(char *sid)
395 struct winbindd_request request;
396 struct winbindd_response response;
398 ZERO_STRUCT(request);
399 ZERO_STRUCT(response);
401 /* Send request */
403 fstrcpy(request.data.sid, sid);
405 if (winbindd_request(WINBINDD_SID_TO_UID, &request, &response) !=
406 NSS_STATUS_SUCCESS)
407 return False;
409 /* Display response */
411 d_printf("%d\n", (int)response.data.uid);
413 return True;
416 static BOOL wbinfo_sid_to_gid(char *sid)
418 struct winbindd_request request;
419 struct winbindd_response response;
421 ZERO_STRUCT(request);
422 ZERO_STRUCT(response);
424 /* Send request */
426 fstrcpy(request.data.sid, sid);
428 if (winbindd_request(WINBINDD_SID_TO_GID, &request, &response) !=
429 NSS_STATUS_SUCCESS)
430 return False;
432 /* Display response */
434 d_printf("%d\n", (int)response.data.gid);
436 return True;
439 static BOOL wbinfo_allocate_rid(void)
441 uint32 rid;
443 if (!winbind_allocate_rid(&rid))
444 return False;
446 d_printf("New rid: %d\n", rid);
448 return True;
451 /* Convert sid to string */
453 static BOOL wbinfo_lookupsid(char *sid)
455 struct winbindd_request request;
456 struct winbindd_response response;
458 ZERO_STRUCT(request);
459 ZERO_STRUCT(response);
461 /* Send off request */
463 fstrcpy(request.data.sid, sid);
465 if (winbindd_request(WINBINDD_LOOKUPSID, &request, &response) !=
466 NSS_STATUS_SUCCESS)
467 return False;
469 /* Display response */
471 d_printf("%s%c%s %d\n", response.data.name.dom_name,
472 winbind_separator(), response.data.name.name,
473 response.data.name.type);
475 return True;
478 /* Convert string to sid */
480 static BOOL wbinfo_lookupname(char *name)
482 struct winbindd_request request;
483 struct winbindd_response response;
485 /* Send off request */
487 ZERO_STRUCT(request);
488 ZERO_STRUCT(response);
490 parse_wbinfo_domain_user(name, request.data.name.dom_name,
491 request.data.name.name);
493 if (winbindd_request(WINBINDD_LOOKUPNAME, &request, &response) !=
494 NSS_STATUS_SUCCESS)
495 return False;
497 /* Display response */
499 d_printf("%s %s (%d)\n", response.data.sid.sid, sid_type_lookup(response.data.sid.type), response.data.sid.type);
501 return True;
504 /* Authenticate a user with a plaintext password */
506 static BOOL wbinfo_auth(char *username)
508 struct winbindd_request request;
509 struct winbindd_response response;
510 NSS_STATUS result;
511 char *p;
513 /* Send off request */
515 ZERO_STRUCT(request);
516 ZERO_STRUCT(response);
518 p = strchr(username, '%');
520 if (p) {
521 *p = 0;
522 fstrcpy(request.data.auth.user, username);
523 fstrcpy(request.data.auth.pass, p + 1);
524 *p = '%';
525 } else
526 fstrcpy(request.data.auth.user, username);
528 result = winbindd_request(WINBINDD_PAM_AUTH, &request, &response);
530 /* Display response */
532 d_printf("plaintext password authentication %s\n",
533 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
535 if (response.data.auth.nt_status)
536 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n",
537 response.data.auth.nt_status_string,
538 response.data.auth.nt_status,
539 response.data.auth.error_string);
541 return result == NSS_STATUS_SUCCESS;
544 /* Authenticate a user with a challenge/response */
546 static BOOL wbinfo_auth_crap(char *username)
548 struct winbindd_request request;
549 struct winbindd_response response;
550 NSS_STATUS result;
551 fstring name_user;
552 fstring name_domain;
553 fstring pass;
554 char *p;
556 /* Send off request */
558 ZERO_STRUCT(request);
559 ZERO_STRUCT(response);
561 p = strchr(username, '%');
563 if (p) {
564 *p = 0;
565 fstrcpy(pass, p + 1);
568 parse_wbinfo_domain_user(username, name_domain, name_user);
570 if (push_utf8_fstring(request.data.auth_crap.user, name_user) == -1) {
571 d_printf("unable to create utf8 string for '%s'\n",
572 name_user);
573 return False;
576 if (push_utf8_fstring(request.data.auth_crap.domain,
577 name_domain) == -1) {
578 d_printf("unable to create utf8 string for '%s'\n",
579 name_domain);
580 return False;
583 generate_random_buffer(request.data.auth_crap.chal, 8);
585 SMBencrypt(pass, request.data.auth_crap.chal,
586 (uchar *)request.data.auth_crap.lm_resp);
587 SMBNTencrypt(pass, request.data.auth_crap.chal,
588 (uchar *)request.data.auth_crap.nt_resp);
590 request.data.auth_crap.lm_resp_len = 24;
591 request.data.auth_crap.nt_resp_len = 24;
593 result = winbindd_request(WINBINDD_PAM_AUTH_CRAP, &request, &response);
595 /* Display response */
597 d_printf("challenge/response password authentication %s\n",
598 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
600 if (response.data.auth.nt_status)
601 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n",
602 response.data.auth.nt_status_string,
603 response.data.auth.nt_status,
604 response.data.auth.error_string);
606 return result == NSS_STATUS_SUCCESS;
609 /* Authenticate a user with a plaintext password and set a token */
611 static BOOL wbinfo_klog(char *username)
613 struct winbindd_request request;
614 struct winbindd_response response;
615 NSS_STATUS result;
616 char *p;
618 /* Send off request */
620 ZERO_STRUCT(request);
621 ZERO_STRUCT(response);
623 p = strchr(username, '%');
625 if (p) {
626 *p = 0;
627 fstrcpy(request.data.auth.user, username);
628 fstrcpy(request.data.auth.pass, p + 1);
629 *p = '%';
630 } else {
631 fstrcpy(request.data.auth.user, username);
632 fstrcpy(request.data.auth.pass, getpass("Password: "));
635 request.flags |= WBFLAG_PAM_AFS_TOKEN;
637 result = winbindd_request(WINBINDD_PAM_AUTH, &request, &response);
639 /* Display response */
641 d_printf("plaintext password authentication %s\n",
642 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
644 if (response.data.auth.nt_status)
645 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n",
646 response.data.auth.nt_status_string,
647 response.data.auth.nt_status,
648 response.data.auth.error_string);
650 if (result != NSS_STATUS_SUCCESS)
651 return False;
653 if (response.extra_data == NULL) {
654 d_printf("Did not get token data\n");
655 return False;
658 if (!afs_settoken_str((char *)response.extra_data)) {
659 d_printf("Could not set token\n");
660 return False;
663 d_printf("Successfully created AFS token\n");
664 return True;
667 /******************************************************************
668 create a winbindd user
669 ******************************************************************/
671 static BOOL wbinfo_create_user(char *username)
673 struct winbindd_request request;
674 struct winbindd_response response;
675 NSS_STATUS result;
677 /* Send off request */
679 ZERO_STRUCT(request);
680 ZERO_STRUCT(response);
682 request.flags = WBFLAG_ALLOCATE_RID;
683 fstrcpy(request.data.acct_mgt.username, username);
685 result = winbindd_request(WINBINDD_CREATE_USER, &request, &response);
687 if ( result == NSS_STATUS_SUCCESS )
688 d_printf("New RID is %d\n", response.data.rid);
690 return result == NSS_STATUS_SUCCESS;
693 /******************************************************************
694 remove a winbindd user
695 ******************************************************************/
697 static BOOL wbinfo_delete_user(char *username)
699 struct winbindd_request request;
700 struct winbindd_response response;
701 NSS_STATUS result;
703 /* Send off request */
705 ZERO_STRUCT(request);
706 ZERO_STRUCT(response);
708 fstrcpy(request.data.acct_mgt.username, username);
710 result = winbindd_request(WINBINDD_DELETE_USER, &request, &response);
712 return result == NSS_STATUS_SUCCESS;
715 /******************************************************************
716 create a winbindd group
717 ******************************************************************/
719 static BOOL wbinfo_create_group(char *groupname)
721 struct winbindd_request request;
722 struct winbindd_response response;
723 NSS_STATUS result;
725 /* Send off request */
727 ZERO_STRUCT(request);
728 ZERO_STRUCT(response);
730 fstrcpy(request.data.acct_mgt.groupname, groupname);
732 result = winbindd_request(WINBINDD_CREATE_GROUP, &request, &response);
734 return result == NSS_STATUS_SUCCESS;
737 /******************************************************************
738 remove a winbindd group
739 ******************************************************************/
741 static BOOL wbinfo_delete_group(char *groupname)
743 struct winbindd_request request;
744 struct winbindd_response response;
745 NSS_STATUS result;
747 /* Send off request */
749 ZERO_STRUCT(request);
750 ZERO_STRUCT(response);
752 fstrcpy(request.data.acct_mgt.groupname, groupname);
754 result = winbindd_request(WINBINDD_DELETE_GROUP, &request, &response);
756 return result == NSS_STATUS_SUCCESS;
759 /******************************************************************
760 parse a string in the form user:group
761 ******************************************************************/
763 static BOOL parse_user_group( const char *string, fstring user, fstring group )
765 char *p;
767 if ( !string )
768 return False;
770 if ( !(p = strchr( string, ':' )) )
771 return False;
773 *p = '\0';
774 p++;
776 fstrcpy( user, string );
777 fstrcpy( group, p );
779 return True;
782 /******************************************************************
783 add a user to a winbindd group
784 ******************************************************************/
786 static BOOL wbinfo_add_user_to_group(char *string)
788 struct winbindd_request request;
789 struct winbindd_response response;
790 NSS_STATUS result;
792 /* Send off request */
794 ZERO_STRUCT(request);
795 ZERO_STRUCT(response);
797 if ( !parse_user_group( string, request.data.acct_mgt.username,
798 request.data.acct_mgt.groupname))
800 d_printf("Can't parse user:group from %s\n", string);
801 return False;
804 result = winbindd_request(WINBINDD_ADD_USER_TO_GROUP, &request, &response);
806 return result == NSS_STATUS_SUCCESS;
809 /******************************************************************
810 remove a user from a winbindd group
811 ******************************************************************/
813 static BOOL wbinfo_remove_user_from_group(char *string)
815 struct winbindd_request request;
816 struct winbindd_response response;
817 NSS_STATUS result;
819 /* Send off request */
821 ZERO_STRUCT(request);
822 ZERO_STRUCT(response);
824 if ( !parse_user_group( string, request.data.acct_mgt.username,
825 request.data.acct_mgt.groupname))
827 d_printf("Can't parse user:group from %s\n", string);
828 return False;
831 result = winbindd_request(WINBINDD_REMOVE_USER_FROM_GROUP, &request, &response);
833 return result == NSS_STATUS_SUCCESS;
836 /* Print domain users */
838 static BOOL print_domain_users(const char *domain)
840 struct winbindd_request request;
841 struct winbindd_response response;
842 const char *extra_data;
843 fstring name;
845 /* Send request to winbind daemon */
847 ZERO_STRUCT(request);
848 ZERO_STRUCT(response);
850 if (domain) {
851 /* '.' is the special sign for our own domwin */
852 if ( strequal(domain, ".") )
853 fstrcpy( request.domain_name, lp_workgroup() );
854 else
855 fstrcpy( request.domain_name, domain );
858 if (winbindd_request(WINBINDD_LIST_USERS, &request, &response) !=
859 NSS_STATUS_SUCCESS)
860 return False;
862 /* Look through extra data */
864 if (!response.extra_data)
865 return False;
867 extra_data = (const char *)response.extra_data;
869 while(next_token(&extra_data, name, ",", sizeof(fstring)))
870 d_printf("%s\n", name);
872 SAFE_FREE(response.extra_data);
874 return True;
877 /* Print domain groups */
879 static BOOL print_domain_groups(const char *domain)
881 struct winbindd_request request;
882 struct winbindd_response response;
883 const char *extra_data;
884 fstring name;
886 ZERO_STRUCT(request);
887 ZERO_STRUCT(response);
889 if (domain) {
890 if ( strequal(domain, ".") )
891 fstrcpy( request.domain_name, lp_workgroup() );
892 else
893 fstrcpy( request.domain_name, domain );
896 if (winbindd_request(WINBINDD_LIST_GROUPS, &request, &response) !=
897 NSS_STATUS_SUCCESS)
898 return False;
900 /* Look through extra data */
902 if (!response.extra_data)
903 return False;
905 extra_data = (const char *)response.extra_data;
907 while(next_token(&extra_data, name, ",", sizeof(fstring)))
908 d_printf("%s\n", name);
910 SAFE_FREE(response.extra_data);
912 return True;
915 /* Set the authorised user for winbindd access in secrets.tdb */
917 static BOOL wbinfo_set_auth_user(char *username)
919 const char *password;
920 char *p;
921 fstring user, domain;
923 /* Separate into user and password */
925 parse_wbinfo_domain_user(username, domain, user);
927 p = strchr(user, '%');
929 if (p != NULL) {
930 *p = 0;
931 password = p+1;
932 } else {
933 char *thepass = getpass("Password: ");
934 if (thepass) {
935 password = thepass;
936 } else
937 password = "";
940 /* Store or remove DOMAIN\username%password in secrets.tdb */
942 secrets_init();
944 if (user[0]) {
946 if (!secrets_store(SECRETS_AUTH_USER, user,
947 strlen(user) + 1)) {
948 d_fprintf(stderr, "error storing username\n");
949 return False;
952 /* We always have a domain name added by the
953 parse_wbinfo_domain_user() function. */
955 if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
956 strlen(domain) + 1)) {
957 d_fprintf(stderr, "error storing domain name\n");
958 return False;
961 } else {
962 secrets_delete(SECRETS_AUTH_USER);
963 secrets_delete(SECRETS_AUTH_DOMAIN);
966 if (password[0]) {
968 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
969 strlen(password) + 1)) {
970 d_fprintf(stderr, "error storing password\n");
971 return False;
974 } else
975 secrets_delete(SECRETS_AUTH_PASSWORD);
977 return True;
980 static void wbinfo_get_auth_user(void)
982 char *user, *domain, *password;
984 /* Lift data from secrets file */
986 secrets_fetch_ipc_userpass(&user, &domain, &password);
988 if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
990 SAFE_FREE(user);
991 SAFE_FREE(domain);
992 SAFE_FREE(password);
993 d_printf("No authorised user configured\n");
994 return;
997 /* Pretty print authorised user info */
999 d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? lp_winbind_separator(): "",
1000 user, password ? "%" : "", password ? password : "");
1002 SAFE_FREE(user);
1003 SAFE_FREE(domain);
1004 SAFE_FREE(password);
1007 static BOOL wbinfo_ping(void)
1009 NSS_STATUS result;
1011 result = winbindd_request(WINBINDD_PING, NULL, NULL);
1013 /* Display response */
1015 d_printf("Ping to winbindd %s on fd %d\n",
1016 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", winbindd_fd);
1018 return result == NSS_STATUS_SUCCESS;
1021 /* Main program */
1023 enum {
1024 OPT_SET_AUTH_USER = 1000,
1025 OPT_GET_AUTH_USER,
1026 OPT_DOMAIN_NAME,
1027 OPT_SEQUENCE,
1028 OPT_USERSIDS
1031 int main(int argc, char **argv)
1033 int opt;
1035 poptContext pc;
1036 static char *string_arg;
1037 static char *opt_domain_name;
1038 static int int_arg;
1039 int result = 1;
1041 struct poptOption long_options[] = {
1042 POPT_AUTOHELP
1044 /* longName, shortName, argInfo, argPtr, value, descrip,
1045 argDesc */
1047 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
1048 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
1049 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1050 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
1051 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
1052 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
1053 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
1054 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
1055 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
1056 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
1057 { "allocate-rid", 'A', POPT_ARG_NONE, 0, 'A', "Get a new RID out of idmap" },
1058 { "create-user", 'c', POPT_ARG_STRING, &string_arg, 'c', "Create a local user account", "name" },
1059 { "delete-user", 'x', POPT_ARG_STRING, &string_arg, 'x', "Delete a local user account", "name" },
1060 { "create-group", 'C', POPT_ARG_STRING, &string_arg, 'C', "Create a local group", "name" },
1061 { "delete-group", 'X', POPT_ARG_STRING, &string_arg, 'X', "Delete a local group", "name" },
1062 { "add-to-group", 'o', POPT_ARG_STRING, &string_arg, 'o', "Add user to group", "user:group" },
1063 { "del-from-group", 'O', POPT_ARG_STRING, &string_arg, 'O', "Remove user from group", "user:group" },
1064 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
1065 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
1066 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
1067 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D', "Show most of the info we have about the domain" },
1068 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
1069 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
1070 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1071 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1072 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1073 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1074 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1075 #ifdef WITH_FAKE_KASERVER
1076 { "klog", 'k', POPT_ARG_STRING, &string_arg, 'k', "set an AFS token from winbind", "user%password" },
1077 #endif
1078 POPT_COMMON_VERSION
1079 POPT_TABLEEND
1082 /* Samba client initialisation */
1084 if (!lp_load(dyn_CONFIGFILE, True, False, False)) {
1085 d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
1086 dyn_CONFIGFILE, strerror(errno));
1087 exit(1);
1090 if (!init_names())
1091 return 1;
1093 load_interfaces();
1095 /* Parse options */
1097 pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
1099 /* Parse command line options */
1101 if (argc == 1) {
1102 poptPrintHelp(pc, stderr, 0);
1103 return 1;
1106 while((opt = poptGetNextOpt(pc)) != -1) {
1107 /* get the generic configuration parameters like --domain */
1110 poptFreeContext(pc);
1112 pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1113 POPT_CONTEXT_KEEP_FIRST);
1115 while((opt = poptGetNextOpt(pc)) != -1) {
1116 switch (opt) {
1117 case 'u':
1118 if (!print_domain_users(opt_domain_name)) {
1119 d_printf("Error looking up domain users\n");
1120 goto done;
1122 break;
1123 case 'g':
1124 if (!print_domain_groups(opt_domain_name)) {
1125 d_printf("Error looking up domain groups\n");
1126 goto done;
1128 break;
1129 case 's':
1130 if (!wbinfo_lookupsid(string_arg)) {
1131 d_printf("Could not lookup sid %s\n", string_arg);
1132 goto done;
1134 break;
1135 case 'n':
1136 if (!wbinfo_lookupname(string_arg)) {
1137 d_printf("Could not lookup name %s\n", string_arg);
1138 goto done;
1140 break;
1141 case 'N':
1142 if (!wbinfo_wins_byname(string_arg)) {
1143 d_printf("Could not lookup WINS by name %s\n", string_arg);
1144 goto done;
1146 break;
1147 case 'I':
1148 if (!wbinfo_wins_byip(string_arg)) {
1149 d_printf("Could not lookup WINS by IP %s\n", string_arg);
1150 goto done;
1152 break;
1153 case 'U':
1154 if (!wbinfo_uid_to_sid(int_arg)) {
1155 d_printf("Could not convert uid %d to sid\n", int_arg);
1156 goto done;
1158 break;
1159 case 'G':
1160 if (!wbinfo_gid_to_sid(int_arg)) {
1161 d_printf("Could not convert gid %d to sid\n",
1162 int_arg);
1163 goto done;
1165 break;
1166 case 'S':
1167 if (!wbinfo_sid_to_uid(string_arg)) {
1168 d_printf("Could not convert sid %s to uid\n",
1169 string_arg);
1170 goto done;
1172 break;
1173 case 'Y':
1174 if (!wbinfo_sid_to_gid(string_arg)) {
1175 d_printf("Could not convert sid %s to gid\n",
1176 string_arg);
1177 goto done;
1179 break;
1180 case 'A':
1181 if (!wbinfo_allocate_rid()) {
1182 d_printf("Could not allocate a RID\n");
1183 goto done;
1185 break;
1186 case 't':
1187 if (!wbinfo_check_secret()) {
1188 d_printf("Could not check secret\n");
1189 goto done;
1191 break;
1192 case 'm':
1193 if (!wbinfo_list_domains()) {
1194 d_printf("Could not list trusted domains\n");
1195 goto done;
1197 break;
1198 case OPT_SEQUENCE:
1199 if (!wbinfo_show_sequence(opt_domain_name)) {
1200 d_printf("Could not show sequence numbers\n");
1201 goto done;
1203 break;
1204 case 'D':
1205 if (!wbinfo_domain_info(string_arg)) {
1206 d_printf("Could not get domain info\n");
1207 goto done;
1209 break;
1210 case 'r':
1211 if (!wbinfo_get_usergroups(string_arg)) {
1212 d_printf("Could not get groups for user %s\n",
1213 string_arg);
1214 goto done;
1216 break;
1217 case OPT_USERSIDS:
1218 if (!wbinfo_get_usersids(string_arg)) {
1219 d_printf("Could not get group SIDs for user SID %s\n",
1220 string_arg);
1221 goto done;
1223 break;
1224 case 'a': {
1225 BOOL got_error = False;
1227 if (!wbinfo_auth(string_arg)) {
1228 d_printf("Could not authenticate user %s with "
1229 "plaintext password\n", string_arg);
1230 got_error = True;
1233 if (!wbinfo_auth_crap(string_arg)) {
1234 d_printf("Could not authenticate user %s with "
1235 "challenge/response\n", string_arg);
1236 got_error = True;
1239 if (got_error)
1240 goto done;
1241 break;
1243 case 'k':
1244 if (!wbinfo_klog(string_arg)) {
1245 d_printf("Could not klog user\n");
1246 goto done;
1248 break;
1249 case 'c':
1250 if ( !wbinfo_create_user(string_arg) ) {
1251 d_printf("Could not create user account\n");
1252 goto done;
1254 break;
1255 case 'C':
1256 if ( !wbinfo_create_group(string_arg) ) {
1257 d_printf("Could not create group\n");
1258 goto done;
1260 break;
1261 case 'o':
1262 if ( !wbinfo_add_user_to_group(string_arg) ) {
1263 d_printf("Could not add user to group\n");
1264 goto done;
1266 break;
1267 case 'O':
1268 if ( !wbinfo_remove_user_from_group(string_arg) ) {
1269 d_printf("Could not remove user from group\n");
1270 goto done;
1272 break;
1273 case 'x':
1274 if ( !wbinfo_delete_user(string_arg) ) {
1275 d_printf("Could not delete user account\n");
1276 goto done;
1278 break;
1279 case 'X':
1280 if ( !wbinfo_delete_group(string_arg) ) {
1281 d_printf("Could not delete group\n");
1282 goto done;
1284 break;
1285 case 'p':
1286 if (!wbinfo_ping()) {
1287 d_printf("could not ping winbindd!\n");
1288 goto done;
1290 break;
1291 case OPT_SET_AUTH_USER:
1292 wbinfo_set_auth_user(string_arg);
1293 break;
1294 case OPT_GET_AUTH_USER:
1295 wbinfo_get_auth_user();
1296 break;
1297 /* generic configuration options */
1298 case OPT_DOMAIN_NAME:
1299 break;
1300 default:
1301 d_fprintf(stderr, "Invalid option\n");
1302 poptPrintHelp(pc, stderr, 0);
1303 goto done;
1307 result = 0;
1309 /* Exit code */
1311 done:
1312 poptFreeContext(pc);
1313 return result;