This merges in my 'always use ADS' patch. Tested on a mix of NT and ADS
[Samba/gebeck_regimport.git] / source3 / nsswitch / wbinfo.c
blobc7dc89d43f1f2837278df2f6bb86c9f275dcd570
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 /* Convert sid to string */
441 static BOOL wbinfo_lookupsid(char *sid)
443 struct winbindd_request request;
444 struct winbindd_response response;
446 ZERO_STRUCT(request);
447 ZERO_STRUCT(response);
449 /* Send off request */
451 fstrcpy(request.data.sid, sid);
453 if (winbindd_request(WINBINDD_LOOKUPSID, &request, &response) !=
454 NSS_STATUS_SUCCESS)
455 return False;
457 /* Display response */
459 d_printf("%s%c%s %d\n", response.data.name.dom_name,
460 winbind_separator(), response.data.name.name,
461 response.data.name.type);
463 return True;
466 /* Convert string to sid */
468 static BOOL wbinfo_lookupname(char *name)
470 struct winbindd_request request;
471 struct winbindd_response response;
473 /* Send off request */
475 ZERO_STRUCT(request);
476 ZERO_STRUCT(response);
478 parse_wbinfo_domain_user(name, request.data.name.dom_name,
479 request.data.name.name);
481 if (winbindd_request(WINBINDD_LOOKUPNAME, &request, &response) !=
482 NSS_STATUS_SUCCESS)
483 return False;
485 /* Display response */
487 d_printf("%s %s (%d)\n", response.data.sid.sid, sid_type_lookup(response.data.sid.type), response.data.sid.type);
489 return True;
492 /* Authenticate a user with a plaintext password */
494 static BOOL wbinfo_auth(char *username)
496 struct winbindd_request request;
497 struct winbindd_response response;
498 NSS_STATUS result;
499 char *p;
501 /* Send off request */
503 ZERO_STRUCT(request);
504 ZERO_STRUCT(response);
506 p = strchr(username, '%');
508 if (p) {
509 *p = 0;
510 fstrcpy(request.data.auth.user, username);
511 fstrcpy(request.data.auth.pass, p + 1);
512 *p = '%';
513 } else
514 fstrcpy(request.data.auth.user, username);
516 result = winbindd_request(WINBINDD_PAM_AUTH, &request, &response);
518 /* Display response */
520 d_printf("plaintext password authentication %s\n",
521 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
523 if (response.data.auth.nt_status)
524 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n",
525 response.data.auth.nt_status_string,
526 response.data.auth.nt_status,
527 response.data.auth.error_string);
529 return result == NSS_STATUS_SUCCESS;
532 /* Authenticate a user with a challenge/response */
534 static BOOL wbinfo_auth_crap(char *username)
536 struct winbindd_request request;
537 struct winbindd_response response;
538 NSS_STATUS result;
539 fstring name_user;
540 fstring name_domain;
541 fstring pass;
542 char *p;
544 /* Send off request */
546 ZERO_STRUCT(request);
547 ZERO_STRUCT(response);
549 p = strchr(username, '%');
551 if (p) {
552 *p = 0;
553 fstrcpy(pass, p + 1);
556 parse_wbinfo_domain_user(username, name_domain, name_user);
558 if (push_utf8_fstring(request.data.auth_crap.user, name_user) == -1) {
559 d_printf("unable to create utf8 string for '%s'\n",
560 name_user);
561 return False;
564 if (push_utf8_fstring(request.data.auth_crap.domain,
565 name_domain) == -1) {
566 d_printf("unable to create utf8 string for '%s'\n",
567 name_domain);
568 return False;
571 generate_random_buffer(request.data.auth_crap.chal, 8, False);
573 SMBencrypt(pass, request.data.auth_crap.chal,
574 (uchar *)request.data.auth_crap.lm_resp);
575 SMBNTencrypt(pass, request.data.auth_crap.chal,
576 (uchar *)request.data.auth_crap.nt_resp);
578 request.data.auth_crap.lm_resp_len = 24;
579 request.data.auth_crap.nt_resp_len = 24;
581 result = winbindd_request(WINBINDD_PAM_AUTH_CRAP, &request, &response);
583 /* Display response */
585 d_printf("challenge/response password authentication %s\n",
586 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed");
588 if (response.data.auth.nt_status)
589 d_printf("error code was %s (0x%x)\nerror messsage was: %s\n",
590 response.data.auth.nt_status_string,
591 response.data.auth.nt_status,
592 response.data.auth.error_string);
594 return result == NSS_STATUS_SUCCESS;
597 /******************************************************************
598 create a winbindd user
599 ******************************************************************/
601 static BOOL wbinfo_create_user(char *username)
603 struct winbindd_request request;
604 struct winbindd_response response;
605 NSS_STATUS result;
607 /* Send off request */
609 ZERO_STRUCT(request);
610 ZERO_STRUCT(response);
612 request.flags = WBFLAG_ALLOCATE_RID;
613 fstrcpy(request.data.acct_mgt.username, username);
615 result = winbindd_request(WINBINDD_CREATE_USER, &request, &response);
617 if ( result == NSS_STATUS_SUCCESS )
618 d_printf("New RID is %d\n", response.data.rid);
620 return result == NSS_STATUS_SUCCESS;
623 /******************************************************************
624 remove a winbindd user
625 ******************************************************************/
627 static BOOL wbinfo_delete_user(char *username)
629 struct winbindd_request request;
630 struct winbindd_response response;
631 NSS_STATUS result;
633 /* Send off request */
635 ZERO_STRUCT(request);
636 ZERO_STRUCT(response);
638 fstrcpy(request.data.acct_mgt.username, username);
640 result = winbindd_request(WINBINDD_DELETE_USER, &request, &response);
642 return result == NSS_STATUS_SUCCESS;
645 /******************************************************************
646 create a winbindd group
647 ******************************************************************/
649 static BOOL wbinfo_create_group(char *groupname)
651 struct winbindd_request request;
652 struct winbindd_response response;
653 NSS_STATUS result;
655 /* Send off request */
657 ZERO_STRUCT(request);
658 ZERO_STRUCT(response);
660 fstrcpy(request.data.acct_mgt.groupname, groupname);
662 result = winbindd_request(WINBINDD_CREATE_GROUP, &request, &response);
664 return result == NSS_STATUS_SUCCESS;
667 /******************************************************************
668 remove a winbindd group
669 ******************************************************************/
671 static BOOL wbinfo_delete_group(char *groupname)
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 fstrcpy(request.data.acct_mgt.groupname, groupname);
684 result = winbindd_request(WINBINDD_DELETE_GROUP, &request, &response);
686 return result == NSS_STATUS_SUCCESS;
689 /******************************************************************
690 parse a string in the form user:group
691 ******************************************************************/
693 static BOOL parse_user_group( const char *string, fstring user, fstring group )
695 char *p;
697 if ( !string )
698 return False;
700 if ( !(p = strchr( string, ':' )) )
701 return False;
703 *p = '\0';
704 p++;
706 fstrcpy( user, string );
707 fstrcpy( group, p );
709 return True;
712 /******************************************************************
713 add a user to a winbindd group
714 ******************************************************************/
716 static BOOL wbinfo_add_user_to_group(char *string)
718 struct winbindd_request request;
719 struct winbindd_response response;
720 NSS_STATUS result;
722 /* Send off request */
724 ZERO_STRUCT(request);
725 ZERO_STRUCT(response);
727 if ( !parse_user_group( string, request.data.acct_mgt.username,
728 request.data.acct_mgt.groupname))
730 d_printf("Can't parse user:group from %s\n", string);
731 return False;
734 result = winbindd_request(WINBINDD_ADD_USER_TO_GROUP, &request, &response);
736 return result == NSS_STATUS_SUCCESS;
739 /******************************************************************
740 remove a user from a winbindd group
741 ******************************************************************/
743 static BOOL wbinfo_remove_user_from_group(char *string)
745 struct winbindd_request request;
746 struct winbindd_response response;
747 NSS_STATUS result;
749 /* Send off request */
751 ZERO_STRUCT(request);
752 ZERO_STRUCT(response);
754 if ( !parse_user_group( string, request.data.acct_mgt.username,
755 request.data.acct_mgt.groupname))
757 d_printf("Can't parse user:group from %s\n", string);
758 return False;
761 result = winbindd_request(WINBINDD_REMOVE_USER_FROM_GROUP, &request, &response);
763 return result == NSS_STATUS_SUCCESS;
766 /* Print domain users */
768 static BOOL print_domain_users(const char *domain)
770 struct winbindd_request request;
771 struct winbindd_response response;
772 const char *extra_data;
773 fstring name;
775 /* Send request to winbind daemon */
777 ZERO_STRUCT(request);
778 ZERO_STRUCT(response);
780 if (domain) {
781 /* '.' is the special sign for our own domwin */
782 if ( strequal(domain, ".") )
783 fstrcpy( request.domain_name, lp_workgroup() );
784 else
785 fstrcpy( request.domain_name, domain );
788 if (winbindd_request(WINBINDD_LIST_USERS, &request, &response) !=
789 NSS_STATUS_SUCCESS)
790 return False;
792 /* Look through extra data */
794 if (!response.extra_data)
795 return False;
797 extra_data = (const char *)response.extra_data;
799 while(next_token(&extra_data, name, ",", sizeof(fstring)))
800 d_printf("%s\n", name);
802 SAFE_FREE(response.extra_data);
804 return True;
807 /* Print domain groups */
809 static BOOL print_domain_groups(const char *domain)
811 struct winbindd_request request;
812 struct winbindd_response response;
813 const char *extra_data;
814 fstring name;
816 ZERO_STRUCT(request);
817 ZERO_STRUCT(response);
819 if (domain) {
820 if ( strequal(domain, ".") )
821 fstrcpy( request.domain_name, lp_workgroup() );
822 else
823 fstrcpy( request.domain_name, domain );
826 if (winbindd_request(WINBINDD_LIST_GROUPS, &request, &response) !=
827 NSS_STATUS_SUCCESS)
828 return False;
830 /* Look through extra data */
832 if (!response.extra_data)
833 return False;
835 extra_data = (const char *)response.extra_data;
837 while(next_token(&extra_data, name, ",", sizeof(fstring)))
838 d_printf("%s\n", name);
840 SAFE_FREE(response.extra_data);
842 return True;
845 /* Set the authorised user for winbindd access in secrets.tdb */
847 static BOOL wbinfo_set_auth_user(char *username)
849 char *password;
850 fstring user, domain;
852 /* Separate into user and password */
854 parse_wbinfo_domain_user(username, domain, user);
856 password = strchr(user, '%');
858 if (password) {
859 *password = 0;
860 password++;
861 } else {
862 char *thepass = getpass("Password: ");
863 if (thepass) {
864 password = thepass;
865 } else
866 password = "";
869 /* Store or remove DOMAIN\username%password in secrets.tdb */
871 secrets_init();
873 if (user[0]) {
875 if (!secrets_store(SECRETS_AUTH_USER, user,
876 strlen(user) + 1)) {
877 d_fprintf(stderr, "error storing username\n");
878 return False;
881 /* We always have a domain name added by the
882 parse_wbinfo_domain_user() function. */
884 if (!secrets_store(SECRETS_AUTH_DOMAIN, domain,
885 strlen(domain) + 1)) {
886 d_fprintf(stderr, "error storing domain name\n");
887 return False;
890 } else {
891 secrets_delete(SECRETS_AUTH_USER);
892 secrets_delete(SECRETS_AUTH_DOMAIN);
895 if (password[0]) {
897 if (!secrets_store(SECRETS_AUTH_PASSWORD, password,
898 strlen(password) + 1)) {
899 d_fprintf(stderr, "error storing password\n");
900 return False;
903 } else
904 secrets_delete(SECRETS_AUTH_PASSWORD);
906 return True;
909 static void wbinfo_get_auth_user(void)
911 char *user, *domain, *password;
913 /* Lift data from secrets file */
915 secrets_fetch_ipc_userpass(&user, &domain, &password);
917 if ((!user || !*user) && (!domain || !*domain ) && (!password || !*password)){
919 SAFE_FREE(user);
920 SAFE_FREE(domain);
921 SAFE_FREE(password);
922 d_printf("No authorised user configured\n");
923 return;
926 /* Pretty print authorised user info */
928 d_printf("%s%s%s%s%s\n", domain ? domain : "", domain ? lp_winbind_separator(): "",
929 user, password ? "%" : "", password ? password : "");
931 SAFE_FREE(user);
932 SAFE_FREE(domain);
933 SAFE_FREE(password);
936 static BOOL wbinfo_ping(void)
938 NSS_STATUS result;
940 result = winbindd_request(WINBINDD_PING, NULL, NULL);
942 /* Display response */
944 d_printf("Ping to winbindd %s on fd %d\n",
945 (result == NSS_STATUS_SUCCESS) ? "succeeded" : "failed", winbindd_fd);
947 return result == NSS_STATUS_SUCCESS;
950 /* Main program */
952 enum {
953 OPT_SET_AUTH_USER = 1000,
954 OPT_GET_AUTH_USER,
955 OPT_DOMAIN_NAME,
956 OPT_SEQUENCE,
957 OPT_USERSIDS
960 int main(int argc, char **argv)
962 int opt;
964 poptContext pc;
965 static char *string_arg;
966 static char *opt_domain_name;
967 static int int_arg;
968 int result = 1;
970 struct poptOption long_options[] = {
971 POPT_AUTOHELP
973 /* longName, shortName, argInfo, argPtr, value, descrip,
974 argDesc */
976 { "domain-users", 'u', POPT_ARG_NONE, 0, 'u', "Lists all domain users", "domain"},
977 { "domain-groups", 'g', POPT_ARG_NONE, 0, 'g', "Lists all domain groups", "domain" },
978 { "WINS-by-name", 'N', POPT_ARG_STRING, &string_arg, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
979 { "WINS-by-ip", 'I', POPT_ARG_STRING, &string_arg, 'I', "Converts IP address to NetBIOS name", "IP" },
980 { "name-to-sid", 'n', POPT_ARG_STRING, &string_arg, 'n', "Converts name to sid", "NAME" },
981 { "sid-to-name", 's', POPT_ARG_STRING, &string_arg, 's', "Converts sid to name", "SID" },
982 { "uid-to-sid", 'U', POPT_ARG_INT, &int_arg, 'U', "Converts uid to sid" , "UID" },
983 { "gid-to-sid", 'G', POPT_ARG_INT, &int_arg, 'G', "Converts gid to sid", "GID" },
984 { "sid-to-uid", 'S', POPT_ARG_STRING, &string_arg, 'S', "Converts sid to uid", "SID" },
985 { "sid-to-gid", 'Y', POPT_ARG_STRING, &string_arg, 'Y', "Converts sid to gid", "SID" },
986 { "create-user", 'c', POPT_ARG_STRING, &string_arg, 'c', "Create a local user account", "name" },
987 { "delete-user", 'x', POPT_ARG_STRING, &string_arg, 'x', "Delete a local user account", "name" },
988 { "create-group", 'C', POPT_ARG_STRING, &string_arg, 'C', "Create a local group", "name" },
989 { "delete-group", 'X', POPT_ARG_STRING, &string_arg, 'X', "Delete a local group", "name" },
990 { "add-to-group", 'o', POPT_ARG_STRING, &string_arg, 'o', "Add user to group", "user:group" },
991 { "del-from-group", 'O', POPT_ARG_STRING, &string_arg, 'O', "Remove user from group", "user:group" },
992 { "check-secret", 't', POPT_ARG_NONE, 0, 't', "Check shared secret" },
993 { "trusted-domains", 'm', POPT_ARG_NONE, 0, 'm', "List trusted domains" },
994 { "sequence", 0, POPT_ARG_NONE, 0, OPT_SEQUENCE, "Show sequence numbers of all domains" },
995 { "domain-info", 'D', POPT_ARG_STRING, &string_arg, 'D',
996 "Show all most info we have about the domain" },
997 { "user-groups", 'r', POPT_ARG_STRING, &string_arg, 'r', "Get user groups", "USER" },
998 { "user-sids", 0, POPT_ARG_STRING, &string_arg, OPT_USERSIDS, "Get user group sids for user SID", "SID" },
999 { "authenticate", 'a', POPT_ARG_STRING, &string_arg, 'a', "authenticate user", "user%password" },
1000 { "set-auth-user", 0, POPT_ARG_STRING, &string_arg, OPT_SET_AUTH_USER, "Store user and password used by winbindd (root only)", "user%password" },
1001 { "get-auth-user", 0, POPT_ARG_NONE, NULL, OPT_GET_AUTH_USER, "Retrieve user and password used by winbindd (root only)", NULL },
1002 { "ping", 'p', POPT_ARG_NONE, 0, 'p', "Ping winbindd to see if it is alive" },
1003 { "domain", 0, POPT_ARG_STRING, &opt_domain_name, OPT_DOMAIN_NAME, "Define to the domain to restrict operation", "domain" },
1004 POPT_COMMON_VERSION
1005 POPT_TABLEEND
1008 /* Samba client initialisation */
1010 if (!lp_load(dyn_CONFIGFILE, True, False, False)) {
1011 d_fprintf(stderr, "wbinfo: error opening config file %s. Error was %s\n",
1012 dyn_CONFIGFILE, strerror(errno));
1013 exit(1);
1016 if (!init_names())
1017 return 1;
1019 load_interfaces();
1021 /* Parse options */
1023 pc = poptGetContext("wbinfo", argc, (const char **)argv, long_options, 0);
1025 /* Parse command line options */
1027 if (argc == 1) {
1028 poptPrintHelp(pc, stderr, 0);
1029 return 1;
1032 while((opt = poptGetNextOpt(pc)) != -1) {
1033 /* get the generic configuration parameters like --domain */
1036 poptFreeContext(pc);
1038 pc = poptGetContext(NULL, argc, (const char **)argv, long_options,
1039 POPT_CONTEXT_KEEP_FIRST);
1041 while((opt = poptGetNextOpt(pc)) != -1) {
1042 switch (opt) {
1043 case 'u':
1044 if (!print_domain_users(opt_domain_name)) {
1045 d_printf("Error looking up domain users\n");
1046 goto done;
1048 break;
1049 case 'g':
1050 if (!print_domain_groups(opt_domain_name)) {
1051 d_printf("Error looking up domain groups\n");
1052 goto done;
1054 break;
1055 case 's':
1056 if (!wbinfo_lookupsid(string_arg)) {
1057 d_printf("Could not lookup sid %s\n", string_arg);
1058 goto done;
1060 break;
1061 case 'n':
1062 if (!wbinfo_lookupname(string_arg)) {
1063 d_printf("Could not lookup name %s\n", string_arg);
1064 goto done;
1066 break;
1067 case 'N':
1068 if (!wbinfo_wins_byname(string_arg)) {
1069 d_printf("Could not lookup WINS by name %s\n", string_arg);
1070 goto done;
1072 break;
1073 case 'I':
1074 if (!wbinfo_wins_byip(string_arg)) {
1075 d_printf("Could not lookup WINS by IP %s\n", string_arg);
1076 goto done;
1078 break;
1079 case 'U':
1080 if (!wbinfo_uid_to_sid(int_arg)) {
1081 d_printf("Could not convert uid %d to sid\n", int_arg);
1082 goto done;
1084 break;
1085 case 'G':
1086 if (!wbinfo_gid_to_sid(int_arg)) {
1087 d_printf("Could not convert gid %d to sid\n",
1088 int_arg);
1089 goto done;
1091 break;
1092 case 'S':
1093 if (!wbinfo_sid_to_uid(string_arg)) {
1094 d_printf("Could not convert sid %s to uid\n",
1095 string_arg);
1096 goto done;
1098 break;
1099 case 'Y':
1100 if (!wbinfo_sid_to_gid(string_arg)) {
1101 d_printf("Could not convert sid %s to gid\n",
1102 string_arg);
1103 goto done;
1105 break;
1106 case 't':
1107 if (!wbinfo_check_secret()) {
1108 d_printf("Could not check secret\n");
1109 goto done;
1111 break;
1112 case 'm':
1113 if (!wbinfo_list_domains()) {
1114 d_printf("Could not list trusted domains\n");
1115 goto done;
1117 break;
1118 case OPT_SEQUENCE:
1119 if (!wbinfo_show_sequence(opt_domain_name)) {
1120 d_printf("Could not show sequence numbers\n");
1121 goto done;
1123 break;
1124 case 'D':
1125 if (!wbinfo_domain_info(string_arg)) {
1126 d_printf("Could not get domain info\n");
1127 goto done;
1129 break;
1130 case 'r':
1131 if (!wbinfo_get_usergroups(string_arg)) {
1132 d_printf("Could not get groups for user %s\n",
1133 string_arg);
1134 goto done;
1136 break;
1137 case OPT_USERSIDS:
1138 if (!wbinfo_get_usersids(string_arg)) {
1139 d_printf("Could not get group SIDs for user SID %s\n",
1140 string_arg);
1141 goto done;
1143 break;
1144 case 'a': {
1145 BOOL got_error = False;
1147 if (!wbinfo_auth(string_arg)) {
1148 d_printf("Could not authenticate user %s with "
1149 "plaintext password\n", string_arg);
1150 got_error = True;
1153 if (!wbinfo_auth_crap(string_arg)) {
1154 d_printf("Could not authenticate user %s with "
1155 "challenge/response\n", string_arg);
1156 got_error = True;
1159 if (got_error)
1160 goto done;
1161 break;
1163 case 'c':
1164 if ( !wbinfo_create_user(string_arg) ) {
1165 d_printf("Could not create user account\n");
1166 goto done;
1168 break;
1169 case 'C':
1170 if ( !wbinfo_create_group(string_arg) ) {
1171 d_printf("Could not create group\n");
1172 goto done;
1174 break;
1175 case 'o':
1176 if ( !wbinfo_add_user_to_group(string_arg) ) {
1177 d_printf("Could not add user to group\n");
1178 goto done;
1180 break;
1181 case 'O':
1182 if ( !wbinfo_remove_user_from_group(string_arg) ) {
1183 d_printf("Could not remove user kfrom group\n");
1184 goto done;
1186 break;
1187 case 'x':
1188 if ( !wbinfo_delete_user(string_arg) ) {
1189 d_printf("Could not delete user account\n");
1190 goto done;
1192 break;
1193 case 'X':
1194 if ( !wbinfo_delete_group(string_arg) ) {
1195 d_printf("Could not delete group\n");
1196 goto done;
1198 break;
1199 case 'p':
1200 if (!wbinfo_ping()) {
1201 d_printf("could not ping winbindd!\n");
1202 goto done;
1204 break;
1205 case OPT_SET_AUTH_USER:
1206 wbinfo_set_auth_user(string_arg);
1207 break;
1208 case OPT_GET_AUTH_USER:
1209 wbinfo_get_auth_user();
1210 break;
1211 /* generic configuration options */
1212 case OPT_DOMAIN_NAME:
1213 break;
1214 default:
1215 d_fprintf(stderr, "Invalid option\n");
1216 poptPrintHelp(pc, stderr, 0);
1217 goto done;
1221 result = 0;
1223 /* Exit code */
1225 done:
1226 poptFreeContext(pc);
1227 return result;