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/>.
24 #include "winbind_client.h"
25 #include "librpc/gen_ndr/ndr_netlogon.h"
26 #include "libcli/auth/libcli_auth.h"
27 #include "libcli/security/security.h"
28 #include "lib/cmdline/popt_common.h"
29 #include "dynconfig/dynconfig.h"
30 #include "param/param.h"
33 #define fstrcpy(d,s) safe_strcpy((d),(s),sizeof(fstring)-1)
36 extern int winbindd_fd
;
38 static char winbind_separator_int(bool strict
)
40 struct winbindd_response response
;
47 ZERO_STRUCT(response
);
49 /* Send off request */
51 if (winbindd_request_response(WINBINDD_INFO
, NULL
, &response
) !=
53 d_fprintf(stderr
, "could not obtain winbind separator!\n");
57 /* HACK: (this module should not call lp_ funtions) */
58 return *lp_winbind_separator(cmdline_lp_ctx
);
61 sep
= response
.data
.info
.winbind_separator
;
65 d_fprintf(stderr
, "winbind separator was NULL!\n");
69 /* HACK: (this module should not call lp_ funtions) */
70 sep
= *lp_winbind_separator(cmdline_lp_ctx
);
76 static char winbind_separator(void)
78 return winbind_separator_int(false);
81 static const char *get_winbind_domain(void)
83 struct winbindd_response response
;
84 static fstring winbind_domain
;
86 ZERO_STRUCT(response
);
88 /* Send off request */
90 if (winbindd_request_response(WINBINDD_DOMAIN_NAME
, NULL
, &response
) !=
92 d_fprintf(stderr
, "could not obtain winbind domain name!\n");
94 /* HACK: (this module should not call lp_ funtions) */
95 return lp_workgroup(cmdline_lp_ctx
);
98 fstrcpy(winbind_domain
, response
.data
.domain_name
);
100 return winbind_domain
;
104 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
105 form DOMAIN/user into a domain and a user */
107 static bool parse_wbinfo_domain_user(const char *domuser
, fstring domain
,
111 char *p
= strchr(domuser
,winbind_separator());
114 fstrcpy(user
, domuser
);
115 fstrcpy(domain
, get_winbind_domain());
120 fstrcpy(domain
, domuser
);
121 domain
[PTR_DIFF(p
, domuser
)] = 0;
127 /* pull pwent info for a given user */
129 static bool wbinfo_get_userinfo(char *user
)
131 struct winbindd_request request
;
132 struct winbindd_response response
;
135 ZERO_STRUCT(request
);
136 ZERO_STRUCT(response
);
140 fstrcpy(request
.data
.username
, user
);
142 result
= winbindd_request_response(WINBINDD_GETPWNAM
, &request
, &response
);
144 if (result
!= NSS_STATUS_SUCCESS
)
147 d_printf( "%s:%s:%d:%d:%s:%s:%s\n",
148 response
.data
.pw
.pw_name
,
149 response
.data
.pw
.pw_passwd
,
150 response
.data
.pw
.pw_uid
,
151 response
.data
.pw
.pw_gid
,
152 response
.data
.pw
.pw_gecos
,
153 response
.data
.pw
.pw_dir
,
154 response
.data
.pw
.pw_shell
);
159 /* pull pwent info for a given uid */
160 static bool wbinfo_get_uidinfo(int uid
)
162 struct winbindd_request request
;
163 struct winbindd_response response
;
166 ZERO_STRUCT(request
);
167 ZERO_STRUCT(response
);
169 request
.data
.uid
= uid
;
171 result
= winbindd_request_response(WINBINDD_GETPWUID
, &request
, &response
);
173 if (result
!= NSS_STATUS_SUCCESS
)
176 d_printf( "%s:%s:%d:%d:%s:%s:%s\n",
177 response
.data
.pw
.pw_name
,
178 response
.data
.pw
.pw_passwd
,
179 response
.data
.pw
.pw_uid
,
180 response
.data
.pw
.pw_gid
,
181 response
.data
.pw
.pw_gecos
,
182 response
.data
.pw
.pw_dir
,
183 response
.data
.pw
.pw_shell
);
188 /* pull grent for a given group */
189 static bool wbinfo_get_groupinfo(char *group
)
191 struct winbindd_request request
;
192 struct winbindd_response response
;
195 ZERO_STRUCT(request
);
196 ZERO_STRUCT(response
);
200 fstrcpy(request
.data
.groupname
, group
);
202 result
= winbindd_request_response(WINBINDD_GETGRNAM
, &request
,
205 if ( result
!= NSS_STATUS_SUCCESS
)
208 d_printf( "%s:%s:%d\n",
209 response
.data
.gr
.gr_name
,
210 response
.data
.gr
.gr_passwd
,
211 response
.data
.gr
.gr_gid
);
216 /* pull grent for a given gid */
217 static bool wbinfo_get_gidinfo(int gid
)
219 struct winbindd_request request
;
220 struct winbindd_response response
;
223 ZERO_STRUCT(request
);
224 ZERO_STRUCT(response
);
228 request
.data
.gid
= gid
;
230 result
= winbindd_request_response(WINBINDD_GETGRGID
, &request
,
233 if ( result
!= NSS_STATUS_SUCCESS
)
236 d_printf( "%s:%s:%d\n",
237 response
.data
.gr
.gr_name
,
238 response
.data
.gr
.gr_passwd
,
239 response
.data
.gr
.gr_gid
);
244 /* List groups a user is a member of */
246 static bool wbinfo_get_usergroups(char *user
)
248 struct winbindd_request request
;
249 struct winbindd_response response
;
253 ZERO_STRUCT(request
);
254 ZERO_STRUCT(response
);
258 fstrcpy(request
.data
.username
, user
);
260 result
= winbindd_request_response(WINBINDD_GETGROUPS
, &request
, &response
);
262 if (result
!= NSS_STATUS_SUCCESS
)
265 for (i
= 0; i
< response
.data
.num_entries
; i
++)
266 d_printf("%d\n", (int)((gid_t
*)response
.extra_data
.data
)[i
]);
268 SAFE_FREE(response
.extra_data
.data
);
274 /* List group SIDs a user SID is a member of */
275 static bool wbinfo_get_usersids(char *user_sid
)
277 struct winbindd_request request
;
278 struct winbindd_response response
;
283 ZERO_STRUCT(request
);
284 ZERO_STRUCT(response
);
287 fstrcpy(request
.data
.sid
, user_sid
);
289 result
= winbindd_request_response(WINBINDD_GETUSERSIDS
, &request
, &response
);
291 if (result
!= NSS_STATUS_SUCCESS
)
294 s
= (const char *)response
.extra_data
.data
;
295 for (i
= 0; i
< response
.data
.num_entries
; i
++) {
300 SAFE_FREE(response
.extra_data
.data
);
305 static bool wbinfo_get_userdomgroups(const char *user_sid
)
307 struct winbindd_request request
;
308 struct winbindd_response response
;
311 ZERO_STRUCT(request
);
312 ZERO_STRUCT(response
);
315 fstrcpy(request
.data
.sid
, user_sid
);
317 result
= winbindd_request_response(WINBINDD_GETUSERDOMGROUPS
, &request
,
320 if (result
!= NSS_STATUS_SUCCESS
)
323 if (response
.data
.num_entries
!= 0)
324 printf("%s", (char *)response
.extra_data
.data
);
326 SAFE_FREE(response
.extra_data
.data
);
331 /* Convert NetBIOS name to IP */
333 static bool wbinfo_wins_byname(char *name
)
335 struct winbindd_request request
;
336 struct winbindd_response response
;
338 ZERO_STRUCT(request
);
339 ZERO_STRUCT(response
);
343 fstrcpy(request
.data
.winsreq
, name
);
345 if (winbindd_request_response(WINBINDD_WINS_BYNAME
, &request
, &response
) !=
346 NSS_STATUS_SUCCESS
) {
350 /* Display response */
352 d_printf("%s\n", response
.data
.winsresp
);
357 /* Convert IP to NetBIOS name */
359 static bool wbinfo_wins_byip(char *ip
)
361 struct winbindd_request request
;
362 struct winbindd_response response
;
364 ZERO_STRUCT(request
);
365 ZERO_STRUCT(response
);
369 fstrcpy(request
.data
.winsreq
, ip
);
371 if (winbindd_request_response(WINBINDD_WINS_BYIP
, &request
, &response
) !=
372 NSS_STATUS_SUCCESS
) {
376 /* Display response */
378 d_printf("%s\n", response
.data
.winsresp
);
383 /* List trusted domains */
385 static bool wbinfo_list_domains(bool list_all_domains
)
387 struct winbindd_request request
;
388 struct winbindd_response response
;
390 ZERO_STRUCT(request
);
391 ZERO_STRUCT(response
);
395 request
.data
.list_all_domains
= list_all_domains
;
397 if (winbindd_request_response(WINBINDD_LIST_TRUSTDOM
, &request
, &response
) !=
401 /* Display response */
403 if (response
.extra_data
.data
) {
404 const char *extra_data
= (char *)response
.extra_data
.data
;
408 while(next_token(&extra_data
, name
, "\n", sizeof(fstring
))) {
409 p
= strchr(name
, '\\');
411 d_fprintf(stderr
, "Got invalid response: %s\n",
416 d_printf("%s\n", name
);
419 SAFE_FREE(response
.extra_data
.data
);
425 /* List own domain */
427 static bool wbinfo_list_own_domain(void)
429 d_printf("%s\n", get_winbind_domain());
434 /* show sequence numbers */
435 static bool wbinfo_show_sequence(const char *domain
)
437 struct winbindd_request request
;
438 struct winbindd_response response
;
440 ZERO_STRUCT(response
);
441 ZERO_STRUCT(request
);
444 fstrcpy( request
.domain_name
, domain
);
448 if (winbindd_request_response(WINBINDD_SHOW_SEQUENCE
, &request
, &response
) !=
452 /* Display response */
454 if (response
.extra_data
.data
) {
455 char *extra_data
= (char *)response
.extra_data
.data
;
456 d_printf("%s", extra_data
);
457 SAFE_FREE(response
.extra_data
.data
);
463 /* Show domain info */
465 static bool wbinfo_domain_info(const char *domain_name
)
467 struct winbindd_request request
;
468 struct winbindd_response response
;
470 ZERO_STRUCT(request
);
471 ZERO_STRUCT(response
);
473 if ((strequal(domain_name
, ".")) || (domain_name
[0] == '\0'))
474 fstrcpy(request
.domain_name
, get_winbind_domain());
476 fstrcpy(request
.domain_name
, domain_name
);
480 if (winbindd_request_response(WINBINDD_DOMAIN_INFO
, &request
, &response
) !=
484 /* Display response */
486 d_printf("Name : %s\n", response
.data
.domain_info
.name
);
487 d_printf("Alt_Name : %s\n", response
.data
.domain_info
.alt_name
);
489 d_printf("SID : %s\n", response
.data
.domain_info
.sid
);
491 d_printf("Active Directory : %s\n",
492 response
.data
.domain_info
.active_directory
? "Yes" : "No");
493 d_printf("Native : %s\n",
494 response
.data
.domain_info
.native_mode
? "Yes" : "No");
496 d_printf("Primary : %s\n",
497 response
.data
.domain_info
.primary
? "Yes" : "No");
502 /* Get a foreign DC's name */
503 static bool wbinfo_getdcname(const char *domain_name
)
505 struct winbindd_request request
;
506 struct winbindd_response response
;
508 ZERO_STRUCT(request
);
509 ZERO_STRUCT(response
);
511 fstrcpy(request
.domain_name
, domain_name
);
515 if (winbindd_request_response(WINBINDD_GETDCNAME
, &request
, &response
) !=
516 NSS_STATUS_SUCCESS
) {
517 d_fprintf(stderr
, "Could not get dc name for %s\n", domain_name
);
521 /* Display response */
523 d_printf("%s\n", response
.data
.dc_name
);
528 /* Check trust account password */
530 static bool wbinfo_check_secret(void)
532 struct winbindd_response response
;
535 ZERO_STRUCT(response
);
537 result
= winbindd_request_response(WINBINDD_CHECK_MACHACC
, NULL
, &response
);
539 d_printf("checking the trust secret via RPC calls %s\n",
540 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
542 if (result
!= NSS_STATUS_SUCCESS
)
543 d_fprintf(stderr
, "error code was %s (0x%x)\n",
544 response
.data
.auth
.nt_status_string
,
545 response
.data
.auth
.nt_status
);
547 return result
== NSS_STATUS_SUCCESS
;
550 /* Convert uid to sid */
552 static bool wbinfo_uid_to_sid(uid_t uid
)
554 struct winbindd_request request
;
555 struct winbindd_response response
;
557 ZERO_STRUCT(request
);
558 ZERO_STRUCT(response
);
562 request
.data
.uid
= uid
;
564 if (winbindd_request_response(WINBINDD_UID_TO_SID
, &request
, &response
) !=
568 /* Display response */
570 d_printf("%s\n", response
.data
.sid
.sid
);
575 /* Convert gid to sid */
577 static bool wbinfo_gid_to_sid(gid_t gid
)
579 struct winbindd_request request
;
580 struct winbindd_response response
;
582 ZERO_STRUCT(request
);
583 ZERO_STRUCT(response
);
587 request
.data
.gid
= gid
;
589 if (winbindd_request_response(WINBINDD_GID_TO_SID
, &request
, &response
) !=
593 /* Display response */
595 d_printf("%s\n", response
.data
.sid
.sid
);
600 /* Convert sid to uid */
602 static bool wbinfo_sid_to_uid(char *sid
)
604 struct winbindd_request request
;
605 struct winbindd_response response
;
607 ZERO_STRUCT(request
);
608 ZERO_STRUCT(response
);
612 fstrcpy(request
.data
.sid
, sid
);
614 if (winbindd_request_response(WINBINDD_SID_TO_UID
, &request
, &response
) !=
618 /* Display response */
620 d_printf("%d\n", (int)response
.data
.uid
);
625 static bool wbinfo_sid_to_gid(char *sid
)
627 struct winbindd_request request
;
628 struct winbindd_response response
;
630 ZERO_STRUCT(request
);
631 ZERO_STRUCT(response
);
635 fstrcpy(request
.data
.sid
, sid
);
637 if (winbindd_request_response(WINBINDD_SID_TO_GID
, &request
, &response
) !=
641 /* Display response */
643 d_printf("%d\n", (int)response
.data
.gid
);
648 static const char *sid_type_lookup(enum lsa_SidType r
)
651 case SID_NAME_USE_NONE
: return "SID_NAME_USE_NONE"; break;
652 case SID_NAME_USER
: return "SID_NAME_USER"; break;
653 case SID_NAME_DOM_GRP
: return "SID_NAME_DOM_GRP"; break;
654 case SID_NAME_DOMAIN
: return "SID_NAME_DOMAIN"; break;
655 case SID_NAME_ALIAS
: return "SID_NAME_ALIAS"; break;
656 case SID_NAME_WKN_GRP
: return "SID_NAME_WKN_GRP"; break;
657 case SID_NAME_DELETED
: return "SID_NAME_DELETED"; break;
658 case SID_NAME_INVALID
: return "SID_NAME_INVALID"; break;
659 case SID_NAME_UNKNOWN
: return "SID_NAME_UNKNOWN"; break;
660 case SID_NAME_COMPUTER
: return "SID_NAME_COMPUTER"; break;
662 return "Invalid sid type\n";
665 /* Convert sid to string */
667 static bool wbinfo_lookupsid(char *sid
)
669 struct winbindd_request request
;
670 struct winbindd_response response
;
672 ZERO_STRUCT(request
);
673 ZERO_STRUCT(response
);
675 /* Send off request */
677 fstrcpy(request
.data
.sid
, sid
);
679 if (winbindd_request_response(WINBINDD_LOOKUPSID
, &request
, &response
) !=
683 /* Display response */
685 d_printf("%s%c%s %s\n", response
.data
.name
.dom_name
,
686 winbind_separator(), response
.data
.name
.name
,
687 sid_type_lookup(response
.data
.name
.type
));
692 /* Convert string to sid */
694 static bool wbinfo_lookupname(char *name
)
696 struct winbindd_request request
;
697 struct winbindd_response response
;
699 /* Send off request */
701 ZERO_STRUCT(request
);
702 ZERO_STRUCT(response
);
704 parse_wbinfo_domain_user(name
, request
.data
.name
.dom_name
,
705 request
.data
.name
.name
);
707 if (winbindd_request_response(WINBINDD_LOOKUPNAME
, &request
, &response
) !=
711 /* Display response */
713 d_printf("%s %s (%d)\n", response
.data
.sid
.sid
, sid_type_lookup(response
.data
.sid
.type
), response
.data
.sid
.type
);
718 /* Authenticate a user with a plaintext password */
720 static bool wbinfo_auth_krb5(char *username
, const char *cctype
, uint32_t flags
)
722 struct winbindd_request request
;
723 struct winbindd_response response
;
727 /* Send off request */
729 ZERO_STRUCT(request
);
730 ZERO_STRUCT(response
);
732 p
= strchr(username
, '%');
736 fstrcpy(request
.data
.auth
.user
, username
);
737 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
740 fstrcpy(request
.data
.auth
.user
, username
);
742 request
.flags
= flags
;
744 fstrcpy(request
.data
.auth
.krb5_cc_type
, cctype
);
746 request
.data
.auth
.uid
= geteuid();
748 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
750 /* Display response */
752 d_printf("plaintext kerberos password authentication for [%s] %s (requesting cctype: %s)\n",
753 username
, (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed", cctype
);
755 if (response
.data
.auth
.nt_status
)
756 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
757 response
.data
.auth
.nt_status_string
,
758 response
.data
.auth
.nt_status
,
759 response
.data
.auth
.error_string
);
761 if (result
== NSS_STATUS_SUCCESS
) {
763 if (request
.flags
& WBFLAG_PAM_INFO3_TEXT
) {
764 if (response
.data
.auth
.info3
.user_flgs
& NETLOGON_CACHED_ACCOUNT
) {
765 d_printf("user_flgs: NETLOGON_CACHED_ACCOUNT\n");
769 if (response
.data
.auth
.krb5ccname
[0] != '\0') {
770 d_printf("credentials were put in: %s\n", response
.data
.auth
.krb5ccname
);
772 d_printf("no credentials cached\n");
776 return result
== NSS_STATUS_SUCCESS
;
779 /* Authenticate a user with a plaintext password */
781 static bool wbinfo_auth(char *username
)
783 struct winbindd_request request
;
784 struct winbindd_response response
;
788 /* Send off request */
790 ZERO_STRUCT(request
);
791 ZERO_STRUCT(response
);
793 p
= strchr(username
, '%');
797 fstrcpy(request
.data
.auth
.user
, username
);
798 fstrcpy(request
.data
.auth
.pass
, p
+ 1);
801 fstrcpy(request
.data
.auth
.user
, username
);
803 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
805 /* Display response */
807 d_printf("plaintext password authentication %s\n",
808 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
810 if (response
.data
.auth
.nt_status
)
811 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
812 response
.data
.auth
.nt_status_string
,
813 response
.data
.auth
.nt_status
,
814 response
.data
.auth
.error_string
);
816 return result
== NSS_STATUS_SUCCESS
;
819 /* Authenticate a user with a challenge/response */
821 static bool wbinfo_auth_crap(struct loadparm_context
*lp_ctx
, char *username
)
823 struct winbindd_request request
;
824 struct winbindd_response response
;
831 /* Send off request */
833 ZERO_STRUCT(request
);
834 ZERO_STRUCT(response
);
836 p
= strchr(username
, '%');
840 fstrcpy(pass
, p
+ 1);
843 parse_wbinfo_domain_user(username
, name_domain
, name_user
);
845 request
.data
.auth_crap
.logon_parameters
= MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
| MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
;
847 fstrcpy(request
.data
.auth_crap
.user
, name_user
);
849 fstrcpy(request
.data
.auth_crap
.domain
,
852 generate_random_buffer(request
.data
.auth_crap
.chal
, 8);
854 if (lp_client_ntlmv2_auth(lp_ctx
)) {
855 DATA_BLOB server_chal
;
856 DATA_BLOB names_blob
;
858 DATA_BLOB lm_response
;
859 DATA_BLOB nt_response
;
862 mem_ctx
= talloc_new(NULL
);
863 if (mem_ctx
== NULL
) {
864 d_printf("talloc_new failed\n");
868 server_chal
= data_blob(request
.data
.auth_crap
.chal
, 8);
870 /* Pretend this is a login to 'us', for blob purposes */
871 names_blob
= NTLMv2_generate_names_blob(mem_ctx
, lp_netbios_name(lp_ctx
), lp_workgroup(lp_ctx
));
873 if (!SMBNTLMv2encrypt(mem_ctx
, name_user
, name_domain
, pass
, &server_chal
,
875 &lm_response
, &nt_response
, NULL
, NULL
)) {
876 data_blob_free(&names_blob
);
877 data_blob_free(&server_chal
);
880 data_blob_free(&names_blob
);
881 data_blob_free(&server_chal
);
883 memcpy(request
.data
.auth_crap
.nt_resp
, nt_response
.data
,
884 MIN(nt_response
.length
,
885 sizeof(request
.data
.auth_crap
.nt_resp
)));
886 request
.data
.auth_crap
.nt_resp_len
= nt_response
.length
;
888 memcpy(request
.data
.auth_crap
.lm_resp
, lm_response
.data
,
889 MIN(lm_response
.length
,
890 sizeof(request
.data
.auth_crap
.lm_resp
)));
891 request
.data
.auth_crap
.lm_resp_len
= lm_response
.length
;
893 data_blob_free(&nt_response
);
894 data_blob_free(&lm_response
);
897 if (lp_client_lanman_auth(lp_ctx
)
898 && SMBencrypt(pass
, request
.data
.auth_crap
.chal
,
899 (unsigned char *)request
.data
.auth_crap
.lm_resp
)) {
900 request
.data
.auth_crap
.lm_resp_len
= 24;
902 request
.data
.auth_crap
.lm_resp_len
= 0;
904 SMBNTencrypt(pass
, request
.data
.auth_crap
.chal
,
905 (unsigned char *)request
.data
.auth_crap
.nt_resp
);
907 request
.data
.auth_crap
.nt_resp_len
= 24;
910 result
= winbindd_request_response(WINBINDD_PAM_AUTH_CRAP
, &request
, &response
);
912 /* Display response */
914 d_printf("challenge/response password authentication %s\n",
915 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed");
917 if (response
.data
.auth
.nt_status
)
918 d_fprintf(stderr
, "error code was %s (0x%x)\nerror messsage was: %s\n",
919 response
.data
.auth
.nt_status_string
,
920 response
.data
.auth
.nt_status
,
921 response
.data
.auth
.error_string
);
923 return result
== NSS_STATUS_SUCCESS
;
926 /* Print domain users */
928 static bool print_domain_users(const char *domain
)
930 struct winbindd_request request
;
931 struct winbindd_response response
;
932 const char *extra_data
;
935 /* Send request to winbind daemon */
937 ZERO_STRUCT(request
);
938 ZERO_STRUCT(response
);
941 /* '.' is the special sign for our own domain */
942 if ( strequal(domain
, ".") )
943 fstrcpy( request
.domain_name
, get_winbind_domain() );
945 fstrcpy( request
.domain_name
, domain
);
948 if (winbindd_request_response(WINBINDD_LIST_USERS
, &request
, &response
) !=
952 /* Look through extra data */
954 if (!response
.extra_data
.data
)
957 extra_data
= (const char *)response
.extra_data
.data
;
959 while(next_token(&extra_data
, name
, ",", sizeof(fstring
)))
960 d_printf("%s\n", name
);
962 SAFE_FREE(response
.extra_data
.data
);
967 /* Print domain groups */
969 static bool print_domain_groups(const char *domain
)
971 struct winbindd_request request
;
972 struct winbindd_response response
;
973 const char *extra_data
;
976 ZERO_STRUCT(request
);
977 ZERO_STRUCT(response
);
980 if ( strequal(domain
, ".") )
981 fstrcpy( request
.domain_name
, get_winbind_domain() );
983 fstrcpy( request
.domain_name
, domain
);
986 if (winbindd_request_response(WINBINDD_LIST_GROUPS
, &request
, &response
) !=
990 /* Look through extra data */
992 if (!response
.extra_data
.data
)
995 extra_data
= (const char *)response
.extra_data
.data
;
997 while(next_token(&extra_data
, name
, ",", sizeof(fstring
)))
998 d_printf("%s\n", name
);
1000 SAFE_FREE(response
.extra_data
.data
);
1005 static bool wbinfo_ping(void)
1009 result
= winbindd_request_response(WINBINDD_PING
, NULL
, NULL
);
1011 /* Display response */
1013 d_printf("Ping to winbindd %s on fd %d\n",
1014 (result
== NSS_STATUS_SUCCESS
) ? "succeeded" : "failed", winbindd_fd
);
1016 return result
== NSS_STATUS_SUCCESS
;
1022 OPT_SET_AUTH_USER
= 1000,
1032 OPT_LIST_ALL_DOMAINS
,
1033 OPT_LIST_OWN_DOMAIN
,
1039 int main(int argc
, char **argv
, char **envp
)
1044 static char *string_arg
;
1045 static char *opt_domain_name
;
1049 struct poptOption long_options
[] = {
1052 /* longName, shortName, argInfo, argPtr, value, descrip,
1055 { "domain-users", 'u', POPT_ARG_NONE
, 0, 'u', "Lists all domain users", "domain"},
1056 { "domain-groups", 'g', POPT_ARG_NONE
, 0, 'g', "Lists all domain groups", "domain" },
1057 { "WINS-by-name", 'N', POPT_ARG_STRING
, &string_arg
, 'N', "Converts NetBIOS name to IP", "NETBIOS-NAME" },
1058 { "WINS-by-ip", 'I', POPT_ARG_STRING
, &string_arg
, 'I', "Converts IP address to NetBIOS name", "IP" },
1059 { "name-to-sid", 'n', POPT_ARG_STRING
, &string_arg
, 'n', "Converts name to sid", "NAME" },
1060 { "sid-to-name", 's', POPT_ARG_STRING
, &string_arg
, 's', "Converts sid to name", "SID" },
1061 { "uid-to-sid", 'U', POPT_ARG_INT
, &int_arg
, 'U', "Converts uid to sid" , "UID" },
1062 { "gid-to-sid", 'G', POPT_ARG_INT
, &int_arg
, 'G', "Converts gid to sid", "GID" },
1063 { "sid-to-uid", 'S', POPT_ARG_STRING
, &string_arg
, 'S', "Converts sid to uid", "SID" },
1064 { "sid-to-gid", 'Y', POPT_ARG_STRING
, &string_arg
, 'Y', "Converts sid to gid", "SID" },
1065 { "check-secret", 't', POPT_ARG_NONE
, 0, 't', "Check shared secret" },
1066 { "trusted-domains", 'm', POPT_ARG_NONE
, 0, 'm', "List trusted domains" },
1067 { "all-domains", 0, POPT_ARG_NONE
, 0, OPT_LIST_ALL_DOMAINS
, "List all domains (trusted and own domain)" },
1068 { "own-domain", 0, POPT_ARG_NONE
, 0, OPT_LIST_OWN_DOMAIN
, "List own domain" },
1069 { "sequence", 0, POPT_ARG_NONE
, 0, OPT_SEQUENCE
, "Show sequence numbers of all domains" },
1070 { "domain-info", 'D', POPT_ARG_STRING
, &string_arg
, 'D', "Show most of the info we have about the domain" },
1071 { "user-info", 'i', POPT_ARG_STRING
, &string_arg
, 'i', "Get user info", "USER" },
1072 { "uid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_UID_INFO
, "Get user info from uid", "UID" },
1073 { "group-info", 0, POPT_ARG_STRING
, &string_arg
, OPT_GROUP_INFO
, "Get group info", "GROUP" },
1074 { "gid-info", 0, POPT_ARG_INT
, &int_arg
, OPT_GID_INFO
, "Get group info from gid", "GID" },
1075 { "user-groups", 'r', POPT_ARG_STRING
, &string_arg
, 'r', "Get user groups", "USER" },
1076 { "user-domgroups", 0, POPT_ARG_STRING
, &string_arg
,
1077 OPT_USERDOMGROUPS
, "Get user domain groups", "SID" },
1078 { "user-sids", 0, POPT_ARG_STRING
, &string_arg
, OPT_USERSIDS
, "Get user group sids for user SID", "SID" },
1079 { "authenticate", 'a', POPT_ARG_STRING
, &string_arg
, 'a', "authenticate user", "user%password" },
1080 { "getdcname", 0, POPT_ARG_STRING
, &string_arg
, OPT_GETDCNAME
,
1081 "Get a DC name for a foreign domain", "domainname" },
1082 { "ping", 'p', POPT_ARG_NONE
, 0, 'p', "Ping winbindd to see if it is alive" },
1083 { "domain", 0, POPT_ARG_STRING
, &opt_domain_name
, OPT_DOMAIN_NAME
, "Define to the domain to restrict operation", "domain" },
1085 { "krb5auth", 'K', POPT_ARG_STRING
, &string_arg
, 'K', "authenticate user using Kerberos", "user%password" },
1086 /* destroys wbinfo --help output */
1087 /* "user%password,DOM\\user%password,user@EXAMPLE.COM,EXAMPLE.COM\\user%password" }, */
1089 { "separator", 0, POPT_ARG_NONE
, 0, OPT_SEPARATOR
, "Get the active winbind separator", NULL
},
1097 pc
= poptGetContext("wbinfo", argc
, (const char **)argv
, long_options
, 0);
1099 /* Parse command line options */
1102 poptPrintHelp(pc
, stderr
, 0);
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) {
1118 if (!print_domain_users(opt_domain_name
)) {
1119 d_fprintf(stderr
, "Error looking up domain users\n");
1124 if (!print_domain_groups(opt_domain_name
)) {
1125 d_fprintf(stderr
, "Error looking up domain groups\n");
1130 if (!wbinfo_lookupsid(string_arg
)) {
1131 d_fprintf(stderr
, "Could not lookup sid %s\n", string_arg
);
1136 if (!wbinfo_lookupname(string_arg
)) {
1137 d_fprintf(stderr
, "Could not lookup name %s\n", string_arg
);
1142 if (!wbinfo_wins_byname(string_arg
)) {
1143 d_fprintf(stderr
, "Could not lookup WINS by name %s\n", string_arg
);
1148 if (!wbinfo_wins_byip(string_arg
)) {
1149 d_fprintf(stderr
, "Could not lookup WINS by IP %s\n", string_arg
);
1154 if (!wbinfo_uid_to_sid(int_arg
)) {
1155 d_fprintf(stderr
, "Could not convert uid %d to sid\n", int_arg
);
1160 if (!wbinfo_gid_to_sid(int_arg
)) {
1161 d_fprintf(stderr
, "Could not convert gid %d to sid\n",
1167 if (!wbinfo_sid_to_uid(string_arg
)) {
1168 d_fprintf(stderr
, "Could not convert sid %s to uid\n",
1174 if (!wbinfo_sid_to_gid(string_arg
)) {
1175 d_fprintf(stderr
, "Could not convert sid %s to gid\n",
1181 if (!wbinfo_check_secret()) {
1182 d_fprintf(stderr
, "Could not check secret\n");
1187 if (!wbinfo_list_domains(false)) {
1188 d_fprintf(stderr
, "Could not list trusted domains\n");
1193 if (!wbinfo_show_sequence(opt_domain_name
)) {
1194 d_fprintf(stderr
, "Could not show sequence numbers\n");
1199 if (!wbinfo_domain_info(string_arg
)) {
1200 d_fprintf(stderr
, "Could not get domain info\n");
1205 if (!wbinfo_get_userinfo(string_arg
)) {
1206 d_fprintf(stderr
, "Could not get info for user %s\n",
1212 if ( !wbinfo_get_uidinfo(int_arg
)) {
1213 d_fprintf(stderr
, "Could not get info for uid "
1218 case OPT_GROUP_INFO
:
1219 if ( !wbinfo_get_groupinfo(string_arg
)) {
1220 d_fprintf(stderr
, "Could not get info for "
1221 "group %s\n", string_arg
);
1226 if ( !wbinfo_get_gidinfo(int_arg
)) {
1227 d_fprintf(stderr
, "Could not get info for gid "
1233 if (!wbinfo_get_usergroups(string_arg
)) {
1234 d_fprintf(stderr
, "Could not get groups for user %s\n",
1240 if (!wbinfo_get_usersids(string_arg
)) {
1241 d_fprintf(stderr
, "Could not get group SIDs for user SID %s\n",
1246 case OPT_USERDOMGROUPS
:
1247 if (!wbinfo_get_userdomgroups(string_arg
)) {
1248 d_fprintf(stderr
, "Could not get user's domain groups "
1249 "for user SID %s\n", string_arg
);
1254 bool got_error
= false;
1256 if (!wbinfo_auth(string_arg
)) {
1257 d_fprintf(stderr
, "Could not authenticate user %s with "
1258 "plaintext password\n", string_arg
);
1262 if (!wbinfo_auth_crap(cmdline_lp_ctx
, string_arg
)) {
1263 d_fprintf(stderr
, "Could not authenticate user %s with "
1264 "challenge/response\n", string_arg
);
1273 uint32_t flags
= WBFLAG_PAM_KRB5
|
1274 WBFLAG_PAM_CACHED_LOGIN
|
1275 WBFLAG_PAM_FALLBACK_AFTER_KRB5
|
1276 WBFLAG_PAM_INFO3_TEXT
;
1278 if (!wbinfo_auth_krb5(string_arg
, "FILE", flags
)) {
1279 d_fprintf(stderr
, "Could not authenticate user [%s] with "
1280 "Kerberos (ccache: %s)\n", string_arg
, "FILE");
1286 if (!wbinfo_ping()) {
1287 d_fprintf(stderr
, "could not ping winbindd!\n");
1292 if (!wbinfo_getdcname(string_arg
)) {
1296 case OPT_SEPARATOR
: {
1297 const char sep
= winbind_separator_int(true);
1301 d_printf("%c\n", sep
);
1304 case OPT_LIST_ALL_DOMAINS
:
1305 if (!wbinfo_list_domains(true)) {
1309 case OPT_LIST_OWN_DOMAIN
:
1310 if (!wbinfo_list_own_domain()) {
1314 /* generic configuration options */
1315 case OPT_DOMAIN_NAME
:
1318 d_fprintf(stderr
, "Invalid option\n");
1319 poptPrintHelp(pc
, stderr
, 0);
1329 poptFreeContext(pc
);