eb6dbc5bca1ed65517725119f8fa3a8063a63401
[jra/samba/.git] / source4 / auth / ntlmssp / ntlmssp_server.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 3.0
4    handle NLTMSSP, client server side parsing
5
6    Copyright (C) Andrew Tridgell      2001
7    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2001-2005
8    Copyright (C) Stefan Metzmacher 2005
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "auth/ntlmssp/ntlmssp.h"
26 #include "auth/ntlmssp/msrpc_parse.h"
27 #include "lib/crypto/crypto.h"
28 #include "system/filesys.h"
29 #include "libcli/auth/libcli_auth.h"
30 #include "auth/credentials/credentials.h"
31 #include "auth/gensec/gensec.h"
32 #include "auth/auth.h"
33 #include "param/param.h"
34
35 /** 
36  * Set a username on an NTLMSSP context - ensures it is talloc()ed 
37  *
38  */
39
40 static NTSTATUS ntlmssp_set_username(struct gensec_ntlmssp_state *gensec_ntlmssp_state, const char *user) 
41 {
42         if (!user) {
43                 /* it should be at least "" */
44                 DEBUG(1, ("NTLMSSP failed to set username - cannot accept NULL username\n"));
45                 return NT_STATUS_INVALID_PARAMETER;
46         }
47         gensec_ntlmssp_state->user = talloc_strdup(gensec_ntlmssp_state, user);
48         if (!gensec_ntlmssp_state->user) {
49                 return NT_STATUS_NO_MEMORY;
50         }
51         return NT_STATUS_OK;
52 }
53
54 /** 
55  * Set a domain on an NTLMSSP context - ensures it is talloc()ed 
56  *
57  */
58 static NTSTATUS ntlmssp_set_domain(struct gensec_ntlmssp_state *gensec_ntlmssp_state, const char *domain) 
59 {
60         gensec_ntlmssp_state->domain = talloc_strdup(gensec_ntlmssp_state, domain);
61         if (!gensec_ntlmssp_state->domain) {
62                 return NT_STATUS_NO_MEMORY;
63         }
64         return NT_STATUS_OK;
65 }
66
67 /** 
68  * Set a workstation on an NTLMSSP context - ensures it is talloc()ed 
69  *
70  */
71 static NTSTATUS ntlmssp_set_workstation(struct gensec_ntlmssp_state *gensec_ntlmssp_state, const char *workstation) 
72 {
73         gensec_ntlmssp_state->workstation = talloc_strdup(gensec_ntlmssp_state, workstation);
74         if (!gensec_ntlmssp_state->workstation) {
75                 return NT_STATUS_NO_MEMORY;
76         }
77         return NT_STATUS_OK;
78 }
79
80 /**
81  * Determine correct target name flags for reply, given server role 
82  * and negotiated flags
83  * 
84  * @param gensec_ntlmssp_state NTLMSSP State
85  * @param neg_flags The flags from the packet
86  * @param chal_flags The flags to be set in the reply packet
87  * @return The 'target name' string.
88  */
89
90 static const char *ntlmssp_target_name(struct gensec_ntlmssp_state *gensec_ntlmssp_state,
91                                        uint32_t neg_flags, uint32_t *chal_flags) 
92 {
93         if (neg_flags & NTLMSSP_REQUEST_TARGET) {
94                 *chal_flags |= NTLMSSP_CHAL_TARGET_INFO;
95                 *chal_flags |= NTLMSSP_REQUEST_TARGET;
96                 if (gensec_ntlmssp_state->server_role == ROLE_STANDALONE) {
97                         *chal_flags |= NTLMSSP_TARGET_TYPE_SERVER;
98                         return gensec_ntlmssp_state->server_name;
99                 } else {
100                         *chal_flags |= NTLMSSP_TARGET_TYPE_DOMAIN;
101                         return gensec_ntlmssp_state->domain;
102                 };
103         } else {
104                 return "";
105         }
106 }
107
108
109
110 /**
111  * Next state function for the Negotiate packet
112  * 
113  * @param gensec_security GENSEC state
114  * @param out_mem_ctx Memory context for *out
115  * @param in The request, as a DATA_BLOB.  reply.data must be NULL
116  * @param out The reply, as an allocated DATA_BLOB, caller to free.
117  * @return Errors or MORE_PROCESSING_REQUIRED if (normal) a reply is required. 
118  */
119
120 NTSTATUS ntlmssp_server_negotiate(struct gensec_security *gensec_security, 
121                                   TALLOC_CTX *out_mem_ctx, 
122                                   const DATA_BLOB in, DATA_BLOB *out) 
123 {
124         struct gensec_ntlmssp_state *gensec_ntlmssp_state = (struct gensec_ntlmssp_state *)gensec_security->private_data;
125         DATA_BLOB struct_blob;
126         char dnsname[MAXHOSTNAMELEN], dnsdomname[MAXHOSTNAMELEN];
127         const char *p;
128         uint32_t neg_flags = 0;
129         uint32_t ntlmssp_command, chal_flags;
130         const uint8_t *cryptkey;
131         const char *target_name;
132
133         /* parse the NTLMSSP packet */
134 #if 0
135         file_save("ntlmssp_negotiate.dat", request.data, request.length);
136 #endif
137
138         if (in.length) {
139                 if ((in.length < 16) || !msrpc_parse(out_mem_ctx, 
140                                  lp_iconv_convenience(gensec_security->lp_ctx),
141                                                          &in, "Cdd",
142                                                          "NTLMSSP",
143                                                          &ntlmssp_command,
144                                                          &neg_flags)) {
145                         DEBUG(1, ("ntlmssp_server_negotiate: failed to parse "
146                                 "NTLMSSP Negotiate of length %u:\n",
147                                 (unsigned int)in.length ));
148                         dump_data(2, in.data, in.length);
149                         return NT_STATUS_INVALID_PARAMETER;
150                 }
151                 debug_ntlmssp_flags(neg_flags);
152         }
153         
154         ntlmssp_handle_neg_flags(gensec_ntlmssp_state, neg_flags, gensec_ntlmssp_state->allow_lm_key);
155
156         /* Ask our caller what challenge they would like in the packet */
157         cryptkey = gensec_ntlmssp_state->get_challenge(gensec_ntlmssp_state);
158
159         /* Check if we may set the challenge */
160         if (!gensec_ntlmssp_state->may_set_challenge(gensec_ntlmssp_state)) {
161                 gensec_ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_NTLM2;
162         }
163
164         /* The flags we send back are not just the negotiated flags,
165          * they are also 'what is in this packet'.  Therfore, we
166          * operate on 'chal_flags' from here on 
167          */
168
169         chal_flags = gensec_ntlmssp_state->neg_flags;
170
171         /* get the right name to fill in as 'target' */
172         target_name = ntlmssp_target_name(gensec_ntlmssp_state, 
173                                           neg_flags, &chal_flags); 
174         if (target_name == NULL) 
175                 return NT_STATUS_INVALID_PARAMETER;
176
177         gensec_ntlmssp_state->chal = data_blob_talloc(gensec_ntlmssp_state, cryptkey, 8);
178         gensec_ntlmssp_state->internal_chal = data_blob_talloc(gensec_ntlmssp_state, cryptkey, 8);
179
180         dnsname[0] = '\0';
181         if (gethostname(dnsname, sizeof(dnsname)) == -1) {
182                 DEBUG(0,("gethostname failed\n"));
183                 return NT_STATUS_UNSUCCESSFUL;
184         }
185
186         /* This should be a 'netbios domain -> DNS domain' mapping */
187         p = strchr(dnsname, '.');
188         if (p != NULL) {
189                 safe_strcpy(dnsdomname, p+1, sizeof(dnsdomname));
190                 strlower_m(dnsdomname);
191         } else {
192                 dnsdomname[0] = '\0';
193         }
194         
195         /* This creates the 'blob' of names that appears at the end of the packet */
196         if (chal_flags & NTLMSSP_CHAL_TARGET_INFO) 
197         {
198                 const char *target_name_dns = "";
199                 if (chal_flags |= NTLMSSP_TARGET_TYPE_DOMAIN) {
200                         target_name_dns = dnsdomname;
201                 } else if (chal_flags |= NTLMSSP_TARGET_TYPE_SERVER) {
202                         target_name_dns = dnsname;
203                 }
204
205                 msrpc_gen(out_mem_ctx, 
206                           lp_iconv_convenience(gensec_security->lp_ctx),
207                           &struct_blob, "aaaaa",
208                           NTLMSSP_NAME_TYPE_DOMAIN, target_name,
209                           NTLMSSP_NAME_TYPE_SERVER, gensec_ntlmssp_state->server_name,
210                           NTLMSSP_NAME_TYPE_DOMAIN_DNS, dnsdomname,
211                           NTLMSSP_NAME_TYPE_SERVER_DNS, dnsname,
212                           0, "");
213         } else {
214                 struct_blob = data_blob(NULL, 0);
215         }
216
217         {
218                 /* Marshel the packet in the right format, be it unicode or ASCII */
219                 const char *gen_string;
220                 if (gensec_ntlmssp_state->unicode) {
221                         gen_string = "CdUdbddB";
222                 } else {
223                         gen_string = "CdAdbddB";
224                 }
225                 
226                 msrpc_gen(out_mem_ctx, 
227                           lp_iconv_convenience(gensec_security->lp_ctx),
228                           out, gen_string,
229                           "NTLMSSP", 
230                           NTLMSSP_CHALLENGE,
231                           target_name,
232                           chal_flags,
233                           cryptkey, 8,
234                           0, 0,
235                           struct_blob.data, struct_blob.length);
236         }
237                 
238         gensec_ntlmssp_state->expected_state = NTLMSSP_AUTH;
239
240         return NT_STATUS_MORE_PROCESSING_REQUIRED;
241 }
242
243 /**
244  * Next state function for the Authenticate packet
245  * 
246  * @param gensec_ntlmssp_state NTLMSSP State
247  * @param request The request, as a DATA_BLOB
248  * @return Errors or NT_STATUS_OK. 
249  */
250
251 static NTSTATUS ntlmssp_server_preauth(struct gensec_ntlmssp_state *gensec_ntlmssp_state,
252                                        const DATA_BLOB request) 
253 {
254         uint32_t ntlmssp_command, auth_flags;
255         NTSTATUS nt_status;
256
257         uint8_t session_nonce_hash[16];
258
259         const char *parse_string;
260         char *domain = NULL;
261         char *user = NULL;
262         char *workstation = NULL;
263
264 #if 0
265         file_save("ntlmssp_auth.dat", request.data, request.length);
266 #endif
267
268         if (gensec_ntlmssp_state->unicode) {
269                 parse_string = "CdBBUUUBd";
270         } else {
271                 parse_string = "CdBBAAABd";
272         }
273
274         /* zero these out */
275         data_blob_free(&gensec_ntlmssp_state->lm_resp);
276         data_blob_free(&gensec_ntlmssp_state->nt_resp);
277         data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
278
279         gensec_ntlmssp_state->user = NULL;
280         gensec_ntlmssp_state->domain = NULL;
281         gensec_ntlmssp_state->workstation = NULL;
282
283         /* now the NTLMSSP encoded auth hashes */
284         if (!msrpc_parse(gensec_ntlmssp_state, 
285                          lp_iconv_convenience(gensec_ntlmssp_state->gensec_security->lp_ctx),
286                          &request, parse_string,
287                          "NTLMSSP", 
288                          &ntlmssp_command, 
289                          &gensec_ntlmssp_state->lm_resp,
290                          &gensec_ntlmssp_state->nt_resp,
291                          &domain, 
292                          &user, 
293                          &workstation,
294                          &gensec_ntlmssp_state->encrypted_session_key,
295                          &auth_flags)) {
296                 DEBUG(10, ("ntlmssp_server_auth: failed to parse NTLMSSP (nonfatal):\n"));
297                 dump_data(10, request.data, request.length);
298
299                 /* zero this out */
300                 data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
301                 auth_flags = 0;
302                 
303                 /* Try again with a shorter string (Win9X truncates this packet) */
304                 if (gensec_ntlmssp_state->unicode) {
305                         parse_string = "CdBBUUU";
306                 } else {
307                         parse_string = "CdBBAAA";
308                 }
309
310                 /* now the NTLMSSP encoded auth hashes */
311                 if (!msrpc_parse(gensec_ntlmssp_state, 
312                                  lp_iconv_convenience(gensec_ntlmssp_state->gensec_security->lp_ctx),
313                                  &request, parse_string,
314                                  "NTLMSSP", 
315                                  &ntlmssp_command, 
316                                  &gensec_ntlmssp_state->lm_resp,
317                                  &gensec_ntlmssp_state->nt_resp,
318                                  &domain, 
319                                  &user, 
320                                  &workstation)) {
321                         DEBUG(1, ("ntlmssp_server_auth: failed to parse NTLMSSP:\n"));
322                         dump_data(2, request.data, request.length);
323
324                         return NT_STATUS_INVALID_PARAMETER;
325                 }
326         }
327
328         if (auth_flags)
329                 ntlmssp_handle_neg_flags(gensec_ntlmssp_state, auth_flags, gensec_ntlmssp_state->allow_lm_key);
330
331         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_domain(gensec_ntlmssp_state, domain))) {
332                 /* zero this out */
333                 data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
334                 return nt_status;
335         }
336
337         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_username(gensec_ntlmssp_state, user))) {
338                 /* zero this out */
339                 data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
340                 return nt_status;
341         }
342
343         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_set_workstation(gensec_ntlmssp_state, workstation))) {
344                 /* zero this out */
345                 data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
346                 return nt_status;
347         }
348
349         DEBUG(3,("Got user=[%s] domain=[%s] workstation=[%s] len1=%lu len2=%lu\n",
350                  gensec_ntlmssp_state->user, gensec_ntlmssp_state->domain, gensec_ntlmssp_state->workstation, (unsigned long)gensec_ntlmssp_state->lm_resp.length, (unsigned long)gensec_ntlmssp_state->nt_resp.length));
351
352 #if 0
353         file_save("nthash1.dat",  &gensec_ntlmssp_state->nt_resp.data,  &gensec_ntlmssp_state->nt_resp.length);
354         file_save("lmhash1.dat",  &gensec_ntlmssp_state->lm_resp.data,  &gensec_ntlmssp_state->lm_resp.length);
355 #endif
356
357         /* NTLM2 uses a 'challenge' that is made of up both the server challenge, and a 
358            client challenge 
359         
360            However, the NTLM2 flag may still be set for the real NTLMv2 logins, be careful.
361         */
362         if (gensec_ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_NTLM2) {
363                 if (gensec_ntlmssp_state->nt_resp.length == 24 && gensec_ntlmssp_state->lm_resp.length == 24) {
364                         struct MD5Context md5_session_nonce_ctx;
365                         SMB_ASSERT(gensec_ntlmssp_state->internal_chal.data 
366                                    && gensec_ntlmssp_state->internal_chal.length == 8);
367                         
368                         gensec_ntlmssp_state->doing_ntlm2 = true;
369
370                         memcpy(gensec_ntlmssp_state->crypt.ntlm2.session_nonce, gensec_ntlmssp_state->internal_chal.data, 8);
371                         memcpy(&gensec_ntlmssp_state->crypt.ntlm2.session_nonce[8], gensec_ntlmssp_state->lm_resp.data, 8);
372                         
373                         MD5Init(&md5_session_nonce_ctx);
374                         MD5Update(&md5_session_nonce_ctx, gensec_ntlmssp_state->crypt.ntlm2.session_nonce, 16);
375                         MD5Final(session_nonce_hash, &md5_session_nonce_ctx);
376                         
377                         gensec_ntlmssp_state->chal = data_blob_talloc(gensec_ntlmssp_state, 
378                                                                session_nonce_hash, 8);
379
380                         /* LM response is no longer useful, zero it out */
381                         data_blob_free(&gensec_ntlmssp_state->lm_resp);
382
383                         /* We changed the effective challenge - set it */
384                         if (!NT_STATUS_IS_OK(nt_status = 
385                                              gensec_ntlmssp_state->set_challenge(gensec_ntlmssp_state, 
386                                                                                  &gensec_ntlmssp_state->chal))) {
387                                 /* zero this out */
388                                 data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
389                                 return nt_status;
390                         }
391
392                         /* LM Key is incompatible... */
393                         gensec_ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_LM_KEY;
394                 }
395         }
396         return NT_STATUS_OK;
397 }
398
399 /**
400  * Next state function for the Authenticate packet 
401  * (after authentication - figures out the session keys etc)
402  * 
403  * @param gensec_ntlmssp_state NTLMSSP State
404  * @return Errors or NT_STATUS_OK. 
405  */
406
407 static NTSTATUS ntlmssp_server_postauth(struct gensec_security *gensec_security, 
408                                         DATA_BLOB *user_session_key, 
409                                         DATA_BLOB *lm_session_key) 
410 {
411         struct gensec_ntlmssp_state *gensec_ntlmssp_state = (struct gensec_ntlmssp_state *)gensec_security->private_data;
412         NTSTATUS nt_status;
413         DATA_BLOB session_key = data_blob(NULL, 0);
414
415         if (user_session_key)
416                 dump_data_pw("USER session key:\n", user_session_key->data, user_session_key->length);
417
418         if (lm_session_key) 
419                 dump_data_pw("LM first-8:\n", lm_session_key->data, lm_session_key->length);
420
421         /* Handle the different session key derivation for NTLM2 */
422         if (gensec_ntlmssp_state->doing_ntlm2) {
423                 if (user_session_key && user_session_key->data && user_session_key->length == 16) {
424                         session_key = data_blob_talloc(gensec_ntlmssp_state, NULL, 16);
425                         hmac_md5(user_session_key->data, gensec_ntlmssp_state->crypt.ntlm2.session_nonce, 
426                                  sizeof(gensec_ntlmssp_state->crypt.ntlm2.session_nonce), session_key.data);
427                         DEBUG(10,("ntlmssp_server_auth: Created NTLM2 session key.\n"));
428                         dump_data_pw("NTLM2 session key:\n", session_key.data, session_key.length);
429                         
430                 } else {
431                         DEBUG(10,("ntlmssp_server_auth: Failed to create NTLM2 session key.\n"));
432                         session_key = data_blob(NULL, 0);
433                 }
434         } else if ((gensec_ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_LM_KEY) 
435                 /* Ensure we can never get here on NTLMv2 */
436                 && (gensec_ntlmssp_state->nt_resp.length == 0 || gensec_ntlmssp_state->nt_resp.length == 24)) {
437
438                 if (lm_session_key && lm_session_key->data && lm_session_key->length >= 8) {
439                         if (gensec_ntlmssp_state->lm_resp.data && gensec_ntlmssp_state->lm_resp.length == 24) {
440                                 session_key = data_blob_talloc(gensec_ntlmssp_state, NULL, 16);
441                                 SMBsesskeygen_lm_sess_key(lm_session_key->data, gensec_ntlmssp_state->lm_resp.data, 
442                                                           session_key.data);
443                                 DEBUG(10,("ntlmssp_server_auth: Created NTLM session key.\n"));
444                                 dump_data_pw("LM session key:\n", session_key.data, session_key.length);
445                         } else {
446                                 
447                                 /* When there is no LM response, just use zeros */
448                                 static const uint8_t zeros[24];
449                                 session_key = data_blob_talloc(gensec_ntlmssp_state, NULL, 16);
450                                 SMBsesskeygen_lm_sess_key(zeros, zeros, 
451                                                           session_key.data);
452                                 DEBUG(10,("ntlmssp_server_auth: Created NTLM session key.\n"));
453                                 dump_data_pw("LM session key:\n", session_key.data, session_key.length);
454                         }
455                 } else {
456                         /* LM Key not selected */
457                         gensec_ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_LM_KEY;
458
459                         DEBUG(10,("ntlmssp_server_auth: Failed to create NTLM session key.\n"));
460                         session_key = data_blob(NULL, 0);
461                 }
462
463         } else if (user_session_key && user_session_key->data) {
464                 session_key = *user_session_key;
465                 DEBUG(10,("ntlmssp_server_auth: Using unmodified nt session key.\n"));
466                 dump_data_pw("unmodified session key:\n", session_key.data, session_key.length);
467
468                 /* LM Key not selected */
469                 gensec_ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_LM_KEY;
470
471         } else if (lm_session_key && lm_session_key->data) {
472                 /* Very weird to have LM key, but no user session key, but anyway.. */
473                 session_key = *lm_session_key;
474                 DEBUG(10,("ntlmssp_server_auth: Using unmodified lm session key.\n"));
475                 dump_data_pw("unmodified session key:\n", session_key.data, session_key.length);
476
477                 /* LM Key not selected */
478                 gensec_ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_LM_KEY;
479
480         } else {
481                 DEBUG(10,("ntlmssp_server_auth: Failed to create unmodified session key.\n"));
482                 session_key = data_blob(NULL, 0);
483
484                 /* LM Key not selected */
485                 gensec_ntlmssp_state->neg_flags &= ~NTLMSSP_NEGOTIATE_LM_KEY;
486         }
487
488         /* With KEY_EXCH, the client supplies the proposed session key, 
489            but encrypts it with the long-term key */
490         if (gensec_ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_KEY_EXCH) {
491                 if (!gensec_ntlmssp_state->encrypted_session_key.data 
492                     || gensec_ntlmssp_state->encrypted_session_key.length != 16) {
493                         data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
494                         DEBUG(1, ("Client-supplied KEY_EXCH session key was of invalid length (%u)!\n", 
495                                   (unsigned)gensec_ntlmssp_state->encrypted_session_key.length));
496                         return NT_STATUS_INVALID_PARAMETER;
497                 } else if (!session_key.data || session_key.length != 16) {
498                         DEBUG(5, ("server session key is invalid (len == %u), cannot do KEY_EXCH!\n", 
499                                   (unsigned)session_key.length));
500                         gensec_ntlmssp_state->session_key = session_key;
501                 } else {
502                         dump_data_pw("KEY_EXCH session key (enc):\n", 
503                                      gensec_ntlmssp_state->encrypted_session_key.data, 
504                                      gensec_ntlmssp_state->encrypted_session_key.length);
505                         arcfour_crypt(gensec_ntlmssp_state->encrypted_session_key.data, 
506                                       session_key.data, 
507                                       gensec_ntlmssp_state->encrypted_session_key.length);
508                         gensec_ntlmssp_state->session_key = data_blob_talloc(gensec_ntlmssp_state, 
509                                                                       gensec_ntlmssp_state->encrypted_session_key.data, 
510                                                                       gensec_ntlmssp_state->encrypted_session_key.length);
511                         dump_data_pw("KEY_EXCH session key:\n", gensec_ntlmssp_state->encrypted_session_key.data, 
512                                      gensec_ntlmssp_state->encrypted_session_key.length);
513                 }
514         } else {
515                 gensec_ntlmssp_state->session_key = session_key;
516         }
517
518         /* keep the session key around on the new context */
519         talloc_steal(gensec_ntlmssp_state, session_key.data);
520
521         if ((gensec_security->want_features & GENSEC_FEATURE_SIGN)
522             || (gensec_security->want_features & GENSEC_FEATURE_SEAL)) {
523                 nt_status = ntlmssp_sign_init(gensec_ntlmssp_state);
524         } else {
525                 nt_status = NT_STATUS_OK;
526         }
527
528         data_blob_free(&gensec_ntlmssp_state->encrypted_session_key);
529         
530         /* allow arbitarily many authentications, but watch that this will cause a 
531            memory leak, until the gensec_ntlmssp_state is shutdown 
532         */
533
534         if (gensec_ntlmssp_state->server_multiple_authentications) {
535                 gensec_ntlmssp_state->expected_state = NTLMSSP_AUTH;
536         } else {
537                 gensec_ntlmssp_state->expected_state = NTLMSSP_DONE;
538         }
539
540         return nt_status;
541 }
542
543
544 /**
545  * Next state function for the Authenticate packet
546  * 
547  * @param gensec_security GENSEC state
548  * @param out_mem_ctx Memory context for *out
549  * @param in The request, as a DATA_BLOB.  reply.data must be NULL
550  * @param out The reply, as an allocated DATA_BLOB, caller to free.
551  * @return Errors or NT_STATUS_OK if authentication sucessful
552  */
553
554 NTSTATUS ntlmssp_server_auth(struct gensec_security *gensec_security, 
555                              TALLOC_CTX *out_mem_ctx, 
556                              const DATA_BLOB in, DATA_BLOB *out) 
557 {       
558         struct gensec_ntlmssp_state *gensec_ntlmssp_state = (struct gensec_ntlmssp_state *)gensec_security->private_data;
559         DATA_BLOB user_session_key = data_blob(NULL, 0);
560         DATA_BLOB lm_session_key = data_blob(NULL, 0);
561         NTSTATUS nt_status;
562
563         TALLOC_CTX *mem_ctx = talloc_new(out_mem_ctx);
564         if (!mem_ctx) {
565                 return NT_STATUS_NO_MEMORY;
566         }
567
568         /* zero the outbound NTLMSSP packet */
569         *out = data_blob_talloc(out_mem_ctx, NULL, 0);
570
571         if (!NT_STATUS_IS_OK(nt_status = ntlmssp_server_preauth(gensec_ntlmssp_state, in))) {
572                 talloc_free(mem_ctx);
573                 return nt_status;
574         }
575
576         /*
577          * Note we don't check here for NTLMv2 auth settings. If NTLMv2 auth
578          * is required (by "ntlm auth = no" and "lm auth = no" being set in the
579          * smb.conf file) and no NTLMv2 response was sent then the password check
580          * will fail here. JRA.
581          */
582
583         /* Finally, actually ask if the password is OK */
584
585         if (!NT_STATUS_IS_OK(nt_status = gensec_ntlmssp_state->check_password(gensec_ntlmssp_state, mem_ctx,
586                                                                               &user_session_key, &lm_session_key))) {
587                 talloc_free(mem_ctx);
588                 return nt_status;
589         }
590         
591         if (gensec_security->want_features
592             & (GENSEC_FEATURE_SIGN|GENSEC_FEATURE_SEAL|GENSEC_FEATURE_SESSION_KEY)) {
593                 nt_status = ntlmssp_server_postauth(gensec_security, &user_session_key, &lm_session_key);
594                 talloc_free(mem_ctx);
595                 return nt_status;
596         } else {
597                 gensec_ntlmssp_state->session_key = data_blob(NULL, 0);
598                 talloc_free(mem_ctx);
599                 return NT_STATUS_OK;
600         }
601 }
602
603 /**
604  * Return the challenge as determined by the authentication subsystem 
605  * @return an 8 byte random challenge
606  */
607
608 static const uint8_t *auth_ntlmssp_get_challenge(const struct gensec_ntlmssp_state *gensec_ntlmssp_state)
609 {
610         NTSTATUS status;
611         const uint8_t *chal;
612
613         status = auth_get_challenge(gensec_ntlmssp_state->auth_context, &chal);
614         if (!NT_STATUS_IS_OK(status)) {
615                 return NULL;
616         }
617
618         return chal;
619 }
620
621 /**
622  * Some authentication methods 'fix' the challenge, so we may not be able to set it
623  *
624  * @return If the effective challenge used by the auth subsystem may be modified
625  */
626 static bool auth_ntlmssp_may_set_challenge(const struct gensec_ntlmssp_state *gensec_ntlmssp_state)
627 {
628         return auth_challenge_may_be_modified(gensec_ntlmssp_state->auth_context);
629 }
630
631 /**
632  * NTLM2 authentication modifies the effective challenge, 
633  * @param challenge The new challenge value
634  */
635 static NTSTATUS auth_ntlmssp_set_challenge(struct gensec_ntlmssp_state *gensec_ntlmssp_state, DATA_BLOB *challenge)
636 {
637         NTSTATUS nt_status;
638         struct auth_context *auth_context = gensec_ntlmssp_state->auth_context;
639         const uint8_t *chal;
640
641         if (challenge->length != 8) {
642                 return NT_STATUS_INVALID_PARAMETER;
643         }
644
645         chal = challenge->data;
646
647         nt_status = auth_context_set_challenge(auth_context, chal, "NTLMSSP callback (NTLM2)");
648
649         return nt_status;
650 }
651
652 /**
653  * Check the password on an NTLMSSP login.  
654  *
655  * Return the session keys used on the connection.
656  */
657
658 static NTSTATUS auth_ntlmssp_check_password(struct gensec_ntlmssp_state *gensec_ntlmssp_state, 
659                                             TALLOC_CTX *mem_ctx, 
660                                             DATA_BLOB *user_session_key, DATA_BLOB *lm_session_key) 
661 {
662         NTSTATUS nt_status;
663         struct auth_usersupplied_info *user_info = talloc(mem_ctx, struct auth_usersupplied_info);
664         if (!user_info) {
665                 return NT_STATUS_NO_MEMORY;
666         }
667
668         user_info->logon_parameters = MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT | MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT;
669         user_info->flags = 0;
670         user_info->mapped_state = false;
671         user_info->client.account_name = gensec_ntlmssp_state->user;
672         user_info->client.domain_name = gensec_ntlmssp_state->domain;
673         user_info->workstation_name = gensec_ntlmssp_state->workstation;
674         user_info->remote_host = gensec_get_peer_addr(gensec_ntlmssp_state->gensec_security);
675
676         user_info->password_state = AUTH_PASSWORD_RESPONSE;
677         user_info->password.response.lanman = gensec_ntlmssp_state->lm_resp;
678         user_info->password.response.lanman.data = talloc_steal(user_info, gensec_ntlmssp_state->lm_resp.data);
679         user_info->password.response.nt = gensec_ntlmssp_state->nt_resp;
680         user_info->password.response.nt.data = talloc_steal(user_info, gensec_ntlmssp_state->nt_resp.data);
681
682         nt_status = auth_check_password(gensec_ntlmssp_state->auth_context, mem_ctx,
683                                         user_info, &gensec_ntlmssp_state->server_info);
684         talloc_free(user_info);
685         NT_STATUS_NOT_OK_RETURN(nt_status);
686
687         talloc_steal(gensec_ntlmssp_state, gensec_ntlmssp_state->server_info);
688
689         if (gensec_ntlmssp_state->server_info->user_session_key.length) {
690                 DEBUG(10, ("Got NT session key of length %u\n", 
691                            (unsigned)gensec_ntlmssp_state->server_info->user_session_key.length));
692                 if (!talloc_reference(mem_ctx, gensec_ntlmssp_state->server_info->user_session_key.data)) {
693                         return NT_STATUS_NO_MEMORY;
694                 }
695
696                 *user_session_key = gensec_ntlmssp_state->server_info->user_session_key;
697         }
698         if (gensec_ntlmssp_state->server_info->lm_session_key.length) {
699                 DEBUG(10, ("Got LM session key of length %u\n", 
700                            (unsigned)gensec_ntlmssp_state->server_info->lm_session_key.length));
701                 if (!talloc_reference(mem_ctx, gensec_ntlmssp_state->server_info->lm_session_key.data)) {
702                         return NT_STATUS_NO_MEMORY;
703                 }
704
705                 *lm_session_key = gensec_ntlmssp_state->server_info->lm_session_key;
706         }
707         return nt_status;
708 }
709
710 /** 
711  * Return the credentials of a logged on user, including session keys
712  * etc.
713  *
714  * Only valid after a successful authentication
715  *
716  * May only be called once per authentication.
717  *
718  */
719
720 NTSTATUS gensec_ntlmssp_session_info(struct gensec_security *gensec_security,
721                                      struct auth_session_info **session_info) 
722 {
723         NTSTATUS nt_status;
724         struct gensec_ntlmssp_state *gensec_ntlmssp_state = (struct gensec_ntlmssp_state *)gensec_security->private_data;
725
726         nt_status = auth_generate_session_info(gensec_ntlmssp_state, gensec_security->lp_ctx, gensec_ntlmssp_state->server_info, session_info);
727         NT_STATUS_NOT_OK_RETURN(nt_status);
728
729         (*session_info)->session_key = data_blob_talloc(*session_info, 
730                                                         gensec_ntlmssp_state->session_key.data,
731                                                         gensec_ntlmssp_state->session_key.length);
732
733         return NT_STATUS_OK;
734 }
735
736 /**
737  * Start NTLMSSP on the server side 
738  *
739  */
740 NTSTATUS gensec_ntlmssp_server_start(struct gensec_security *gensec_security)
741 {
742         NTSTATUS nt_status;
743         struct gensec_ntlmssp_state *gensec_ntlmssp_state;
744
745         nt_status = gensec_ntlmssp_start(gensec_security);
746         NT_STATUS_NOT_OK_RETURN(nt_status);
747
748         gensec_ntlmssp_state = (struct gensec_ntlmssp_state *)gensec_security->private_data;
749
750         gensec_ntlmssp_state->role = NTLMSSP_SERVER;
751
752         gensec_ntlmssp_state->workstation = NULL;
753         gensec_ntlmssp_state->server_name = lp_netbios_name(gensec_security->lp_ctx);
754
755         gensec_ntlmssp_state->domain = lp_workgroup(gensec_security->lp_ctx);
756
757         gensec_ntlmssp_state->expected_state = NTLMSSP_NEGOTIATE;
758
759         gensec_ntlmssp_state->allow_lm_key = (lp_lanman_auth(gensec_security->lp_ctx) 
760                                           && lp_parm_bool(gensec_security->lp_ctx, NULL, "ntlmssp_server", "allow_lm_key", false));
761
762         gensec_ntlmssp_state->server_multiple_authentications = false;
763         
764         gensec_ntlmssp_state->neg_flags = 
765                 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_UNKNOWN_02000000;
766
767         gensec_ntlmssp_state->lm_resp = data_blob(NULL, 0);
768         gensec_ntlmssp_state->nt_resp = data_blob(NULL, 0);
769         gensec_ntlmssp_state->encrypted_session_key = data_blob(NULL, 0);
770
771         if (lp_parm_bool(gensec_security->lp_ctx, NULL, "ntlmssp_server", "128bit", true)) {
772                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_128;               
773         }
774
775         if (lp_parm_bool(gensec_security->lp_ctx, NULL, "ntlmssp_server", "56bit", true)) {
776                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_56;                
777         }
778
779         if (lp_parm_bool(gensec_security->lp_ctx, NULL, "ntlmssp_server", "keyexchange", true)) {
780                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_KEY_EXCH;          
781         }
782
783         if (lp_parm_bool(gensec_security->lp_ctx, NULL, "ntlmssp_server", "alwayssign", true)) {
784                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN;               
785         }
786
787         if (lp_parm_bool(gensec_security->lp_ctx, NULL, "ntlmssp_server", "ntlm2", true)) {
788                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_NTLM2;             
789         }
790
791         if (gensec_security->want_features & GENSEC_FEATURE_SIGN) {
792                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_SIGN;
793         }
794         if (gensec_security->want_features & GENSEC_FEATURE_SEAL) {
795                 gensec_ntlmssp_state->neg_flags |= NTLMSSP_NEGOTIATE_SEAL;
796         }
797
798         nt_status = auth_context_create(gensec_ntlmssp_state, 
799                                         gensec_security->event_ctx,
800                                         gensec_security->msg_ctx,
801                                         gensec_security->lp_ctx,
802                                         &gensec_ntlmssp_state->auth_context);
803         NT_STATUS_NOT_OK_RETURN(nt_status);
804
805         gensec_ntlmssp_state->get_challenge = auth_ntlmssp_get_challenge;
806         gensec_ntlmssp_state->may_set_challenge = auth_ntlmssp_may_set_challenge;
807         gensec_ntlmssp_state->set_challenge = auth_ntlmssp_set_challenge;
808         gensec_ntlmssp_state->check_password = auth_ntlmssp_check_password;
809         gensec_ntlmssp_state->server_role = lp_server_role(gensec_security->lp_ctx);
810
811         return NT_STATUS_OK;
812 }
813