2 Unix SMB/CIFS implementation.
4 Winbind status program.
6 Copyright (C) Tim Potter 2000-2003
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003-2004
8 Copyright (C) Francesco Chemolli <kinkie@kame.usr.dsi.unimi.it> 2000
9 Copyright (C) Robert O'Callahan 2006 (added cached credential code).
10 Copyright (C) Kai Blin <kai@samba.org> 2008
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include "utils/ntlm_auth.h"
28 #include "../libcli/auth/libcli_auth.h"
29 #include "../libcli/auth/spnego.h"
30 #include "../libcli/auth/ntlmssp.h"
32 #include <iniparser.h>
33 #include "../lib/crypto/arcfour.h"
35 #ifndef PAM_WINBIND_CONFIG_FILE
36 #define PAM_WINBIND_CONFIG_FILE "/etc/security/pam_winbind.conf"
39 #define WINBIND_KRB5_AUTH 0x00000080
42 #define DBGC_CLASS DBGC_WINBIND
44 #define INITIAL_BUFFER_SIZE 300
45 #define MAX_BUFFER_SIZE 630000
47 enum stdio_helper_mode
{
55 NTLM_CHANGE_PASSWORD_1
,
59 enum ntlm_auth_cli_state
{
66 enum ntlm_auth_svr_state
{
73 struct ntlm_auth_state
{
75 enum stdio_helper_mode helper_mode
;
76 enum ntlm_auth_cli_state cli_state
;
77 enum ntlm_auth_svr_state svr_state
;
78 struct ntlmssp_state
*ntlmssp_state
;
80 char *want_feature_list
;
81 bool have_session_key
;
82 DATA_BLOB session_key
;
83 DATA_BLOB initial_message
;
86 typedef void (*stdio_helper_function
)(struct ntlm_auth_state
*state
, char *buf
,
89 static void manage_squid_basic_request (struct ntlm_auth_state
*state
,
90 char *buf
, int length
);
92 static void manage_squid_ntlmssp_request (struct ntlm_auth_state
*state
,
93 char *buf
, int length
);
95 static void manage_client_ntlmssp_request (struct ntlm_auth_state
*state
,
96 char *buf
, int length
);
98 static void manage_gss_spnego_request (struct ntlm_auth_state
*state
,
99 char *buf
, int length
);
101 static void manage_gss_spnego_client_request (struct ntlm_auth_state
*state
,
102 char *buf
, int length
);
104 static void manage_ntlm_server_1_request (struct ntlm_auth_state
*state
,
105 char *buf
, int length
);
107 static void manage_ntlm_change_password_1_request(struct ntlm_auth_state
*state
,
108 char *buf
, int length
);
110 static const struct {
111 enum stdio_helper_mode mode
;
113 stdio_helper_function fn
;
114 } stdio_helper_protocols
[] = {
115 { SQUID_2_4_BASIC
, "squid-2.4-basic", manage_squid_basic_request
},
116 { SQUID_2_5_BASIC
, "squid-2.5-basic", manage_squid_basic_request
},
117 { SQUID_2_5_NTLMSSP
, "squid-2.5-ntlmssp", manage_squid_ntlmssp_request
},
118 { NTLMSSP_CLIENT_1
, "ntlmssp-client-1", manage_client_ntlmssp_request
},
119 { GSS_SPNEGO
, "gss-spnego", manage_gss_spnego_request
},
120 { GSS_SPNEGO_CLIENT
, "gss-spnego-client", manage_gss_spnego_client_request
},
121 { NTLM_SERVER_1
, "ntlm-server-1", manage_ntlm_server_1_request
},
122 { NTLM_CHANGE_PASSWORD_1
, "ntlm-change-password-1", manage_ntlm_change_password_1_request
},
123 { NUM_HELPER_MODES
, NULL
, NULL
}
126 const char *opt_username
;
127 const char *opt_domain
;
128 const char *opt_workstation
;
129 const char *opt_password
;
130 static DATA_BLOB opt_challenge
;
131 static DATA_BLOB opt_lm_response
;
132 static DATA_BLOB opt_nt_response
;
133 static int request_lm_key
;
134 static int request_user_session_key
;
135 static int use_cached_creds
;
137 static const char *require_membership_of
;
138 static const char *require_membership_of_sid
;
139 static const char *opt_pam_winbind_conf
;
141 static char winbind_separator(void)
143 struct winbindd_response response
;
150 ZERO_STRUCT(response
);
152 /* Send off request */
154 if (winbindd_request_response(WINBINDD_INFO
, NULL
, &response
) !=
155 NSS_STATUS_SUCCESS
) {
156 d_printf("could not obtain winbind separator!\n");
157 return *lp_winbind_separator();
160 sep
= response
.data
.info
.winbind_separator
;
164 d_printf("winbind separator was NULL!\n");
165 return *lp_winbind_separator();
171 const char *get_winbind_domain(void)
173 struct winbindd_response response
;
175 static fstring winbind_domain
;
176 if (*winbind_domain
) {
177 return winbind_domain
;
180 ZERO_STRUCT(response
);
182 /* Send off request */
184 if (winbindd_request_response(WINBINDD_DOMAIN_NAME
, NULL
, &response
) !=
185 NSS_STATUS_SUCCESS
) {
186 DEBUG(0, ("could not obtain winbind domain name!\n"));
187 return lp_workgroup();
190 fstrcpy(winbind_domain
, response
.data
.domain_name
);
192 return winbind_domain
;
196 const char *get_winbind_netbios_name(void)
198 struct winbindd_response response
;
200 static fstring winbind_netbios_name
;
202 if (*winbind_netbios_name
) {
203 return winbind_netbios_name
;
206 ZERO_STRUCT(response
);
208 /* Send off request */
210 if (winbindd_request_response(WINBINDD_NETBIOS_NAME
, NULL
, &response
) !=
211 NSS_STATUS_SUCCESS
) {
212 DEBUG(0, ("could not obtain winbind netbios name!\n"));
213 return global_myname();
216 fstrcpy(winbind_netbios_name
, response
.data
.netbios_name
);
218 return winbind_netbios_name
;
222 DATA_BLOB
get_challenge(void)
224 static DATA_BLOB chal
;
225 if (opt_challenge
.length
)
226 return opt_challenge
;
228 chal
= data_blob(NULL
, 8);
230 generate_random_buffer(chal
.data
, chal
.length
);
234 /* Copy of parse_domain_user from winbindd_util.c. Parse a string of the
235 form DOMAIN/user into a domain and a user */
237 static bool parse_ntlm_auth_domain_user(const char *domuser
, fstring domain
,
241 char *p
= strchr(domuser
,winbind_separator());
248 fstrcpy(domain
, domuser
);
249 domain
[PTR_DIFF(p
, domuser
)] = 0;
255 static bool get_require_membership_sid(void) {
256 struct winbindd_request request
;
257 struct winbindd_response response
;
259 if (!require_membership_of
) {
263 if (require_membership_of_sid
) {
267 /* Otherwise, ask winbindd for the name->sid request */
269 ZERO_STRUCT(request
);
270 ZERO_STRUCT(response
);
272 if (!parse_ntlm_auth_domain_user(require_membership_of
,
273 request
.data
.name
.dom_name
,
274 request
.data
.name
.name
)) {
275 DEBUG(0, ("Could not parse %s into seperate domain/name parts!\n",
276 require_membership_of
));
280 if (winbindd_request_response(WINBINDD_LOOKUPNAME
, &request
, &response
) !=
281 NSS_STATUS_SUCCESS
) {
282 DEBUG(0, ("Winbindd lookupname failed to resolve %s into a SID!\n",
283 require_membership_of
));
287 require_membership_of_sid
= SMB_STRDUP(response
.data
.sid
.sid
);
289 if (require_membership_of_sid
)
296 * Get some configuration from pam_winbind.conf to see if we
297 * need to contact trusted domain
300 int get_pam_winbind_config()
303 dictionary
*d
= NULL
;
305 if (!opt_pam_winbind_conf
|| !*opt_pam_winbind_conf
) {
306 opt_pam_winbind_conf
= PAM_WINBIND_CONFIG_FILE
;
309 d
= iniparser_load(CONST_DISCARD(char *, opt_pam_winbind_conf
));
315 if (iniparser_getboolean(d
, CONST_DISCARD(char *, "global:krb5_auth"), false)) {
316 ctrl
|= WINBIND_KRB5_AUTH
;
319 iniparser_freedict(d
);
324 /* Authenticate a user with a plaintext password */
326 static bool check_plaintext_auth(const char *user
, const char *pass
,
327 bool stdout_diagnostics
)
329 struct winbindd_request request
;
330 struct winbindd_response response
;
333 if (!get_require_membership_sid()) {
337 /* Send off request */
339 ZERO_STRUCT(request
);
340 ZERO_STRUCT(response
);
342 fstrcpy(request
.data
.auth
.user
, user
);
343 fstrcpy(request
.data
.auth
.pass
, pass
);
344 if (require_membership_of_sid
) {
345 strlcpy(request
.data
.auth
.require_membership_of_sid
,
346 require_membership_of_sid
,
347 sizeof(request
.data
.auth
.require_membership_of_sid
));
350 result
= winbindd_request_response(WINBINDD_PAM_AUTH
, &request
, &response
);
352 /* Display response */
354 if (stdout_diagnostics
) {
355 if ((result
!= NSS_STATUS_SUCCESS
) && (response
.data
.auth
.nt_status
== 0)) {
356 d_printf("Reading winbind reply failed! (0x01)\n");
359 d_printf("%s: %s (0x%x)\n",
360 response
.data
.auth
.nt_status_string
,
361 response
.data
.auth
.error_string
,
362 response
.data
.auth
.nt_status
);
364 if ((result
!= NSS_STATUS_SUCCESS
) && (response
.data
.auth
.nt_status
== 0)) {
365 DEBUG(1, ("Reading winbind reply failed! (0x01)\n"));
368 DEBUG(3, ("%s: %s (0x%x)\n",
369 response
.data
.auth
.nt_status_string
,
370 response
.data
.auth
.error_string
,
371 response
.data
.auth
.nt_status
));
374 return (result
== NSS_STATUS_SUCCESS
);
377 /* authenticate a user with an encrypted username/password */
379 NTSTATUS
contact_winbind_auth_crap(const char *username
,
381 const char *workstation
,
382 const DATA_BLOB
*challenge
,
383 const DATA_BLOB
*lm_response
,
384 const DATA_BLOB
*nt_response
,
387 uint8 user_session_key
[16],
393 struct winbindd_request request
;
394 struct winbindd_response response
;
396 if (!get_require_membership_sid()) {
397 return NT_STATUS_INVALID_PARAMETER
;
400 ZERO_STRUCT(request
);
401 ZERO_STRUCT(response
);
403 request
.flags
= flags
;
405 request
.data
.auth_crap
.logon_parameters
= MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
| MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
;
407 if (require_membership_of_sid
)
408 fstrcpy(request
.data
.auth_crap
.require_membership_of_sid
, require_membership_of_sid
);
410 fstrcpy(request
.data
.auth_crap
.user
, username
);
411 fstrcpy(request
.data
.auth_crap
.domain
, domain
);
413 fstrcpy(request
.data
.auth_crap
.workstation
,
416 memcpy(request
.data
.auth_crap
.chal
, challenge
->data
, MIN(challenge
->length
, 8));
418 if (lm_response
&& lm_response
->length
) {
419 memcpy(request
.data
.auth_crap
.lm_resp
,
421 MIN(lm_response
->length
, sizeof(request
.data
.auth_crap
.lm_resp
)));
422 request
.data
.auth_crap
.lm_resp_len
= lm_response
->length
;
425 if (nt_response
&& nt_response
->length
) {
426 if (nt_response
->length
> sizeof(request
.data
.auth_crap
.nt_resp
)) {
427 request
.flags
= request
.flags
| WBFLAG_BIG_NTLMV2_BLOB
;
428 request
.extra_len
= nt_response
->length
;
429 request
.extra_data
.data
= SMB_MALLOC_ARRAY(char, request
.extra_len
);
430 if (request
.extra_data
.data
== NULL
) {
431 return NT_STATUS_NO_MEMORY
;
433 memcpy(request
.extra_data
.data
, nt_response
->data
,
434 nt_response
->length
);
437 memcpy(request
.data
.auth_crap
.nt_resp
,
438 nt_response
->data
, nt_response
->length
);
440 request
.data
.auth_crap
.nt_resp_len
= nt_response
->length
;
443 result
= winbindd_request_response(WINBINDD_PAM_AUTH_CRAP
, &request
, &response
);
444 SAFE_FREE(request
.extra_data
.data
);
446 /* Display response */
448 if ((result
!= NSS_STATUS_SUCCESS
) && (response
.data
.auth
.nt_status
== 0)) {
449 nt_status
= NT_STATUS_UNSUCCESSFUL
;
451 *error_string
= smb_xstrdup("Reading winbind reply failed!");
452 winbindd_free_response(&response
);
456 nt_status
= (NT_STATUS(response
.data
.auth
.nt_status
));
457 if (!NT_STATUS_IS_OK(nt_status
)) {
459 *error_string
= smb_xstrdup(response
.data
.auth
.error_string
);
460 winbindd_free_response(&response
);
464 if ((flags
& WBFLAG_PAM_LMKEY
) && lm_key
) {
465 memcpy(lm_key
, response
.data
.auth
.first_8_lm_hash
,
466 sizeof(response
.data
.auth
.first_8_lm_hash
));
468 if ((flags
& WBFLAG_PAM_USER_SESSION_KEY
) && user_session_key
) {
469 memcpy(user_session_key
, response
.data
.auth
.user_session_key
,
470 sizeof(response
.data
.auth
.user_session_key
));
473 if (flags
& WBFLAG_PAM_UNIX_NAME
) {
474 *unix_name
= SMB_STRDUP(response
.data
.auth
.unix_username
);
476 winbindd_free_response(&response
);
477 return NT_STATUS_NO_MEMORY
;
481 winbindd_free_response(&response
);
485 /* contact server to change user password using auth crap */
486 static NTSTATUS
contact_winbind_change_pswd_auth_crap(const char *username
,
488 const DATA_BLOB new_nt_pswd
,
489 const DATA_BLOB old_nt_hash_enc
,
490 const DATA_BLOB new_lm_pswd
,
491 const DATA_BLOB old_lm_hash_enc
,
496 struct winbindd_request request
;
497 struct winbindd_response response
;
499 if (!get_require_membership_sid())
502 *error_string
= smb_xstrdup("Can't get membership sid.");
503 return NT_STATUS_INVALID_PARAMETER
;
506 ZERO_STRUCT(request
);
507 ZERO_STRUCT(response
);
510 fstrcpy(request
.data
.chng_pswd_auth_crap
.user
, username
);
512 fstrcpy(request
.data
.chng_pswd_auth_crap
.domain
,domain
);
514 if(new_nt_pswd
.length
)
516 memcpy(request
.data
.chng_pswd_auth_crap
.new_nt_pswd
, new_nt_pswd
.data
, sizeof(request
.data
.chng_pswd_auth_crap
.new_nt_pswd
));
517 request
.data
.chng_pswd_auth_crap
.new_nt_pswd_len
= new_nt_pswd
.length
;
520 if(old_nt_hash_enc
.length
)
522 memcpy(request
.data
.chng_pswd_auth_crap
.old_nt_hash_enc
, old_nt_hash_enc
.data
, sizeof(request
.data
.chng_pswd_auth_crap
.old_nt_hash_enc
));
523 request
.data
.chng_pswd_auth_crap
.old_nt_hash_enc_len
= old_nt_hash_enc
.length
;
526 if(new_lm_pswd
.length
)
528 memcpy(request
.data
.chng_pswd_auth_crap
.new_lm_pswd
, new_lm_pswd
.data
, sizeof(request
.data
.chng_pswd_auth_crap
.new_lm_pswd
));
529 request
.data
.chng_pswd_auth_crap
.new_lm_pswd_len
= new_lm_pswd
.length
;
532 if(old_lm_hash_enc
.length
)
534 memcpy(request
.data
.chng_pswd_auth_crap
.old_lm_hash_enc
, old_lm_hash_enc
.data
, sizeof(request
.data
.chng_pswd_auth_crap
.old_lm_hash_enc
));
535 request
.data
.chng_pswd_auth_crap
.old_lm_hash_enc_len
= old_lm_hash_enc
.length
;
538 result
= winbindd_request_response(WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP
, &request
, &response
);
540 /* Display response */
542 if ((result
!= NSS_STATUS_SUCCESS
) && (response
.data
.auth
.nt_status
== 0))
544 nt_status
= NT_STATUS_UNSUCCESSFUL
;
546 *error_string
= smb_xstrdup("Reading winbind reply failed!");
547 winbindd_free_response(&response
);
551 nt_status
= (NT_STATUS(response
.data
.auth
.nt_status
));
552 if (!NT_STATUS_IS_OK(nt_status
))
555 *error_string
= smb_xstrdup(response
.data
.auth
.error_string
);
556 winbindd_free_response(&response
);
560 winbindd_free_response(&response
);
565 static NTSTATUS
winbind_pw_check(struct ntlmssp_state
*ntlmssp_state
, DATA_BLOB
*user_session_key
, DATA_BLOB
*lm_session_key
)
567 static const char zeros
[16] = { 0, };
569 char *error_string
= NULL
;
571 uint8 user_sess_key
[16];
572 char *unix_name
= NULL
;
574 nt_status
= contact_winbind_auth_crap(ntlmssp_state
->user
, ntlmssp_state
->domain
,
575 ntlmssp_state
->client
.netbios_name
,
576 &ntlmssp_state
->chal
,
577 &ntlmssp_state
->lm_resp
,
578 &ntlmssp_state
->nt_resp
,
579 WBFLAG_PAM_LMKEY
| WBFLAG_PAM_USER_SESSION_KEY
| WBFLAG_PAM_UNIX_NAME
,
580 lm_key
, user_sess_key
,
581 &error_string
, &unix_name
);
583 if (NT_STATUS_IS_OK(nt_status
)) {
584 if (memcmp(lm_key
, zeros
, 8) != 0) {
585 *lm_session_key
= data_blob_talloc(ntlmssp_state
, NULL
, 16);
586 memcpy(lm_session_key
->data
, lm_key
, 8);
587 memset(lm_session_key
->data
+8, '\0', 8);
590 if (memcmp(user_sess_key
, zeros
, 16) != 0) {
591 *user_session_key
= data_blob_talloc(ntlmssp_state
, user_sess_key
, 16);
593 ntlmssp_state
->callback_private
= talloc_strdup(ntlmssp_state
,
596 DEBUG(NT_STATUS_EQUAL(nt_status
, NT_STATUS_ACCESS_DENIED
) ? 0 : 3,
597 ("Login for user [%s]\\[%s]@[%s] failed due to [%s]\n",
598 ntlmssp_state
->domain
, ntlmssp_state
->user
,
599 ntlmssp_state
->client
.netbios_name
,
600 error_string
? error_string
: "unknown error (NULL)"));
601 ntlmssp_state
->callback_private
= NULL
;
604 SAFE_FREE(error_string
);
605 SAFE_FREE(unix_name
);
609 static NTSTATUS
local_pw_check(struct ntlmssp_state
*ntlmssp_state
, DATA_BLOB
*user_session_key
, DATA_BLOB
*lm_session_key
)
612 struct samr_Password lm_pw
, nt_pw
;
614 nt_lm_owf_gen (opt_password
, nt_pw
.hash
, lm_pw
.hash
);
616 nt_status
= ntlm_password_check(ntlmssp_state
,
618 &ntlmssp_state
->chal
,
619 &ntlmssp_state
->lm_resp
,
620 &ntlmssp_state
->nt_resp
,
623 ntlmssp_state
->domain
,
624 &lm_pw
, &nt_pw
, user_session_key
, lm_session_key
);
626 if (NT_STATUS_IS_OK(nt_status
)) {
627 ntlmssp_state
->callback_private
= talloc_asprintf(ntlmssp_state
,
628 "%s%c%s", ntlmssp_state
->domain
,
629 *lp_winbind_separator(),
630 ntlmssp_state
->user
);
632 DEBUG(3, ("Login for user [%s]\\[%s]@[%s] failed due to [%s]\n",
633 ntlmssp_state
->domain
, ntlmssp_state
->user
,
634 ntlmssp_state
->client
.netbios_name
,
635 nt_errstr(nt_status
)));
636 ntlmssp_state
->callback_private
= NULL
;
641 static NTSTATUS
ntlm_auth_start_ntlmssp_client(struct ntlmssp_state
**client_ntlmssp_state
)
644 if ( (opt_username
== NULL
) || (opt_domain
== NULL
) ) {
645 status
= NT_STATUS_UNSUCCESSFUL
;
646 DEBUG(1, ("Need username and domain for NTLMSSP\n"));
647 return NT_STATUS_INVALID_PARAMETER
;
650 status
= ntlmssp_client_start(NULL
,
653 lp_client_ntlmv2_auth(),
654 client_ntlmssp_state
);
656 if (!NT_STATUS_IS_OK(status
)) {
657 DEBUG(1, ("Could not start NTLMSSP client: %s\n",
659 TALLOC_FREE(*client_ntlmssp_state
);
663 status
= ntlmssp_set_username(*client_ntlmssp_state
, opt_username
);
665 if (!NT_STATUS_IS_OK(status
)) {
666 DEBUG(1, ("Could not set username: %s\n",
668 TALLOC_FREE(*client_ntlmssp_state
);
672 status
= ntlmssp_set_domain(*client_ntlmssp_state
, opt_domain
);
674 if (!NT_STATUS_IS_OK(status
)) {
675 DEBUG(1, ("Could not set domain: %s\n",
677 TALLOC_FREE(*client_ntlmssp_state
);
682 status
= ntlmssp_set_password(*client_ntlmssp_state
, opt_password
);
684 if (!NT_STATUS_IS_OK(status
)) {
685 DEBUG(1, ("Could not set password: %s\n",
687 TALLOC_FREE(*client_ntlmssp_state
);
695 static NTSTATUS
ntlm_auth_start_ntlmssp_server(struct ntlmssp_state
**ntlmssp_state
)
698 const char *netbios_name
;
699 const char *netbios_domain
;
700 const char *dns_name
;
702 bool is_standalone
= false;
705 netbios_name
= global_myname();
706 netbios_domain
= lp_workgroup();
708 netbios_name
= get_winbind_netbios_name();
709 netbios_domain
= get_winbind_domain();
711 /* This should be a 'netbios domain -> DNS domain' mapping */
712 dns_domain
= get_mydnsdomname(talloc_tos());
714 strlower_m(dns_domain
);
716 dns_name
= get_mydnsfullname();
718 status
= ntlmssp_server_start(NULL
,
725 if (!NT_STATUS_IS_OK(status
)) {
726 DEBUG(1, ("Could not start NTLMSSP server: %s\n",
731 /* Have we been given a local password, or should we ask winbind? */
733 (*ntlmssp_state
)->check_password
= local_pw_check
;
735 (*ntlmssp_state
)->check_password
= winbind_pw_check
;
740 /*******************************************************************
741 Used by firefox to drive NTLM auth to IIS servers.
742 *******************************************************************/
744 static NTSTATUS
do_ccache_ntlm_auth(DATA_BLOB initial_msg
, DATA_BLOB challenge_msg
,
747 struct winbindd_request wb_request
;
748 struct winbindd_response wb_response
;
752 /* get winbindd to do the ntlmssp step on our behalf */
753 ZERO_STRUCT(wb_request
);
754 ZERO_STRUCT(wb_response
);
757 * This is tricky here. If we set krb5_auth in pam_winbind.conf
758 * creds for users in trusted domain will be stored the winbindd
759 * child of the trusted domain. If we ask the primary domain for
760 * ntlm_ccache_auth, it will fail. So, we have to ask the trusted
761 * domain's child for ccache_ntlm_auth. that is to say, we have to
762 * set WBFALG_PAM_CONTACT_TRUSTDOM in request.flags.
764 ctrl
= get_pam_winbind_config();
766 if (ctrl
| WINBIND_KRB5_AUTH
) {
767 wb_request
.flags
|= WBFLAG_PAM_CONTACT_TRUSTDOM
;
770 fstr_sprintf(wb_request
.data
.ccache_ntlm_auth
.user
,
771 "%s%c%s", opt_domain
, winbind_separator(), opt_username
);
772 wb_request
.data
.ccache_ntlm_auth
.uid
= geteuid();
773 wb_request
.data
.ccache_ntlm_auth
.initial_blob_len
= initial_msg
.length
;
774 wb_request
.data
.ccache_ntlm_auth
.challenge_blob_len
= challenge_msg
.length
;
775 wb_request
.extra_len
= initial_msg
.length
+ challenge_msg
.length
;
777 if (wb_request
.extra_len
> 0) {
778 wb_request
.extra_data
.data
= SMB_MALLOC_ARRAY(char, wb_request
.extra_len
);
779 if (wb_request
.extra_data
.data
== NULL
) {
780 return NT_STATUS_NO_MEMORY
;
783 memcpy(wb_request
.extra_data
.data
, initial_msg
.data
, initial_msg
.length
);
784 memcpy(wb_request
.extra_data
.data
+ initial_msg
.length
,
785 challenge_msg
.data
, challenge_msg
.length
);
788 result
= winbindd_request_response(WINBINDD_CCACHE_NTLMAUTH
, &wb_request
, &wb_response
);
789 SAFE_FREE(wb_request
.extra_data
.data
);
791 if (result
!= NSS_STATUS_SUCCESS
) {
792 winbindd_free_response(&wb_response
);
793 return NT_STATUS_UNSUCCESSFUL
;
797 *reply
= data_blob(wb_response
.extra_data
.data
,
798 wb_response
.data
.ccache_ntlm_auth
.auth_blob_len
);
799 if (wb_response
.data
.ccache_ntlm_auth
.auth_blob_len
> 0 &&
800 reply
->data
== NULL
) {
801 winbindd_free_response(&wb_response
);
802 return NT_STATUS_NO_MEMORY
;
806 winbindd_free_response(&wb_response
);
807 return NT_STATUS_MORE_PROCESSING_REQUIRED
;
810 static void manage_squid_ntlmssp_request(struct ntlm_auth_state
*state
,
811 char *buf
, int length
)
813 DATA_BLOB request
, reply
;
816 if (strlen(buf
) < 2) {
817 DEBUG(1, ("NTLMSSP query [%s] invalid", buf
));
818 x_fprintf(x_stdout
, "BH NTLMSSP query invalid\n");
822 if (strlen(buf
) > 3) {
823 if(strncmp(buf
, "SF ", 3) == 0){
824 DEBUG(10, ("Setting flags to negotioate\n"));
825 TALLOC_FREE(state
->want_feature_list
);
826 state
->want_feature_list
= talloc_strdup(state
->mem_ctx
,
828 x_fprintf(x_stdout
, "OK\n");
831 request
= base64_decode_data_blob(buf
+ 3);
833 request
= data_blob_null
;
836 if ((strncmp(buf
, "PW ", 3) == 0)) {
837 /* The calling application wants us to use a local password
838 * (rather than winbindd) */
840 opt_password
= SMB_STRNDUP((const char *)request
.data
,
843 if (opt_password
== NULL
) {
844 DEBUG(1, ("Out of memory\n"));
845 x_fprintf(x_stdout
, "BH Out of memory\n");
846 data_blob_free(&request
);
850 x_fprintf(x_stdout
, "OK\n");
851 data_blob_free(&request
);
855 if (strncmp(buf
, "YR", 2) == 0) {
856 if (state
->ntlmssp_state
)
857 TALLOC_FREE(state
->ntlmssp_state
);
858 state
->svr_state
= SERVER_INITIAL
;
859 } else if (strncmp(buf
, "KK", 2) == 0) {
860 /* No special preprocessing required */
861 } else if (strncmp(buf
, "GF", 2) == 0) {
862 DEBUG(10, ("Requested negotiated NTLMSSP flags\n"));
864 if (state
->svr_state
== SERVER_FINISHED
) {
865 x_fprintf(x_stdout
, "GF 0x%08x\n", state
->neg_flags
);
868 x_fprintf(x_stdout
, "BH\n");
870 data_blob_free(&request
);
872 } else if (strncmp(buf
, "GK", 2) == 0) {
873 DEBUG(10, ("Requested NTLMSSP session key\n"));
874 if(state
->have_session_key
) {
875 char *key64
= base64_encode_data_blob(state
->mem_ctx
,
877 x_fprintf(x_stdout
, "GK %s\n", key64
?key64
:"<NULL>");
880 x_fprintf(x_stdout
, "BH\n");
883 data_blob_free(&request
);
886 DEBUG(1, ("NTLMSSP query [%s] invalid", buf
));
887 x_fprintf(x_stdout
, "BH NTLMSSP query invalid\n");
891 if (!state
->ntlmssp_state
) {
892 nt_status
= ntlm_auth_start_ntlmssp_server(
893 &state
->ntlmssp_state
);
894 if (!NT_STATUS_IS_OK(nt_status
)) {
895 x_fprintf(x_stdout
, "BH %s\n", nt_errstr(nt_status
));
898 ntlmssp_want_feature_list(state
->ntlmssp_state
,
899 state
->want_feature_list
);
902 DEBUG(10, ("got NTLMSSP packet:\n"));
903 dump_data(10, request
.data
, request
.length
);
905 nt_status
= ntlmssp_update(state
->ntlmssp_state
, request
, &reply
);
907 if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
908 char *reply_base64
= base64_encode_data_blob(state
->mem_ctx
,
910 x_fprintf(x_stdout
, "TT %s\n", reply_base64
);
911 TALLOC_FREE(reply_base64
);
912 data_blob_free(&reply
);
913 state
->svr_state
= SERVER_CHALLENGE
;
914 DEBUG(10, ("NTLMSSP challenge\n"));
915 } else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_ACCESS_DENIED
)) {
916 x_fprintf(x_stdout
, "BH %s\n", nt_errstr(nt_status
));
917 DEBUG(0, ("NTLMSSP BH: %s\n", nt_errstr(nt_status
)));
919 TALLOC_FREE(state
->ntlmssp_state
);
920 } else if (!NT_STATUS_IS_OK(nt_status
)) {
921 x_fprintf(x_stdout
, "NA %s\n", nt_errstr(nt_status
));
922 DEBUG(10, ("NTLMSSP %s\n", nt_errstr(nt_status
)));
924 x_fprintf(x_stdout
, "AF %s\n",
925 (char *)state
->ntlmssp_state
->callback_private
);
926 DEBUG(10, ("NTLMSSP OK!\n"));
928 if(state
->have_session_key
)
929 data_blob_free(&state
->session_key
);
930 state
->session_key
= data_blob(
931 state
->ntlmssp_state
->session_key
.data
,
932 state
->ntlmssp_state
->session_key
.length
);
933 state
->neg_flags
= state
->ntlmssp_state
->neg_flags
;
934 state
->have_session_key
= true;
935 state
->svr_state
= SERVER_FINISHED
;
938 data_blob_free(&request
);
941 static void manage_client_ntlmssp_request(struct ntlm_auth_state
*state
,
942 char *buf
, int length
)
944 DATA_BLOB request
, reply
;
947 if (!opt_username
|| !*opt_username
) {
948 x_fprintf(x_stderr
, "username must be specified!\n\n");
952 if (strlen(buf
) < 2) {
953 DEBUG(1, ("NTLMSSP query [%s] invalid", buf
));
954 x_fprintf(x_stdout
, "BH NTLMSSP query invalid\n");
958 if (strlen(buf
) > 3) {
959 if(strncmp(buf
, "SF ", 3) == 0) {
960 DEBUG(10, ("Looking for flags to negotiate\n"));
961 talloc_free(state
->want_feature_list
);
962 state
->want_feature_list
= talloc_strdup(state
->mem_ctx
,
964 x_fprintf(x_stdout
, "OK\n");
967 request
= base64_decode_data_blob(buf
+ 3);
969 request
= data_blob_null
;
972 if (strncmp(buf
, "PW ", 3) == 0) {
973 /* We asked for a password and obviously got it :-) */
975 opt_password
= SMB_STRNDUP((const char *)request
.data
,
978 if (opt_password
== NULL
) {
979 DEBUG(1, ("Out of memory\n"));
980 x_fprintf(x_stdout
, "BH Out of memory\n");
981 data_blob_free(&request
);
985 x_fprintf(x_stdout
, "OK\n");
986 data_blob_free(&request
);
990 if (!state
->ntlmssp_state
&& use_cached_creds
) {
991 /* check whether cached credentials are usable. */
992 DATA_BLOB empty_blob
= data_blob_null
;
994 nt_status
= do_ccache_ntlm_auth(empty_blob
, empty_blob
, NULL
);
995 if (!NT_STATUS_EQUAL(nt_status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
996 /* failed to use cached creds */
997 use_cached_creds
= False
;
1001 if (opt_password
== NULL
&& !use_cached_creds
) {
1002 /* Request a password from the calling process. After
1003 sending it, the calling process should retry asking for the
1006 DEBUG(10, ("Requesting password\n"));
1007 x_fprintf(x_stdout
, "PW\n");
1011 if (strncmp(buf
, "YR", 2) == 0) {
1012 if (state
->ntlmssp_state
)
1013 TALLOC_FREE(state
->ntlmssp_state
);
1014 state
->cli_state
= CLIENT_INITIAL
;
1015 } else if (strncmp(buf
, "TT", 2) == 0) {
1016 /* No special preprocessing required */
1017 } else if (strncmp(buf
, "GF", 2) == 0) {
1018 DEBUG(10, ("Requested negotiated NTLMSSP flags\n"));
1020 if(state
->cli_state
== CLIENT_FINISHED
) {
1021 x_fprintf(x_stdout
, "GF 0x%08x\n", state
->neg_flags
);
1024 x_fprintf(x_stdout
, "BH\n");
1027 data_blob_free(&request
);
1029 } else if (strncmp(buf
, "GK", 2) == 0 ) {
1030 DEBUG(10, ("Requested session key\n"));
1032 if(state
->cli_state
== CLIENT_FINISHED
) {
1033 char *key64
= base64_encode_data_blob(state
->mem_ctx
,
1034 state
->session_key
);
1035 x_fprintf(x_stdout
, "GK %s\n", key64
?key64
:"<NULL>");
1039 x_fprintf(x_stdout
, "BH\n");
1042 data_blob_free(&request
);
1045 DEBUG(1, ("NTLMSSP query [%s] invalid", buf
));
1046 x_fprintf(x_stdout
, "BH NTLMSSP query invalid\n");
1050 if (!state
->ntlmssp_state
) {
1051 nt_status
= ntlm_auth_start_ntlmssp_client(
1052 &state
->ntlmssp_state
);
1053 if (!NT_STATUS_IS_OK(nt_status
)) {
1054 x_fprintf(x_stdout
, "BH %s\n", nt_errstr(nt_status
));
1057 ntlmssp_want_feature_list(state
->ntlmssp_state
,
1058 state
->want_feature_list
);
1059 state
->initial_message
= data_blob_null
;
1062 DEBUG(10, ("got NTLMSSP packet:\n"));
1063 dump_data(10, request
.data
, request
.length
);
1065 if (use_cached_creds
&& !opt_password
&&
1066 (state
->cli_state
== CLIENT_RESPONSE
)) {
1067 nt_status
= do_ccache_ntlm_auth(state
->initial_message
, request
,
1070 nt_status
= ntlmssp_update(state
->ntlmssp_state
, request
,
1074 if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
1075 char *reply_base64
= base64_encode_data_blob(state
->mem_ctx
,
1077 if (state
->cli_state
== CLIENT_INITIAL
) {
1078 x_fprintf(x_stdout
, "YR %s\n", reply_base64
);
1079 state
->initial_message
= reply
;
1080 state
->cli_state
= CLIENT_RESPONSE
;
1082 x_fprintf(x_stdout
, "KK %s\n", reply_base64
);
1083 data_blob_free(&reply
);
1085 TALLOC_FREE(reply_base64
);
1086 DEBUG(10, ("NTLMSSP challenge\n"));
1087 } else if (NT_STATUS_IS_OK(nt_status
)) {
1088 char *reply_base64
= base64_encode_data_blob(talloc_tos(),
1090 x_fprintf(x_stdout
, "AF %s\n", reply_base64
);
1091 TALLOC_FREE(reply_base64
);
1093 if(state
->have_session_key
)
1094 data_blob_free(&state
->session_key
);
1096 state
->session_key
= data_blob(
1097 state
->ntlmssp_state
->session_key
.data
,
1098 state
->ntlmssp_state
->session_key
.length
);
1099 state
->neg_flags
= state
->ntlmssp_state
->neg_flags
;
1100 state
->have_session_key
= true;
1102 DEBUG(10, ("NTLMSSP OK!\n"));
1103 state
->cli_state
= CLIENT_FINISHED
;
1104 if (state
->ntlmssp_state
)
1105 TALLOC_FREE(state
->ntlmssp_state
);
1107 x_fprintf(x_stdout
, "BH %s\n", nt_errstr(nt_status
));
1108 DEBUG(0, ("NTLMSSP BH: %s\n", nt_errstr(nt_status
)));
1109 state
->cli_state
= CLIENT_ERROR
;
1110 if (state
->ntlmssp_state
)
1111 TALLOC_FREE(state
->ntlmssp_state
);
1114 data_blob_free(&request
);
1117 static void manage_squid_basic_request(struct ntlm_auth_state
*state
,
1118 char *buf
, int length
)
1123 pass
=(char *)memchr(buf
,' ',length
);
1125 DEBUG(2, ("Password not found. Denying access\n"));
1126 x_fprintf(x_stdout
, "ERR\n");
1132 if (state
->helper_mode
== SQUID_2_5_BASIC
) {
1133 rfc1738_unescape(user
);
1134 rfc1738_unescape(pass
);
1137 if (check_plaintext_auth(user
, pass
, False
)) {
1138 x_fprintf(x_stdout
, "OK\n");
1140 x_fprintf(x_stdout
, "ERR\n");
1144 static void offer_gss_spnego_mechs(void) {
1147 struct spnego_data spnego
;
1150 TALLOC_CTX
*ctx
= talloc_tos();
1154 ZERO_STRUCT(spnego
);
1156 myname_lower
= talloc_strdup(ctx
, global_myname());
1157 if (!myname_lower
) {
1160 strlower_m(myname_lower
);
1162 principal
= talloc_asprintf(ctx
, "%s$@%s", myname_lower
, lp_realm());
1167 /* Server negTokenInit (mech offerings) */
1168 spnego
.type
= SPNEGO_NEG_TOKEN_INIT
;
1169 spnego
.negTokenInit
.mechTypes
= talloc_array(ctx
, const char *, 2);
1171 spnego
.negTokenInit
.mechTypes
[0] = talloc_strdup(ctx
, OID_KERBEROS5_OLD
);
1172 spnego
.negTokenInit
.mechTypes
[1] = talloc_strdup(ctx
, OID_NTLMSSP
);
1173 spnego
.negTokenInit
.mechTypes
[2] = NULL
;
1175 spnego
.negTokenInit
.mechTypes
[0] = talloc_strdup(ctx
, OID_NTLMSSP
);
1176 spnego
.negTokenInit
.mechTypes
[1] = NULL
;
1180 spnego
.negTokenInit
.mechListMIC
= data_blob_talloc(ctx
, principal
,
1183 len
= spnego_write_data(ctx
, &token
, &spnego
);
1184 spnego_free_data(&spnego
);
1187 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1188 x_fprintf(x_stdout
, "BH Could not write SPNEGO data blob\n");
1192 reply_base64
= base64_encode_data_blob(talloc_tos(), token
);
1193 x_fprintf(x_stdout
, "TT %s *\n", reply_base64
);
1195 TALLOC_FREE(reply_base64
);
1196 data_blob_free(&token
);
1197 DEBUG(10, ("sent SPNEGO negTokenInit\n"));
1201 static void manage_gss_spnego_request(struct ntlm_auth_state
*state
,
1202 char *buf
, int length
)
1204 static struct ntlmssp_state
*ntlmssp_state
= NULL
;
1205 struct spnego_data request
, response
;
1209 TALLOC_CTX
*ctx
= talloc_tos();
1212 char *domain
= NULL
;
1214 const char *reply_code
;
1216 char *reply_argument
= NULL
;
1218 if (strlen(buf
) < 2) {
1219 DEBUG(1, ("SPENGO query [%s] invalid", buf
));
1220 x_fprintf(x_stdout
, "BH SPENGO query invalid\n");
1224 if (strncmp(buf
, "YR", 2) == 0) {
1226 TALLOC_FREE(ntlmssp_state
);
1227 } else if (strncmp(buf
, "KK", 2) == 0) {
1230 DEBUG(1, ("SPENGO query [%s] invalid", buf
));
1231 x_fprintf(x_stdout
, "BH SPENGO query invalid\n");
1235 if ( (strlen(buf
) == 2)) {
1237 /* no client data, get the negTokenInit offering
1240 offer_gss_spnego_mechs();
1244 /* All subsequent requests have a blob. This might be negTokenInit or negTokenTarg */
1246 if (strlen(buf
) <= 3) {
1247 DEBUG(1, ("GSS-SPNEGO query [%s] invalid\n", buf
));
1248 x_fprintf(x_stdout
, "BH GSS-SPNEGO query invalid\n");
1252 token
= base64_decode_data_blob(buf
+ 3);
1253 len
= spnego_read_data(ctx
, token
, &request
);
1254 data_blob_free(&token
);
1257 DEBUG(1, ("GSS-SPNEGO query [%s] invalid", buf
));
1258 x_fprintf(x_stdout
, "BH GSS-SPNEGO query invalid\n");
1262 if (request
.type
== SPNEGO_NEG_TOKEN_INIT
) {
1264 /* Second request from Client. This is where the
1265 client offers its mechanism to use. */
1267 if ( (request
.negTokenInit
.mechTypes
== NULL
) ||
1268 (request
.negTokenInit
.mechTypes
[0] == NULL
) ) {
1269 DEBUG(1, ("Client did not offer any mechanism"));
1270 x_fprintf(x_stdout
, "BH Client did not offer any "
1275 status
= NT_STATUS_UNSUCCESSFUL
;
1276 if (strcmp(request
.negTokenInit
.mechTypes
[0], OID_NTLMSSP
) == 0) {
1278 if ( request
.negTokenInit
.mechToken
.data
== NULL
) {
1279 DEBUG(1, ("Client did not provide NTLMSSP data\n"));
1280 x_fprintf(x_stdout
, "BH Client did not provide "
1285 if ( ntlmssp_state
!= NULL
) {
1286 DEBUG(1, ("Client wants a new NTLMSSP challenge, but "
1287 "already got one\n"));
1288 x_fprintf(x_stdout
, "BH Client wants a new "
1289 "NTLMSSP challenge, but "
1290 "already got one\n");
1291 TALLOC_FREE(ntlmssp_state
);
1295 if (!NT_STATUS_IS_OK(status
= ntlm_auth_start_ntlmssp_server(&ntlmssp_state
))) {
1296 x_fprintf(x_stdout
, "BH %s\n", nt_errstr(status
));
1300 DEBUG(10, ("got NTLMSSP packet:\n"));
1301 dump_data(10, request
.negTokenInit
.mechToken
.data
,
1302 request
.negTokenInit
.mechToken
.length
);
1304 response
.type
= SPNEGO_NEG_TOKEN_TARG
;
1305 response
.negTokenTarg
.supportedMech
= talloc_strdup(ctx
, OID_NTLMSSP
);
1306 response
.negTokenTarg
.mechListMIC
= data_blob_talloc(ctx
, NULL
, 0);
1308 status
= ntlmssp_update(ntlmssp_state
,
1309 request
.negTokenInit
.mechToken
,
1310 &response
.negTokenTarg
.responseToken
);
1314 if (strcmp(request
.negTokenInit
.mechTypes
[0], OID_KERBEROS5_OLD
) == 0) {
1316 TALLOC_CTX
*mem_ctx
= talloc_init("manage_gss_spnego_request");
1319 DATA_BLOB session_key
;
1320 struct PAC_LOGON_INFO
*logon_info
= NULL
;
1322 if ( request
.negTokenInit
.mechToken
.data
== NULL
) {
1323 DEBUG(1, ("Client did not provide Kerberos data\n"));
1324 x_fprintf(x_stdout
, "BH Client did not provide "
1329 response
.type
= SPNEGO_NEG_TOKEN_TARG
;
1330 response
.negTokenTarg
.supportedMech
= talloc_strdup(ctx
, OID_KERBEROS5_OLD
);
1331 response
.negTokenTarg
.mechListMIC
= data_blob_talloc(ctx
, NULL
, 0);
1332 response
.negTokenTarg
.responseToken
= data_blob_talloc(ctx
, NULL
, 0);
1334 status
= ads_verify_ticket(mem_ctx
, lp_realm(), 0,
1335 &request
.negTokenInit
.mechToken
,
1336 &principal
, &logon_info
, &ap_rep
,
1337 &session_key
, True
);
1339 /* Now in "principal" we have the name we are
1340 authenticated as. */
1342 if (NT_STATUS_IS_OK(status
)) {
1344 domain
= strchr_m(principal
, '@');
1346 if (domain
== NULL
) {
1347 DEBUG(1, ("Did not get a valid principal "
1348 "from ads_verify_ticket\n"));
1349 x_fprintf(x_stdout
, "BH Did not get a "
1350 "valid principal from "
1351 "ads_verify_ticket\n");
1356 domain
= SMB_STRDUP(domain
);
1357 user
= SMB_STRDUP(principal
);
1359 data_blob_free(&ap_rep
);
1362 TALLOC_FREE(mem_ctx
);
1368 if ( (request
.negTokenTarg
.supportedMech
== NULL
) ||
1369 ( strcmp(request
.negTokenTarg
.supportedMech
, OID_NTLMSSP
) != 0 ) ) {
1370 /* Kerberos should never send a negTokenTarg, OID_NTLMSSP
1371 is the only one we support that sends this stuff */
1372 DEBUG(1, ("Got a negTokenTarg for something non-NTLMSSP: %s\n",
1373 request
.negTokenTarg
.supportedMech
));
1374 x_fprintf(x_stdout
, "BH Got a negTokenTarg for "
1375 "something non-NTLMSSP\n");
1379 if (request
.negTokenTarg
.responseToken
.data
== NULL
) {
1380 DEBUG(1, ("Got a negTokenTarg without a responseToken!\n"));
1381 x_fprintf(x_stdout
, "BH Got a negTokenTarg without a "
1382 "responseToken!\n");
1386 status
= ntlmssp_update(ntlmssp_state
,
1387 request
.negTokenTarg
.responseToken
,
1388 &response
.negTokenTarg
.responseToken
);
1390 response
.type
= SPNEGO_NEG_TOKEN_TARG
;
1391 response
.negTokenTarg
.supportedMech
= talloc_strdup(ctx
, OID_NTLMSSP
);
1392 response
.negTokenTarg
.mechListMIC
= data_blob_talloc(ctx
, NULL
, 0);
1394 if (NT_STATUS_IS_OK(status
)) {
1395 user
= SMB_STRDUP(ntlmssp_state
->user
);
1396 domain
= SMB_STRDUP(ntlmssp_state
->domain
);
1397 TALLOC_FREE(ntlmssp_state
);
1401 spnego_free_data(&request
);
1403 if (NT_STATUS_IS_OK(status
)) {
1404 response
.negTokenTarg
.negResult
= SPNEGO_ACCEPT_COMPLETED
;
1406 reply_argument
= talloc_asprintf(ctx
, "%s\\%s", domain
, user
);
1407 } else if (NT_STATUS_EQUAL(status
,
1408 NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
1409 response
.negTokenTarg
.negResult
= SPNEGO_ACCEPT_INCOMPLETE
;
1411 reply_argument
= talloc_strdup(ctx
, "*");
1413 response
.negTokenTarg
.negResult
= SPNEGO_REJECT
;
1415 reply_argument
= talloc_strdup(ctx
, nt_errstr(status
));
1418 if (!reply_argument
) {
1419 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1420 x_fprintf(x_stdout
, "BH Could not write SPNEGO data blob\n");
1427 len
= spnego_write_data(ctx
, &token
, &response
);
1428 spnego_free_data(&response
);
1431 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1432 x_fprintf(x_stdout
, "BH Could not write SPNEGO data blob\n");
1436 reply_base64
= base64_encode_data_blob(talloc_tos(), token
);
1438 x_fprintf(x_stdout
, "%s %s %s\n",
1439 reply_code
, reply_base64
, reply_argument
);
1441 TALLOC_FREE(reply_base64
);
1442 data_blob_free(&token
);
1447 static struct ntlmssp_state
*client_ntlmssp_state
= NULL
;
1449 static bool manage_client_ntlmssp_init(struct spnego_data spnego
)
1452 DATA_BLOB null_blob
= data_blob_null
;
1453 DATA_BLOB to_server
;
1454 char *to_server_base64
;
1455 const char *my_mechs
[] = {OID_NTLMSSP
, NULL
};
1456 TALLOC_CTX
*ctx
= talloc_tos();
1458 DEBUG(10, ("Got spnego negTokenInit with NTLMSSP\n"));
1460 if (client_ntlmssp_state
!= NULL
) {
1461 DEBUG(1, ("Request for initial SPNEGO request where "
1462 "we already have a state\n"));
1466 if (!client_ntlmssp_state
) {
1467 if (!NT_STATUS_IS_OK(status
= ntlm_auth_start_ntlmssp_client(&client_ntlmssp_state
))) {
1468 x_fprintf(x_stdout
, "BH %s\n", nt_errstr(status
));
1474 if (opt_password
== NULL
) {
1476 /* Request a password from the calling process. After
1477 sending it, the calling process should retry with
1478 the negTokenInit. */
1480 DEBUG(10, ("Requesting password\n"));
1481 x_fprintf(x_stdout
, "PW\n");
1485 spnego
.type
= SPNEGO_NEG_TOKEN_INIT
;
1486 spnego
.negTokenInit
.mechTypes
= my_mechs
;
1487 spnego
.negTokenInit
.reqFlags
= data_blob_null
;
1488 spnego
.negTokenInit
.reqFlagsPadding
= 0;
1489 spnego
.negTokenInit
.mechListMIC
= null_blob
;
1491 status
= ntlmssp_update(client_ntlmssp_state
, null_blob
,
1492 &spnego
.negTokenInit
.mechToken
);
1494 if ( !(NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
) ||
1495 NT_STATUS_IS_OK(status
)) ) {
1496 DEBUG(1, ("Expected OK or MORE_PROCESSING_REQUIRED, got: %s\n",
1497 nt_errstr(status
)));
1498 TALLOC_FREE(client_ntlmssp_state
);
1502 spnego_write_data(ctx
, &to_server
, &spnego
);
1503 data_blob_free(&spnego
.negTokenInit
.mechToken
);
1505 to_server_base64
= base64_encode_data_blob(talloc_tos(), to_server
);
1506 data_blob_free(&to_server
);
1507 x_fprintf(x_stdout
, "KK %s\n", to_server_base64
);
1508 TALLOC_FREE(to_server_base64
);
1512 static void manage_client_ntlmssp_targ(struct spnego_data spnego
)
1515 DATA_BLOB null_blob
= data_blob_null
;
1517 DATA_BLOB to_server
;
1518 char *to_server_base64
;
1519 TALLOC_CTX
*ctx
= talloc_tos();
1521 DEBUG(10, ("Got spnego negTokenTarg with NTLMSSP\n"));
1523 if (client_ntlmssp_state
== NULL
) {
1524 DEBUG(1, ("Got NTLMSSP tArg without a client state\n"));
1525 x_fprintf(x_stdout
, "BH Got NTLMSSP tArg without a client state\n");
1529 if (spnego
.negTokenTarg
.negResult
== SPNEGO_REJECT
) {
1530 x_fprintf(x_stdout
, "NA\n");
1531 TALLOC_FREE(client_ntlmssp_state
);
1535 if (spnego
.negTokenTarg
.negResult
== SPNEGO_ACCEPT_COMPLETED
) {
1536 x_fprintf(x_stdout
, "AF\n");
1537 TALLOC_FREE(client_ntlmssp_state
);
1541 status
= ntlmssp_update(client_ntlmssp_state
,
1542 spnego
.negTokenTarg
.responseToken
,
1545 if (!NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
1546 DEBUG(1, ("Expected MORE_PROCESSING_REQUIRED from "
1547 "ntlmssp_client_update, got: %s\n",
1548 nt_errstr(status
)));
1549 x_fprintf(x_stdout
, "BH Expected MORE_PROCESSING_REQUIRED from "
1550 "ntlmssp_client_update\n");
1551 data_blob_free(&request
);
1552 TALLOC_FREE(client_ntlmssp_state
);
1556 spnego
.type
= SPNEGO_NEG_TOKEN_TARG
;
1557 spnego
.negTokenTarg
.negResult
= SPNEGO_ACCEPT_INCOMPLETE
;
1558 spnego
.negTokenTarg
.supportedMech
= (char *)OID_NTLMSSP
;
1559 spnego
.negTokenTarg
.responseToken
= request
;
1560 spnego
.negTokenTarg
.mechListMIC
= null_blob
;
1562 spnego_write_data(ctx
, &to_server
, &spnego
);
1563 data_blob_free(&request
);
1565 to_server_base64
= base64_encode_data_blob(talloc_tos(), to_server
);
1566 data_blob_free(&to_server
);
1567 x_fprintf(x_stdout
, "KK %s\n", to_server_base64
);
1568 TALLOC_FREE(to_server_base64
);
1574 static bool manage_client_krb5_init(struct spnego_data spnego
)
1577 DATA_BLOB tkt
, to_server
;
1578 DATA_BLOB session_key_krb5
= data_blob_null
;
1579 struct spnego_data reply
;
1583 const char *my_mechs
[] = {OID_KERBEROS5_OLD
, NULL
};
1585 TALLOC_CTX
*ctx
= talloc_tos();
1587 if ( (spnego
.negTokenInit
.mechListMIC
.data
== NULL
) ||
1588 (spnego
.negTokenInit
.mechListMIC
.length
== 0) ) {
1589 DEBUG(1, ("Did not get a principal for krb5\n"));
1593 principal
= (char *)SMB_MALLOC(
1594 spnego
.negTokenInit
.mechListMIC
.length
+1);
1596 if (principal
== NULL
) {
1597 DEBUG(1, ("Could not malloc principal\n"));
1601 memcpy(principal
, spnego
.negTokenInit
.mechListMIC
.data
,
1602 spnego
.negTokenInit
.mechListMIC
.length
);
1603 principal
[spnego
.negTokenInit
.mechListMIC
.length
] = '\0';
1605 retval
= cli_krb5_get_ticket(ctx
, principal
, 0,
1606 &tkt
, &session_key_krb5
,
1607 0, NULL
, NULL
, NULL
);
1611 /* Let's try to first get the TGT, for that we need a
1614 if (opt_password
== NULL
) {
1615 DEBUG(10, ("Requesting password\n"));
1616 x_fprintf(x_stdout
, "PW\n");
1620 user
= talloc_asprintf(talloc_tos(), "%s@%s", opt_username
, opt_domain
);
1625 if ((retval
= kerberos_kinit_password(user
, opt_password
, 0, NULL
))) {
1626 DEBUG(10, ("Requesting TGT failed: %s\n", error_message(retval
)));
1630 retval
= cli_krb5_get_ticket(ctx
, principal
, 0,
1631 &tkt
, &session_key_krb5
,
1632 0, NULL
, NULL
, NULL
);
1634 DEBUG(10, ("Kinit suceeded, but getting a ticket failed: %s\n", error_message(retval
)));
1639 data_blob_free(&session_key_krb5
);
1643 reply
.type
= SPNEGO_NEG_TOKEN_INIT
;
1644 reply
.negTokenInit
.mechTypes
= my_mechs
;
1645 reply
.negTokenInit
.reqFlags
= data_blob_null
;
1646 reply
.negTokenInit
.reqFlagsPadding
= 0;
1647 reply
.negTokenInit
.mechToken
= tkt
;
1648 reply
.negTokenInit
.mechListMIC
= data_blob_null
;
1650 len
= spnego_write_data(ctx
, &to_server
, &reply
);
1651 data_blob_free(&tkt
);
1654 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1658 reply_base64
= base64_encode_data_blob(talloc_tos(), to_server
);
1659 x_fprintf(x_stdout
, "KK %s *\n", reply_base64
);
1661 TALLOC_FREE(reply_base64
);
1662 data_blob_free(&to_server
);
1663 DEBUG(10, ("sent GSS-SPNEGO KERBEROS5 negTokenInit\n"));
1667 static void manage_client_krb5_targ(struct spnego_data spnego
)
1669 switch (spnego
.negTokenTarg
.negResult
) {
1670 case SPNEGO_ACCEPT_INCOMPLETE
:
1671 DEBUG(1, ("Got a Kerberos negTokenTarg with ACCEPT_INCOMPLETE\n"));
1672 x_fprintf(x_stdout
, "BH Got a Kerberos negTokenTarg with "
1673 "ACCEPT_INCOMPLETE\n");
1675 case SPNEGO_ACCEPT_COMPLETED
:
1676 DEBUG(10, ("Accept completed\n"));
1677 x_fprintf(x_stdout
, "AF\n");
1680 DEBUG(10, ("Rejected\n"));
1681 x_fprintf(x_stdout
, "NA\n");
1684 DEBUG(1, ("Got an invalid negTokenTarg\n"));
1685 x_fprintf(x_stdout
, "AF\n");
1691 static void manage_gss_spnego_client_request(struct ntlm_auth_state
*state
,
1692 char *buf
, int length
)
1695 struct spnego_data spnego
;
1697 TALLOC_CTX
*ctx
= talloc_tos();
1699 if (!opt_username
|| !*opt_username
) {
1700 x_fprintf(x_stderr
, "username must be specified!\n\n");
1704 if (strlen(buf
) <= 3) {
1705 DEBUG(1, ("SPNEGO query [%s] too short\n", buf
));
1706 x_fprintf(x_stdout
, "BH SPNEGO query too short\n");
1710 request
= base64_decode_data_blob(buf
+3);
1712 if (strncmp(buf
, "PW ", 3) == 0) {
1714 /* We asked for a password and obviously got it :-) */
1716 opt_password
= SMB_STRNDUP((const char *)request
.data
, request
.length
);
1718 if (opt_password
== NULL
) {
1719 DEBUG(1, ("Out of memory\n"));
1720 x_fprintf(x_stdout
, "BH Out of memory\n");
1721 data_blob_free(&request
);
1725 x_fprintf(x_stdout
, "OK\n");
1726 data_blob_free(&request
);
1730 if ( (strncmp(buf
, "TT ", 3) != 0) &&
1731 (strncmp(buf
, "AF ", 3) != 0) &&
1732 (strncmp(buf
, "NA ", 3) != 0) ) {
1733 DEBUG(1, ("SPNEGO request [%s] invalid\n", buf
));
1734 x_fprintf(x_stdout
, "BH SPNEGO request invalid\n");
1735 data_blob_free(&request
);
1739 /* So we got a server challenge to generate a SPNEGO
1740 client-to-server request... */
1742 len
= spnego_read_data(ctx
, request
, &spnego
);
1743 data_blob_free(&request
);
1746 DEBUG(1, ("Could not read SPNEGO data for [%s]\n", buf
));
1747 x_fprintf(x_stdout
, "BH Could not read SPNEGO data\n");
1751 if (spnego
.type
== SPNEGO_NEG_TOKEN_INIT
) {
1753 /* The server offers a list of mechanisms */
1755 const char **mechType
= (const char **)spnego
.negTokenInit
.mechTypes
;
1757 while (*mechType
!= NULL
) {
1760 if ( (strcmp(*mechType
, OID_KERBEROS5_OLD
) == 0) ||
1761 (strcmp(*mechType
, OID_KERBEROS5
) == 0) ) {
1762 if (manage_client_krb5_init(spnego
))
1767 if (strcmp(*mechType
, OID_NTLMSSP
) == 0) {
1768 if (manage_client_ntlmssp_init(spnego
))
1775 DEBUG(1, ("Server offered no compatible mechanism\n"));
1776 x_fprintf(x_stdout
, "BH Server offered no compatible mechanism\n");
1780 if (spnego
.type
== SPNEGO_NEG_TOKEN_TARG
) {
1782 if (spnego
.negTokenTarg
.supportedMech
== NULL
) {
1783 /* On accept/reject Windows does not send the
1784 mechanism anymore. Handle that here and
1785 shut down the mechanisms. */
1787 switch (spnego
.negTokenTarg
.negResult
) {
1788 case SPNEGO_ACCEPT_COMPLETED
:
1789 x_fprintf(x_stdout
, "AF\n");
1792 x_fprintf(x_stdout
, "NA\n");
1795 DEBUG(1, ("Got a negTokenTarg with no mech and an "
1796 "unknown negResult: %d\n",
1797 spnego
.negTokenTarg
.negResult
));
1798 x_fprintf(x_stdout
, "BH Got a negTokenTarg with"
1799 " no mech and an unknown "
1803 TALLOC_FREE(client_ntlmssp_state
);
1807 if (strcmp(spnego
.negTokenTarg
.supportedMech
,
1808 OID_NTLMSSP
) == 0) {
1809 manage_client_ntlmssp_targ(spnego
);
1814 if (strcmp(spnego
.negTokenTarg
.supportedMech
,
1815 OID_KERBEROS5_OLD
) == 0) {
1816 manage_client_krb5_targ(spnego
);
1823 DEBUG(1, ("Got an SPNEGO token I could not handle [%s]!\n", buf
));
1824 x_fprintf(x_stdout
, "BH Got an SPNEGO token I could not handle\n");
1828 spnego_free_data(&spnego
);
1832 static void manage_ntlm_server_1_request(struct ntlm_auth_state
*state
,
1833 char *buf
, int length
)
1835 char *request
, *parameter
;
1836 static DATA_BLOB challenge
;
1837 static DATA_BLOB lm_response
;
1838 static DATA_BLOB nt_response
;
1839 static char *full_username
;
1840 static char *username
;
1841 static char *domain
;
1842 static char *plaintext_password
;
1843 static bool ntlm_server_1_user_session_key
;
1844 static bool ntlm_server_1_lm_session_key
;
1846 if (strequal(buf
, ".")) {
1847 if (!full_username
&& !username
) {
1848 x_fprintf(x_stdout
, "Error: No username supplied!\n");
1849 } else if (plaintext_password
) {
1850 /* handle this request as plaintext */
1851 if (!full_username
) {
1852 if (asprintf(&full_username
, "%s%c%s", domain
, winbind_separator(), username
) == -1) {
1853 x_fprintf(x_stdout
, "Error: Out of memory in asprintf!\n.\n");
1857 if (check_plaintext_auth(full_username
, plaintext_password
, False
)) {
1858 x_fprintf(x_stdout
, "Authenticated: Yes\n");
1860 x_fprintf(x_stdout
, "Authenticated: No\n");
1862 } else if (!lm_response
.data
&& !nt_response
.data
) {
1863 x_fprintf(x_stdout
, "Error: No password supplied!\n");
1864 } else if (!challenge
.data
) {
1865 x_fprintf(x_stdout
, "Error: No lanman-challenge supplied!\n");
1867 char *error_string
= NULL
;
1869 uchar user_session_key
[16];
1872 if (full_username
&& !username
) {
1874 fstring fstr_domain
;
1876 if (!parse_ntlm_auth_domain_user(full_username
, fstr_user
, fstr_domain
)) {
1877 /* username might be 'tainted', don't print into our new-line deleimianted stream */
1878 x_fprintf(x_stdout
, "Error: Could not parse into domain and username\n");
1880 SAFE_FREE(username
);
1882 username
= smb_xstrdup(fstr_user
);
1883 domain
= smb_xstrdup(fstr_domain
);
1887 domain
= smb_xstrdup(get_winbind_domain());
1890 if (ntlm_server_1_lm_session_key
)
1891 flags
|= WBFLAG_PAM_LMKEY
;
1893 if (ntlm_server_1_user_session_key
)
1894 flags
|= WBFLAG_PAM_USER_SESSION_KEY
;
1896 if (!NT_STATUS_IS_OK(
1897 contact_winbind_auth_crap(username
,
1909 x_fprintf(x_stdout
, "Authenticated: No\n");
1910 x_fprintf(x_stdout
, "Authentication-Error: %s\n.\n", error_string
);
1912 static char zeros
[16];
1914 char *hex_user_session_key
;
1916 x_fprintf(x_stdout
, "Authenticated: Yes\n");
1918 if (ntlm_server_1_lm_session_key
1919 && (memcmp(zeros
, lm_key
,
1920 sizeof(lm_key
)) != 0)) {
1921 hex_lm_key
= hex_encode_talloc(NULL
,
1922 (const unsigned char *)lm_key
,
1924 x_fprintf(x_stdout
, "LANMAN-Session-Key: %s\n", hex_lm_key
);
1925 TALLOC_FREE(hex_lm_key
);
1928 if (ntlm_server_1_user_session_key
1929 && (memcmp(zeros
, user_session_key
,
1930 sizeof(user_session_key
)) != 0)) {
1931 hex_user_session_key
= hex_encode_talloc(NULL
,
1932 (const unsigned char *)user_session_key
,
1933 sizeof(user_session_key
));
1934 x_fprintf(x_stdout
, "User-Session-Key: %s\n", hex_user_session_key
);
1935 TALLOC_FREE(hex_user_session_key
);
1938 SAFE_FREE(error_string
);
1940 /* clear out the state */
1941 challenge
= data_blob_null
;
1942 nt_response
= data_blob_null
;
1943 lm_response
= data_blob_null
;
1944 SAFE_FREE(full_username
);
1945 SAFE_FREE(username
);
1947 SAFE_FREE(plaintext_password
);
1948 ntlm_server_1_user_session_key
= False
;
1949 ntlm_server_1_lm_session_key
= False
;
1950 x_fprintf(x_stdout
, ".\n");
1957 /* Indicates a base64 encoded structure */
1958 parameter
= strstr_m(request
, ":: ");
1960 parameter
= strstr_m(request
, ": ");
1963 DEBUG(0, ("Parameter not found!\n"));
1964 x_fprintf(x_stdout
, "Error: Parameter not found!\n.\n");
1981 base64_decode_inplace(parameter
);
1984 if (strequal(request
, "LANMAN-Challenge")) {
1985 challenge
= strhex_to_data_blob(NULL
, parameter
);
1986 if (challenge
.length
!= 8) {
1987 x_fprintf(x_stdout
, "Error: hex decode of %s failed! (got %d bytes, expected 8)\n.\n",
1989 (int)challenge
.length
);
1990 challenge
= data_blob_null
;
1992 } else if (strequal(request
, "NT-Response")) {
1993 nt_response
= strhex_to_data_blob(NULL
, parameter
);
1994 if (nt_response
.length
< 24) {
1995 x_fprintf(x_stdout
, "Error: hex decode of %s failed! (only got %d bytes, needed at least 24)\n.\n",
1997 (int)nt_response
.length
);
1998 nt_response
= data_blob_null
;
2000 } else if (strequal(request
, "LANMAN-Response")) {
2001 lm_response
= strhex_to_data_blob(NULL
, parameter
);
2002 if (lm_response
.length
!= 24) {
2003 x_fprintf(x_stdout
, "Error: hex decode of %s failed! (got %d bytes, expected 24)\n.\n",
2005 (int)lm_response
.length
);
2006 lm_response
= data_blob_null
;
2008 } else if (strequal(request
, "Password")) {
2009 plaintext_password
= smb_xstrdup(parameter
);
2010 } else if (strequal(request
, "NT-Domain")) {
2011 domain
= smb_xstrdup(parameter
);
2012 } else if (strequal(request
, "Username")) {
2013 username
= smb_xstrdup(parameter
);
2014 } else if (strequal(request
, "Full-Username")) {
2015 full_username
= smb_xstrdup(parameter
);
2016 } else if (strequal(request
, "Request-User-Session-Key")) {
2017 ntlm_server_1_user_session_key
= strequal(parameter
, "Yes");
2018 } else if (strequal(request
, "Request-LanMan-Session-Key")) {
2019 ntlm_server_1_lm_session_key
= strequal(parameter
, "Yes");
2021 x_fprintf(x_stdout
, "Error: Unknown request %s\n.\n", request
);
2025 static void manage_ntlm_change_password_1_request(struct ntlm_auth_state
*state
,
2026 char *buf
, int length
)
2028 char *request
, *parameter
;
2029 static DATA_BLOB new_nt_pswd
;
2030 static DATA_BLOB old_nt_hash_enc
;
2031 static DATA_BLOB new_lm_pswd
;
2032 static DATA_BLOB old_lm_hash_enc
;
2033 static char *full_username
= NULL
;
2034 static char *username
= NULL
;
2035 static char *domain
= NULL
;
2036 static char *newpswd
= NULL
;
2037 static char *oldpswd
= NULL
;
2039 if (strequal(buf
, ".")) {
2040 if(newpswd
&& oldpswd
) {
2041 uchar old_nt_hash
[16];
2042 uchar old_lm_hash
[16];
2043 uchar new_nt_hash
[16];
2044 uchar new_lm_hash
[16];
2046 new_nt_pswd
= data_blob(NULL
, 516);
2047 old_nt_hash_enc
= data_blob(NULL
, 16);
2049 /* Calculate the MD4 hash (NT compatible) of the
2051 E_md4hash(oldpswd
, old_nt_hash
);
2052 E_md4hash(newpswd
, new_nt_hash
);
2054 /* E_deshash returns false for 'long'
2055 passwords (> 14 DOS chars).
2057 Therefore, don't send a buffer
2058 encrypted with the truncated hash
2059 (it could allow an even easier
2060 attack on the password)
2062 Likewise, obey the admin's restriction
2065 if (lp_client_lanman_auth() &&
2066 E_deshash(newpswd
, new_lm_hash
) &&
2067 E_deshash(oldpswd
, old_lm_hash
)) {
2068 new_lm_pswd
= data_blob(NULL
, 516);
2069 old_lm_hash_enc
= data_blob(NULL
, 16);
2070 encode_pw_buffer(new_lm_pswd
.data
, newpswd
,
2073 arcfour_crypt(new_lm_pswd
.data
, old_nt_hash
, 516);
2074 E_old_pw_hash(new_nt_hash
, old_lm_hash
,
2075 old_lm_hash_enc
.data
);
2077 new_lm_pswd
.data
= NULL
;
2078 new_lm_pswd
.length
= 0;
2079 old_lm_hash_enc
.data
= NULL
;
2080 old_lm_hash_enc
.length
= 0;
2083 encode_pw_buffer(new_nt_pswd
.data
, newpswd
,
2086 arcfour_crypt(new_nt_pswd
.data
, old_nt_hash
, 516);
2087 E_old_pw_hash(new_nt_hash
, old_nt_hash
,
2088 old_nt_hash_enc
.data
);
2091 if (!full_username
&& !username
) {
2092 x_fprintf(x_stdout
, "Error: No username supplied!\n");
2093 } else if ((!new_nt_pswd
.data
|| !old_nt_hash_enc
.data
) &&
2094 (!new_lm_pswd
.data
|| old_lm_hash_enc
.data
) ) {
2095 x_fprintf(x_stdout
, "Error: No NT or LM password "
2096 "blobs supplied!\n");
2098 char *error_string
= NULL
;
2100 if (full_username
&& !username
) {
2102 fstring fstr_domain
;
2104 if (!parse_ntlm_auth_domain_user(full_username
,
2107 /* username might be 'tainted', don't
2108 * print into our new-line
2109 * deleimianted stream */
2110 x_fprintf(x_stdout
, "Error: Could not "
2111 "parse into domain and "
2113 SAFE_FREE(username
);
2114 username
= smb_xstrdup(full_username
);
2116 SAFE_FREE(username
);
2118 username
= smb_xstrdup(fstr_user
);
2119 domain
= smb_xstrdup(fstr_domain
);
2124 if(!NT_STATUS_IS_OK(contact_winbind_change_pswd_auth_crap(
2131 x_fprintf(x_stdout
, "Password-Change: No\n");
2132 x_fprintf(x_stdout
, "Password-Change-Error: "
2133 "%s\n.\n", error_string
);
2135 x_fprintf(x_stdout
, "Password-Change: Yes\n");
2138 SAFE_FREE(error_string
);
2140 /* clear out the state */
2141 new_nt_pswd
= data_blob_null
;
2142 old_nt_hash_enc
= data_blob_null
;
2143 new_lm_pswd
= data_blob_null
;
2144 old_nt_hash_enc
= data_blob_null
;
2145 SAFE_FREE(full_username
);
2146 SAFE_FREE(username
);
2150 x_fprintf(x_stdout
, ".\n");
2157 /* Indicates a base64 encoded structure */
2158 parameter
= strstr_m(request
, ":: ");
2160 parameter
= strstr_m(request
, ": ");
2163 DEBUG(0, ("Parameter not found!\n"));
2164 x_fprintf(x_stdout
, "Error: Parameter not found!\n.\n");
2180 base64_decode_inplace(parameter
);
2183 if (strequal(request
, "new-nt-password-blob")) {
2184 new_nt_pswd
= strhex_to_data_blob(NULL
, parameter
);
2185 if (new_nt_pswd
.length
!= 516) {
2186 x_fprintf(x_stdout
, "Error: hex decode of %s failed! "
2187 "(got %d bytes, expected 516)\n.\n",
2189 (int)new_nt_pswd
.length
);
2190 new_nt_pswd
= data_blob_null
;
2192 } else if (strequal(request
, "old-nt-hash-blob")) {
2193 old_nt_hash_enc
= strhex_to_data_blob(NULL
, parameter
);
2194 if (old_nt_hash_enc
.length
!= 16) {
2195 x_fprintf(x_stdout
, "Error: hex decode of %s failed! "
2196 "(got %d bytes, expected 16)\n.\n",
2198 (int)old_nt_hash_enc
.length
);
2199 old_nt_hash_enc
= data_blob_null
;
2201 } else if (strequal(request
, "new-lm-password-blob")) {
2202 new_lm_pswd
= strhex_to_data_blob(NULL
, parameter
);
2203 if (new_lm_pswd
.length
!= 516) {
2204 x_fprintf(x_stdout
, "Error: hex decode of %s failed! "
2205 "(got %d bytes, expected 516)\n.\n",
2207 (int)new_lm_pswd
.length
);
2208 new_lm_pswd
= data_blob_null
;
2211 else if (strequal(request
, "old-lm-hash-blob")) {
2212 old_lm_hash_enc
= strhex_to_data_blob(NULL
, parameter
);
2213 if (old_lm_hash_enc
.length
!= 16)
2215 x_fprintf(x_stdout
, "Error: hex decode of %s failed! "
2216 "(got %d bytes, expected 16)\n.\n",
2218 (int)old_lm_hash_enc
.length
);
2219 old_lm_hash_enc
= data_blob_null
;
2221 } else if (strequal(request
, "nt-domain")) {
2222 domain
= smb_xstrdup(parameter
);
2223 } else if(strequal(request
, "username")) {
2224 username
= smb_xstrdup(parameter
);
2225 } else if(strequal(request
, "full-username")) {
2226 username
= smb_xstrdup(parameter
);
2227 } else if(strequal(request
, "new-password")) {
2228 newpswd
= smb_xstrdup(parameter
);
2229 } else if (strequal(request
, "old-password")) {
2230 oldpswd
= smb_xstrdup(parameter
);
2232 x_fprintf(x_stdout
, "Error: Unknown request %s\n.\n", request
);
2236 static void manage_squid_request(struct ntlm_auth_state
*state
,
2237 stdio_helper_function fn
)
2240 char tmp
[INITIAL_BUFFER_SIZE
+1];
2241 int length
, buf_size
= 0;
2244 buf
= talloc_strdup(state
->mem_ctx
, "");
2246 DEBUG(0, ("Failed to allocate input buffer.\n"));
2247 x_fprintf(x_stderr
, "ERR\n");
2253 /* this is not a typo - x_fgets doesn't work too well under
2255 if (fgets(tmp
, sizeof(tmp
)-1, stdin
) == NULL
) {
2256 if (ferror(stdin
)) {
2257 DEBUG(1, ("fgets() failed! dying..... errno=%d "
2258 "(%s)\n", ferror(stdin
),
2259 strerror(ferror(stdin
))));
2266 buf
= talloc_strdup_append_buffer(buf
, tmp
);
2267 buf_size
+= INITIAL_BUFFER_SIZE
;
2269 if (buf_size
> MAX_BUFFER_SIZE
) {
2270 DEBUG(2, ("Oversized message\n"));
2271 x_fprintf(x_stderr
, "ERR\n");
2276 c
= strchr(buf
, '\n');
2277 } while (c
== NULL
);
2282 DEBUG(10, ("Got '%s' from squid (length: %d).\n",buf
,length
));
2284 if (buf
[0] == '\0') {
2285 DEBUG(2, ("Invalid Request\n"));
2286 x_fprintf(x_stderr
, "ERR\n");
2291 fn(state
, buf
, length
);
2296 static void squid_stream(enum stdio_helper_mode stdio_mode
, stdio_helper_function fn
) {
2297 TALLOC_CTX
*mem_ctx
;
2298 struct ntlm_auth_state
*state
;
2300 /* initialize FDescs */
2301 x_setbuf(x_stdout
, NULL
);
2302 x_setbuf(x_stderr
, NULL
);
2304 mem_ctx
= talloc_init("ntlm_auth");
2306 DEBUG(0, ("squid_stream: Failed to create talloc context\n"));
2307 x_fprintf(x_stderr
, "ERR\n");
2311 state
= talloc_zero(mem_ctx
, struct ntlm_auth_state
);
2313 DEBUG(0, ("squid_stream: Failed to talloc ntlm_auth_state\n"));
2314 x_fprintf(x_stderr
, "ERR\n");
2318 state
->mem_ctx
= mem_ctx
;
2319 state
->helper_mode
= stdio_mode
;
2322 manage_squid_request(state
, fn
);
2327 /* Authenticate a user with a challenge/response */
2329 static bool check_auth_crap(void)
2334 char user_session_key
[16];
2336 char *hex_user_session_key
;
2338 static uint8 zeros
[16];
2340 x_setbuf(x_stdout
, NULL
);
2343 flags
|= WBFLAG_PAM_LMKEY
;
2345 if (request_user_session_key
)
2346 flags
|= WBFLAG_PAM_USER_SESSION_KEY
;
2348 flags
|= WBFLAG_PAM_NT_STATUS_SQUASH
;
2350 nt_status
= contact_winbind_auth_crap(opt_username
, opt_domain
,
2356 (unsigned char *)lm_key
,
2357 (unsigned char *)user_session_key
,
2358 &error_string
, NULL
);
2360 if (!NT_STATUS_IS_OK(nt_status
)) {
2361 x_fprintf(x_stdout
, "%s (0x%x)\n",
2363 NT_STATUS_V(nt_status
));
2364 SAFE_FREE(error_string
);
2369 && (memcmp(zeros
, lm_key
,
2370 sizeof(lm_key
)) != 0)) {
2371 hex_lm_key
= hex_encode_talloc(talloc_tos(), (const unsigned char *)lm_key
,
2373 x_fprintf(x_stdout
, "LM_KEY: %s\n", hex_lm_key
);
2374 TALLOC_FREE(hex_lm_key
);
2376 if (request_user_session_key
2377 && (memcmp(zeros
, user_session_key
,
2378 sizeof(user_session_key
)) != 0)) {
2379 hex_user_session_key
= hex_encode_talloc(talloc_tos(), (const unsigned char *)user_session_key
,
2380 sizeof(user_session_key
));
2381 x_fprintf(x_stdout
, "NT_KEY: %s\n", hex_user_session_key
);
2382 TALLOC_FREE(hex_user_session_key
);
2391 OPT_USERNAME
= 1000,
2400 OPT_USER_SESSION_KEY
,
2402 OPT_REQUIRE_MEMBERSHIP
,
2403 OPT_USE_CACHED_CREDS
,
2404 OPT_PAM_WINBIND_CONF
2407 int main(int argc
, const char **argv
)
2409 TALLOC_CTX
*frame
= talloc_stackframe();
2411 static const char *helper_protocol
;
2412 static int diagnostics
;
2414 static const char *hex_challenge
;
2415 static const char *hex_lm_response
;
2416 static const char *hex_nt_response
;
2420 /* NOTE: DO NOT change this interface without considering the implications!
2421 This is an external interface, which other programs will use to interact
2425 /* We do not use single-letter command abbreviations, because they harm future
2426 interface stability. */
2428 struct poptOption long_options
[] = {
2430 { "helper-protocol", 0, POPT_ARG_STRING
, &helper_protocol
, OPT_DOMAIN
, "operate as a stdio-based helper", "helper protocol to use"},
2431 { "username", 0, POPT_ARG_STRING
, &opt_username
, OPT_USERNAME
, "username"},
2432 { "domain", 0, POPT_ARG_STRING
, &opt_domain
, OPT_DOMAIN
, "domain name"},
2433 { "workstation", 0, POPT_ARG_STRING
, &opt_workstation
, OPT_WORKSTATION
, "workstation"},
2434 { "challenge", 0, POPT_ARG_STRING
, &hex_challenge
, OPT_CHALLENGE
, "challenge (HEX encoded)"},
2435 { "lm-response", 0, POPT_ARG_STRING
, &hex_lm_response
, OPT_LM
, "LM Response to the challenge (HEX encoded)"},
2436 { "nt-response", 0, POPT_ARG_STRING
, &hex_nt_response
, OPT_NT
, "NT or NTLMv2 Response to the challenge (HEX encoded)"},
2437 { "password", 0, POPT_ARG_STRING
, &opt_password
, OPT_PASSWORD
, "User's plaintext password"},
2438 { "request-lm-key", 0, POPT_ARG_NONE
, &request_lm_key
, OPT_LM_KEY
, "Retrieve LM session key"},
2439 { "request-nt-key", 0, POPT_ARG_NONE
, &request_user_session_key
, OPT_USER_SESSION_KEY
, "Retrieve User (NT) session key"},
2440 { "use-cached-creds", 0, POPT_ARG_NONE
, &use_cached_creds
, OPT_USE_CACHED_CREDS
, "Use cached credentials if no password is given"},
2441 { "diagnostics", 0, POPT_ARG_NONE
, &diagnostics
, OPT_DIAGNOSTICS
, "Perform diagnostics on the authentictaion chain"},
2442 { "require-membership-of", 0, POPT_ARG_STRING
, &require_membership_of
, OPT_REQUIRE_MEMBERSHIP
, "Require that a user be a member of this group (either name or SID) for authentication to succeed" },
2443 { "pam-winbind-conf", 0, POPT_ARG_STRING
, &opt_pam_winbind_conf
, OPT_PAM_WINBIND_CONF
, "Require that request must set WBFLAG_PAM_CONTACT_TRUSTDOM when krb5 auth is required" },
2444 POPT_COMMON_CONFIGFILE
2449 /* Samba client initialisation */
2456 pc
= poptGetContext("ntlm_auth", argc
, argv
, long_options
, 0);
2458 /* Parse command line options */
2461 poptPrintHelp(pc
, stderr
, 0);
2465 while((opt
= poptGetNextOpt(pc
)) != -1) {
2466 /* Get generic config options like --configfile */
2469 poptFreeContext(pc
);
2471 if (!lp_load(get_dyn_CONFIGFILE(), True
, False
, False
, True
)) {
2472 d_fprintf(stderr
, "ntlm_auth: error opening config file %s. Error was %s\n",
2473 get_dyn_CONFIGFILE(), strerror(errno
));
2477 pc
= poptGetContext(NULL
, argc
, (const char **)argv
, long_options
,
2478 POPT_CONTEXT_KEEP_FIRST
);
2480 while((opt
= poptGetNextOpt(pc
)) != -1) {
2483 opt_challenge
= strhex_to_data_blob(NULL
, hex_challenge
);
2484 if (opt_challenge
.length
!= 8) {
2485 x_fprintf(x_stderr
, "hex decode of %s failed! (only got %d bytes)\n",
2487 (int)opt_challenge
.length
);
2492 opt_lm_response
= strhex_to_data_blob(NULL
, hex_lm_response
);
2493 if (opt_lm_response
.length
!= 24) {
2494 x_fprintf(x_stderr
, "hex decode of %s failed! (only got %d bytes)\n",
2496 (int)opt_lm_response
.length
);
2502 opt_nt_response
= strhex_to_data_blob(NULL
, hex_nt_response
);
2503 if (opt_nt_response
.length
< 24) {
2504 x_fprintf(x_stderr
, "hex decode of %s failed! (only got %d bytes)\n",
2506 (int)opt_nt_response
.length
);
2511 case OPT_REQUIRE_MEMBERSHIP
:
2512 if (StrnCaseCmp("S-", require_membership_of
, 2) == 0) {
2513 require_membership_of_sid
= require_membership_of
;
2520 char *domain
= SMB_STRDUP(opt_username
);
2521 char *p
= strchr_m(domain
, *lp_winbind_separator());
2525 if (opt_domain
&& !strequal(opt_domain
, domain
)) {
2526 x_fprintf(x_stderr
, "Domain specified in username (%s) "
2527 "doesn't match specified domain (%s)!\n\n",
2528 domain
, opt_domain
);
2529 poptPrintHelp(pc
, stderr
, 0);
2532 opt_domain
= domain
;
2538 /* Note: if opt_domain is "" then send no domain */
2539 if (opt_domain
== NULL
) {
2540 opt_domain
= get_winbind_domain();
2543 if (opt_workstation
== NULL
) {
2544 opt_workstation
= "";
2547 if (helper_protocol
) {
2549 for (i
=0; i
<NUM_HELPER_MODES
; i
++) {
2550 if (strcmp(helper_protocol
, stdio_helper_protocols
[i
].name
) == 0) {
2551 squid_stream(stdio_helper_protocols
[i
].mode
, stdio_helper_protocols
[i
].fn
);
2555 x_fprintf(x_stderr
, "unknown helper protocol [%s]\n\nValid helper protools:\n\n", helper_protocol
);
2557 for (i
=0; i
<NUM_HELPER_MODES
; i
++) {
2558 x_fprintf(x_stderr
, "%s\n", stdio_helper_protocols
[i
].name
);
2564 if (!opt_username
|| !*opt_username
) {
2565 x_fprintf(x_stderr
, "username must be specified!\n\n");
2566 poptPrintHelp(pc
, stderr
, 0);
2570 if (opt_challenge
.length
) {
2571 if (!check_auth_crap()) {
2577 if (!opt_password
) {
2578 opt_password
= getpass("password: ");
2582 if (!diagnose_ntlm_auth()) {
2588 fstr_sprintf(user
, "%s%c%s", opt_domain
, winbind_separator(), opt_username
);
2589 if (!check_plaintext_auth(user
, opt_password
, True
)) {
2596 poptFreeContext(pc
);