s3: Split off output generation from manage_squid_ntlmssp_request
[ira/wip.git] / source3 / utils / ntlm_auth.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    Winbind status program.
5
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
11
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.
16
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.
21
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/>.
24 */
25
26 #include "includes.h"
27 #include "popt_common.h"
28 #include "utils/ntlm_auth.h"
29 #include "../libcli/auth/libcli_auth.h"
30 #include "../libcli/auth/spnego.h"
31 #include "../libcli/auth/ntlmssp.h"
32 #include "smb_krb5.h"
33 #include <iniparser.h>
34 #include "../lib/crypto/arcfour.h"
35 #include "libads/kerberos_proto.h"
36 #include "nsswitch/winbind_client.h"
37
38 #ifndef PAM_WINBIND_CONFIG_FILE
39 #define PAM_WINBIND_CONFIG_FILE "/etc/security/pam_winbind.conf"
40 #endif
41
42 #define WINBIND_KRB5_AUTH       0x00000080
43
44 #undef DBGC_CLASS
45 #define DBGC_CLASS DBGC_WINBIND
46
47 #define INITIAL_BUFFER_SIZE 300
48 #define MAX_BUFFER_SIZE 630000
49
50 enum stdio_helper_mode {
51         SQUID_2_4_BASIC,
52         SQUID_2_5_BASIC,
53         SQUID_2_5_NTLMSSP,
54         NTLMSSP_CLIENT_1,
55         GSS_SPNEGO,
56         GSS_SPNEGO_CLIENT,
57         NTLM_SERVER_1,
58         NTLM_CHANGE_PASSWORD_1,
59         NUM_HELPER_MODES
60 };
61
62 enum ntlm_auth_cli_state {
63         CLIENT_INITIAL = 0,
64         CLIENT_RESPONSE,
65         CLIENT_FINISHED,
66         CLIENT_ERROR
67 };
68
69 enum ntlm_auth_svr_state {
70         SERVER_INITIAL = 0,
71         SERVER_CHALLENGE,
72         SERVER_FINISHED,
73         SERVER_ERROR
74 };
75
76 struct ntlm_auth_state {
77         TALLOC_CTX *mem_ctx;
78         enum stdio_helper_mode helper_mode;
79         enum ntlm_auth_cli_state cli_state;
80         enum ntlm_auth_svr_state svr_state;
81         struct ntlmssp_state *ntlmssp_state;
82         uint32_t neg_flags;
83         char *want_feature_list;
84         bool have_session_key;
85         DATA_BLOB session_key;
86         DATA_BLOB initial_message;
87 };
88
89 typedef void (*stdio_helper_function)(struct ntlm_auth_state *state, char *buf,
90                                         int length);
91
92 static void manage_squid_basic_request (struct ntlm_auth_state *state,
93                                         char *buf, int length);
94
95 static void manage_squid_ntlmssp_request (struct ntlm_auth_state *state,
96                                         char *buf, int length);
97
98 static void manage_client_ntlmssp_request (struct ntlm_auth_state *state,
99                                         char *buf, int length);
100
101 static void manage_gss_spnego_request (struct ntlm_auth_state *state,
102                                         char *buf, int length);
103
104 static void manage_gss_spnego_client_request (struct ntlm_auth_state *state,
105                                         char *buf, int length);
106
107 static void manage_ntlm_server_1_request (struct ntlm_auth_state *state,
108                                         char *buf, int length);
109
110 static void manage_ntlm_change_password_1_request(struct ntlm_auth_state *state,
111                                         char *buf, int length);
112
113 static const struct {
114         enum stdio_helper_mode mode;
115         const char *name;
116         stdio_helper_function fn;
117 } stdio_helper_protocols[] = {
118         { SQUID_2_4_BASIC, "squid-2.4-basic", manage_squid_basic_request},
119         { SQUID_2_5_BASIC, "squid-2.5-basic", manage_squid_basic_request},
120         { SQUID_2_5_NTLMSSP, "squid-2.5-ntlmssp", manage_squid_ntlmssp_request},
121         { NTLMSSP_CLIENT_1, "ntlmssp-client-1", manage_client_ntlmssp_request},
122         { GSS_SPNEGO, "gss-spnego", manage_gss_spnego_request},
123         { GSS_SPNEGO_CLIENT, "gss-spnego-client", manage_gss_spnego_client_request},
124         { NTLM_SERVER_1, "ntlm-server-1", manage_ntlm_server_1_request},
125         { NTLM_CHANGE_PASSWORD_1, "ntlm-change-password-1", manage_ntlm_change_password_1_request},
126         { NUM_HELPER_MODES, NULL, NULL}
127 };
128
129 const char *opt_username;
130 const char *opt_domain;
131 const char *opt_workstation;
132 const char *opt_password;
133 static DATA_BLOB opt_challenge;
134 static DATA_BLOB opt_lm_response;
135 static DATA_BLOB opt_nt_response;
136 static int request_lm_key;
137 static int request_user_session_key;
138 static int use_cached_creds;
139
140 static const char *require_membership_of;
141 static const char *require_membership_of_sid;
142 static const char *opt_pam_winbind_conf;
143
144 static char winbind_separator(void)
145 {
146         struct winbindd_response response;
147         static bool got_sep;
148         static char sep;
149
150         if (got_sep)
151                 return sep;
152
153         ZERO_STRUCT(response);
154
155         /* Send off request */
156
157         if (winbindd_request_response(WINBINDD_INFO, NULL, &response) !=
158             NSS_STATUS_SUCCESS) {
159                 d_printf("could not obtain winbind separator!\n");
160                 return *lp_winbind_separator();
161         }
162
163         sep = response.data.info.winbind_separator;
164         got_sep = True;
165
166         if (!sep) {
167                 d_printf("winbind separator was NULL!\n");
168                 return *lp_winbind_separator();
169         }
170
171         return sep;
172 }
173
174 const char *get_winbind_domain(void)
175 {
176         struct winbindd_response response;
177
178         static fstring winbind_domain;
179         if (*winbind_domain) {
180                 return winbind_domain;
181         }
182
183         ZERO_STRUCT(response);
184
185         /* Send off request */
186
187         if (winbindd_request_response(WINBINDD_DOMAIN_NAME, NULL, &response) !=
188             NSS_STATUS_SUCCESS) {
189                 DEBUG(0, ("could not obtain winbind domain name!\n"));
190                 return lp_workgroup();
191         }
192
193         fstrcpy(winbind_domain, response.data.domain_name);
194
195         return winbind_domain;
196
197 }
198
199 const char *get_winbind_netbios_name(void)
200 {
201         struct winbindd_response response;
202
203         static fstring winbind_netbios_name;
204
205         if (*winbind_netbios_name) {
206                 return winbind_netbios_name;
207         }
208
209         ZERO_STRUCT(response);
210
211         /* Send off request */
212
213         if (winbindd_request_response(WINBINDD_NETBIOS_NAME, NULL, &response) !=
214             NSS_STATUS_SUCCESS) {
215                 DEBUG(0, ("could not obtain winbind netbios name!\n"));
216                 return global_myname();
217         }
218
219         fstrcpy(winbind_netbios_name, response.data.netbios_name);
220
221         return winbind_netbios_name;
222
223 }
224
225 DATA_BLOB get_challenge(void) 
226 {
227         static DATA_BLOB chal;
228         if (opt_challenge.length)
229                 return opt_challenge;
230
231         chal = data_blob(NULL, 8);
232
233         generate_random_buffer(chal.data, chal.length);
234         return chal;
235 }
236
237 /* Copy of parse_domain_user from winbindd_util.c.  Parse a string of the
238    form DOMAIN/user into a domain and a user */
239
240 static bool parse_ntlm_auth_domain_user(const char *domuser, fstring domain, 
241                                      fstring user)
242 {
243
244         char *p = strchr(domuser,winbind_separator());
245
246         if (!p) {
247                 return False;
248         }
249
250         fstrcpy(user, p+1);
251         fstrcpy(domain, domuser);
252         domain[PTR_DIFF(p, domuser)] = 0;
253         strupper_m(domain);
254
255         return True;
256 }
257
258 static bool get_require_membership_sid(void) {
259         struct winbindd_request request;
260         struct winbindd_response response;
261
262         if (!require_membership_of) {
263                 return True;
264         }
265
266         if (require_membership_of_sid) {
267                 return True;
268         }
269
270         /* Otherwise, ask winbindd for the name->sid request */
271
272         ZERO_STRUCT(request);
273         ZERO_STRUCT(response);
274
275         if (!parse_ntlm_auth_domain_user(require_membership_of, 
276                                          request.data.name.dom_name, 
277                                          request.data.name.name)) {
278                 DEBUG(0, ("Could not parse %s into seperate domain/name parts!\n", 
279                           require_membership_of));
280                 return False;
281         }
282
283         if (winbindd_request_response(WINBINDD_LOOKUPNAME, &request, &response) !=
284             NSS_STATUS_SUCCESS) {
285                 DEBUG(0, ("Winbindd lookupname failed to resolve %s into a SID!\n", 
286                           require_membership_of));
287                 return False;
288         }
289
290         require_membership_of_sid = SMB_STRDUP(response.data.sid.sid);
291
292         if (require_membership_of_sid)
293                 return True;
294
295         return False;
296 }
297
298 /* 
299  * Get some configuration from pam_winbind.conf to see if we 
300  * need to contact trusted domain
301  */
302
303 int get_pam_winbind_config()
304 {
305         int ctrl = 0;
306         dictionary *d = NULL;
307
308         if (!opt_pam_winbind_conf || !*opt_pam_winbind_conf) {
309                 opt_pam_winbind_conf = PAM_WINBIND_CONFIG_FILE;
310         }
311
312         d = iniparser_load(CONST_DISCARD(char *, opt_pam_winbind_conf));
313
314         if (!d) {
315                 return 0;
316         }
317
318         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:krb5_auth"), false)) {
319                 ctrl |= WINBIND_KRB5_AUTH;
320         }
321
322         iniparser_freedict(d);
323
324         return ctrl;
325 }
326
327 /* Authenticate a user with a plaintext password */
328
329 static bool check_plaintext_auth(const char *user, const char *pass,
330                                  bool stdout_diagnostics)
331 {
332         struct winbindd_request request;
333         struct winbindd_response response;
334         NSS_STATUS result;
335
336         if (!get_require_membership_sid()) {
337                 return False;
338         }
339
340         /* Send off request */
341
342         ZERO_STRUCT(request);
343         ZERO_STRUCT(response);
344
345         fstrcpy(request.data.auth.user, user);
346         fstrcpy(request.data.auth.pass, pass);
347         if (require_membership_of_sid) {
348                 strlcpy(request.data.auth.require_membership_of_sid,
349                         require_membership_of_sid,
350                         sizeof(request.data.auth.require_membership_of_sid));
351         }
352
353         result = winbindd_request_response(WINBINDD_PAM_AUTH, &request, &response);
354
355         /* Display response */
356
357         if (stdout_diagnostics) {
358                 if ((result != NSS_STATUS_SUCCESS) && (response.data.auth.nt_status == 0)) {
359                         d_printf("Reading winbind reply failed! (0x01)\n");
360                 }
361
362                 d_printf("%s: %s (0x%x)\n",
363                          response.data.auth.nt_status_string,
364                          response.data.auth.error_string,
365                          response.data.auth.nt_status);
366         } else {
367                 if ((result != NSS_STATUS_SUCCESS) && (response.data.auth.nt_status == 0)) {
368                         DEBUG(1, ("Reading winbind reply failed! (0x01)\n"));
369                 }
370
371                 DEBUG(3, ("%s: %s (0x%x)\n",
372                           response.data.auth.nt_status_string,
373                           response.data.auth.error_string,
374                           response.data.auth.nt_status));
375         }
376
377         return (result == NSS_STATUS_SUCCESS);
378 }
379
380 /* authenticate a user with an encrypted username/password */
381
382 NTSTATUS contact_winbind_auth_crap(const char *username,
383                                    const char *domain,
384                                    const char *workstation,
385                                    const DATA_BLOB *challenge,
386                                    const DATA_BLOB *lm_response,
387                                    const DATA_BLOB *nt_response,
388                                    uint32 flags,
389                                    uint8 lm_key[8],
390                                    uint8 user_session_key[16],
391                                    char **error_string,
392                                    char **unix_name)
393 {
394         NTSTATUS nt_status;
395         NSS_STATUS result;
396         struct winbindd_request request;
397         struct winbindd_response response;
398
399         if (!get_require_membership_sid()) {
400                 return NT_STATUS_INVALID_PARAMETER;
401         }
402
403         ZERO_STRUCT(request);
404         ZERO_STRUCT(response);
405
406         request.flags = flags;
407
408         request.data.auth_crap.logon_parameters = MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT | MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT;
409
410         if (require_membership_of_sid)
411                 fstrcpy(request.data.auth_crap.require_membership_of_sid, require_membership_of_sid);
412
413         fstrcpy(request.data.auth_crap.user, username);
414         fstrcpy(request.data.auth_crap.domain, domain);
415
416         fstrcpy(request.data.auth_crap.workstation, 
417                 workstation);
418
419         memcpy(request.data.auth_crap.chal, challenge->data, MIN(challenge->length, 8));
420
421         if (lm_response && lm_response->length) {
422                 memcpy(request.data.auth_crap.lm_resp, 
423                        lm_response->data, 
424                        MIN(lm_response->length, sizeof(request.data.auth_crap.lm_resp)));
425                 request.data.auth_crap.lm_resp_len = lm_response->length;
426         }
427
428         if (nt_response && nt_response->length) {
429                 if (nt_response->length > sizeof(request.data.auth_crap.nt_resp)) {
430                         request.flags = request.flags | WBFLAG_BIG_NTLMV2_BLOB;
431                         request.extra_len = nt_response->length;
432                         request.extra_data.data = SMB_MALLOC_ARRAY(char, request.extra_len);
433                         if (request.extra_data.data == NULL) {
434                                 return NT_STATUS_NO_MEMORY;
435                         }
436                         memcpy(request.extra_data.data, nt_response->data,
437                                nt_response->length);
438
439                 } else {
440                         memcpy(request.data.auth_crap.nt_resp,
441                                nt_response->data, nt_response->length);
442                 }
443                 request.data.auth_crap.nt_resp_len = nt_response->length;
444         }
445
446         result = winbindd_request_response(WINBINDD_PAM_AUTH_CRAP, &request, &response);
447         SAFE_FREE(request.extra_data.data);
448
449         /* Display response */
450
451         if ((result != NSS_STATUS_SUCCESS) && (response.data.auth.nt_status == 0)) {
452                 nt_status = NT_STATUS_UNSUCCESSFUL;
453                 if (error_string)
454                         *error_string = smb_xstrdup("Reading winbind reply failed!");
455                 winbindd_free_response(&response);
456                 return nt_status;
457         }
458
459         nt_status = (NT_STATUS(response.data.auth.nt_status));
460         if (!NT_STATUS_IS_OK(nt_status)) {
461                 if (error_string) 
462                         *error_string = smb_xstrdup(response.data.auth.error_string);
463                 winbindd_free_response(&response);
464                 return nt_status;
465         }
466
467         if ((flags & WBFLAG_PAM_LMKEY) && lm_key) {
468                 memcpy(lm_key, response.data.auth.first_8_lm_hash, 
469                        sizeof(response.data.auth.first_8_lm_hash));
470         }
471         if ((flags & WBFLAG_PAM_USER_SESSION_KEY) && user_session_key) {
472                 memcpy(user_session_key, response.data.auth.user_session_key, 
473                         sizeof(response.data.auth.user_session_key));
474         }
475
476         if (flags & WBFLAG_PAM_UNIX_NAME) {
477                 *unix_name = SMB_STRDUP(response.data.auth.unix_username);
478                 if (!*unix_name) {
479                         winbindd_free_response(&response);
480                         return NT_STATUS_NO_MEMORY;
481                 }
482         }
483
484         winbindd_free_response(&response);
485         return nt_status;
486 }
487
488 /* contact server to change user password using auth crap */
489 static NTSTATUS contact_winbind_change_pswd_auth_crap(const char *username,
490                                                       const char *domain,
491                                                       const DATA_BLOB new_nt_pswd,
492                                                       const DATA_BLOB old_nt_hash_enc,
493                                                       const DATA_BLOB new_lm_pswd,
494                                                       const DATA_BLOB old_lm_hash_enc,
495                                                       char  **error_string)
496 {
497         NTSTATUS nt_status;
498         NSS_STATUS result;
499         struct winbindd_request request;
500         struct winbindd_response response;
501
502         if (!get_require_membership_sid())
503         {
504                 if(error_string)
505                         *error_string = smb_xstrdup("Can't get membership sid.");
506                 return NT_STATUS_INVALID_PARAMETER;
507         }
508
509         ZERO_STRUCT(request);
510         ZERO_STRUCT(response);
511
512         if(username != NULL)
513                 fstrcpy(request.data.chng_pswd_auth_crap.user, username);
514         if(domain != NULL)
515                 fstrcpy(request.data.chng_pswd_auth_crap.domain,domain);
516
517         if(new_nt_pswd.length)
518         {
519                 memcpy(request.data.chng_pswd_auth_crap.new_nt_pswd, new_nt_pswd.data, sizeof(request.data.chng_pswd_auth_crap.new_nt_pswd));
520                 request.data.chng_pswd_auth_crap.new_nt_pswd_len = new_nt_pswd.length;
521         }
522
523         if(old_nt_hash_enc.length)
524         {
525                 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));
526                 request.data.chng_pswd_auth_crap.old_nt_hash_enc_len = old_nt_hash_enc.length;
527         }
528
529         if(new_lm_pswd.length)
530         {
531                 memcpy(request.data.chng_pswd_auth_crap.new_lm_pswd, new_lm_pswd.data, sizeof(request.data.chng_pswd_auth_crap.new_lm_pswd));
532                 request.data.chng_pswd_auth_crap.new_lm_pswd_len = new_lm_pswd.length;
533         }
534
535         if(old_lm_hash_enc.length)
536         {
537                 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));
538                 request.data.chng_pswd_auth_crap.old_lm_hash_enc_len = old_lm_hash_enc.length;
539         }
540
541         result = winbindd_request_response(WINBINDD_PAM_CHNG_PSWD_AUTH_CRAP, &request, &response);
542
543         /* Display response */
544
545         if ((result != NSS_STATUS_SUCCESS) && (response.data.auth.nt_status == 0))
546         {
547                 nt_status = NT_STATUS_UNSUCCESSFUL;
548                 if (error_string)
549                         *error_string = smb_xstrdup("Reading winbind reply failed!");
550                 winbindd_free_response(&response);
551                 return nt_status;
552         }
553
554         nt_status = (NT_STATUS(response.data.auth.nt_status));
555         if (!NT_STATUS_IS_OK(nt_status))
556         {
557                 if (error_string) 
558                         *error_string = smb_xstrdup(response.data.auth.error_string);
559                 winbindd_free_response(&response);
560                 return nt_status;
561         }
562
563         winbindd_free_response(&response);
564
565     return nt_status;
566 }
567
568 static NTSTATUS winbind_pw_check(struct ntlmssp_state *ntlmssp_state, TALLOC_CTX *mem_ctx,
569                                  DATA_BLOB *user_session_key, DATA_BLOB *lm_session_key)
570 {
571         static const char zeros[16] = { 0, };
572         NTSTATUS nt_status;
573         char *error_string = NULL;
574         uint8 lm_key[8]; 
575         uint8 user_sess_key[16]; 
576         char *unix_name = NULL;
577
578         nt_status = contact_winbind_auth_crap(ntlmssp_state->user, ntlmssp_state->domain,
579                                               ntlmssp_state->client.netbios_name,
580                                               &ntlmssp_state->chal,
581                                               &ntlmssp_state->lm_resp,
582                                               &ntlmssp_state->nt_resp, 
583                                               WBFLAG_PAM_LMKEY | WBFLAG_PAM_USER_SESSION_KEY | WBFLAG_PAM_UNIX_NAME,
584                                               lm_key, user_sess_key, 
585                                               &error_string, &unix_name);
586
587         if (NT_STATUS_IS_OK(nt_status)) {
588                 if (memcmp(lm_key, zeros, 8) != 0) {
589                         *lm_session_key = data_blob_talloc(mem_ctx, NULL, 16);
590                         memcpy(lm_session_key->data, lm_key, 8);
591                         memset(lm_session_key->data+8, '\0', 8);
592                 }
593
594                 if (memcmp(user_sess_key, zeros, 16) != 0) {
595                         *user_session_key = data_blob_talloc(mem_ctx, user_sess_key, 16);
596                 }
597                 ntlmssp_state->callback_private = talloc_strdup(ntlmssp_state,
598                                                                 unix_name);
599         } else {
600                 DEBUG(NT_STATUS_EQUAL(nt_status, NT_STATUS_ACCESS_DENIED) ? 0 : 3, 
601                       ("Login for user [%s]\\[%s]@[%s] failed due to [%s]\n", 
602                        ntlmssp_state->domain, ntlmssp_state->user, 
603                        ntlmssp_state->client.netbios_name,
604                        error_string ? error_string : "unknown error (NULL)"));
605                 ntlmssp_state->callback_private = NULL;
606         }
607
608         SAFE_FREE(error_string);
609         SAFE_FREE(unix_name);
610         return nt_status;
611 }
612
613 static NTSTATUS local_pw_check(struct ntlmssp_state *ntlmssp_state, TALLOC_CTX *mem_ctx,
614                                DATA_BLOB *user_session_key, DATA_BLOB *lm_session_key)
615 {
616         NTSTATUS nt_status;
617         struct samr_Password lm_pw, nt_pw;
618
619         nt_lm_owf_gen (opt_password, nt_pw.hash, lm_pw.hash);
620
621         nt_status = ntlm_password_check(mem_ctx,
622                                         true, true, 0,
623                                         &ntlmssp_state->chal,
624                                         &ntlmssp_state->lm_resp,
625                                         &ntlmssp_state->nt_resp, 
626                                         ntlmssp_state->user, 
627                                         ntlmssp_state->user, 
628                                         ntlmssp_state->domain,
629                                         &lm_pw, &nt_pw, user_session_key, lm_session_key);
630
631         if (NT_STATUS_IS_OK(nt_status)) {
632                 ntlmssp_state->callback_private = talloc_asprintf(ntlmssp_state,
633                                                               "%s%c%s", ntlmssp_state->domain, 
634                                                               *lp_winbind_separator(), 
635                                                               ntlmssp_state->user);
636         } else {
637                 DEBUG(3, ("Login for user [%s]\\[%s]@[%s] failed due to [%s]\n", 
638                           ntlmssp_state->domain, ntlmssp_state->user,
639                           ntlmssp_state->client.netbios_name,
640                           nt_errstr(nt_status)));
641                 ntlmssp_state->callback_private = NULL;
642         }
643         return nt_status;
644 }
645
646 static NTSTATUS ntlm_auth_start_ntlmssp_client(struct ntlmssp_state **client_ntlmssp_state)
647 {
648         NTSTATUS status;
649         if ( (opt_username == NULL) || (opt_domain == NULL) ) {
650                 status = NT_STATUS_UNSUCCESSFUL;
651                 DEBUG(1, ("Need username and domain for NTLMSSP\n"));
652                 return NT_STATUS_INVALID_PARAMETER;
653         }
654
655         status = ntlmssp_client_start(NULL,
656                                       global_myname(),
657                                       lp_workgroup(),
658                                       lp_client_ntlmv2_auth(),
659                                       client_ntlmssp_state);
660
661         if (!NT_STATUS_IS_OK(status)) {
662                 DEBUG(1, ("Could not start NTLMSSP client: %s\n",
663                           nt_errstr(status)));
664                 TALLOC_FREE(*client_ntlmssp_state);
665                 return status;
666         }
667
668         status = ntlmssp_set_username(*client_ntlmssp_state, opt_username);
669
670         if (!NT_STATUS_IS_OK(status)) {
671                 DEBUG(1, ("Could not set username: %s\n",
672                           nt_errstr(status)));
673                 TALLOC_FREE(*client_ntlmssp_state);
674                 return status;
675         }
676
677         status = ntlmssp_set_domain(*client_ntlmssp_state, opt_domain);
678
679         if (!NT_STATUS_IS_OK(status)) {
680                 DEBUG(1, ("Could not set domain: %s\n",
681                           nt_errstr(status)));
682                 TALLOC_FREE(*client_ntlmssp_state);
683                 return status;
684         }
685
686         if (opt_password) {
687                 status = ntlmssp_set_password(*client_ntlmssp_state, opt_password);
688
689                 if (!NT_STATUS_IS_OK(status)) {
690                         DEBUG(1, ("Could not set password: %s\n",
691                                   nt_errstr(status)));
692                         TALLOC_FREE(*client_ntlmssp_state);
693                         return status;
694                 }
695         }
696
697         return NT_STATUS_OK;
698 }
699
700 static NTSTATUS ntlm_auth_start_ntlmssp_server(struct ntlmssp_state **ntlmssp_state)
701 {
702         NTSTATUS status;
703         const char *netbios_name;
704         const char *netbios_domain;
705         const char *dns_name;
706         char *dns_domain;
707         bool is_standalone = false;
708
709         if (opt_password) {
710                 netbios_name = global_myname();
711                 netbios_domain = lp_workgroup();
712         } else {
713                 netbios_name = get_winbind_netbios_name();
714                 netbios_domain = get_winbind_domain();
715         }
716         /* This should be a 'netbios domain -> DNS domain' mapping */
717         dns_domain = get_mydnsdomname(talloc_tos());
718         if (dns_domain) {
719                 strlower_m(dns_domain);
720         }
721         dns_name = get_mydnsfullname();
722
723         status = ntlmssp_server_start(NULL,
724                                       is_standalone,
725                                       netbios_name,
726                                       netbios_domain,
727                                       dns_name,
728                                       dns_domain,
729                                       ntlmssp_state);
730         if (!NT_STATUS_IS_OK(status)) {
731                 DEBUG(1, ("Could not start NTLMSSP server: %s\n",
732                           nt_errstr(status)));
733                 return status;
734         }
735
736         /* Have we been given a local password, or should we ask winbind? */
737         if (opt_password) {
738                 (*ntlmssp_state)->check_password = local_pw_check;
739         } else {
740                 (*ntlmssp_state)->check_password = winbind_pw_check;
741         }
742         return NT_STATUS_OK;
743 }
744
745 /*******************************************************************
746  Used by firefox to drive NTLM auth to IIS servers.
747 *******************************************************************/
748
749 static NTSTATUS do_ccache_ntlm_auth(DATA_BLOB initial_msg, DATA_BLOB challenge_msg,
750                                 DATA_BLOB *reply)
751 {
752         struct winbindd_request wb_request;
753         struct winbindd_response wb_response;
754         int ctrl = 0;
755         NSS_STATUS result;
756
757         /* get winbindd to do the ntlmssp step on our behalf */
758         ZERO_STRUCT(wb_request);
759         ZERO_STRUCT(wb_response);
760
761         /*
762          * This is tricky here. If we set krb5_auth in pam_winbind.conf
763          * creds for users in trusted domain will be stored the winbindd
764          * child of the trusted domain. If we ask the primary domain for
765          * ntlm_ccache_auth, it will fail. So, we have to ask the trusted
766          * domain's child for ccache_ntlm_auth. that is to say, we have to 
767          * set WBFLAG_PAM_CONTACT_TRUSTDOM in request.flags.
768          */
769         ctrl = get_pam_winbind_config();
770
771         if (ctrl | WINBIND_KRB5_AUTH) {
772                 wb_request.flags |= WBFLAG_PAM_CONTACT_TRUSTDOM;
773         }
774
775         fstr_sprintf(wb_request.data.ccache_ntlm_auth.user,
776                 "%s%c%s", opt_domain, winbind_separator(), opt_username);
777         wb_request.data.ccache_ntlm_auth.uid = geteuid();
778         wb_request.data.ccache_ntlm_auth.initial_blob_len = initial_msg.length;
779         wb_request.data.ccache_ntlm_auth.challenge_blob_len = challenge_msg.length;
780         wb_request.extra_len = initial_msg.length + challenge_msg.length;
781
782         if (wb_request.extra_len > 0) {
783                 wb_request.extra_data.data = SMB_MALLOC_ARRAY(char, wb_request.extra_len);
784                 if (wb_request.extra_data.data == NULL) {
785                         return NT_STATUS_NO_MEMORY;
786                 }
787
788                 memcpy(wb_request.extra_data.data, initial_msg.data, initial_msg.length);
789                 memcpy(wb_request.extra_data.data + initial_msg.length,
790                         challenge_msg.data, challenge_msg.length);
791         }
792
793         result = winbindd_request_response(WINBINDD_CCACHE_NTLMAUTH, &wb_request, &wb_response);
794         SAFE_FREE(wb_request.extra_data.data);
795
796         if (result != NSS_STATUS_SUCCESS) {
797                 winbindd_free_response(&wb_response);
798                 return NT_STATUS_UNSUCCESSFUL;
799         }
800
801         if (reply) {
802                 *reply = data_blob(wb_response.extra_data.data,
803                                 wb_response.data.ccache_ntlm_auth.auth_blob_len);
804                 if (wb_response.data.ccache_ntlm_auth.auth_blob_len > 0 &&
805                                 reply->data == NULL) {
806                         winbindd_free_response(&wb_response);
807                         return NT_STATUS_NO_MEMORY;
808                 }
809         }
810
811         winbindd_free_response(&wb_response);
812         return NT_STATUS_MORE_PROCESSING_REQUIRED;
813 }
814
815 static void manage_squid_ntlmssp_request_int(struct ntlm_auth_state *state,
816                                              char *buf, int length,
817                                              TALLOC_CTX *mem_ctx,
818                                              char **response)
819 {
820         DATA_BLOB request, reply;
821         NTSTATUS nt_status;
822
823         if (strlen(buf) < 2) {
824                 DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf));
825                 *response = talloc_strdup(mem_ctx, "BH NTLMSSP query invalid");
826                 return;
827         }
828
829         if (strlen(buf) > 3) {
830                 if(strncmp(buf, "SF ", 3) == 0){
831                         DEBUG(10, ("Setting flags to negotioate\n"));
832                         TALLOC_FREE(state->want_feature_list);
833                         state->want_feature_list = talloc_strdup(state->mem_ctx,
834                                         buf+3);
835                         *response = talloc_strdup(mem_ctx, "OK");
836                         return;
837                 }
838                 request = base64_decode_data_blob(buf + 3);
839         } else {
840                 request = data_blob_null;
841         }
842
843         if ((strncmp(buf, "PW ", 3) == 0)) {
844                 /* The calling application wants us to use a local password
845                  * (rather than winbindd) */
846
847                 opt_password = SMB_STRNDUP((const char *)request.data,
848                                 request.length);
849
850                 if (opt_password == NULL) {
851                         DEBUG(1, ("Out of memory\n"));
852                         *response = talloc_strdup(mem_ctx, "BH Out of memory");
853                         data_blob_free(&request);
854                         return;
855                 }
856
857                 *response = talloc_strdup(mem_ctx, "OK");
858                 data_blob_free(&request);
859                 return;
860         }
861
862         if (strncmp(buf, "YR", 2) == 0) {
863                 TALLOC_FREE(state->ntlmssp_state);
864                 state->svr_state = SERVER_INITIAL;
865         } else if (strncmp(buf, "KK", 2) == 0) {
866                 /* No special preprocessing required */
867         } else if (strncmp(buf, "GF", 2) == 0) {
868                 DEBUG(10, ("Requested negotiated NTLMSSP flags\n"));
869
870                 if (state->svr_state == SERVER_FINISHED) {
871                         *response = talloc_asprintf(mem_ctx, "GF 0x%08x",
872                                                  state->neg_flags);
873                 }
874                 else {
875                         *response = talloc_strdup(mem_ctx, "BH\n");
876                 }
877                 data_blob_free(&request);
878                 return;
879         } else if (strncmp(buf, "GK", 2) == 0) {
880                 DEBUG(10, ("Requested NTLMSSP session key\n"));
881                 if(state->have_session_key) {
882                         char *key64 = base64_encode_data_blob(state->mem_ctx,
883                                         state->session_key);
884                         *response = talloc_asprintf(mem_ctx, "GK %s",
885                                                  key64 ? key64 : "<NULL>");
886                         TALLOC_FREE(key64);
887                 } else {
888                         *response = talloc_strdup(mem_ctx, "BH");
889                 }
890
891                 data_blob_free(&request);
892                 return;
893         } else {
894                 DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf));
895                 *response = talloc_strdup(mem_ctx, "BH NTLMSSP query invalid");
896                 return;
897         }
898
899         if (!state->ntlmssp_state) {
900                 nt_status = ntlm_auth_start_ntlmssp_server(
901                                 &state->ntlmssp_state);
902                 if (!NT_STATUS_IS_OK(nt_status)) {
903                         *response = talloc_asprintf(
904                                 mem_ctx, "BH %s", nt_errstr(nt_status));
905                         return;
906                 }
907                 ntlmssp_want_feature_list(state->ntlmssp_state,
908                                 state->want_feature_list);
909         }
910
911         DEBUG(10, ("got NTLMSSP packet:\n"));
912         dump_data(10, request.data, request.length);
913
914         nt_status = ntlmssp_update(state->ntlmssp_state, request, &reply);
915
916         if (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
917                 char *reply_base64 = base64_encode_data_blob(state->mem_ctx,
918                                 reply);
919                 *response = talloc_asprintf(mem_ctx, "TT %s", reply_base64);
920                 TALLOC_FREE(reply_base64);
921                 data_blob_free(&reply);
922                 state->svr_state = SERVER_CHALLENGE;
923                 DEBUG(10, ("NTLMSSP challenge\n"));
924         } else if (NT_STATUS_EQUAL(nt_status, NT_STATUS_ACCESS_DENIED)) {
925                 *response = talloc_asprintf(mem_ctx, "BH %s",
926                                          nt_errstr(nt_status));
927                 DEBUG(0, ("NTLMSSP BH: %s\n", nt_errstr(nt_status)));
928
929                 TALLOC_FREE(state->ntlmssp_state);
930         } else if (!NT_STATUS_IS_OK(nt_status)) {
931                 *response = talloc_asprintf(mem_ctx, "NA %s",
932                                          nt_errstr(nt_status));
933                 DEBUG(10, ("NTLMSSP %s\n", nt_errstr(nt_status)));
934         } else {
935                 *response = talloc_asprintf(
936                         mem_ctx, "AF %s",
937                         (char *)state->ntlmssp_state->callback_private);
938                 DEBUG(10, ("NTLMSSP OK!\n"));
939
940                 if(state->have_session_key)
941                         data_blob_free(&state->session_key);
942                 state->session_key = data_blob(
943                                 state->ntlmssp_state->session_key.data,
944                                 state->ntlmssp_state->session_key.length);
945                 state->neg_flags = state->ntlmssp_state->neg_flags;
946                 state->have_session_key = true;
947                 state->svr_state = SERVER_FINISHED;
948         }
949
950         data_blob_free(&request);
951 }
952
953 static void manage_squid_ntlmssp_request(struct ntlm_auth_state *state,
954                                          char *buf, int length)
955 {
956         char *response;
957
958         manage_squid_ntlmssp_request_int(state, buf, length,
959                                          talloc_tos(), &response);
960
961         if (response == NULL) {
962                 x_fprintf(x_stdout, "BH Out of memory\n");
963                 return;
964         }
965         x_fprintf(x_stdout, "%s\n", response);
966         TALLOC_FREE(response);
967 }
968
969 static void manage_client_ntlmssp_request(struct ntlm_auth_state *state,
970                                                 char *buf, int length)
971 {
972         DATA_BLOB request, reply;
973         NTSTATUS nt_status;
974
975         if (!opt_username || !*opt_username) {
976                 x_fprintf(x_stderr, "username must be specified!\n\n");
977                 exit(1);
978         }
979
980         if (strlen(buf) < 2) {
981                 DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf));
982                 x_fprintf(x_stdout, "BH NTLMSSP query invalid\n");
983                 return;
984         }
985
986         if (strlen(buf) > 3) {
987                 if(strncmp(buf, "SF ", 3) == 0) {
988                         DEBUG(10, ("Looking for flags to negotiate\n"));
989                         talloc_free(state->want_feature_list);
990                         state->want_feature_list = talloc_strdup(state->mem_ctx,
991                                         buf+3);
992                         x_fprintf(x_stdout, "OK\n");
993                         return;
994                 }
995                 request = base64_decode_data_blob(buf + 3);
996         } else {
997                 request = data_blob_null;
998         }
999
1000         if (strncmp(buf, "PW ", 3) == 0) {
1001                 /* We asked for a password and obviously got it :-) */
1002
1003                 opt_password = SMB_STRNDUP((const char *)request.data,
1004                                 request.length);
1005
1006                 if (opt_password == NULL) {
1007                         DEBUG(1, ("Out of memory\n"));
1008                         x_fprintf(x_stdout, "BH Out of memory\n");
1009                         data_blob_free(&request);
1010                         return;
1011                 }
1012
1013                 x_fprintf(x_stdout, "OK\n");
1014                 data_blob_free(&request);
1015                 return;
1016         }
1017
1018         if (!state->ntlmssp_state && use_cached_creds) {
1019                 /* check whether cached credentials are usable. */
1020                 DATA_BLOB empty_blob = data_blob_null;
1021
1022                 nt_status = do_ccache_ntlm_auth(empty_blob, empty_blob, NULL);
1023                 if (!NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
1024                         /* failed to use cached creds */
1025                         use_cached_creds = False;
1026                 }
1027         }
1028
1029         if (opt_password == NULL && !use_cached_creds) {
1030                 /* Request a password from the calling process.  After
1031                    sending it, the calling process should retry asking for the
1032                    negotiate. */
1033
1034                 DEBUG(10, ("Requesting password\n"));
1035                 x_fprintf(x_stdout, "PW\n");
1036                 return;
1037         }
1038
1039         if (strncmp(buf, "YR", 2) == 0) {
1040                 TALLOC_FREE(state->ntlmssp_state);
1041                 state->cli_state = CLIENT_INITIAL;
1042         } else if (strncmp(buf, "TT", 2) == 0) {
1043                 /* No special preprocessing required */
1044         } else if (strncmp(buf, "GF", 2) == 0) {
1045                 DEBUG(10, ("Requested negotiated NTLMSSP flags\n"));
1046
1047                 if(state->cli_state == CLIENT_FINISHED) {
1048                         x_fprintf(x_stdout, "GF 0x%08x\n", state->neg_flags);
1049                 }
1050                 else {
1051                         x_fprintf(x_stdout, "BH\n");
1052                 }
1053
1054                 data_blob_free(&request);
1055                 return;
1056         } else if (strncmp(buf, "GK", 2) == 0 ) {
1057                 DEBUG(10, ("Requested session key\n"));
1058
1059                 if(state->cli_state == CLIENT_FINISHED) {
1060                         char *key64 = base64_encode_data_blob(state->mem_ctx,
1061                                         state->session_key);
1062                         x_fprintf(x_stdout, "GK %s\n", key64?key64:"<NULL>");
1063                         TALLOC_FREE(key64);
1064                 }
1065                 else {
1066                         x_fprintf(x_stdout, "BH\n");
1067                 }
1068
1069                 data_blob_free(&request);
1070                 return;
1071         } else {
1072                 DEBUG(1, ("NTLMSSP query [%s] invalid\n", buf));
1073                 x_fprintf(x_stdout, "BH NTLMSSP query invalid\n");
1074                 return;
1075         }
1076
1077         if (!state->ntlmssp_state) {
1078                 nt_status = ntlm_auth_start_ntlmssp_client(
1079                                 &state->ntlmssp_state);
1080                 if (!NT_STATUS_IS_OK(nt_status)) {
1081                         x_fprintf(x_stdout, "BH %s\n", nt_errstr(nt_status));
1082                         return;
1083                 }
1084                 ntlmssp_want_feature_list(state->ntlmssp_state,
1085                                 state->want_feature_list);
1086                 state->initial_message = data_blob_null;
1087         }
1088
1089         DEBUG(10, ("got NTLMSSP packet:\n"));
1090         dump_data(10, request.data, request.length);
1091
1092         if (use_cached_creds && !opt_password &&
1093                         (state->cli_state == CLIENT_RESPONSE)) {
1094                 nt_status = do_ccache_ntlm_auth(state->initial_message, request,
1095                                 &reply);
1096         } else {
1097                 nt_status = ntlmssp_update(state->ntlmssp_state, request,
1098                                 &reply);
1099         }
1100
1101         if (NT_STATUS_EQUAL(nt_status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
1102                 char *reply_base64 = base64_encode_data_blob(state->mem_ctx,
1103                                 reply);
1104                 if (state->cli_state == CLIENT_INITIAL) {
1105                         x_fprintf(x_stdout, "YR %s\n", reply_base64);
1106                         state->initial_message = reply;
1107                         state->cli_state = CLIENT_RESPONSE;
1108                 } else {
1109                         x_fprintf(x_stdout, "KK %s\n", reply_base64);
1110                         data_blob_free(&reply);
1111                 }
1112                 TALLOC_FREE(reply_base64);
1113                 DEBUG(10, ("NTLMSSP challenge\n"));
1114         } else if (NT_STATUS_IS_OK(nt_status)) {
1115                 char *reply_base64 = base64_encode_data_blob(talloc_tos(),
1116                                 reply);
1117                 x_fprintf(x_stdout, "AF %s\n", reply_base64);
1118                 TALLOC_FREE(reply_base64);
1119
1120                 if(state->have_session_key)
1121                         data_blob_free(&state->session_key);
1122
1123                 state->session_key = data_blob(
1124                                 state->ntlmssp_state->session_key.data,
1125                                 state->ntlmssp_state->session_key.length);
1126                 state->neg_flags = state->ntlmssp_state->neg_flags;
1127                 state->have_session_key = true;
1128
1129                 DEBUG(10, ("NTLMSSP OK!\n"));
1130                 state->cli_state = CLIENT_FINISHED;
1131                 TALLOC_FREE(state->ntlmssp_state);
1132         } else {
1133                 x_fprintf(x_stdout, "BH %s\n", nt_errstr(nt_status));
1134                 DEBUG(0, ("NTLMSSP BH: %s\n", nt_errstr(nt_status)));
1135                 state->cli_state = CLIENT_ERROR;
1136                 TALLOC_FREE(state->ntlmssp_state);
1137         }
1138
1139         data_blob_free(&request);
1140 }
1141
1142 static void manage_squid_basic_request(struct ntlm_auth_state *state,
1143                                         char *buf, int length)
1144 {
1145         char *user, *pass;      
1146         user=buf;
1147
1148         pass=(char *)memchr(buf,' ',length);
1149         if (!pass) {
1150                 DEBUG(2, ("Password not found. Denying access\n"));
1151                 x_fprintf(x_stdout, "ERR\n");
1152                 return;
1153         }
1154         *pass='\0';
1155         pass++;
1156
1157         if (state->helper_mode == SQUID_2_5_BASIC) {
1158                 rfc1738_unescape(user);
1159                 rfc1738_unescape(pass);
1160         }
1161
1162         if (check_plaintext_auth(user, pass, False)) {
1163                 x_fprintf(x_stdout, "OK\n");
1164         } else {
1165                 x_fprintf(x_stdout, "ERR\n");
1166         }
1167 }
1168
1169 static void offer_gss_spnego_mechs(void) {
1170
1171         DATA_BLOB token;
1172         struct spnego_data spnego;
1173         ssize_t len;
1174         char *reply_base64;
1175         TALLOC_CTX *ctx = talloc_tos();
1176         char *principal;
1177         char *myname_lower;
1178
1179         ZERO_STRUCT(spnego);
1180
1181         myname_lower = talloc_strdup(ctx, global_myname());
1182         if (!myname_lower) {
1183                 return;
1184         }
1185         strlower_m(myname_lower);
1186
1187         principal = talloc_asprintf(ctx, "%s$@%s", myname_lower, lp_realm());
1188         if (!principal) {
1189                 return;
1190         }
1191
1192         /* Server negTokenInit (mech offerings) */
1193         spnego.type = SPNEGO_NEG_TOKEN_INIT;
1194         spnego.negTokenInit.mechTypes = talloc_array(ctx, const char *, 3);
1195 #ifdef HAVE_KRB5
1196         spnego.negTokenInit.mechTypes[0] = talloc_strdup(ctx, OID_KERBEROS5_OLD);
1197         spnego.negTokenInit.mechTypes[1] = talloc_strdup(ctx, OID_NTLMSSP);
1198         spnego.negTokenInit.mechTypes[2] = NULL;
1199 #else
1200         spnego.negTokenInit.mechTypes[0] = talloc_strdup(ctx, OID_NTLMSSP);
1201         spnego.negTokenInit.mechTypes[1] = NULL;
1202 #endif
1203
1204
1205         spnego.negTokenInit.mechListMIC = data_blob_talloc(ctx, principal,
1206                                                     strlen(principal));
1207
1208         len = spnego_write_data(ctx, &token, &spnego);
1209         spnego_free_data(&spnego);
1210
1211         if (len == -1) {
1212                 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1213                 x_fprintf(x_stdout, "BH Could not write SPNEGO data blob\n");
1214                 return;
1215         }
1216
1217         reply_base64 = base64_encode_data_blob(talloc_tos(), token);
1218         x_fprintf(x_stdout, "TT %s *\n", reply_base64);
1219
1220         TALLOC_FREE(reply_base64);
1221         data_blob_free(&token);
1222         DEBUG(10, ("sent SPNEGO negTokenInit\n"));
1223         return;
1224 }
1225
1226 static void manage_gss_spnego_request(struct ntlm_auth_state *state,
1227                                         char *buf, int length)
1228 {
1229         static struct ntlmssp_state *ntlmssp_state = NULL;
1230         struct spnego_data request, response;
1231         DATA_BLOB token;
1232         NTSTATUS status;
1233         ssize_t len;
1234         TALLOC_CTX *ctx = talloc_tos();
1235
1236         char *user = NULL;
1237         char *domain = NULL;
1238
1239         const char *reply_code;
1240         char       *reply_base64;
1241         char *reply_argument = NULL;
1242
1243         if (strlen(buf) < 2) {
1244                 DEBUG(1, ("SPENGO query [%s] invalid\n", buf));
1245                 x_fprintf(x_stdout, "BH SPENGO query invalid\n");
1246                 return;
1247         }
1248
1249         if (strncmp(buf, "YR", 2) == 0) {
1250                 TALLOC_FREE(ntlmssp_state);
1251         } else if (strncmp(buf, "KK", 2) == 0) {
1252                 ;
1253         } else {
1254                 DEBUG(1, ("SPENGO query [%s] invalid\n", buf));
1255                 x_fprintf(x_stdout, "BH SPENGO query invalid\n");
1256                 return;
1257         }
1258
1259         if ( (strlen(buf) == 2)) {
1260
1261                 /* no client data, get the negTokenInit offering
1262                    mechanisms */
1263
1264                 offer_gss_spnego_mechs();
1265                 return;
1266         }
1267
1268         /* All subsequent requests have a blob. This might be negTokenInit or negTokenTarg */
1269
1270         if (strlen(buf) <= 3) {
1271                 DEBUG(1, ("GSS-SPNEGO query [%s] invalid\n", buf));
1272                 x_fprintf(x_stdout, "BH GSS-SPNEGO query invalid\n");
1273                 return;
1274         }
1275
1276         token = base64_decode_data_blob(buf + 3);
1277         len = spnego_read_data(ctx, token, &request);
1278         data_blob_free(&token);
1279
1280         if (len == -1) {
1281                 DEBUG(1, ("GSS-SPNEGO query [%s] invalid\n", buf));
1282                 x_fprintf(x_stdout, "BH GSS-SPNEGO query invalid\n");
1283                 return;
1284         }
1285
1286         if (request.type == SPNEGO_NEG_TOKEN_INIT) {
1287
1288                 /* Second request from Client. This is where the
1289                    client offers its mechanism to use. */
1290
1291                 if ( (request.negTokenInit.mechTypes == NULL) ||
1292                      (request.negTokenInit.mechTypes[0] == NULL) ) {
1293                         DEBUG(1, ("Client did not offer any mechanism\n"));
1294                         x_fprintf(x_stdout, "BH Client did not offer any "
1295                                             "mechanism\n");
1296                         return;
1297                 }
1298
1299                 status = NT_STATUS_UNSUCCESSFUL;
1300                 if (strcmp(request.negTokenInit.mechTypes[0], OID_NTLMSSP) == 0) {
1301
1302                         if ( request.negTokenInit.mechToken.data == NULL ) {
1303                                 DEBUG(1, ("Client did not provide NTLMSSP data\n"));
1304                                 x_fprintf(x_stdout, "BH Client did not provide "
1305                                                     "NTLMSSP data\n");
1306                                 return;
1307                         }
1308
1309                         if ( ntlmssp_state != NULL ) {
1310                                 DEBUG(1, ("Client wants a new NTLMSSP challenge, but "
1311                                           "already got one\n"));
1312                                 x_fprintf(x_stdout, "BH Client wants a new "
1313                                                     "NTLMSSP challenge, but "
1314                                                     "already got one\n");
1315                                 TALLOC_FREE(ntlmssp_state);
1316                                 return;
1317                         }
1318
1319                         if (!NT_STATUS_IS_OK(status = ntlm_auth_start_ntlmssp_server(&ntlmssp_state))) {
1320                                 x_fprintf(x_stdout, "BH %s\n", nt_errstr(status));
1321                                 return;
1322                         }
1323
1324                         DEBUG(10, ("got NTLMSSP packet:\n"));
1325                         dump_data(10, request.negTokenInit.mechToken.data,
1326                                   request.negTokenInit.mechToken.length);
1327
1328                         response.type = SPNEGO_NEG_TOKEN_TARG;
1329                         response.negTokenTarg.supportedMech = talloc_strdup(ctx, OID_NTLMSSP);
1330                         response.negTokenTarg.mechListMIC = data_blob_talloc(ctx, NULL, 0);
1331
1332                         status = ntlmssp_update(ntlmssp_state,
1333                                                        request.negTokenInit.mechToken,
1334                                                        &response.negTokenTarg.responseToken);
1335                 }
1336
1337 #ifdef HAVE_KRB5
1338                 if (strcmp(request.negTokenInit.mechTypes[0], OID_KERBEROS5_OLD) == 0) {
1339
1340                         TALLOC_CTX *mem_ctx = talloc_init("manage_gss_spnego_request");
1341                         char *principal;
1342                         DATA_BLOB ap_rep;
1343                         DATA_BLOB session_key;
1344                         struct PAC_LOGON_INFO *logon_info = NULL;
1345
1346                         if ( request.negTokenInit.mechToken.data == NULL ) {
1347                                 DEBUG(1, ("Client did not provide Kerberos data\n"));
1348                                 x_fprintf(x_stdout, "BH Client did not provide "
1349                                                     "Kerberos data\n");
1350                                 return;
1351                         }
1352
1353                         response.type = SPNEGO_NEG_TOKEN_TARG;
1354                         response.negTokenTarg.supportedMech = talloc_strdup(ctx, OID_KERBEROS5_OLD);
1355                         response.negTokenTarg.mechListMIC = data_blob_talloc(ctx, NULL, 0);
1356                         response.negTokenTarg.responseToken = data_blob_talloc(ctx, NULL, 0);
1357
1358                         status = ads_verify_ticket(mem_ctx, lp_realm(), 0,
1359                                                    &request.negTokenInit.mechToken,
1360                                                    &principal, &logon_info, &ap_rep,
1361                                                    &session_key, True);
1362
1363                         /* Now in "principal" we have the name we are
1364                            authenticated as. */
1365
1366                         if (NT_STATUS_IS_OK(status)) {
1367
1368                                 domain = strchr_m(principal, '@');
1369
1370                                 if (domain == NULL) {
1371                                         DEBUG(1, ("Did not get a valid principal "
1372                                                   "from ads_verify_ticket\n"));
1373                                         x_fprintf(x_stdout, "BH Did not get a "
1374                                                   "valid principal from "
1375                                                   "ads_verify_ticket\n");
1376                                         return;
1377                                 }
1378
1379                                 *domain++ = '\0';
1380                                 domain = SMB_STRDUP(domain);
1381                                 user = SMB_STRDUP(principal);
1382
1383                                 data_blob_free(&ap_rep);
1384                         }
1385
1386                         TALLOC_FREE(mem_ctx);
1387                 }
1388 #endif
1389
1390         } else {
1391
1392                 if ( (request.negTokenTarg.supportedMech == NULL) ||
1393                      ( strcmp(request.negTokenTarg.supportedMech, OID_NTLMSSP) != 0 ) ) {
1394                         /* Kerberos should never send a negTokenTarg, OID_NTLMSSP
1395                            is the only one we support that sends this stuff */
1396                         DEBUG(1, ("Got a negTokenTarg for something non-NTLMSSP: %s\n",
1397                                   request.negTokenTarg.supportedMech));
1398                         x_fprintf(x_stdout, "BH Got a negTokenTarg for "
1399                                             "something non-NTLMSSP\n");
1400                         return;
1401                 }
1402
1403                 if (request.negTokenTarg.responseToken.data == NULL) {
1404                         DEBUG(1, ("Got a negTokenTarg without a responseToken!\n"));
1405                         x_fprintf(x_stdout, "BH Got a negTokenTarg without a "
1406                                             "responseToken!\n");
1407                         return;
1408                 }
1409
1410                 status = ntlmssp_update(ntlmssp_state,
1411                                                request.negTokenTarg.responseToken,
1412                                                &response.negTokenTarg.responseToken);
1413
1414                 response.type = SPNEGO_NEG_TOKEN_TARG;
1415                 response.negTokenTarg.supportedMech = talloc_strdup(ctx, OID_NTLMSSP);
1416                 response.negTokenTarg.mechListMIC = data_blob_talloc(ctx, NULL, 0);
1417
1418                 if (NT_STATUS_IS_OK(status)) {
1419                         user = SMB_STRDUP(ntlmssp_state->user);
1420                         domain = SMB_STRDUP(ntlmssp_state->domain);
1421                         TALLOC_FREE(ntlmssp_state);
1422                 }
1423         }
1424
1425         spnego_free_data(&request);
1426
1427         if (NT_STATUS_IS_OK(status)) {
1428                 response.negTokenTarg.negResult = SPNEGO_ACCEPT_COMPLETED;
1429                 reply_code = "AF";
1430                 reply_argument = talloc_asprintf(ctx, "%s\\%s", domain, user);
1431         } else if (NT_STATUS_EQUAL(status,
1432                                    NT_STATUS_MORE_PROCESSING_REQUIRED)) {
1433                 response.negTokenTarg.negResult = SPNEGO_ACCEPT_INCOMPLETE;
1434                 reply_code = "TT";
1435                 reply_argument = talloc_strdup(ctx, "*");
1436         } else {
1437                 response.negTokenTarg.negResult = SPNEGO_REJECT;
1438                 reply_code = "NA";
1439                 reply_argument = talloc_strdup(ctx, nt_errstr(status));
1440         }
1441
1442         if (!reply_argument) {
1443                 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1444                 x_fprintf(x_stdout, "BH Could not write SPNEGO data blob\n");
1445                 return;
1446         }
1447
1448         SAFE_FREE(user);
1449         SAFE_FREE(domain);
1450
1451         len = spnego_write_data(ctx, &token, &response);
1452         spnego_free_data(&response);
1453
1454         if (len == -1) {
1455                 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1456                 x_fprintf(x_stdout, "BH Could not write SPNEGO data blob\n");
1457                 return;
1458         }
1459
1460         reply_base64 = base64_encode_data_blob(talloc_tos(), token);
1461
1462         x_fprintf(x_stdout, "%s %s %s\n",
1463                   reply_code, reply_base64, reply_argument);
1464
1465         TALLOC_FREE(reply_base64);
1466         data_blob_free(&token);
1467
1468         return;
1469 }
1470
1471 static struct ntlmssp_state *client_ntlmssp_state = NULL;
1472
1473 static bool manage_client_ntlmssp_init(struct spnego_data spnego)
1474 {
1475         NTSTATUS status;
1476         DATA_BLOB null_blob = data_blob_null;
1477         DATA_BLOB to_server;
1478         char *to_server_base64;
1479         const char *my_mechs[] = {OID_NTLMSSP, NULL};
1480         TALLOC_CTX *ctx = talloc_tos();
1481
1482         DEBUG(10, ("Got spnego negTokenInit with NTLMSSP\n"));
1483
1484         if (client_ntlmssp_state != NULL) {
1485                 DEBUG(1, ("Request for initial SPNEGO request where "
1486                           "we already have a state\n"));
1487                 return False;
1488         }
1489
1490         if (!client_ntlmssp_state) {
1491                 if (!NT_STATUS_IS_OK(status = ntlm_auth_start_ntlmssp_client(&client_ntlmssp_state))) {
1492                         x_fprintf(x_stdout, "BH %s\n", nt_errstr(status));
1493                         return False;
1494                 }
1495         }
1496
1497
1498         if (opt_password == NULL) {
1499
1500                 /* Request a password from the calling process.  After
1501                    sending it, the calling process should retry with
1502                    the negTokenInit. */
1503
1504                 DEBUG(10, ("Requesting password\n"));
1505                 x_fprintf(x_stdout, "PW\n");
1506                 return True;
1507         }
1508
1509         spnego.type = SPNEGO_NEG_TOKEN_INIT;
1510         spnego.negTokenInit.mechTypes = my_mechs;
1511         spnego.negTokenInit.reqFlags = data_blob_null;
1512         spnego.negTokenInit.reqFlagsPadding = 0;
1513         spnego.negTokenInit.mechListMIC = null_blob;
1514
1515         status = ntlmssp_update(client_ntlmssp_state, null_blob,
1516                                        &spnego.negTokenInit.mechToken);
1517
1518         if ( !(NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED) ||
1519                         NT_STATUS_IS_OK(status)) ) {
1520                 DEBUG(1, ("Expected OK or MORE_PROCESSING_REQUIRED, got: %s\n",
1521                           nt_errstr(status)));
1522                 TALLOC_FREE(client_ntlmssp_state);
1523                 return False;
1524         }
1525
1526         spnego_write_data(ctx, &to_server, &spnego);
1527         data_blob_free(&spnego.negTokenInit.mechToken);
1528
1529         to_server_base64 = base64_encode_data_blob(talloc_tos(), to_server);
1530         data_blob_free(&to_server);
1531         x_fprintf(x_stdout, "KK %s\n", to_server_base64);
1532         TALLOC_FREE(to_server_base64);
1533         return True;
1534 }
1535
1536 static void manage_client_ntlmssp_targ(struct spnego_data spnego)
1537 {
1538         NTSTATUS status;
1539         DATA_BLOB null_blob = data_blob_null;
1540         DATA_BLOB request;
1541         DATA_BLOB to_server;
1542         char *to_server_base64;
1543         TALLOC_CTX *ctx = talloc_tos();
1544
1545         DEBUG(10, ("Got spnego negTokenTarg with NTLMSSP\n"));
1546
1547         if (client_ntlmssp_state == NULL) {
1548                 DEBUG(1, ("Got NTLMSSP tArg without a client state\n"));
1549                 x_fprintf(x_stdout, "BH Got NTLMSSP tArg without a client state\n");
1550                 return;
1551         }
1552
1553         if (spnego.negTokenTarg.negResult == SPNEGO_REJECT) {
1554                 x_fprintf(x_stdout, "NA\n");
1555                 TALLOC_FREE(client_ntlmssp_state);
1556                 return;
1557         }
1558
1559         if (spnego.negTokenTarg.negResult == SPNEGO_ACCEPT_COMPLETED) {
1560                 x_fprintf(x_stdout, "AF\n");
1561                 TALLOC_FREE(client_ntlmssp_state);
1562                 return;
1563         }
1564
1565         status = ntlmssp_update(client_ntlmssp_state,
1566                                        spnego.negTokenTarg.responseToken,
1567                                        &request);
1568
1569         if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
1570                 DEBUG(1, ("Expected MORE_PROCESSING_REQUIRED from "
1571                           "ntlmssp_client_update, got: %s\n",
1572                           nt_errstr(status)));
1573                 x_fprintf(x_stdout, "BH Expected MORE_PROCESSING_REQUIRED from "
1574                                     "ntlmssp_client_update\n");
1575                 data_blob_free(&request);
1576                 TALLOC_FREE(client_ntlmssp_state);
1577                 return;
1578         }
1579
1580         spnego.type = SPNEGO_NEG_TOKEN_TARG;
1581         spnego.negTokenTarg.negResult = SPNEGO_ACCEPT_INCOMPLETE;
1582         spnego.negTokenTarg.supportedMech = (char *)OID_NTLMSSP;
1583         spnego.negTokenTarg.responseToken = request;
1584         spnego.negTokenTarg.mechListMIC = null_blob;
1585
1586         spnego_write_data(ctx, &to_server, &spnego);
1587         data_blob_free(&request);
1588
1589         to_server_base64 = base64_encode_data_blob(talloc_tos(), to_server);
1590         data_blob_free(&to_server);
1591         x_fprintf(x_stdout, "KK %s\n", to_server_base64);
1592         TALLOC_FREE(to_server_base64);
1593         return;
1594 }
1595
1596 #ifdef HAVE_KRB5
1597
1598 static bool manage_client_krb5_init(struct spnego_data spnego)
1599 {
1600         char *principal;
1601         DATA_BLOB tkt, to_server;
1602         DATA_BLOB session_key_krb5 = data_blob_null;
1603         struct spnego_data reply;
1604         char *reply_base64;
1605         int retval;
1606
1607         const char *my_mechs[] = {OID_KERBEROS5_OLD, NULL};
1608         ssize_t len;
1609         TALLOC_CTX *ctx = talloc_tos();
1610
1611         if ( (spnego.negTokenInit.mechListMIC.data == NULL) ||
1612              (spnego.negTokenInit.mechListMIC.length == 0) ) {
1613                 DEBUG(1, ("Did not get a principal for krb5\n"));
1614                 return False;
1615         }
1616
1617         principal = (char *)SMB_MALLOC(
1618                 spnego.negTokenInit.mechListMIC.length+1);
1619
1620         if (principal == NULL) {
1621                 DEBUG(1, ("Could not malloc principal\n"));
1622                 return False;
1623         }
1624
1625         memcpy(principal, spnego.negTokenInit.mechListMIC.data,
1626                spnego.negTokenInit.mechListMIC.length);
1627         principal[spnego.negTokenInit.mechListMIC.length] = '\0';
1628
1629         retval = cli_krb5_get_ticket(ctx, principal, 0,
1630                                           &tkt, &session_key_krb5,
1631                                           0, NULL, NULL, NULL);
1632         if (retval) {
1633                 char *user = NULL;
1634
1635                 /* Let's try to first get the TGT, for that we need a
1636                    password. */
1637
1638                 if (opt_password == NULL) {
1639                         DEBUG(10, ("Requesting password\n"));
1640                         x_fprintf(x_stdout, "PW\n");
1641                         return True;
1642                 }
1643
1644                 user = talloc_asprintf(talloc_tos(), "%s@%s", opt_username, opt_domain);
1645                 if (!user) {
1646                         return false;
1647                 }
1648
1649                 if ((retval = kerberos_kinit_password(user, opt_password, 0, NULL))) {
1650                         DEBUG(10, ("Requesting TGT failed: %s\n", error_message(retval)));
1651                         return False;
1652                 }
1653
1654                 retval = cli_krb5_get_ticket(ctx, principal, 0,
1655                                                   &tkt, &session_key_krb5,
1656                                                   0, NULL, NULL, NULL);
1657                 if (retval) {
1658                         DEBUG(10, ("Kinit suceeded, but getting a ticket failed: %s\n", error_message(retval)));
1659                         return False;
1660                 }
1661         }
1662
1663         data_blob_free(&session_key_krb5);
1664
1665         ZERO_STRUCT(reply);
1666
1667         reply.type = SPNEGO_NEG_TOKEN_INIT;
1668         reply.negTokenInit.mechTypes = my_mechs;
1669         reply.negTokenInit.reqFlags = data_blob_null;
1670         reply.negTokenInit.reqFlagsPadding = 0;
1671         reply.negTokenInit.mechToken = tkt;
1672         reply.negTokenInit.mechListMIC = data_blob_null;
1673
1674         len = spnego_write_data(ctx, &to_server, &reply);
1675         data_blob_free(&tkt);
1676
1677         if (len == -1) {
1678                 DEBUG(1, ("Could not write SPNEGO data blob\n"));
1679                 return False;
1680         }
1681
1682         reply_base64 = base64_encode_data_blob(talloc_tos(), to_server);
1683         x_fprintf(x_stdout, "KK %s *\n", reply_base64);
1684
1685         TALLOC_FREE(reply_base64);
1686         data_blob_free(&to_server);
1687         DEBUG(10, ("sent GSS-SPNEGO KERBEROS5 negTokenInit\n"));
1688         return True;
1689 }
1690
1691 static void manage_client_krb5_targ(struct spnego_data spnego)
1692 {
1693         switch (spnego.negTokenTarg.negResult) {
1694         case SPNEGO_ACCEPT_INCOMPLETE:
1695                 DEBUG(1, ("Got a Kerberos negTokenTarg with ACCEPT_INCOMPLETE\n"));
1696                 x_fprintf(x_stdout, "BH Got a Kerberos negTokenTarg with "
1697                                     "ACCEPT_INCOMPLETE\n");
1698                 break;
1699         case SPNEGO_ACCEPT_COMPLETED:
1700                 DEBUG(10, ("Accept completed\n"));
1701                 x_fprintf(x_stdout, "AF\n");
1702                 break;
1703         case SPNEGO_REJECT:
1704                 DEBUG(10, ("Rejected\n"));
1705                 x_fprintf(x_stdout, "NA\n");
1706                 break;
1707         default:
1708                 DEBUG(1, ("Got an invalid negTokenTarg\n"));
1709                 x_fprintf(x_stdout, "AF\n");
1710         }
1711 }
1712
1713 #endif
1714
1715 static void manage_gss_spnego_client_request(struct ntlm_auth_state *state,
1716                                                 char *buf, int length)
1717 {
1718         DATA_BLOB request;
1719         struct spnego_data spnego;
1720         ssize_t len;
1721         TALLOC_CTX *ctx = talloc_tos();
1722
1723         if (!opt_username || !*opt_username) {
1724                 x_fprintf(x_stderr, "username must be specified!\n\n");
1725                 exit(1);
1726         }
1727
1728         if (strlen(buf) <= 3) {
1729                 DEBUG(1, ("SPNEGO query [%s] too short\n", buf));
1730                 x_fprintf(x_stdout, "BH SPNEGO query too short\n");
1731                 return;
1732         }
1733
1734         request = base64_decode_data_blob(buf+3);
1735
1736         if (strncmp(buf, "PW ", 3) == 0) {
1737
1738                 /* We asked for a password and obviously got it :-) */
1739
1740                 opt_password = SMB_STRNDUP((const char *)request.data, request.length);
1741
1742                 if (opt_password == NULL) {
1743                         DEBUG(1, ("Out of memory\n"));
1744                         x_fprintf(x_stdout, "BH Out of memory\n");
1745                         data_blob_free(&request);
1746                         return;
1747                 }
1748
1749                 x_fprintf(x_stdout, "OK\n");
1750                 data_blob_free(&request);
1751                 return;
1752         }
1753
1754         if ( (strncmp(buf, "TT ", 3) != 0) &&
1755              (strncmp(buf, "AF ", 3) != 0) &&
1756              (strncmp(buf, "NA ", 3) != 0) ) {
1757                 DEBUG(1, ("SPNEGO request [%s] invalid\n", buf));
1758                 x_fprintf(x_stdout, "BH SPNEGO request invalid\n");
1759                 data_blob_free(&request);
1760                 return;
1761         }
1762
1763         /* So we got a server challenge to generate a SPNEGO
1764            client-to-server request... */
1765
1766         len = spnego_read_data(ctx, request, &spnego);
1767         data_blob_free(&request);
1768
1769         if (len == -1) {
1770                 DEBUG(1, ("Could not read SPNEGO data for [%s]\n", buf));
1771                 x_fprintf(x_stdout, "BH Could not read SPNEGO data\n");
1772                 return;
1773         }
1774
1775         if (spnego.type == SPNEGO_NEG_TOKEN_INIT) {
1776
1777                 /* The server offers a list of mechanisms */
1778
1779                 const char **mechType = (const char **)spnego.negTokenInit.mechTypes;
1780
1781                 while (*mechType != NULL) {
1782
1783 #ifdef HAVE_KRB5
1784                         if ( (strcmp(*mechType, OID_KERBEROS5_OLD) == 0) ||
1785                              (strcmp(*mechType, OID_KERBEROS5) == 0) ) {
1786                                 if (manage_client_krb5_init(spnego))
1787                                         goto out;
1788                         }
1789 #endif
1790
1791                         if (strcmp(*mechType, OID_NTLMSSP) == 0) {
1792                                 if (manage_client_ntlmssp_init(spnego))
1793                                         goto out;
1794                         }
1795
1796                         mechType++;
1797                 }
1798
1799                 DEBUG(1, ("Server offered no compatible mechanism\n"));
1800                 x_fprintf(x_stdout, "BH Server offered no compatible mechanism\n");
1801                 return;
1802         }
1803
1804         if (spnego.type == SPNEGO_NEG_TOKEN_TARG) {
1805
1806                 if (spnego.negTokenTarg.supportedMech == NULL) {
1807                         /* On accept/reject Windows does not send the
1808                            mechanism anymore. Handle that here and
1809                            shut down the mechanisms. */
1810
1811                         switch (spnego.negTokenTarg.negResult) {
1812                         case SPNEGO_ACCEPT_COMPLETED:
1813                                 x_fprintf(x_stdout, "AF\n");
1814                                 break;
1815                         case SPNEGO_REJECT:
1816                                 x_fprintf(x_stdout, "NA\n");
1817                                 break;
1818                         default:
1819                                 DEBUG(1, ("Got a negTokenTarg with no mech and an "
1820                                           "unknown negResult: %d\n",
1821                                           spnego.negTokenTarg.negResult));
1822                                 x_fprintf(x_stdout, "BH Got a negTokenTarg with"
1823                                                     " no mech and an unknown "
1824                                                     "negResult\n");
1825                         }
1826
1827                         TALLOC_FREE(client_ntlmssp_state);
1828                         goto out;
1829                 }
1830
1831                 if (strcmp(spnego.negTokenTarg.supportedMech,
1832                            OID_NTLMSSP) == 0) {
1833                         manage_client_ntlmssp_targ(spnego);
1834                         goto out;
1835                 }
1836
1837 #if HAVE_KRB5
1838                 if (strcmp(spnego.negTokenTarg.supportedMech,
1839                            OID_KERBEROS5_OLD) == 0) {
1840                         manage_client_krb5_targ(spnego);
1841                         goto out;
1842                 }
1843 #endif
1844
1845         }
1846
1847         DEBUG(1, ("Got an SPNEGO token I could not handle [%s]!\n", buf));
1848         x_fprintf(x_stdout, "BH Got an SPNEGO token I could not handle\n");
1849         return;
1850
1851  out:
1852         spnego_free_data(&spnego);
1853         return;
1854 }
1855
1856 static void manage_ntlm_server_1_request(struct ntlm_auth_state *state,
1857                                                 char *buf, int length)
1858 {
1859         char *request, *parameter;      
1860         static DATA_BLOB challenge;
1861         static DATA_BLOB lm_response;
1862         static DATA_BLOB nt_response;
1863         static char *full_username;
1864         static char *username;
1865         static char *domain;
1866         static char *plaintext_password;
1867         static bool ntlm_server_1_user_session_key;
1868         static bool ntlm_server_1_lm_session_key;
1869
1870         if (strequal(buf, ".")) {
1871                 if (!full_username && !username) {      
1872                         x_fprintf(x_stdout, "Error: No username supplied!\n");
1873                 } else if (plaintext_password) {
1874                         /* handle this request as plaintext */
1875                         if (!full_username) {
1876                                 if (asprintf(&full_username, "%s%c%s", domain, winbind_separator(), username) == -1) {
1877                                         x_fprintf(x_stdout, "Error: Out of memory in asprintf!\n.\n");
1878                                         return;
1879                                 }
1880                         }
1881                         if (check_plaintext_auth(full_username, plaintext_password, False)) {
1882                                 x_fprintf(x_stdout, "Authenticated: Yes\n");
1883                         } else {
1884                                 x_fprintf(x_stdout, "Authenticated: No\n");
1885                         }
1886                 } else if (!lm_response.data && !nt_response.data) {
1887                         x_fprintf(x_stdout, "Error: No password supplied!\n");
1888                 } else if (!challenge.data) {   
1889                         x_fprintf(x_stdout, "Error: No lanman-challenge supplied!\n");
1890                 } else {
1891                         char *error_string = NULL;
1892                         uchar lm_key[8];
1893                         uchar user_session_key[16];
1894                         uint32 flags = 0;
1895
1896                         if (full_username && !username) {
1897                                 fstring fstr_user;
1898                                 fstring fstr_domain;
1899
1900                                 if (!parse_ntlm_auth_domain_user(full_username, fstr_user, fstr_domain)) {
1901                                         /* username might be 'tainted', don't print into our new-line deleimianted stream */
1902                                         x_fprintf(x_stdout, "Error: Could not parse into domain and username\n");
1903                                 }
1904                                 SAFE_FREE(username);
1905                                 SAFE_FREE(domain);
1906                                 username = smb_xstrdup(fstr_user);
1907                                 domain = smb_xstrdup(fstr_domain);
1908                         }
1909
1910                         if (!domain) {
1911                                 domain = smb_xstrdup(get_winbind_domain());
1912                         }
1913
1914                         if (ntlm_server_1_lm_session_key) 
1915                                 flags |= WBFLAG_PAM_LMKEY;
1916
1917                         if (ntlm_server_1_user_session_key) 
1918                                 flags |= WBFLAG_PAM_USER_SESSION_KEY;
1919
1920                         if (!NT_STATUS_IS_OK(
1921                                     contact_winbind_auth_crap(username, 
1922                                                               domain, 
1923                                                               global_myname(),
1924                                                               &challenge, 
1925                                                               &lm_response, 
1926                                                               &nt_response, 
1927                                                               flags, 
1928                                                               lm_key, 
1929                                                               user_session_key,
1930                                                               &error_string,
1931                                                               NULL))) {
1932
1933                                 x_fprintf(x_stdout, "Authenticated: No\n");
1934                                 x_fprintf(x_stdout, "Authentication-Error: %s\n.\n", error_string);
1935                         } else {
1936                                 static char zeros[16];
1937                                 char *hex_lm_key;
1938                                 char *hex_user_session_key;
1939
1940                                 x_fprintf(x_stdout, "Authenticated: Yes\n");
1941
1942                                 if (ntlm_server_1_lm_session_key 
1943                                     && (memcmp(zeros, lm_key, 
1944                                                sizeof(lm_key)) != 0)) {
1945                                         hex_lm_key = hex_encode_talloc(NULL,
1946                                                                 (const unsigned char *)lm_key,
1947                                                                 sizeof(lm_key));
1948                                         x_fprintf(x_stdout, "LANMAN-Session-Key: %s\n", hex_lm_key);
1949                                         TALLOC_FREE(hex_lm_key);
1950                                 }
1951
1952                                 if (ntlm_server_1_user_session_key 
1953                                     && (memcmp(zeros, user_session_key, 
1954                                                sizeof(user_session_key)) != 0)) {
1955                                         hex_user_session_key = hex_encode_talloc(NULL,
1956                                                                           (const unsigned char *)user_session_key, 
1957                                                                           sizeof(user_session_key));
1958                                         x_fprintf(x_stdout, "User-Session-Key: %s\n", hex_user_session_key);
1959                                         TALLOC_FREE(hex_user_session_key);
1960                                 }
1961                         }
1962                         SAFE_FREE(error_string);
1963                 }
1964                 /* clear out the state */
1965                 challenge = data_blob_null;
1966                 nt_response = data_blob_null;
1967                 lm_response = data_blob_null;
1968                 SAFE_FREE(full_username);
1969                 SAFE_FREE(username);
1970                 SAFE_FREE(domain);
1971                 SAFE_FREE(plaintext_password);
1972                 ntlm_server_1_user_session_key = False;
1973                 ntlm_server_1_lm_session_key = False;
1974                 x_fprintf(x_stdout, ".\n");
1975
1976                 return;
1977         }
1978
1979         request = buf;
1980
1981         /* Indicates a base64 encoded structure */
1982         parameter = strstr_m(request, ":: ");
1983         if (!parameter) {
1984                 parameter = strstr_m(request, ": ");
1985
1986                 if (!parameter) {
1987                         DEBUG(0, ("Parameter not found!\n"));
1988                         x_fprintf(x_stdout, "Error: Parameter not found!\n.\n");
1989                         return;
1990                 }
1991
1992                 parameter[0] ='\0';
1993                 parameter++;
1994                 parameter[0] ='\0';
1995                 parameter++;
1996
1997         } else {
1998                 parameter[0] ='\0';
1999                 parameter++;
2000                 parameter[0] ='\0';
2001                 parameter++;
2002                 parameter[0] ='\0';
2003                 parameter++;
2004
2005                 base64_decode_inplace(parameter);
2006         }
2007
2008         if (strequal(request, "LANMAN-Challenge")) {
2009                 challenge = strhex_to_data_blob(NULL, parameter);
2010                 if (challenge.length != 8) {
2011                         x_fprintf(x_stdout, "Error: hex decode of %s failed! (got %d bytes, expected 8)\n.\n", 
2012                                   parameter,
2013                                   (int)challenge.length);
2014                         challenge = data_blob_null;
2015                 }
2016         } else if (strequal(request, "NT-Response")) {
2017                 nt_response = strhex_to_data_blob(NULL, parameter);
2018                 if (nt_response.length < 24) {
2019                         x_fprintf(x_stdout, "Error: hex decode of %s failed! (only got %d bytes, needed at least 24)\n.\n", 
2020                                   parameter,
2021                                   (int)nt_response.length);
2022                         nt_response = data_blob_null;
2023                 }
2024         } else if (strequal(request, "LANMAN-Response")) {
2025                 lm_response = strhex_to_data_blob(NULL, parameter);
2026                 if (lm_response.length != 24) {
2027                         x_fprintf(x_stdout, "Error: hex decode of %s failed! (got %d bytes, expected 24)\n.\n", 
2028                                   parameter,
2029                                   (int)lm_response.length);
2030                         lm_response = data_blob_null;
2031                 }
2032         } else if (strequal(request, "Password")) {
2033                 plaintext_password = smb_xstrdup(parameter);
2034         } else if (strequal(request, "NT-Domain")) {
2035                 domain = smb_xstrdup(parameter);
2036         } else if (strequal(request, "Username")) {
2037                 username = smb_xstrdup(parameter);
2038         } else if (strequal(request, "Full-Username")) {
2039                 full_username = smb_xstrdup(parameter);
2040         } else if (strequal(request, "Request-User-Session-Key")) {
2041                 ntlm_server_1_user_session_key = strequal(parameter, "Yes");
2042         } else if (strequal(request, "Request-LanMan-Session-Key")) {
2043                 ntlm_server_1_lm_session_key = strequal(parameter, "Yes");
2044         } else {
2045                 x_fprintf(x_stdout, "Error: Unknown request %s\n.\n", request);
2046         }
2047 }
2048
2049 static void manage_ntlm_change_password_1_request(struct ntlm_auth_state *state,
2050                                                         char *buf, int length)
2051 {
2052         char *request, *parameter;      
2053         static DATA_BLOB new_nt_pswd;
2054         static DATA_BLOB old_nt_hash_enc;
2055         static DATA_BLOB new_lm_pswd;
2056         static DATA_BLOB old_lm_hash_enc;
2057         static char *full_username = NULL;
2058         static char *username = NULL;
2059         static char *domain = NULL;
2060         static char *newpswd =  NULL;
2061         static char *oldpswd = NULL;
2062
2063         if (strequal(buf, ".")) {
2064                 if(newpswd && oldpswd) {
2065                         uchar old_nt_hash[16];
2066                         uchar old_lm_hash[16];
2067                         uchar new_nt_hash[16];
2068                         uchar new_lm_hash[16];
2069
2070                         new_nt_pswd = data_blob(NULL, 516);
2071                         old_nt_hash_enc = data_blob(NULL, 16);
2072
2073                         /* Calculate the MD4 hash (NT compatible) of the
2074                          * password */
2075                         E_md4hash(oldpswd, old_nt_hash);
2076                         E_md4hash(newpswd, new_nt_hash);
2077
2078                         /* E_deshash returns false for 'long'
2079                            passwords (> 14 DOS chars).  
2080
2081                            Therefore, don't send a buffer
2082                            encrypted with the truncated hash
2083                            (it could allow an even easier
2084                            attack on the password)
2085
2086                            Likewise, obey the admin's restriction
2087                         */
2088
2089                         if (lp_client_lanman_auth() &&
2090                             E_deshash(newpswd, new_lm_hash) &&
2091                             E_deshash(oldpswd, old_lm_hash)) {
2092                                 new_lm_pswd = data_blob(NULL, 516);
2093                                 old_lm_hash_enc = data_blob(NULL, 16);
2094                                 encode_pw_buffer(new_lm_pswd.data, newpswd,
2095                                                  STR_UNICODE);
2096
2097                                 arcfour_crypt(new_lm_pswd.data, old_nt_hash, 516);
2098                                 E_old_pw_hash(new_nt_hash, old_lm_hash,
2099                                               old_lm_hash_enc.data);
2100                         } else {
2101                                 new_lm_pswd.data = NULL;
2102                                 new_lm_pswd.length = 0;
2103                                 old_lm_hash_enc.data = NULL;
2104                                 old_lm_hash_enc.length = 0;
2105                         }
2106
2107                         encode_pw_buffer(new_nt_pswd.data, newpswd,
2108                                          STR_UNICODE);
2109
2110                         arcfour_crypt(new_nt_pswd.data, old_nt_hash, 516);
2111                         E_old_pw_hash(new_nt_hash, old_nt_hash,
2112                                       old_nt_hash_enc.data);
2113                 }
2114
2115                 if (!full_username && !username) {      
2116                         x_fprintf(x_stdout, "Error: No username supplied!\n");
2117                 } else if ((!new_nt_pswd.data || !old_nt_hash_enc.data) &&
2118                            (!new_lm_pswd.data || old_lm_hash_enc.data) ) {
2119                         x_fprintf(x_stdout, "Error: No NT or LM password "
2120                                   "blobs supplied!\n");
2121                 } else {
2122                         char *error_string = NULL;
2123
2124                         if (full_username && !username) {
2125                                 fstring fstr_user;
2126                                 fstring fstr_domain;
2127
2128                                 if (!parse_ntlm_auth_domain_user(full_username,
2129                                                                  fstr_user,
2130                                                                  fstr_domain)) {
2131                                         /* username might be 'tainted', don't
2132                                          * print into our new-line
2133                                          * deleimianted stream */
2134                                         x_fprintf(x_stdout, "Error: Could not "
2135                                                   "parse into domain and "
2136                                                   "username\n");
2137                                         SAFE_FREE(username);
2138                                         username = smb_xstrdup(full_username);
2139                                 } else {
2140                                         SAFE_FREE(username);
2141                                         SAFE_FREE(domain);
2142                                         username = smb_xstrdup(fstr_user);
2143                                         domain = smb_xstrdup(fstr_domain);
2144                                 }
2145
2146                         }
2147
2148                         if(!NT_STATUS_IS_OK(contact_winbind_change_pswd_auth_crap(
2149                                                     username, domain,
2150                                                     new_nt_pswd,
2151                                                     old_nt_hash_enc,
2152                                                     new_lm_pswd,
2153                                                     old_lm_hash_enc,
2154                                                     &error_string))) {
2155                                 x_fprintf(x_stdout, "Password-Change: No\n");
2156                                 x_fprintf(x_stdout, "Password-Change-Error: "
2157                                           "%s\n.\n", error_string);
2158                         } else {
2159                                 x_fprintf(x_stdout, "Password-Change: Yes\n");
2160                         }
2161
2162                         SAFE_FREE(error_string);
2163                 }
2164                 /* clear out the state */
2165                 new_nt_pswd = data_blob_null;
2166                 old_nt_hash_enc = data_blob_null;
2167                 new_lm_pswd = data_blob_null;
2168                 old_nt_hash_enc = data_blob_null;
2169                 SAFE_FREE(full_username);
2170                 SAFE_FREE(username);
2171                 SAFE_FREE(domain);
2172                 SAFE_FREE(newpswd);
2173                 SAFE_FREE(oldpswd);
2174                 x_fprintf(x_stdout, ".\n");
2175
2176                 return;
2177         }
2178
2179         request = buf;
2180
2181         /* Indicates a base64 encoded structure */
2182         parameter = strstr_m(request, ":: ");
2183         if (!parameter) {
2184                 parameter = strstr_m(request, ": ");
2185
2186                 if (!parameter) {
2187                         DEBUG(0, ("Parameter not found!\n"));
2188                         x_fprintf(x_stdout, "Error: Parameter not found!\n.\n");
2189                         return;
2190                 }
2191
2192                 parameter[0] ='\0';
2193                 parameter++;
2194                 parameter[0] ='\0';
2195                 parameter++;
2196         } else {
2197                 parameter[0] ='\0';
2198                 parameter++;
2199                 parameter[0] ='\0';
2200                 parameter++;
2201                 parameter[0] ='\0';
2202                 parameter++;
2203
2204                 base64_decode_inplace(parameter);
2205         }
2206
2207         if (strequal(request, "new-nt-password-blob")) {
2208                 new_nt_pswd = strhex_to_data_blob(NULL, parameter);
2209                 if (new_nt_pswd.length != 516) {
2210                         x_fprintf(x_stdout, "Error: hex decode of %s failed! "
2211                                   "(got %d bytes, expected 516)\n.\n", 
2212                                   parameter,
2213                                   (int)new_nt_pswd.length);
2214                         new_nt_pswd = data_blob_null;
2215                 }
2216         } else if (strequal(request, "old-nt-hash-blob")) {
2217                 old_nt_hash_enc = strhex_to_data_blob(NULL, parameter);
2218                 if (old_nt_hash_enc.length != 16) {
2219                         x_fprintf(x_stdout, "Error: hex decode of %s failed! "
2220                                   "(got %d bytes, expected 16)\n.\n", 
2221                                   parameter,
2222                                   (int)old_nt_hash_enc.length);
2223                         old_nt_hash_enc = data_blob_null;
2224                 }
2225         } else if (strequal(request, "new-lm-password-blob")) {
2226                 new_lm_pswd = strhex_to_data_blob(NULL, parameter);
2227                 if (new_lm_pswd.length != 516) {
2228                         x_fprintf(x_stdout, "Error: hex decode of %s failed! "
2229                                   "(got %d bytes, expected 516)\n.\n", 
2230                                   parameter,
2231                                   (int)new_lm_pswd.length);
2232                         new_lm_pswd = data_blob_null;
2233                 }
2234         }
2235         else if (strequal(request, "old-lm-hash-blob")) {
2236                 old_lm_hash_enc = strhex_to_data_blob(NULL, parameter);
2237                 if (old_lm_hash_enc.length != 16)
2238                 {
2239                         x_fprintf(x_stdout, "Error: hex decode of %s failed! "
2240                                   "(got %d bytes, expected 16)\n.\n", 
2241                                   parameter,
2242                                   (int)old_lm_hash_enc.length);
2243                         old_lm_hash_enc = data_blob_null;
2244                 }
2245         } else if (strequal(request, "nt-domain")) {
2246                 domain = smb_xstrdup(parameter);
2247         } else if(strequal(request, "username")) {
2248                 username = smb_xstrdup(parameter);
2249         } else if(strequal(request, "full-username")) {
2250                 username = smb_xstrdup(parameter);
2251         } else if(strequal(request, "new-password")) {
2252                 newpswd = smb_xstrdup(parameter);
2253         } else if (strequal(request, "old-password")) {
2254                 oldpswd = smb_xstrdup(parameter);
2255         } else {
2256                 x_fprintf(x_stdout, "Error: Unknown request %s\n.\n", request);
2257         }
2258 }
2259
2260 static void manage_squid_request(struct ntlm_auth_state *state,
2261                 stdio_helper_function fn)
2262 {
2263         char *buf;
2264         char tmp[INITIAL_BUFFER_SIZE+1];
2265         int length, buf_size = 0;
2266         char *c;
2267
2268         buf = talloc_strdup(state->mem_ctx, "");
2269         if (!buf) {
2270                 DEBUG(0, ("Failed to allocate input buffer.\n"));
2271                 x_fprintf(x_stderr, "ERR\n");
2272                 exit(1);
2273         }
2274
2275         do {
2276
2277                 /* this is not a typo - x_fgets doesn't work too well under
2278                  * squid */
2279                 if (fgets(tmp, sizeof(tmp)-1, stdin) == NULL) {
2280                         if (ferror(stdin)) {
2281                                 DEBUG(1, ("fgets() failed! dying..... errno=%d "
2282                                           "(%s)\n", ferror(stdin),
2283                                           strerror(ferror(stdin))));
2284
2285                                 exit(1);
2286                         }
2287                         exit(0);
2288                 }
2289
2290                 buf = talloc_strdup_append_buffer(buf, tmp);
2291                 buf_size += INITIAL_BUFFER_SIZE;
2292
2293                 if (buf_size > MAX_BUFFER_SIZE) {
2294                         DEBUG(2, ("Oversized message\n"));
2295                         x_fprintf(x_stderr, "ERR\n");
2296                         talloc_free(buf);
2297                         return;
2298                 }
2299
2300                 c = strchr(buf, '\n');
2301         } while (c == NULL);
2302
2303         *c = '\0';
2304         length = c-buf;
2305
2306         DEBUG(10, ("Got '%s' from squid (length: %d).\n",buf,length));
2307
2308         if (buf[0] == '\0') {
2309                 DEBUG(2, ("Invalid Request\n"));
2310                 x_fprintf(x_stderr, "ERR\n");
2311                 talloc_free(buf);
2312                 return;
2313         }
2314
2315         fn(state, buf, length);
2316         talloc_free(buf);
2317 }
2318
2319
2320 static void squid_stream(enum stdio_helper_mode stdio_mode, stdio_helper_function fn) {
2321         TALLOC_CTX *mem_ctx;
2322         struct ntlm_auth_state *state;
2323
2324         /* initialize FDescs */
2325         x_setbuf(x_stdout, NULL);
2326         x_setbuf(x_stderr, NULL);
2327
2328         mem_ctx = talloc_init("ntlm_auth");
2329         if (!mem_ctx) {
2330                 DEBUG(0, ("squid_stream: Failed to create talloc context\n"));
2331                 x_fprintf(x_stderr, "ERR\n");
2332                 exit(1);
2333         }
2334
2335         state = talloc_zero(mem_ctx, struct ntlm_auth_state);
2336         if (!state) {
2337                 DEBUG(0, ("squid_stream: Failed to talloc ntlm_auth_state\n"));
2338                 x_fprintf(x_stderr, "ERR\n");
2339                 exit(1);
2340         }
2341
2342         state->mem_ctx = mem_ctx;
2343         state->helper_mode = stdio_mode;
2344
2345         while(1) {
2346                 TALLOC_CTX *frame = talloc_stackframe();
2347                 manage_squid_request(state, fn);
2348                 TALLOC_FREE(frame);
2349         }
2350 }
2351
2352
2353 /* Authenticate a user with a challenge/response */
2354
2355 static bool check_auth_crap(void)
2356 {
2357         NTSTATUS nt_status;
2358         uint32 flags = 0;
2359         char lm_key[8];
2360         char user_session_key[16];
2361         char *hex_lm_key;
2362         char *hex_user_session_key;
2363         char *error_string;
2364         static uint8 zeros[16];
2365
2366         x_setbuf(x_stdout, NULL);
2367
2368         if (request_lm_key) 
2369                 flags |= WBFLAG_PAM_LMKEY;
2370
2371         if (request_user_session_key) 
2372                 flags |= WBFLAG_PAM_USER_SESSION_KEY;
2373
2374         flags |= WBFLAG_PAM_NT_STATUS_SQUASH;
2375
2376         nt_status = contact_winbind_auth_crap(opt_username, opt_domain, 
2377                                               opt_workstation,
2378                                               &opt_challenge, 
2379                                               &opt_lm_response, 
2380                                               &opt_nt_response, 
2381                                               flags,
2382                                               (unsigned char *)lm_key, 
2383                                               (unsigned char *)user_session_key, 
2384                                               &error_string, NULL);
2385
2386         if (!NT_STATUS_IS_OK(nt_status)) {
2387                 x_fprintf(x_stdout, "%s (0x%x)\n", 
2388                           error_string,
2389                           NT_STATUS_V(nt_status));
2390                 SAFE_FREE(error_string);
2391                 return False;
2392         }
2393
2394         if (request_lm_key 
2395             && (memcmp(zeros, lm_key, 
2396                        sizeof(lm_key)) != 0)) {
2397                 hex_lm_key = hex_encode_talloc(talloc_tos(), (const unsigned char *)lm_key,
2398                                         sizeof(lm_key));
2399                 x_fprintf(x_stdout, "LM_KEY: %s\n", hex_lm_key);
2400                 TALLOC_FREE(hex_lm_key);
2401         }
2402         if (request_user_session_key 
2403             && (memcmp(zeros, user_session_key, 
2404                        sizeof(user_session_key)) != 0)) {
2405                 hex_user_session_key = hex_encode_talloc(talloc_tos(), (const unsigned char *)user_session_key, 
2406                                                   sizeof(user_session_key));
2407                 x_fprintf(x_stdout, "NT_KEY: %s\n", hex_user_session_key);
2408                 TALLOC_FREE(hex_user_session_key);
2409         }
2410
2411         return True;
2412 }
2413
2414 /* Main program */
2415
2416 enum {
2417         OPT_USERNAME = 1000,
2418         OPT_DOMAIN,
2419         OPT_WORKSTATION,
2420         OPT_CHALLENGE,
2421         OPT_RESPONSE,
2422         OPT_LM,
2423         OPT_NT,
2424         OPT_PASSWORD,
2425         OPT_LM_KEY,
2426         OPT_USER_SESSION_KEY,
2427         OPT_DIAGNOSTICS,
2428         OPT_REQUIRE_MEMBERSHIP,
2429         OPT_USE_CACHED_CREDS,
2430         OPT_PAM_WINBIND_CONF
2431 };
2432
2433  int main(int argc, const char **argv)
2434 {
2435         TALLOC_CTX *frame = talloc_stackframe();
2436         int opt;
2437         static const char *helper_protocol;
2438         static int diagnostics;
2439
2440         static const char *hex_challenge;
2441         static const char *hex_lm_response;
2442         static const char *hex_nt_response;
2443
2444         poptContext pc;
2445
2446         /* NOTE: DO NOT change this interface without considering the implications!
2447            This is an external interface, which other programs will use to interact 
2448            with this helper.
2449         */
2450
2451         /* We do not use single-letter command abbreviations, because they harm future 
2452            interface stability. */
2453
2454         struct poptOption long_options[] = {
2455                 POPT_AUTOHELP
2456                 { "helper-protocol", 0, POPT_ARG_STRING, &helper_protocol, OPT_DOMAIN, "operate as a stdio-based helper", "helper protocol to use"},
2457                 { "username", 0, POPT_ARG_STRING, &opt_username, OPT_USERNAME, "username"},
2458                 { "domain", 0, POPT_ARG_STRING, &opt_domain, OPT_DOMAIN, "domain name"},
2459                 { "workstation", 0, POPT_ARG_STRING, &opt_workstation, OPT_WORKSTATION, "workstation"},
2460                 { "challenge", 0, POPT_ARG_STRING, &hex_challenge, OPT_CHALLENGE, "challenge (HEX encoded)"},
2461                 { "lm-response", 0, POPT_ARG_STRING, &hex_lm_response, OPT_LM, "LM Response to the challenge (HEX encoded)"},
2462                 { "nt-response", 0, POPT_ARG_STRING, &hex_nt_response, OPT_NT, "NT or NTLMv2 Response to the challenge (HEX encoded)"},
2463                 { "password", 0, POPT_ARG_STRING, &opt_password, OPT_PASSWORD, "User's plaintext password"},            
2464                 { "request-lm-key", 0, POPT_ARG_NONE, &request_lm_key, OPT_LM_KEY, "Retrieve LM session key"},
2465                 { "request-nt-key", 0, POPT_ARG_NONE, &request_user_session_key, OPT_USER_SESSION_KEY, "Retrieve User (NT) session key"},
2466                 { "use-cached-creds", 0, POPT_ARG_NONE, &use_cached_creds, OPT_USE_CACHED_CREDS, "Use cached credentials if no password is given"},
2467                 { "diagnostics", 0, POPT_ARG_NONE, &diagnostics,
2468                   OPT_DIAGNOSTICS,
2469                   "Perform diagnostics on the authentication chain"},
2470                 { "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" },
2471                 { "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" },
2472                 POPT_COMMON_CONFIGFILE
2473                 POPT_COMMON_VERSION
2474                 POPT_TABLEEND
2475         };
2476
2477         /* Samba client initialisation */
2478         load_case_tables();
2479
2480         dbf = x_stderr;
2481
2482         /* Parse options */
2483
2484         pc = poptGetContext("ntlm_auth", argc, argv, long_options, 0);
2485
2486         /* Parse command line options */
2487
2488         if (argc == 1) {
2489                 poptPrintHelp(pc, stderr, 0);
2490                 return 1;
2491         }
2492
2493         while((opt = poptGetNextOpt(pc)) != -1) {
2494                 /* Get generic config options like --configfile */
2495         }
2496
2497         poptFreeContext(pc);
2498
2499         if (!lp_load(get_dyn_CONFIGFILE(), True, False, False, True)) {
2500                 d_fprintf(stderr, "ntlm_auth: error opening config file %s. Error was %s\n",
2501                         get_dyn_CONFIGFILE(), strerror(errno));
2502                 exit(1);
2503         }
2504
2505         pc = poptGetContext(NULL, argc, (const char **)argv, long_options, 
2506                             POPT_CONTEXT_KEEP_FIRST);
2507
2508         while((opt = poptGetNextOpt(pc)) != -1) {
2509                 switch (opt) {
2510                 case OPT_CHALLENGE:
2511                         opt_challenge = strhex_to_data_blob(NULL, hex_challenge);
2512                         if (opt_challenge.length != 8) {
2513                                 x_fprintf(x_stderr, "hex decode of %s failed! (only got %d bytes)\n", 
2514                                           hex_challenge,
2515                                           (int)opt_challenge.length);
2516                                 exit(1);
2517                         }
2518                         break;
2519                 case OPT_LM: 
2520                         opt_lm_response = strhex_to_data_blob(NULL, hex_lm_response);
2521                         if (opt_lm_response.length != 24) {
2522                                 x_fprintf(x_stderr, "hex decode of %s failed! (only got %d bytes)\n", 
2523                                           hex_lm_response,
2524                                           (int)opt_lm_response.length);
2525                                 exit(1);
2526                         }
2527                         break;
2528
2529                 case OPT_NT: 
2530                         opt_nt_response = strhex_to_data_blob(NULL, hex_nt_response);
2531                         if (opt_nt_response.length < 24) {
2532                                 x_fprintf(x_stderr, "hex decode of %s failed! (only got %d bytes)\n", 
2533                                           hex_nt_response,
2534                                           (int)opt_nt_response.length);
2535                                 exit(1);
2536                         }
2537                         break;
2538
2539                 case OPT_REQUIRE_MEMBERSHIP:
2540                         if (StrnCaseCmp("S-", require_membership_of, 2) == 0) {
2541                                 require_membership_of_sid = require_membership_of;
2542                         }
2543                         break;
2544                 }
2545         }
2546
2547         if (opt_username) {
2548                 char *domain = SMB_STRDUP(opt_username);
2549                 char *p = strchr_m(domain, *lp_winbind_separator());
2550                 if (p) {
2551                         opt_username = p+1;
2552                         *p = '\0';
2553                         if (opt_domain && !strequal(opt_domain, domain)) {
2554                                 x_fprintf(x_stderr, "Domain specified in username (%s) "
2555                                         "doesn't match specified domain (%s)!\n\n",
2556                                         domain, opt_domain);
2557                                 poptPrintHelp(pc, stderr, 0);
2558                                 exit(1);
2559                         }
2560                         opt_domain = domain;
2561                 } else {
2562                         SAFE_FREE(domain);
2563                 }
2564         }
2565
2566         /* Note: if opt_domain is "" then send no domain */
2567         if (opt_domain == NULL) {
2568                 opt_domain = get_winbind_domain();
2569         }
2570
2571         if (opt_workstation == NULL) {
2572                 opt_workstation = "";
2573         }
2574
2575         if (helper_protocol) {
2576                 int i;
2577                 for (i=0; i<NUM_HELPER_MODES; i++) {
2578                         if (strcmp(helper_protocol, stdio_helper_protocols[i].name) == 0) {
2579                                 squid_stream(stdio_helper_protocols[i].mode, stdio_helper_protocols[i].fn);
2580                                 exit(0);
2581                         }
2582                 }
2583                 x_fprintf(x_stderr, "unknown helper protocol [%s]\n\nValid helper protools:\n\n", helper_protocol);
2584
2585                 for (i=0; i<NUM_HELPER_MODES; i++) {
2586                         x_fprintf(x_stderr, "%s\n", stdio_helper_protocols[i].name);
2587                 }
2588
2589                 exit(1);
2590         }
2591
2592         if (!opt_username || !*opt_username) {
2593                 x_fprintf(x_stderr, "username must be specified!\n\n");
2594                 poptPrintHelp(pc, stderr, 0);
2595                 exit(1);
2596         }
2597
2598         if (opt_challenge.length) {
2599                 if (!check_auth_crap()) {
2600                         exit(1);
2601                 }
2602                 exit(0);
2603         } 
2604
2605         if (!opt_password) {
2606                 opt_password = getpass("password: ");
2607         }
2608
2609         if (diagnostics) {
2610                 if (!diagnose_ntlm_auth()) {
2611                         return 1;
2612                 }
2613         } else {
2614                 fstring user;
2615
2616                 fstr_sprintf(user, "%s%c%s", opt_domain, winbind_separator(), opt_username);
2617                 if (!check_plaintext_auth(user, opt_password, True)) {
2618                         return 1;
2619                 }
2620         }
2621
2622         /* Exit code */
2623
2624         poptFreeContext(pc);
2625         TALLOC_FREE(frame);
2626         return 0;
2627 }