GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / fs / cifs / sess.c
blob67ea29b6a6747f83eda556ed35f1f42b01b5a14e
1 /*
2 * fs/cifs/sess.c
4 * SMB/CIFS session setup handling routines
6 * Copyright (c) International Business Machines Corp., 2006, 2009
7 * Author(s): Steve French (sfrench@us.ibm.com)
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "cifspdu.h"
25 #include "cifsglob.h"
26 #include "cifsproto.h"
27 #include "cifs_unicode.h"
28 #include "cifs_debug.h"
29 #include "ntlmssp.h"
30 #include "nterr.h"
31 #include <linux/utsname.h>
32 #include <linux/slab.h>
33 #include "cifs_spnego.h"
35 extern void SMBNTencrypt(unsigned char *passwd, unsigned char *c8,
36 unsigned char *p24);
39 * Checks if this is the first smb session to be reconnected after
40 * the socket has been reestablished (so we know whether to use vc 0).
41 * Called while holding the cifs_tcp_ses_lock, so do not block
43 static bool is_first_ses_reconnect(struct cifsSesInfo *ses)
45 struct list_head *tmp;
46 struct cifsSesInfo *tmp_ses;
48 list_for_each(tmp, &ses->server->smb_ses_list) {
49 tmp_ses = list_entry(tmp, struct cifsSesInfo,
50 smb_ses_list);
51 if (tmp_ses->need_reconnect == false)
52 return false;
54 /* could not find a session that was already connected,
55 this must be the first one we are reconnecting */
56 return true;
60 * vc number 0 is treated specially by some servers, and should be the
61 * first one we request. After that we can use vcnumbers up to maxvcs,
62 * one for each smb session (some Windows versions set maxvcs incorrectly
63 * so maxvc=1 can be ignored). If we have too many vcs, we can reuse
64 * any vc but zero (some servers reset the connection on vcnum zero)
67 static __le16 get_next_vcnum(struct cifsSesInfo *ses)
69 __u16 vcnum = 0;
70 struct list_head *tmp;
71 struct cifsSesInfo *tmp_ses;
72 __u16 max_vcs = ses->server->max_vcs;
73 __u16 i;
74 int free_vc_found = 0;
76 /* Quoting the MS-SMB specification: "Windows-based SMB servers set this
77 field to one but do not enforce this limit, which allows an SMB client
78 to establish more virtual circuits than allowed by this value ... but
79 other server implementations can enforce this limit." */
80 if (max_vcs < 2)
81 max_vcs = 0xFFFF;
83 write_lock(&cifs_tcp_ses_lock);
84 if ((ses->need_reconnect) && is_first_ses_reconnect(ses))
85 goto get_vc_num_exit; /* vcnum will be zero */
86 for (i = ses->server->srv_count - 1; i < max_vcs; i++) {
87 if (i == 0) /* this is the only connection, use vc 0 */
88 break;
90 free_vc_found = 1;
92 list_for_each(tmp, &ses->server->smb_ses_list) {
93 tmp_ses = list_entry(tmp, struct cifsSesInfo,
94 smb_ses_list);
95 if (tmp_ses->vcnum == i) {
96 free_vc_found = 0;
97 break; /* found duplicate, try next vcnum */
100 if (free_vc_found)
101 break; /* we found a vcnumber that will work - use it */
104 if (i == 0)
105 vcnum = 0; /* for most common case, ie if one smb session, use
106 vc zero. Also for case when no free vcnum, zero
107 is safest to send (some clients only send zero) */
108 else if (free_vc_found == 0)
109 vcnum = 1; /* we can not reuse vc=0 safely, since some servers
110 reset all uids on that, but 1 is ok. */
111 else
112 vcnum = i;
113 ses->vcnum = vcnum;
114 get_vc_num_exit:
115 write_unlock(&cifs_tcp_ses_lock);
117 return cpu_to_le16(vcnum);
120 static __u32 cifs_ssetup_hdr(struct cifsSesInfo *ses, SESSION_SETUP_ANDX *pSMB)
122 __u32 capabilities = 0;
124 /* init fields common to all four types of SessSetup */
125 /* Note that offsets for first seven fields in req struct are same */
126 /* in CIFS Specs so does not matter which of 3 forms of struct */
127 /* that we use in next few lines */
128 /* Note that header is initialized to zero in header_assemble */
129 pSMB->req.AndXCommand = 0xFF;
130 pSMB->req.MaxBufferSize = cpu_to_le16(ses->server->maxBuf);
131 pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq);
132 pSMB->req.VcNumber = get_next_vcnum(ses);
134 /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */
136 /* BB verify whether signing required on neg or just on auth frame
137 (and NTLM case) */
139 capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS |
140 CAP_LARGE_WRITE_X | CAP_LARGE_READ_X;
142 if (ses->server->secMode &
143 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
144 pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
146 if (ses->capabilities & CAP_UNICODE) {
147 pSMB->req.hdr.Flags2 |= SMBFLG2_UNICODE;
148 capabilities |= CAP_UNICODE;
150 if (ses->capabilities & CAP_STATUS32) {
151 pSMB->req.hdr.Flags2 |= SMBFLG2_ERR_STATUS;
152 capabilities |= CAP_STATUS32;
154 if (ses->capabilities & CAP_DFS) {
155 pSMB->req.hdr.Flags2 |= SMBFLG2_DFS;
156 capabilities |= CAP_DFS;
158 if (ses->capabilities & CAP_UNIX)
159 capabilities |= CAP_UNIX;
161 return capabilities;
164 static void
165 unicode_oslm_strings(char **pbcc_area, const struct nls_table *nls_cp)
167 char *bcc_ptr = *pbcc_area;
168 int bytes_ret = 0;
170 /* Copy OS version */
171 bytes_ret = cifs_strtoUCS((__le16 *)bcc_ptr, "Linux version ", 32,
172 nls_cp);
173 bcc_ptr += 2 * bytes_ret;
174 bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, init_utsname()->release,
175 32, nls_cp);
176 bcc_ptr += 2 * bytes_ret;
177 bcc_ptr += 2; /* trailing null */
179 bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS,
180 32, nls_cp);
181 bcc_ptr += 2 * bytes_ret;
182 bcc_ptr += 2; /* trailing null */
184 *pbcc_area = bcc_ptr;
187 static void unicode_domain_string(char **pbcc_area, struct cifsSesInfo *ses,
188 const struct nls_table *nls_cp)
190 char *bcc_ptr = *pbcc_area;
191 int bytes_ret = 0;
193 /* copy domain */
194 if (ses->domainName == NULL) {
195 /* Sending null domain better than using a bogus domain name (as
196 we did briefly in 2.6.18) since server will use its default */
197 *bcc_ptr = 0;
198 *(bcc_ptr+1) = 0;
199 bytes_ret = 0;
200 } else
201 bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, ses->domainName,
202 256, nls_cp);
203 bcc_ptr += 2 * bytes_ret;
204 bcc_ptr += 2; /* account for null terminator */
206 *pbcc_area = bcc_ptr;
210 static void unicode_ssetup_strings(char **pbcc_area, struct cifsSesInfo *ses,
211 const struct nls_table *nls_cp)
213 char *bcc_ptr = *pbcc_area;
214 int bytes_ret = 0;
217 /* unicode strings, must be word aligned before the call */
218 /* if ((long) bcc_ptr % 2) {
219 *bcc_ptr = 0;
220 bcc_ptr++;
221 } */
222 /* copy user */
223 if (ses->userName == NULL) {
224 /* null user mount */
225 *bcc_ptr = 0;
226 *(bcc_ptr+1) = 0;
227 } else {
228 bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, ses->userName,
229 MAX_USERNAME_SIZE, nls_cp);
231 bcc_ptr += 2 * bytes_ret;
232 bcc_ptr += 2; /* account for null termination */
234 unicode_domain_string(&bcc_ptr, ses, nls_cp);
235 unicode_oslm_strings(&bcc_ptr, nls_cp);
237 *pbcc_area = bcc_ptr;
240 static void ascii_ssetup_strings(char **pbcc_area, struct cifsSesInfo *ses,
241 const struct nls_table *nls_cp)
243 char *bcc_ptr = *pbcc_area;
245 /* copy user */
246 /* BB what about null user mounts - check that we do this BB */
247 /* copy user */
248 if (ses->userName == NULL) {
249 /* BB what about null user mounts - check that we do this BB */
250 } else {
251 strncpy(bcc_ptr, ses->userName, MAX_USERNAME_SIZE);
253 bcc_ptr += strnlen(ses->userName, MAX_USERNAME_SIZE);
254 *bcc_ptr = 0;
255 bcc_ptr++; /* account for null termination */
257 /* copy domain */
259 if (ses->domainName != NULL) {
260 strncpy(bcc_ptr, ses->domainName, 256);
261 bcc_ptr += strnlen(ses->domainName, 256);
262 } /* else we will send a null domain name
263 so the server will default to its own domain */
264 *bcc_ptr = 0;
265 bcc_ptr++;
267 /* BB check for overflow here */
269 strcpy(bcc_ptr, "Linux version ");
270 bcc_ptr += strlen("Linux version ");
271 strcpy(bcc_ptr, init_utsname()->release);
272 bcc_ptr += strlen(init_utsname()->release) + 1;
274 strcpy(bcc_ptr, CIFS_NETWORK_OPSYS);
275 bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1;
277 *pbcc_area = bcc_ptr;
280 static void
281 decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifsSesInfo *ses,
282 const struct nls_table *nls_cp)
284 int len;
285 char *data = *pbcc_area;
287 cFYI(1, "bleft %d", bleft);
290 * Windows servers do not always double null terminate their final
291 * Unicode string. Check to see if there are an uneven number of bytes
292 * left. If so, then add an extra NULL pad byte to the end of the
293 * response.
295 * See section 2.7.2 in "Implementing CIFS" for details
297 if (bleft % 2) {
298 data[bleft] = 0;
299 ++bleft;
302 kfree(ses->serverOS);
303 ses->serverOS = cifs_strndup_from_ucs(data, bleft, true, nls_cp);
304 cFYI(1, "serverOS=%s", ses->serverOS);
305 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
306 data += len;
307 bleft -= len;
308 if (bleft <= 0)
309 return;
311 kfree(ses->serverNOS);
312 ses->serverNOS = cifs_strndup_from_ucs(data, bleft, true, nls_cp);
313 cFYI(1, "serverNOS=%s", ses->serverNOS);
314 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
315 data += len;
316 bleft -= len;
317 if (bleft <= 0)
318 return;
320 kfree(ses->serverDomain);
321 ses->serverDomain = cifs_strndup_from_ucs(data, bleft, true, nls_cp);
322 cFYI(1, "serverDomain=%s", ses->serverDomain);
324 return;
327 static int decode_ascii_ssetup(char **pbcc_area, int bleft,
328 struct cifsSesInfo *ses,
329 const struct nls_table *nls_cp)
331 int rc = 0;
332 int len;
333 char *bcc_ptr = *pbcc_area;
335 cFYI(1, "decode sessetup ascii. bleft %d", bleft);
337 len = strnlen(bcc_ptr, bleft);
338 if (len >= bleft)
339 return rc;
341 kfree(ses->serverOS);
343 ses->serverOS = kzalloc(len + 1, GFP_KERNEL);
344 if (ses->serverOS)
345 strncpy(ses->serverOS, bcc_ptr, len);
346 if (strncmp(ses->serverOS, "OS/2", 4) == 0) {
347 cFYI(1, "OS/2 server");
348 ses->flags |= CIFS_SES_OS2;
351 bcc_ptr += len + 1;
352 bleft -= len + 1;
354 len = strnlen(bcc_ptr, bleft);
355 if (len >= bleft)
356 return rc;
358 kfree(ses->serverNOS);
360 ses->serverNOS = kzalloc(len + 1, GFP_KERNEL);
361 if (ses->serverNOS)
362 strncpy(ses->serverNOS, bcc_ptr, len);
364 bcc_ptr += len + 1;
365 bleft -= len + 1;
367 len = strnlen(bcc_ptr, bleft);
368 if (len > bleft)
369 return rc;
371 /* No domain field in LANMAN case. Domain is
372 returned by old servers in the SMB negprot response */
373 /* BB For newer servers which do not support Unicode,
374 but thus do return domain here we could add parsing
375 for it later, but it is not very important */
376 cFYI(1, "ascii: bytes left %d", bleft);
378 return rc;
381 static int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len,
382 struct cifsSesInfo *ses)
384 CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr;
386 if (blob_len < sizeof(CHALLENGE_MESSAGE)) {
387 cERROR(1, "challenge blob len %d too small", blob_len);
388 return -EINVAL;
391 if (memcmp(pblob->Signature, "NTLMSSP", 8)) {
392 cERROR(1, "blob signature incorrect %s", pblob->Signature);
393 return -EINVAL;
395 if (pblob->MessageType != NtLmChallenge) {
396 cERROR(1, "Incorrect message type %d", pblob->MessageType);
397 return -EINVAL;
400 memcpy(ses->server->cryptKey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE);
401 /* BB we could decode pblob->NegotiateFlags; some may be useful */
402 /* In particular we can examine sign flags */
403 /* BB spec says that if AvId field of MsvAvTimestamp is populated then
404 we must set the MIC field of the AUTHENTICATE_MESSAGE */
406 return 0;
409 #ifdef CONFIG_CIFS_EXPERIMENTAL
410 /* BB Move to ntlmssp.c eventually */
412 /* We do not malloc the blob, it is passed in pbuffer, because
413 it is fixed size, and small, making this approach cleaner */
414 static void build_ntlmssp_negotiate_blob(unsigned char *pbuffer,
415 struct cifsSesInfo *ses)
417 NEGOTIATE_MESSAGE *sec_blob = (NEGOTIATE_MESSAGE *)pbuffer;
418 __u32 flags;
420 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
421 sec_blob->MessageType = NtLmNegotiate;
423 /* BB is NTLMV2 session security format easier to use here? */
424 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
425 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
426 NTLMSSP_NEGOTIATE_NT_ONLY | NTLMSSP_NEGOTIATE_NTLM;
427 if (ses->server->secMode &
428 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
429 flags |= NTLMSSP_NEGOTIATE_SIGN;
430 if (ses->server->secMode & SECMODE_SIGN_REQUIRED)
431 flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN;
433 sec_blob->NegotiateFlags |= cpu_to_le32(flags);
435 sec_blob->WorkstationName.BufferOffset = 0;
436 sec_blob->WorkstationName.Length = 0;
437 sec_blob->WorkstationName.MaximumLength = 0;
439 /* Domain name is sent on the Challenge not Negotiate NTLMSSP request */
440 sec_blob->DomainName.BufferOffset = 0;
441 sec_blob->DomainName.Length = 0;
442 sec_blob->DomainName.MaximumLength = 0;
445 /* We do not malloc the blob, it is passed in pbuffer, because its
446 maximum possible size is fixed and small, making this approach cleaner.
447 This function returns the length of the data in the blob */
448 static int build_ntlmssp_auth_blob(unsigned char *pbuffer,
449 struct cifsSesInfo *ses,
450 const struct nls_table *nls_cp, bool first)
452 AUTHENTICATE_MESSAGE *sec_blob = (AUTHENTICATE_MESSAGE *)pbuffer;
453 __u32 flags;
454 unsigned char *tmp;
455 char ntlm_session_key[CIFS_SESS_KEY_SIZE];
457 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
458 sec_blob->MessageType = NtLmAuthenticate;
460 flags = NTLMSSP_NEGOTIATE_56 |
461 NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO |
462 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
463 NTLMSSP_NEGOTIATE_NT_ONLY | NTLMSSP_NEGOTIATE_NTLM;
464 if (ses->server->secMode &
465 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
466 flags |= NTLMSSP_NEGOTIATE_SIGN;
467 if (ses->server->secMode & SECMODE_SIGN_REQUIRED)
468 flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN;
470 tmp = pbuffer + sizeof(AUTHENTICATE_MESSAGE);
471 sec_blob->NegotiateFlags |= cpu_to_le32(flags);
473 sec_blob->LmChallengeResponse.BufferOffset =
474 cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE));
475 sec_blob->LmChallengeResponse.Length = 0;
476 sec_blob->LmChallengeResponse.MaximumLength = 0;
478 /* calculate session key, BB what about adding similar ntlmv2 path? */
479 SMBNTencrypt(ses->password, ses->server->cryptKey, ntlm_session_key);
480 if (first)
481 cifs_calculate_mac_key(&ses->server->mac_signing_key,
482 ntlm_session_key, ses->password);
484 memcpy(tmp, ntlm_session_key, CIFS_SESS_KEY_SIZE);
485 sec_blob->NtChallengeResponse.BufferOffset = cpu_to_le32(tmp - pbuffer);
486 sec_blob->NtChallengeResponse.Length = cpu_to_le16(CIFS_SESS_KEY_SIZE);
487 sec_blob->NtChallengeResponse.MaximumLength =
488 cpu_to_le16(CIFS_SESS_KEY_SIZE);
490 tmp += CIFS_SESS_KEY_SIZE;
492 if (ses->domainName == NULL) {
493 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - pbuffer);
494 sec_blob->DomainName.Length = 0;
495 sec_blob->DomainName.MaximumLength = 0;
496 tmp += 2;
497 } else {
498 int len;
499 len = cifs_strtoUCS((__le16 *)tmp, ses->domainName,
500 MAX_USERNAME_SIZE, nls_cp);
501 len *= 2; /* unicode is 2 bytes each */
502 len += 2; /* trailing null */
503 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - pbuffer);
504 sec_blob->DomainName.Length = cpu_to_le16(len);
505 sec_blob->DomainName.MaximumLength = cpu_to_le16(len);
506 tmp += len;
509 if (ses->userName == NULL) {
510 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - pbuffer);
511 sec_blob->UserName.Length = 0;
512 sec_blob->UserName.MaximumLength = 0;
513 tmp += 2;
514 } else {
515 int len;
516 len = cifs_strtoUCS((__le16 *)tmp, ses->userName,
517 MAX_USERNAME_SIZE, nls_cp);
518 len *= 2; /* unicode is 2 bytes each */
519 len += 2; /* trailing null */
520 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - pbuffer);
521 sec_blob->UserName.Length = cpu_to_le16(len);
522 sec_blob->UserName.MaximumLength = cpu_to_le16(len);
523 tmp += len;
526 sec_blob->WorkstationName.BufferOffset = cpu_to_le32(tmp - pbuffer);
527 sec_blob->WorkstationName.Length = 0;
528 sec_blob->WorkstationName.MaximumLength = 0;
529 tmp += 2;
531 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - pbuffer);
532 sec_blob->SessionKey.Length = 0;
533 sec_blob->SessionKey.MaximumLength = 0;
534 return tmp - pbuffer;
538 static void setup_ntlmssp_neg_req(SESSION_SETUP_ANDX *pSMB,
539 struct cifsSesInfo *ses)
541 build_ntlmssp_negotiate_blob(&pSMB->req.SecurityBlob[0], ses);
542 pSMB->req.SecurityBlobLength = cpu_to_le16(sizeof(NEGOTIATE_MESSAGE));
544 return;
547 static int setup_ntlmssp_auth_req(SESSION_SETUP_ANDX *pSMB,
548 struct cifsSesInfo *ses,
549 const struct nls_table *nls, bool first_time)
551 int bloblen;
553 bloblen = build_ntlmssp_auth_blob(&pSMB->req.SecurityBlob[0], ses, nls,
554 first_time);
555 pSMB->req.SecurityBlobLength = cpu_to_le16(bloblen);
557 return bloblen;
559 #endif
562 CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses,
563 const struct nls_table *nls_cp)
565 int rc = 0;
566 int wct;
567 struct smb_hdr *smb_buf;
568 char *bcc_ptr;
569 char *str_area;
570 SESSION_SETUP_ANDX *pSMB;
571 __u32 capabilities;
572 int count;
573 int resp_buf_type;
574 struct kvec iov[3];
575 enum securityEnum type;
576 __u16 action;
577 int bytes_remaining;
578 struct key *spnego_key = NULL;
579 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
580 bool first_time;
582 if (ses == NULL)
583 return -EINVAL;
585 read_lock(&cifs_tcp_ses_lock);
586 first_time = is_first_ses_reconnect(ses);
587 read_unlock(&cifs_tcp_ses_lock);
589 type = ses->server->secType;
591 cFYI(1, "sess setup type %d", type);
592 ssetup_ntlmssp_authenticate:
593 if (phase == NtLmChallenge)
594 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
596 if (type == LANMAN) {
597 #ifndef CONFIG_CIFS_WEAK_PW_HASH
598 /* LANMAN and plaintext are less secure and off by default.
599 So we make this explicitly be turned on in kconfig (in the
600 build) and turned on at runtime (changed from the default)
601 in proc/fs/cifs or via mount parm. Unfortunately this is
602 needed for old Win (e.g. Win95), some obscure NAS and OS/2 */
603 return -EOPNOTSUPP;
604 #endif
605 wct = 10; /* lanman 2 style sessionsetup */
606 } else if ((type == NTLM) || (type == NTLMv2)) {
607 /* For NTLMv2 failures eventually may need to retry NTLM */
608 wct = 13; /* old style NTLM sessionsetup */
609 } else /* same size: negotiate or auth, NTLMSSP or extended security */
610 wct = 12;
612 rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses,
613 (void **)&smb_buf);
614 if (rc)
615 return rc;
617 pSMB = (SESSION_SETUP_ANDX *)smb_buf;
619 capabilities = cifs_ssetup_hdr(ses, pSMB);
621 /* we will send the SMB in three pieces:
622 a fixed length beginning part, an optional
623 SPNEGO blob (which can be zero length), and a
624 last part which will include the strings
625 and rest of bcc area. This allows us to avoid
626 a large buffer 17K allocation */
627 iov[0].iov_base = (char *)pSMB;
628 iov[0].iov_len = smb_buf->smb_buf_length + 4;
630 /* setting this here allows the code at the end of the function
631 to free the request buffer if there's an error */
632 resp_buf_type = CIFS_SMALL_BUFFER;
634 /* 2000 big enough to fit max user, domain, NOS name etc. */
635 str_area = kmalloc(2000, GFP_KERNEL);
636 if (str_area == NULL) {
637 rc = -ENOMEM;
638 goto ssetup_exit;
640 bcc_ptr = str_area;
642 ses->flags &= ~CIFS_SES_LANMAN;
644 iov[1].iov_base = NULL;
645 iov[1].iov_len = 0;
647 if (type == LANMAN) {
648 #ifdef CONFIG_CIFS_WEAK_PW_HASH
649 char lnm_session_key[CIFS_SESS_KEY_SIZE];
651 pSMB->req.hdr.Flags2 &= ~SMBFLG2_UNICODE;
653 /* no capabilities flags in old lanman negotiation */
655 pSMB->old_req.PasswordLength = cpu_to_le16(CIFS_SESS_KEY_SIZE);
656 /* BB calculate hash with password */
657 /* and copy into bcc */
659 calc_lanman_hash(ses->password, ses->server->cryptKey,
660 ses->server->secMode & SECMODE_PW_ENCRYPT ?
661 true : false, lnm_session_key);
663 ses->flags |= CIFS_SES_LANMAN;
664 memcpy(bcc_ptr, (char *)lnm_session_key, CIFS_SESS_KEY_SIZE);
665 bcc_ptr += CIFS_SESS_KEY_SIZE;
667 /* can not sign if LANMAN negotiated so no need
668 to calculate signing key? but what if server
669 changed to do higher than lanman dialect and
670 we reconnected would we ever calc signing_key? */
672 cFYI(1, "Negotiating LANMAN setting up strings");
673 /* Unicode not allowed for LANMAN dialects */
674 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
675 #endif
676 } else if (type == NTLM) {
677 char ntlm_session_key[CIFS_SESS_KEY_SIZE];
679 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
680 pSMB->req_no_secext.CaseInsensitivePasswordLength =
681 cpu_to_le16(CIFS_SESS_KEY_SIZE);
682 pSMB->req_no_secext.CaseSensitivePasswordLength =
683 cpu_to_le16(CIFS_SESS_KEY_SIZE);
685 /* calculate session key */
686 SMBNTencrypt(ses->password, ses->server->cryptKey,
687 ntlm_session_key);
689 if (first_time) /* should this be moved into common code
690 with similar ntlmv2 path? */
691 cifs_calculate_mac_key(&ses->server->mac_signing_key,
692 ntlm_session_key, ses->password);
693 /* copy session key */
695 memcpy(bcc_ptr, (char *)ntlm_session_key, CIFS_SESS_KEY_SIZE);
696 bcc_ptr += CIFS_SESS_KEY_SIZE;
697 memcpy(bcc_ptr, (char *)ntlm_session_key, CIFS_SESS_KEY_SIZE);
698 bcc_ptr += CIFS_SESS_KEY_SIZE;
699 if (ses->capabilities & CAP_UNICODE) {
700 /* unicode strings must be word aligned */
701 if (iov[0].iov_len % 2) {
702 *bcc_ptr = 0;
703 bcc_ptr++;
705 unicode_ssetup_strings(&bcc_ptr, ses, nls_cp);
706 } else
707 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
708 } else if (type == NTLMv2) {
709 char *v2_sess_key =
710 kmalloc(sizeof(struct ntlmv2_resp), GFP_KERNEL);
713 if (v2_sess_key == NULL) {
714 rc = -ENOMEM;
715 goto ssetup_exit;
718 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
720 /* LM2 password would be here if we supported it */
721 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
722 /* cpu_to_le16(LM2_SESS_KEY_SIZE); */
724 pSMB->req_no_secext.CaseSensitivePasswordLength =
725 cpu_to_le16(sizeof(struct ntlmv2_resp));
727 /* calculate session key */
728 setup_ntlmv2_rsp(ses, v2_sess_key, nls_cp);
729 memcpy(bcc_ptr, (char *)v2_sess_key,
730 sizeof(struct ntlmv2_resp));
731 bcc_ptr += sizeof(struct ntlmv2_resp);
732 kfree(v2_sess_key);
733 if (ses->capabilities & CAP_UNICODE) {
734 if (iov[0].iov_len % 2) {
735 *bcc_ptr = 0;
736 bcc_ptr++;
738 unicode_ssetup_strings(&bcc_ptr, ses, nls_cp);
739 } else
740 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
741 } else if (type == Kerberos) {
742 #ifdef CONFIG_CIFS_UPCALL
743 struct cifs_spnego_msg *msg;
744 spnego_key = cifs_get_spnego_key(ses);
745 if (IS_ERR(spnego_key)) {
746 rc = PTR_ERR(spnego_key);
747 spnego_key = NULL;
748 goto ssetup_exit;
751 msg = spnego_key->payload.data;
752 /* check version field to make sure that cifs.upcall is
753 sending us a response in an expected form */
754 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
755 cERROR(1, "incorrect version of cifs.upcall (expected"
756 " %d but got %d)",
757 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
758 rc = -EKEYREJECTED;
759 goto ssetup_exit;
761 /* bail out if key is too long */
762 if (msg->sesskey_len >
763 sizeof(ses->server->mac_signing_key.data.krb5)) {
764 cERROR(1, "Kerberos signing key too long (%u bytes)",
765 msg->sesskey_len);
766 rc = -EOVERFLOW;
767 goto ssetup_exit;
769 if (first_time) {
770 ses->server->mac_signing_key.len = msg->sesskey_len;
771 memcpy(ses->server->mac_signing_key.data.krb5,
772 msg->data, msg->sesskey_len);
774 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
775 capabilities |= CAP_EXTENDED_SECURITY;
776 pSMB->req.Capabilities = cpu_to_le32(capabilities);
777 iov[1].iov_base = msg->data + msg->sesskey_len;
778 iov[1].iov_len = msg->secblob_len;
779 pSMB->req.SecurityBlobLength = cpu_to_le16(iov[1].iov_len);
781 if (ses->capabilities & CAP_UNICODE) {
782 /* unicode strings must be word aligned */
783 if ((iov[0].iov_len + iov[1].iov_len) % 2) {
784 *bcc_ptr = 0;
785 bcc_ptr++;
787 unicode_oslm_strings(&bcc_ptr, nls_cp);
788 unicode_domain_string(&bcc_ptr, ses, nls_cp);
789 } else
790 /* BB: is this right? */
791 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
792 #else /* ! CONFIG_CIFS_UPCALL */
793 cERROR(1, "Kerberos negotiated but upcall support disabled!");
794 rc = -ENOSYS;
795 goto ssetup_exit;
796 #endif /* CONFIG_CIFS_UPCALL */
797 } else {
798 #ifdef CONFIG_CIFS_EXPERIMENTAL
799 if (type == RawNTLMSSP) {
800 if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) {
801 cERROR(1, "NTLMSSP requires Unicode support");
802 rc = -ENOSYS;
803 goto ssetup_exit;
806 cFYI(1, "ntlmssp session setup phase %d", phase);
807 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
808 capabilities |= CAP_EXTENDED_SECURITY;
809 pSMB->req.Capabilities |= cpu_to_le32(capabilities);
810 if (phase == NtLmNegotiate) {
811 setup_ntlmssp_neg_req(pSMB, ses);
812 iov[1].iov_len = sizeof(NEGOTIATE_MESSAGE);
813 } else if (phase == NtLmAuthenticate) {
814 int blob_len;
815 blob_len = setup_ntlmssp_auth_req(pSMB, ses,
816 nls_cp,
817 first_time);
818 iov[1].iov_len = blob_len;
819 /* Make sure that we tell the server that we
820 are using the uid that it just gave us back
821 on the response (challenge) */
822 smb_buf->Uid = ses->Suid;
823 } else {
824 cERROR(1, "invalid phase %d", phase);
825 rc = -ENOSYS;
826 goto ssetup_exit;
828 iov[1].iov_base = &pSMB->req.SecurityBlob[0];
829 /* unicode strings must be word aligned */
830 if ((iov[0].iov_len + iov[1].iov_len) % 2) {
831 *bcc_ptr = 0;
832 bcc_ptr++;
834 unicode_oslm_strings(&bcc_ptr, nls_cp);
835 } else {
836 cERROR(1, "secType %d not supported!", type);
837 rc = -ENOSYS;
838 goto ssetup_exit;
840 #else
841 cERROR(1, "secType %d not supported!", type);
842 rc = -ENOSYS;
843 goto ssetup_exit;
844 #endif
847 iov[2].iov_base = str_area;
848 iov[2].iov_len = (long) bcc_ptr - (long) str_area;
850 count = iov[1].iov_len + iov[2].iov_len;
851 smb_buf->smb_buf_length += count;
853 BCC_LE(smb_buf) = cpu_to_le16(count);
855 rc = SendReceive2(xid, ses, iov, 3 /* num_iovecs */, &resp_buf_type,
856 CIFS_STD_OP /* not long */ | CIFS_LOG_ERROR);
857 /* SMB request buf freed in SendReceive2 */
859 cFYI(1, "ssetup rc from sendrecv2 is %d", rc);
861 pSMB = (SESSION_SETUP_ANDX *)iov[0].iov_base;
862 smb_buf = (struct smb_hdr *)iov[0].iov_base;
864 if ((type == RawNTLMSSP) && (smb_buf->Status.CifsError ==
865 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))) {
866 if (phase != NtLmNegotiate) {
867 cERROR(1, "Unexpected more processing error");
868 goto ssetup_exit;
870 /* NTLMSSP Negotiate sent now processing challenge (response) */
871 phase = NtLmChallenge; /* process ntlmssp challenge */
872 rc = 0; /* MORE_PROC rc is not an error here, but expected */
874 if (rc)
875 goto ssetup_exit;
877 if ((smb_buf->WordCount != 3) && (smb_buf->WordCount != 4)) {
878 rc = -EIO;
879 cERROR(1, "bad word count %d", smb_buf->WordCount);
880 goto ssetup_exit;
882 action = le16_to_cpu(pSMB->resp.Action);
883 if (action & GUEST_LOGIN)
884 cFYI(1, "Guest login"); /* BB mark SesInfo struct? */
885 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
886 cFYI(1, "UID = %d ", ses->Suid);
887 /* response can have either 3 or 4 word count - Samba sends 3 */
888 /* and lanman response is 3 */
889 bytes_remaining = BCC(smb_buf);
890 bcc_ptr = pByteArea(smb_buf);
892 if (smb_buf->WordCount == 4) {
893 __u16 blob_len;
894 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
895 if (blob_len > bytes_remaining) {
896 cERROR(1, "bad security blob length %d", blob_len);
897 rc = -EINVAL;
898 goto ssetup_exit;
900 if (phase == NtLmChallenge) {
901 rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses);
902 /* now goto beginning for ntlmssp authenticate phase */
903 if (rc)
904 goto ssetup_exit;
906 bcc_ptr += blob_len;
907 bytes_remaining -= blob_len;
910 /* BB check if Unicode and decode strings */
911 if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
912 /* unicode string area must be word-aligned */
913 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
914 ++bcc_ptr;
915 --bytes_remaining;
917 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, nls_cp);
918 } else {
919 rc = decode_ascii_ssetup(&bcc_ptr, bytes_remaining,
920 ses, nls_cp);
923 ssetup_exit:
924 if (spnego_key) {
925 key_revoke(spnego_key);
926 key_put(spnego_key);
928 kfree(str_area);
929 if (resp_buf_type == CIFS_SMALL_BUFFER) {
930 cFYI(1, "ssetup freeing small buf %p", iov[0].iov_base);
931 cifs_small_buf_release(iov[0].iov_base);
932 } else if (resp_buf_type == CIFS_LARGE_BUFFER)
933 cifs_buf_release(iov[0].iov_base);
935 /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
936 if ((phase == NtLmChallenge) && (rc == 0))
937 goto ssetup_ntlmssp_authenticate;
939 return rc;