2 Unix SMB/CIFS implementation.
4 Winbind status program.
6 Copyright (C) Tim Potter 2000-2003
7 Copyright (C) Andrew Bartlett 2002-2007
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/>.
25 #include "winbind_client.h"
26 #include "librpc/gen_ndr/ndr_netlogon.h"
27 #include "libcli/auth/libcli_auth.h"
28 #include "libcli/security/security.h"
29 #include "lib/cmdline/popt_common.h"
30 #include "dynconfig/dynconfig.h"
31 #include "param/param.h"
33 extern int winbindd_fd
;
35 static char winbind_separator_int(bool strict
)
37 struct winbindd_response response
;
44 ZERO_STRUCT(response
);
46 /* Send off request */
48 if (winbindd_request_response(WINBINDD_INFO
, NULL
, &response
) !=
50 d_fprintf(stderr
, "could not obtain winbind separator!\n");
54 /* HACK: (this module should not call lp_ funtions) */
55 return *lp_winbind_separator(cmdline_lp_ctx
);
58 sep
= response
.data
.info
.winbind_separator
;
62 d_fprintf(stderr
, "winbind separator was NULL!\n");
66 /* HACK: (this module should not call lp_ funtions) */
67 sep
= *lp_winbind_separator(cmdline_lp_ctx
);
73 static char winbind_separator(void)
75 return winbind_separator_int(false);
78 static const char *get_winbind_domain(void)
80 struct winbindd_response response
;
81 static fstring winbind_domain
;
83 ZERO_STRUCT(response
);
85 /* Send off request */
87 if (winbindd_request_response(WINBINDD_DOMAIN_NAME
, NULL
, &response
) !=
89 d_fprintf(stderr
, "could not obtain winbind domain name!\n");
91 /* HACK: (this module should not call lp_ funtions) */
92 return lp_workgroup(cmdline_lp_ctx
);
95 fstrcpy(winbind_domain
, response
.data
.domain_name
);
97 return winbind_domain
;
101 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
102 form DOMAIN/user into a domain and a user */
104 static bool parse_wbinfo_domain_user(const char *domuser
, fstring domain
,
108 char *p
= strchr(domuser
,winbind_separator());
111 fstrcpy(user
, domuser
);
112 fstrcpy(domain
, get_winbind_domain());
117 fstrcpy(domain
, domuser
);
118 domain
[PTR_DIFF(p
, domuser
)] = 0;
124 /* pull pwent info for a given user */
126 static bool wbinfo_get_userinfo(char *user
)
128 struct winbindd_request request
;
129 struct winbindd_response response
;
132 ZERO_STRUCT(request
);
133 ZERO_STRUCT(response
);
137 fstrcpy(request
.data
.username
, user
);
139 result
= winbindd_request_response(WINBINDD_GETPWNAM
, &request
, &response
);
141 if (result
!= NSS_STATUS_SUCCESS
)
144 d_printf( "%s:%s:%d:%d:%s:%s:%s\n",
145 response
.data
.pw
.pw_name
,
146 response
.data
.pw
.pw_passwd
,
147 response
.data
.pw
.pw_uid
,
148 response
.data
.pw
.pw_gid
,
149 response
.data
.pw
.pw_gecos
,
150 response
.data
.pw
.pw_dir
,
151 response
.data
.pw
.pw_shell
);
156 /* pull pwent info for a given uid */
157 static bool wbinfo_get_uidinfo(int uid
)
159 struct winbindd_request request
;
160 struct winbindd_response response
;
163 ZERO_STRUCT(request
);
164 ZERO_STRUCT(response
);
166 request
.data
.uid
= uid
;
168 result
= winbindd_request_response(WINBINDD_GETPWUID
, &request
, &response
);
170 if (result
!= NSS_STATUS_SUCCESS
)
173 d_printf( "%s:%s:%d:%d:%s:%s:%s\n",
174 response
.data
.pw
.pw_name
,
175 response
.data
.pw
.pw_passwd
,
176 response
.data
.pw
.pw_uid
,
177 response
.data
.pw
.pw_gid
,
178 response
.data
.pw
.pw_gecos
,
179 response
.data
.pw
.pw_dir
,
180 response
.data
.pw
.pw_shell
);
185 /* pull grent for a given group */
186 static bool wbinfo_get_groupinfo(char *group
)
188 struct winbindd_request request
;
189 struct winbindd_response response
;
192 ZERO_STRUCT(request
);
193 ZERO_STRUCT(response
);
197 fstrcpy(request
.data
.groupname
, group
);
199 result
= winbindd_request_response(WINBINDD_GETGRNAM
, &request
,
202 if ( result
!= NSS_STATUS_SUCCESS
)
205 d_printf( "%s:%s:%d\n",
206 response
.data
.gr
.gr_name
,
207 response
.data
.gr
.gr_passwd
,
208 response
.data
.gr
.gr_gid
);
213 /* List groups a user is a member of */
215 static bool wbinfo_get_usergroups(char *user
)
217 struct winbindd_request request
;
218 struct winbindd_response response
;
222 ZERO_STRUCT(request
);
223 ZERO_STRUCT(response
);
227 fstrcpy(request
.data
.username
, user
);
229 result
= winbindd_request_response(WINBINDD_GETGROUPS
, &request
, &response
);
231 if (result
!= NSS_STATUS_SUCCESS
)
234 for (i
= 0; i
< response
.data
.num_entries
; i
++)
235 d_printf("%d\n", (int)((gid_t
*)response
.extra_data
.data
)[i
]);
237 SAFE_FREE(response
.extra_data
.data
);
243 /* List group SIDs a user SID is a member of */
244 static bool wbinfo_get_usersids(char *user_sid
)
246 struct winbindd_request request
;
247 struct winbindd_response response
;
252 ZERO_STRUCT(request
);
253 ZERO_STRUCT(response
);
256 fstrcpy(request
.data
.sid
, user_sid
);
258 result
= winbindd_request_response(WINBINDD_GETUSERSIDS
, &request
, &response
);
260 if (result
!= NSS_STATUS_SUCCESS
)
263 s
= (const char *)response
.extra_data
.data
;
264 for (i
= 0; i
< response
.data
.num_entries
; i
++) {
269 SAFE_FREE(response
.extra_data
.data
);
274 static bool wbinfo_get_userdomgroups(const char *user_sid
)
276 struct winbindd_request request
;
277 struct winbindd_response response
;
280 ZERO_STRUCT(request
);
281 ZERO_STRUCT(response
);
284 fstrcpy(request
.data
.sid
, user_sid
);
286 result
= winbindd_request_response(WINBINDD_GETUSERDOMGROUPS
, &request
,
289 if (result
!= NSS_STATUS_SUCCESS
)
292 if (response
.data
.num_entries
!= 0)
293 printf("%s", (char *)response
.extra_data
.data
);
295 SAFE_FREE(response
.extra_data
.data
);
300 /* Convert NetBIOS name to IP */
302 static bool wbinfo_wins_byname(char *name
)
304 struct winbindd_request request
;
305 struct winbindd_response response
;
307 ZERO_STRUCT(request
);
308 ZERO_STRUCT(response
);
312 fstrcpy(request
.data
.winsreq
, name
);
314 if (winbindd_request_response(WINBINDD_WINS_BYNAME
, &request
, &response
) !=
315 NSS_STATUS_SUCCESS
) {
319 /* Display response */
321 d_printf("%s\n", response
.data
.winsresp
);
326 /* Convert IP to NetBIOS name */
328 static bool wbinfo_wins_byip(char *ip
)
330 struct winbindd_request request
;
331 struct winbindd_response response
;
333 ZERO_STRUCT(request
);
334 ZERO_STRUCT(response
);
338 fstrcpy(request
.data
.winsreq
, ip
);
340 if (winbindd_request_response(WINBINDD_WINS_BYIP
, &request
, &response
) !=
341 NSS_STATUS_SUCCESS
) {
345 /* Display response */
347 d_printf("%s\n", response
.data
.winsresp
);
352 /* List trusted domains */
354 static bool wbinfo_list_domains(bool list_all_domains
)
356 struct winbindd_request request
;
357 struct winbindd_response response
;
359 ZERO_STRUCT(request
);
360 ZERO_STRUCT(response
);
364 request
.data
.list_all_domains
= list_all_domains
;
366 if (winbindd_request_response(WINBINDD_LIST_TRUSTDOM
, &request
, &response
) !=
370 /* Display response */
372 if (response
.extra_data
.data
) {
373 const char *extra_data
= (char *)response
.extra_data
.data
;
377 while(next_token(&extra_data
, name
, "\n", sizeof(fstring
))) {
378 p
= strchr(name
, '\\');
380 d_fprintf(stderr
, "Got invalid response: %s\n",
385 d_printf("%s\n", name
);
388 SAFE_FREE(response
.extra_data
.data
);
394 /* List own domain */
396 static bool wbinfo_list_own_domain(void)
398 d_printf("%s\n", get_winbind_domain());
403 /* show sequence numbers */
404 static bool wbinfo_show_sequence(const char *domain
)
406 struct winbindd_request request
;
407 struct winbindd_response response
;
409 ZERO_STRUCT(response
);
410 ZERO_STRUCT(request
);
413 fstrcpy( request
.domain_name
, domain
);
417 if (winbindd_request_response(WINBINDD_SHOW_SEQUENCE
, &request
, &response
) !=
421 /* Display response */
423 if (response
.extra_data
.data
) {
424 char *extra_data
= (char *)response
.extra_data
.data
;
425 d_printf("%s", extra_data
);
426 SAFE_FREE(response
.extra_data
.data
);
432 /* Show domain info */
434 static bool wbinfo_domain_info(const char *domain_name
)
436 struct winbindd_request request
;
437 struct winbindd_response response
;
439 ZERO_STRUCT(request
);
440 ZERO_STRUCT(response
);
442 if ((strequal(domain_name
, ".")) || (domain_name
[0] == '\0'))
443 fstrcpy(request
.domain_name
, get_winbind_domain());
445 fstrcpy(request
.domain_name
, domain_name
);
449 if (winbindd_request_response(WINBINDD_DOMAIN_INFO
, &request
, &response
) !=
453 /* Display response */
455 d_printf("Name : %s\n", response
.data
.domain_info
.name
);
456 d_printf("Alt_Name : %s\n", response
.data
.domain_info
.alt_name
);
458 d_printf("SID : %s\n", response
.data
.domain_info
.sid
);
460 d_printf("Active Directory : %s\n",
461 response
.data
.domain_info
.active_directory
? "Yes" : "No");
462 d_printf("Native : %s\n",
463 response
.data
.domain_info
.native_mode
? "Yes" : "No");
465 d_printf("Primary : %s\n",
466 response
.data
.domain_info
.primary
? "Yes" : "No");
471 /* Get a foreign DC's name */
472 static bool wbinfo_getdcname(const char *domain_name
)
474 struct winbindd_request request
;
475 struct winbindd_response response
;
477 ZERO_STRUCT(request
);
478 ZERO_STRUCT(response
);
480 fstrcpy(request
.domain_name
, domain_name
);
484 if (winbindd_request_response(WINBINDD_GETDCNAME
, &request
, &response
) !=
485 NSS_STATUS_SUCCESS
) {
486 d_fprintf(stderr
, "Could not get dc name for %s\n", domain_name
);
490 /* Display response */
492 d_printf("%s\n", response
.data
.dc_name
);
497 /* Check trust account password */
499 static bool wbinfo_check_secret(void)
501 struct winbindd_response response
;
504 ZERO_STRUCT(response
);
506 result
= winbindd_request_response(WINBINDD_CHECK_MACHACC
, NULL
, &response
);
508 d_printf("checking the trust secret via RPC calls %s\n",
509 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
511 if (result
!= NSS_STATUS_SUCCESS
)
512 d_fprintf(stderr
, "error code was %s (0x%x)\n",
513 response
.data
.auth
.nt_status_string
,
514 response
.data
.auth
.nt_status
);
516 return result
== NSS_STATUS_SUCCESS
;
519 /* Convert uid to sid */
521 static bool wbinfo_uid_to_sid(uid_t uid
)
523 struct winbindd_request request
;
524 struct winbindd_response response
;
526 ZERO_STRUCT(request
);
527 ZERO_STRUCT(response
);
531 request
.data
.uid
= uid
;
533 if (winbindd_request_response(WINBINDD_UID_TO_SID
, &request
, &response
) !=
537 /* Display response */
539 d_printf("%s\n", response
.data
.sid
.sid
);
544 /* Convert gid to sid */
546 static bool wbinfo_gid_to_sid(gid_t gid
)
548 struct winbindd_request request
;
549 struct winbindd_response response
;
551 ZERO_STRUCT(request
);
552 ZERO_STRUCT(response
);
556 request
.data
.gid
= gid
;
558 if (winbindd_request_response(WINBINDD_GID_TO_SID
, &request
, &response
) !=
562 /* Display response */
564 d_printf("%s\n", response
.data
.sid
.sid
);
569 /* Convert sid to uid */
571 static bool wbinfo_sid_to_uid(char *sid
)
573 struct winbindd_request request
;
574 struct winbindd_response response
;
576 ZERO_STRUCT(request
);
577 ZERO_STRUCT(response
);
581 fstrcpy(request
.data
.sid
, sid
);
583 if (winbindd_request_response(WINBINDD_SID_TO_UID
, &request
, &response
) !=
587 /* Display response */
589 d_printf("%d\n", (int)response
.data
.uid
);
594 static bool wbinfo_sid_to_gid(char *sid
)
596 struct winbindd_request request
;
597 struct winbindd_response response
;
599 ZERO_STRUCT(request
);
600 ZERO_STRUCT(response
);
604 fstrcpy(request
.data
.sid
, sid
);
606 if (winbindd_request_response(WINBINDD_SID_TO_GID
, &request
, &response
) !=
610 /* Display response */
612 d_printf("%d\n", (int)response
.data
.gid
);
617 static const char *sid_type_lookup(enum lsa_SidType r
)
620 case SID_NAME_USE_NONE
: return "SID_NAME_USE_NONE"; break;
621 case SID_NAME_USER
: return "SID_NAME_USER"; break;
622 case SID_NAME_DOM_GRP
: return "SID_NAME_DOM_GRP"; break;
623 case SID_NAME_DOMAIN
: return "SID_NAME_DOMAIN"; break;
624 case SID_NAME_ALIAS
: return "SID_NAME_ALIAS"; break;
625 case SID_NAME_WKN_GRP
: return "SID_NAME_WKN_GRP"; break;
626 case SID_NAME_DELETED
: return "SID_NAME_DELETED"; break;
627 case SID_NAME_INVALID
: return "SID_NAME_INVALID"; break;
628 case SID_NAME_UNKNOWN
: return "SID_NAME_UNKNOWN"; break;
629 case SID_NAME_COMPUTER
: return "SID_NAME_COMPUTER"; break;
631 return "Invalid sid type\n";
634 /* Convert sid to string */
636 static bool wbinfo_lookupsid(char *sid
)
638 struct winbindd_request request
;
639 struct winbindd_response response
;
641 ZERO_STRUCT(request
);
642 ZERO_STRUCT(response
);
644 /* Send off request */
646 fstrcpy(request
.data
.sid
, sid
);
648 if (winbindd_request_response(WINBINDD_LOOKUPSID
, &request
, &response
) !=
652 /* Display response */
654 d_printf("%s%c%s %s\n", response
.data
.name
.dom_name
,
655 winbind_separator(), response
.data
.name
.name
,
656 sid_type_lookup(response
.data
.name
.type
));
661 /* Convert string to sid */
663 static bool wbinfo_lookupname(char *name
)
665 struct winbindd_request request
;
666 struct winbindd_response response
;
668 /* Send off request */
670 ZERO_STRUCT(request
);
671 ZERO_STRUCT(response
);
673 parse_wbinfo_domain_user(name
, request
.data
.name
.dom_name
,
674 request
.data
.name
.name
);
676 if (winbindd_request_response(WINBINDD_LOOKUPNAME
, &request
, &response
) !=
680 /* Display response */
682 d_printf("%s %s (%d)\n", response
.data
.sid
.sid
, sid_type_lookup(response
.data
.sid
.type
), response
.data
.sid
.type
);
687 /* Authenticate a user with a plaintext password */
689 static bool wbinfo_auth_krb5(char *username
, const char *cctype
, uint32_t flags
)
691 struct winbindd_request request
;
692 struct winbindd_response response
;
696 /* Send off request */
698 ZERO_STRUCT(request
);
699 ZERO_STRUCT(response
);
701 p
= strchr(username
, '%');
705 fstrcpy(request
.data
.auth
.user
, username
);
706 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
709 fstrcpy(request
.data
.auth
.user
, username
);
711 request
.flags
= flags
;
713 fstrcpy(request
.data
.auth
.krb5_cc_type
, cctype
);
715 request
.data
.auth
.uid
= geteuid();
717 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
719 /* Display response */
721 d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
722 username
, (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed", cctype
);
724 if (response
.data
.auth
.nt_status
)
725 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
726 response
.data
.auth
.nt_status_string
,
727 response
.data
.auth
.nt_status
,
728 response
.data
.auth
.error_string
);
730 if (result
== NSS_STATUS_SUCCESS
) {
732 if (request
.flags
& WBFLAG_PAM_INFO3_TEXT
) {
733 if (response
.data
.auth
.info3
.user_flgs
& NETLOGON_CACHED_ACCOUNT
) {
734 d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
738 if (response
.data
.auth
.krb5ccname
[0] != '\0') {
739 d_printf("credentials were put in: %s\n", response
.data
.auth
.krb5ccname
);
741 d_printf("no credentials cached\n");
745 return result
== NSS_STATUS_SUCCESS
;
748 /* Authenticate a user with a plaintext password */
750 static bool wbinfo_auth(char *username
)
752 struct winbindd_request request
;
753 struct winbindd_response response
;
757 /* Send off request */
759 ZERO_STRUCT(request
);
760 ZERO_STRUCT(response
);
762 p
= strchr(username
, '%');
766 fstrcpy(request
.data
.auth
.user
, username
);
767 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
770 fstrcpy(request
.data
.auth
.user
, username
);
772 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
774 /* Display response */
776 d_printf("plaintext password authentication %s\n",
777 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
779 if (response
.data
.auth
.nt_status
)
780 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
781 response
.data
.auth
.nt_status_string
,
782 response
.data
.auth
.nt_status
,
783 response
.data
.auth
.error_string
);
785 return result
== NSS_STATUS_SUCCESS
;
788 /* Authenticate a user with a challenge/response */
790 static bool wbinfo_auth_crap(struct loadparm_context
*lp_ctx
, char *username
)
792 struct winbindd_request request
;
793 struct winbindd_response response
;
800 /* Send off request */
802 ZERO_STRUCT(request
);
803 ZERO_STRUCT(response
);
805 p
= strchr(username
, '%');
809 fstrcpy(pass
, p
+ 1);
812 parse_wbinfo_domain_user(username
, name_domain
, name_user
);
814 request
.data
.auth_crap
.logon_parameters
= MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
| MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
;
816 fstrcpy(request
.data
.auth_crap
.user
, name_user
);
818 fstrcpy(request
.data
.auth_crap
.domain
,
821 generate_random_buffer(request
.data
.auth_crap
.chal
, 8);
823 if (lp_client_ntlmv2_auth(lp_ctx
)) {
824 DATA_BLOB server_chal
;
825 DATA_BLOB names_blob
;
827 DATA_BLOB lm_response
;
828 DATA_BLOB nt_response
;
831 mem_ctx
= talloc_new(NULL
);
832 if (mem_ctx
== NULL
) {
833 d_printf("talloc_new failed\n");
837 server_chal
= data_blob(request
.data
.auth_crap
.chal
, 8);
839 /* Pretend this is a login to 'us', for blob purposes */
840 names_blob
= NTLMv2_generate_names_blob(mem_ctx
, lp_iconv_convenience(lp_ctx
), lp_netbios_name(lp_ctx
), lp_workgroup(lp_ctx
));
842 if (!SMBNTLMv2encrypt(mem_ctx
, name_user
, name_domain
, pass
, &server_chal
,
844 &lm_response
, &nt_response
, NULL
, NULL
)) {
845 data_blob_free(&names_blob
);
846 data_blob_free(&server_chal
);
849 data_blob_free(&names_blob
);
850 data_blob_free(&server_chal
);
852 memcpy(request
.data
.auth_crap
.nt_resp
, nt_response
.data
,
853 MIN(nt_response
.length
,
854 sizeof(request
.data
.auth_crap
.nt_resp
)));
855 request
.data
.auth_crap
.nt_resp_len
= nt_response
.length
;
857 memcpy(request
.data
.auth_crap
.lm_resp
, lm_response
.data
,
858 MIN(lm_response
.length
,
859 sizeof(request
.data
.auth_crap
.lm_resp
)));
860 request
.data
.auth_crap
.lm_resp_len
= lm_response
.length
;
862 data_blob_free(&nt_response
);
863 data_blob_free(&lm_response
);
866 if (lp_client_lanman_auth(lp_ctx
)
867 && SMBencrypt(pass
, request
.data
.auth_crap
.chal
,
868 (unsigned char *)request
.data
.auth_crap
.lm_resp
)) {
869 request
.data
.auth_crap
.lm_resp_len
= 24;
871 request
.data
.auth_crap
.lm_resp_len
= 0;
873 SMBNTencrypt(pass
, request
.data
.auth_crap
.chal
,
874 (unsigned char *)request
.data
.auth_crap
.nt_resp
);
876 request
.data
.auth_crap
.nt_resp_len
= 24;
879 result
= winbindd_request_response(WINBINDD_PAM_AUTH_CRAP
, &request
, &response
);
881 /* Display response */
883 d_printf("challenge/response password authentication %s\n",
884 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
886 if (response
.data
.auth
.nt_status
)
887 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
888 response
.data
.auth
.nt_status_string
,
889 response
.data
.auth
.nt_status
,
890 response
.data
.auth
.error_string
);
892 return result
== NSS_STATUS_SUCCESS
;
895 /* Print domain users */
897 static bool print_domain_users(const char *domain
)
899 struct winbindd_request request
;
900 struct winbindd_response response
;
901 const char *extra_data
;
904 /* Send request to winbind daemon */
906 ZERO_STRUCT(request
);
907 ZERO_STRUCT(response
);
910 /* '.' is the special sign for our own domain */
911 if ( strequal(domain
, ".") )
912 fstrcpy( request
.domain_name
, get_winbind_domain() );
914 fstrcpy( request
.domain_name
, domain
);
917 if (winbindd_request_response(WINBINDD_LIST_USERS
, &request
, &response
) !=
921 /* Look through extra data */
923 if (!response
.extra_data
.data
)
926 extra_data
= (const char *)response
.extra_data
.data
;
928 while(next_token(&extra_data
, name
, ",", sizeof(fstring
)))
929 d_printf("%s\n", name
);
931 SAFE_FREE(response
.extra_data
.data
);
936 /* Print domain groups */
938 static bool print_domain_groups(const char *domain
)
940 struct winbindd_request request
;
941 struct winbindd_response response
;
942 const char *extra_data
;
945 ZERO_STRUCT(request
);
946 ZERO_STRUCT(response
);
949 if ( strequal(domain
, ".") )
950 fstrcpy( request
.domain_name
, get_winbind_domain() );
952 fstrcpy( request
.domain_name
, domain
);
955 if (winbindd_request_response(WINBINDD_LIST_GROUPS
, &request
, &response
) !=
959 /* Look through extra data */
961 if (!response
.extra_data
.data
)
964 extra_data
= (const char *)response
.extra_data
.data
;
966 while(next_token(&extra_data
, name
, ",", sizeof(fstring
)))
967 d_printf("%s\n", name
);
969 SAFE_FREE(response
.extra_data
.data
);
974 static bool wbinfo_ping(void)
978 result
= winbindd_request_response(WINBINDD_PING
, NULL
, NULL
);
980 /* Display response */
982 d_printf("Ping to winbindd %s on fd %d\n",
983 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed", winbindd_fd
);
985 return result
== NSS_STATUS_SUCCESS
;
991 OPT_SET_AUTH_USER
= 1000,
1001 OPT_LIST_ALL_DOMAINS
,
1002 OPT_LIST_OWN_DOMAIN
,
1007 int main(int argc
, char **argv
, char **envp
)
1012 static char *string_arg
;
1013 static char *opt_domain_name
;
1017 struct poptOption long_options
[] = {
1020 /* longName, shortName, argInfo, argPtr, value, descrip,
1023 { "domain-users", 'u', POPT_ARG_NONE
, 0, 'u', "Lists all domain users", "domain"},
1024 { "domain-groups", 'g', POPT_ARG_NONE
, 0, 'g', "Lists all domain groups", "domain" },
1025 { "WINS-by-name", 'N', POPT_ARG_STRING
, &string_arg
, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1026 { "WINS-by-ip", 'I', POPT_ARG_STRING
, &string_arg
, 'I', "Converts IP address to NetBIOS name", "IP" },
1027 { "name-to-sid", 'n', POPT_ARG_STRING
, &string_arg
, 'n', "Converts name to sid", "NAME" },
1028 { "sid-to-name", 's', POPT_ARG_STRING
, &string_arg
, 's', "Converts sid to name", "SID" },
1029 { "uid-to-sid", 'U', POPT_ARG_INT
, &int_arg
, 'U', "Converts uid to sid" , "UID" },
1030 { "gid-to-sid", 'G', POPT_ARG_INT
, &int_arg
, 'G', "Converts gid to sid", "GID" },
1031 { "sid-to-uid", 'S', POPT_ARG_STRING
, &string_arg
, 'S', "Converts sid to uid", "SID" },
1032 { "sid-to-gid", 'Y', POPT_ARG_STRING
, &string_arg
, 'Y', "Converts sid to gid", "SID" },
1033 { "check-secret", 't', POPT_ARG_NONE
, 0, 't', "Check shared secret" },
1034 { "trusted-domains", 'm', POPT_ARG_NONE
, 0, 'm', "List trusted domains" },
1035 { "all-domains", 0, POPT_ARG_NONE
, 0, OPT_LIST_ALL_DOMAINS
, "List all domains (trusted and own domain)" },
1036 { "own-domain", 0, POPT_ARG_NONE
, 0, OPT_LIST_OWN_DOMAIN
, "List own domain" },
1037 { "sequence", 0, POPT_ARG_NONE
, 0, OPT_SEQUENCE
, "Show sequence numbers of all domains" },
1038 { "domain-info", 'D', POPT_ARG_STRING
, &string_arg
, 'D', "Show most of the info we have about the domain" },
1039 { "user-info", 'i', POPT_ARG_STRING
, &string_arg
, 'i', "Get user info", "USER" },
1040 { "uid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_UID_INFO
, "Get user info from uid", "UID" },
1041 { "group-info", 0, POPT_ARG_STRING
, &string_arg
, OPT_GROUP_INFO
, "Get group info", "GROUP" },
1042 { "user-groups", 'r', POPT_ARG_STRING
, &string_arg
, 'r', "Get user groups", "USER" },
1043 { "user-domgroups", 0, POPT_ARG_STRING
, &string_arg
,
1044 OPT_USERDOMGROUPS
, "Get user domain groups", "SID" },
1045 { "user-sids", 0, POPT_ARG_STRING
, &string_arg
, OPT_USERSIDS
, "Get user group sids for user SID", "SID" },
1046 { "authenticate", 'a', POPT_ARG_STRING
, &string_arg
, 'a', "authenticate user", "user%password" },
1047 { "getdcname", 0, POPT_ARG_STRING
, &string_arg
, OPT_GETDCNAME
,
1048 "Get a DC name for a foreign domain", "domainname" },
1049 { "ping", 'p', POPT_ARG_NONE
, 0, 'p', "Ping winbindd to see if it is alive" },
1050 { "domain", 0, POPT_ARG_STRING
, &opt_domain_name
, OPT_DOMAIN_NAME
, "Define to the domain to restrict operation", "domain" },
1052 { "krb5auth", 'K', POPT_ARG_STRING
, &string_arg
, 'K', "authenticate user using Kerberos", "user%password" },
1053 /* destroys wbinfo --help output */
1054 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1056 { "separator", 0, POPT_ARG_NONE
, 0, OPT_SEPARATOR
, "Get the active winbind separator", NULL
},
1064 pc
= poptGetContext("wbinfo", argc
, (const char **)argv
, long_options
, 0);
1066 /* Parse command line options */
1069 poptPrintHelp(pc
, stderr
, 0);
1073 while((opt
= poptGetNextOpt(pc
)) != -1) {
1074 /* get the generic configuration parameters like --domain */
1077 poptFreeContext(pc
);
1079 pc
= poptGetContext(NULL
, argc
, (const char **)argv
, long_options
,
1080 POPT_CONTEXT_KEEP_FIRST
);
1082 while((opt
= poptGetNextOpt(pc
)) != -1) {
1085 if (!print_domain_users(opt_domain_name
)) {
1086 d_fprintf(stderr
, "Error looking up domain users\n");
1091 if (!print_domain_groups(opt_domain_name
)) {
1092 d_fprintf(stderr
, "Error looking up domain groups\n");
1097 if (!wbinfo_lookupsid(string_arg
)) {
1098 d_fprintf(stderr
, "Could not lookup sid %s\n", string_arg
);
1103 if (!wbinfo_lookupname(string_arg
)) {
1104 d_fprintf(stderr
, "Could not lookup name %s\n", string_arg
);
1109 if (!wbinfo_wins_byname(string_arg
)) {
1110 d_fprintf(stderr
, "Could not lookup WINS by name %s\n", string_arg
);
1115 if (!wbinfo_wins_byip(string_arg
)) {
1116 d_fprintf(stderr
, "Could not lookup WINS by IP %s\n", string_arg
);
1121 if (!wbinfo_uid_to_sid(int_arg
)) {
1122 d_fprintf(stderr
, "Could not convert uid %d to sid\n", int_arg
);
1127 if (!wbinfo_gid_to_sid(int_arg
)) {
1128 d_fprintf(stderr
, "Could not convert gid %d to sid\n",
1134 if (!wbinfo_sid_to_uid(string_arg
)) {
1135 d_fprintf(stderr
, "Could not convert sid %s to uid\n",
1141 if (!wbinfo_sid_to_gid(string_arg
)) {
1142 d_fprintf(stderr
, "Could not convert sid %s to gid\n",
1148 if (!wbinfo_check_secret()) {
1149 d_fprintf(stderr
, "Could not check secret\n");
1154 if (!wbinfo_list_domains(false)) {
1155 d_fprintf(stderr
, "Could not list trusted domains\n");
1160 if (!wbinfo_show_sequence(opt_domain_name
)) {
1161 d_fprintf(stderr
, "Could not show sequence numbers\n");
1166 if (!wbinfo_domain_info(string_arg
)) {
1167 d_fprintf(stderr
, "Could not get domain info\n");
1172 if (!wbinfo_get_userinfo(string_arg
)) {
1173 d_fprintf(stderr
, "Could not get info for user %s\n",
1179 if ( !wbinfo_get_uidinfo(int_arg
)) {
1180 d_fprintf(stderr
, "Could not get info for uid "
1185 case OPT_GROUP_INFO
:
1186 if ( !wbinfo_get_groupinfo(string_arg
)) {
1187 d_fprintf(stderr
, "Could not get info for "
1188 "group %s\n", string_arg
);
1193 if (!wbinfo_get_usergroups(string_arg
)) {
1194 d_fprintf(stderr
, "Could not get groups for user %s\n",
1200 if (!wbinfo_get_usersids(string_arg
)) {
1201 d_fprintf(stderr
, "Could not get group SIDs for user SID %s\n",
1206 case OPT_USERDOMGROUPS
:
1207 if (!wbinfo_get_userdomgroups(string_arg
)) {
1208 d_fprintf(stderr
, "Could not get user's domain groups "
1209 "for user SID %s\n", string_arg
);
1214 bool got_error
= false;
1216 if (!wbinfo_auth(string_arg
)) {
1217 d_fprintf(stderr
, "Could not authenticate user %s with "
1218 "plaintext password\n", string_arg
);
1222 if (!wbinfo_auth_crap(cmdline_lp_ctx
, string_arg
)) {
1223 d_fprintf(stderr
, "Could not authenticate user %s with "
1224 "challenge/response\n", string_arg
);
1233 uint32_t flags
= WBFLAG_PAM_KRB5
|
1234 WBFLAG_PAM_CACHED_LOGIN
|
1235 WBFLAG_PAM_FALLBACK_AFTER_KRB5
|
1236 WBFLAG_PAM_INFO3_TEXT
;
1238 if (!wbinfo_auth_krb5(string_arg
, "FILE", flags
)) {
1239 d_fprintf(stderr
, "Could not authenticate user [%s] with "
1240 "Kerberos (ccache: %s)\n", string_arg
, "FILE");
1246 if (!wbinfo_ping()) {
1247 d_fprintf(stderr
, "could not ping winbindd!\n");
1252 if (!wbinfo_getdcname(string_arg
)) {
1256 case OPT_SEPARATOR
: {
1257 const char sep
= winbind_separator_int(true);
1261 d_printf("%c\n", sep
);
1264 case OPT_LIST_ALL_DOMAINS
:
1265 if (!wbinfo_list_domains(true)) {
1269 case OPT_LIST_OWN_DOMAIN
:
1270 if (!wbinfo_list_own_domain()) {
1274 /* generic configuration options */
1275 case OPT_DOMAIN_NAME
:
1278 d_fprintf(stderr
, "Invalid option\n");
1279 poptPrintHelp(pc
, stderr
, 0);
1289 poptFreeContext(pc
);