cifs: eliminate pfile pointer from cifsFileInfo
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / cifs / sess.c
blob2111bed71b1f9f23e1921302da3f900e46d4b6e7
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;
216 /* BB FIXME add check that strings total less
217 than 335 or will need to send them as arrays */
219 /* unicode strings, must be word aligned before the call */
220 /* if ((long) bcc_ptr % 2) {
221 *bcc_ptr = 0;
222 bcc_ptr++;
223 } */
224 /* copy user */
225 if (ses->userName == NULL) {
226 /* null user mount */
227 *bcc_ptr = 0;
228 *(bcc_ptr+1) = 0;
229 } else {
230 bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, ses->userName,
231 MAX_USERNAME_SIZE, nls_cp);
233 bcc_ptr += 2 * bytes_ret;
234 bcc_ptr += 2; /* account for null termination */
236 unicode_domain_string(&bcc_ptr, ses, nls_cp);
237 unicode_oslm_strings(&bcc_ptr, nls_cp);
239 *pbcc_area = bcc_ptr;
242 static void ascii_ssetup_strings(char **pbcc_area, struct cifsSesInfo *ses,
243 const struct nls_table *nls_cp)
245 char *bcc_ptr = *pbcc_area;
247 /* copy user */
248 /* BB what about null user mounts - check that we do this BB */
249 /* copy user */
250 if (ses->userName == NULL) {
251 /* BB what about null user mounts - check that we do this BB */
252 } else {
253 strncpy(bcc_ptr, ses->userName, MAX_USERNAME_SIZE);
255 bcc_ptr += strnlen(ses->userName, MAX_USERNAME_SIZE);
256 *bcc_ptr = 0;
257 bcc_ptr++; /* account for null termination */
259 /* copy domain */
261 if (ses->domainName != NULL) {
262 strncpy(bcc_ptr, ses->domainName, 256);
263 bcc_ptr += strnlen(ses->domainName, 256);
264 } /* else we will send a null domain name
265 so the server will default to its own domain */
266 *bcc_ptr = 0;
267 bcc_ptr++;
269 /* BB check for overflow here */
271 strcpy(bcc_ptr, "Linux version ");
272 bcc_ptr += strlen("Linux version ");
273 strcpy(bcc_ptr, init_utsname()->release);
274 bcc_ptr += strlen(init_utsname()->release) + 1;
276 strcpy(bcc_ptr, CIFS_NETWORK_OPSYS);
277 bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1;
279 *pbcc_area = bcc_ptr;
282 static void
283 decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifsSesInfo *ses,
284 const struct nls_table *nls_cp)
286 int len;
287 char *data = *pbcc_area;
289 cFYI(1, "bleft %d", bleft);
292 * Windows servers do not always double null terminate their final
293 * Unicode string. Check to see if there are an uneven number of bytes
294 * left. If so, then add an extra NULL pad byte to the end of the
295 * response.
297 * See section 2.7.2 in "Implementing CIFS" for details
299 if (bleft % 2) {
300 data[bleft] = 0;
301 ++bleft;
304 kfree(ses->serverOS);
305 ses->serverOS = cifs_strndup_from_ucs(data, bleft, true, nls_cp);
306 cFYI(1, "serverOS=%s", ses->serverOS);
307 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
308 data += len;
309 bleft -= len;
310 if (bleft <= 0)
311 return;
313 kfree(ses->serverNOS);
314 ses->serverNOS = cifs_strndup_from_ucs(data, bleft, true, nls_cp);
315 cFYI(1, "serverNOS=%s", ses->serverNOS);
316 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
317 data += len;
318 bleft -= len;
319 if (bleft <= 0)
320 return;
322 kfree(ses->serverDomain);
323 ses->serverDomain = cifs_strndup_from_ucs(data, bleft, true, nls_cp);
324 cFYI(1, "serverDomain=%s", ses->serverDomain);
326 return;
329 static int decode_ascii_ssetup(char **pbcc_area, int bleft,
330 struct cifsSesInfo *ses,
331 const struct nls_table *nls_cp)
333 int rc = 0;
334 int len;
335 char *bcc_ptr = *pbcc_area;
337 cFYI(1, "decode sessetup ascii. bleft %d", bleft);
339 len = strnlen(bcc_ptr, bleft);
340 if (len >= bleft)
341 return rc;
343 kfree(ses->serverOS);
345 ses->serverOS = kzalloc(len + 1, GFP_KERNEL);
346 if (ses->serverOS)
347 strncpy(ses->serverOS, bcc_ptr, len);
348 if (strncmp(ses->serverOS, "OS/2", 4) == 0) {
349 cFYI(1, "OS/2 server");
350 ses->flags |= CIFS_SES_OS2;
353 bcc_ptr += len + 1;
354 bleft -= len + 1;
356 len = strnlen(bcc_ptr, bleft);
357 if (len >= bleft)
358 return rc;
360 kfree(ses->serverNOS);
362 ses->serverNOS = kzalloc(len + 1, GFP_KERNEL);
363 if (ses->serverNOS)
364 strncpy(ses->serverNOS, bcc_ptr, len);
366 bcc_ptr += len + 1;
367 bleft -= len + 1;
369 len = strnlen(bcc_ptr, bleft);
370 if (len > bleft)
371 return rc;
373 /* No domain field in LANMAN case. Domain is
374 returned by old servers in the SMB negprot response */
375 /* BB For newer servers which do not support Unicode,
376 but thus do return domain here we could add parsing
377 for it later, but it is not very important */
378 cFYI(1, "ascii: bytes left %d", bleft);
380 return rc;
383 static int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len,
384 struct cifsSesInfo *ses)
386 unsigned int tioffset; /* challenge message target info area */
387 unsigned int tilen; /* challenge message target info area length */
389 CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr;
391 if (blob_len < sizeof(CHALLENGE_MESSAGE)) {
392 cERROR(1, "challenge blob len %d too small", blob_len);
393 return -EINVAL;
396 if (memcmp(pblob->Signature, "NTLMSSP", 8)) {
397 cERROR(1, "blob signature incorrect %s", pblob->Signature);
398 return -EINVAL;
400 if (pblob->MessageType != NtLmChallenge) {
401 cERROR(1, "Incorrect message type %d", pblob->MessageType);
402 return -EINVAL;
405 memcpy(ses->cryptKey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE);
406 /* BB we could decode pblob->NegotiateFlags; some may be useful */
407 /* In particular we can examine sign flags */
408 /* BB spec says that if AvId field of MsvAvTimestamp is populated then
409 we must set the MIC field of the AUTHENTICATE_MESSAGE */
411 tioffset = cpu_to_le16(pblob->TargetInfoArray.BufferOffset);
412 tilen = cpu_to_le16(pblob->TargetInfoArray.Length);
413 ses->tilen = tilen;
414 if (ses->tilen) {
415 ses->tiblob = kmalloc(tilen, GFP_KERNEL);
416 if (!ses->tiblob) {
417 cERROR(1, "Challenge target info allocation failure");
418 ses->tilen = 0;
419 return -ENOMEM;
421 memcpy(ses->tiblob, bcc_ptr + tioffset, ses->tilen);
424 return 0;
427 #ifdef CONFIG_CIFS_EXPERIMENTAL
428 /* BB Move to ntlmssp.c eventually */
430 /* We do not malloc the blob, it is passed in pbuffer, because
431 it is fixed size, and small, making this approach cleaner */
432 static void build_ntlmssp_negotiate_blob(unsigned char *pbuffer,
433 struct cifsSesInfo *ses)
435 NEGOTIATE_MESSAGE *sec_blob = (NEGOTIATE_MESSAGE *)pbuffer;
436 __u32 flags;
438 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
439 sec_blob->MessageType = NtLmNegotiate;
441 /* BB is NTLMV2 session security format easier to use here? */
442 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
443 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
444 NTLMSSP_NEGOTIATE_NTLM;
445 if (ses->server->secMode &
446 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
447 flags |= NTLMSSP_NEGOTIATE_SIGN;
448 if (ses->server->secMode & SECMODE_SIGN_REQUIRED)
449 flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN;
451 sec_blob->NegotiateFlags |= cpu_to_le32(flags);
453 sec_blob->WorkstationName.BufferOffset = 0;
454 sec_blob->WorkstationName.Length = 0;
455 sec_blob->WorkstationName.MaximumLength = 0;
457 /* Domain name is sent on the Challenge not Negotiate NTLMSSP request */
458 sec_blob->DomainName.BufferOffset = 0;
459 sec_blob->DomainName.Length = 0;
460 sec_blob->DomainName.MaximumLength = 0;
463 /* We do not malloc the blob, it is passed in pbuffer, because its
464 maximum possible size is fixed and small, making this approach cleaner.
465 This function returns the length of the data in the blob */
466 static int build_ntlmssp_auth_blob(unsigned char *pbuffer,
467 struct cifsSesInfo *ses,
468 const struct nls_table *nls_cp)
470 int rc;
471 unsigned int size;
472 AUTHENTICATE_MESSAGE *sec_blob = (AUTHENTICATE_MESSAGE *)pbuffer;
473 __u32 flags;
474 unsigned char *tmp;
475 struct ntlmv2_resp ntlmv2_response = {};
477 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
478 sec_blob->MessageType = NtLmAuthenticate;
480 flags = NTLMSSP_NEGOTIATE_56 |
481 NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO |
482 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
483 NTLMSSP_NEGOTIATE_NTLM;
484 if (ses->server->secMode &
485 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
486 flags |= NTLMSSP_NEGOTIATE_SIGN;
487 if (ses->server->secMode & SECMODE_SIGN_REQUIRED)
488 flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN;
490 tmp = pbuffer + sizeof(AUTHENTICATE_MESSAGE);
491 sec_blob->NegotiateFlags |= cpu_to_le32(flags);
493 sec_blob->LmChallengeResponse.BufferOffset =
494 cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE));
495 sec_blob->LmChallengeResponse.Length = 0;
496 sec_blob->LmChallengeResponse.MaximumLength = 0;
498 sec_blob->NtChallengeResponse.BufferOffset = cpu_to_le32(tmp - pbuffer);
499 rc = setup_ntlmv2_rsp(ses, (char *)&ntlmv2_response, nls_cp);
500 if (rc) {
501 cERROR(1, "Error %d during NTLMSSP authentication", rc);
502 goto setup_ntlmv2_ret;
504 size = sizeof(struct ntlmv2_resp);
505 memcpy(tmp, (char *)&ntlmv2_response, size);
506 tmp += size;
507 if (ses->tilen > 0) {
508 memcpy(tmp, ses->tiblob, ses->tilen);
509 tmp += ses->tilen;
512 sec_blob->NtChallengeResponse.Length = cpu_to_le16(size + ses->tilen);
513 sec_blob->NtChallengeResponse.MaximumLength =
514 cpu_to_le16(size + ses->tilen);
515 kfree(ses->tiblob);
516 ses->tiblob = NULL;
517 ses->tilen = 0;
519 if (ses->domainName == NULL) {
520 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - pbuffer);
521 sec_blob->DomainName.Length = 0;
522 sec_blob->DomainName.MaximumLength = 0;
523 tmp += 2;
524 } else {
525 int len;
526 len = cifs_strtoUCS((__le16 *)tmp, ses->domainName,
527 MAX_USERNAME_SIZE, nls_cp);
528 len *= 2; /* unicode is 2 bytes each */
529 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - pbuffer);
530 sec_blob->DomainName.Length = cpu_to_le16(len);
531 sec_blob->DomainName.MaximumLength = cpu_to_le16(len);
532 tmp += len;
535 if (ses->userName == NULL) {
536 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - pbuffer);
537 sec_blob->UserName.Length = 0;
538 sec_blob->UserName.MaximumLength = 0;
539 tmp += 2;
540 } else {
541 int len;
542 len = cifs_strtoUCS((__le16 *)tmp, ses->userName,
543 MAX_USERNAME_SIZE, nls_cp);
544 len *= 2; /* unicode is 2 bytes each */
545 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - pbuffer);
546 sec_blob->UserName.Length = cpu_to_le16(len);
547 sec_blob->UserName.MaximumLength = cpu_to_le16(len);
548 tmp += len;
551 sec_blob->WorkstationName.BufferOffset = cpu_to_le32(tmp - pbuffer);
552 sec_blob->WorkstationName.Length = 0;
553 sec_blob->WorkstationName.MaximumLength = 0;
554 tmp += 2;
556 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - pbuffer);
557 sec_blob->SessionKey.Length = 0;
558 sec_blob->SessionKey.MaximumLength = 0;
560 setup_ntlmv2_ret:
561 return tmp - pbuffer;
565 static void setup_ntlmssp_neg_req(SESSION_SETUP_ANDX *pSMB,
566 struct cifsSesInfo *ses)
568 build_ntlmssp_negotiate_blob(&pSMB->req.SecurityBlob[0], ses);
569 pSMB->req.SecurityBlobLength = cpu_to_le16(sizeof(NEGOTIATE_MESSAGE));
571 return;
573 #endif
576 CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses,
577 const struct nls_table *nls_cp)
579 int rc = 0;
580 int wct;
581 struct smb_hdr *smb_buf;
582 char *bcc_ptr;
583 char *str_area;
584 SESSION_SETUP_ANDX *pSMB;
585 __u32 capabilities;
586 int count;
587 int resp_buf_type;
588 struct kvec iov[3];
589 enum securityEnum type;
590 __u16 action;
591 int bytes_remaining;
592 struct key *spnego_key = NULL;
593 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
594 int blob_len;
595 char *ntlmsspblob = NULL;
597 if (ses == NULL)
598 return -EINVAL;
600 type = ses->server->secType;
602 cFYI(1, "sess setup type %d", type);
603 ssetup_ntlmssp_authenticate:
604 if (phase == NtLmChallenge)
605 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
607 if (type == LANMAN) {
608 #ifndef CONFIG_CIFS_WEAK_PW_HASH
609 /* LANMAN and plaintext are less secure and off by default.
610 So we make this explicitly be turned on in kconfig (in the
611 build) and turned on at runtime (changed from the default)
612 in proc/fs/cifs or via mount parm. Unfortunately this is
613 needed for old Win (e.g. Win95), some obscure NAS and OS/2 */
614 return -EOPNOTSUPP;
615 #endif
616 wct = 10; /* lanman 2 style sessionsetup */
617 } else if ((type == NTLM) || (type == NTLMv2)) {
618 /* For NTLMv2 failures eventually may need to retry NTLM */
619 wct = 13; /* old style NTLM sessionsetup */
620 } else /* same size: negotiate or auth, NTLMSSP or extended security */
621 wct = 12;
623 rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses,
624 (void **)&smb_buf);
625 if (rc)
626 return rc;
628 pSMB = (SESSION_SETUP_ANDX *)smb_buf;
630 capabilities = cifs_ssetup_hdr(ses, pSMB);
632 /* we will send the SMB in three pieces:
633 a fixed length beginning part, an optional
634 SPNEGO blob (which can be zero length), and a
635 last part which will include the strings
636 and rest of bcc area. This allows us to avoid
637 a large buffer 17K allocation */
638 iov[0].iov_base = (char *)pSMB;
639 iov[0].iov_len = smb_buf->smb_buf_length + 4;
641 /* setting this here allows the code at the end of the function
642 to free the request buffer if there's an error */
643 resp_buf_type = CIFS_SMALL_BUFFER;
645 /* 2000 big enough to fit max user, domain, NOS name etc. */
646 str_area = kmalloc(2000, GFP_KERNEL);
647 if (str_area == NULL) {
648 rc = -ENOMEM;
649 goto ssetup_exit;
651 bcc_ptr = str_area;
653 ses->flags &= ~CIFS_SES_LANMAN;
655 iov[1].iov_base = NULL;
656 iov[1].iov_len = 0;
658 if (type == LANMAN) {
659 #ifdef CONFIG_CIFS_WEAK_PW_HASH
660 char lnm_session_key[CIFS_SESS_KEY_SIZE];
662 pSMB->req.hdr.Flags2 &= ~SMBFLG2_UNICODE;
664 /* no capabilities flags in old lanman negotiation */
666 pSMB->old_req.PasswordLength = cpu_to_le16(CIFS_SESS_KEY_SIZE);
667 /* BB calculate hash with password */
668 /* and copy into bcc */
670 calc_lanman_hash(ses->password, ses->cryptKey,
671 ses->server->secMode & SECMODE_PW_ENCRYPT ?
672 true : false, lnm_session_key);
674 ses->flags |= CIFS_SES_LANMAN;
675 memcpy(bcc_ptr, (char *)lnm_session_key, CIFS_SESS_KEY_SIZE);
676 bcc_ptr += CIFS_SESS_KEY_SIZE;
678 /* can not sign if LANMAN negotiated so no need
679 to calculate signing key? but what if server
680 changed to do higher than lanman dialect and
681 we reconnected would we ever calc signing_key? */
683 cFYI(1, "Negotiating LANMAN setting up strings");
684 /* Unicode not allowed for LANMAN dialects */
685 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
686 #endif
687 } else if (type == NTLM) {
688 char ntlm_session_key[CIFS_SESS_KEY_SIZE];
690 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
691 pSMB->req_no_secext.CaseInsensitivePasswordLength =
692 cpu_to_le16(CIFS_SESS_KEY_SIZE);
693 pSMB->req_no_secext.CaseSensitivePasswordLength =
694 cpu_to_le16(CIFS_SESS_KEY_SIZE);
696 /* calculate session key */
697 SMBNTencrypt(ses->password, ses->cryptKey, ntlm_session_key);
699 cifs_calculate_session_key(&ses->auth_key,
700 ntlm_session_key, ses->password);
701 /* copy session key */
702 memcpy(bcc_ptr, (char *)ntlm_session_key, CIFS_SESS_KEY_SIZE);
703 bcc_ptr += CIFS_SESS_KEY_SIZE;
704 memcpy(bcc_ptr, (char *)ntlm_session_key, CIFS_SESS_KEY_SIZE);
705 bcc_ptr += CIFS_SESS_KEY_SIZE;
706 if (ses->capabilities & CAP_UNICODE) {
707 /* unicode strings must be word aligned */
708 if (iov[0].iov_len % 2) {
709 *bcc_ptr = 0;
710 bcc_ptr++;
712 unicode_ssetup_strings(&bcc_ptr, ses, nls_cp);
713 } else
714 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
715 } else if (type == NTLMv2) {
716 char *v2_sess_key =
717 kmalloc(sizeof(struct ntlmv2_resp), GFP_KERNEL);
719 /* BB FIXME change all users of v2_sess_key to
720 struct ntlmv2_resp */
722 if (v2_sess_key == NULL) {
723 rc = -ENOMEM;
724 goto ssetup_exit;
727 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
729 /* LM2 password would be here if we supported it */
730 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
731 /* cpu_to_le16(LM2_SESS_KEY_SIZE); */
733 /* calculate session key */
734 rc = setup_ntlmv2_rsp(ses, v2_sess_key, nls_cp);
735 if (rc) {
736 cERROR(1, "Error %d during NTLMv2 authentication", rc);
737 kfree(v2_sess_key);
738 goto ssetup_exit;
740 memcpy(bcc_ptr, (char *)v2_sess_key,
741 sizeof(struct ntlmv2_resp));
742 bcc_ptr += sizeof(struct ntlmv2_resp);
743 kfree(v2_sess_key);
744 /* set case sensitive password length after tilen may get
745 * assigned, tilen is 0 otherwise.
747 pSMB->req_no_secext.CaseSensitivePasswordLength =
748 cpu_to_le16(sizeof(struct ntlmv2_resp) + ses->tilen);
749 if (ses->tilen > 0) {
750 memcpy(bcc_ptr, ses->tiblob, ses->tilen);
751 bcc_ptr += ses->tilen;
752 /* we never did allocate ses->domainName to free */
753 kfree(ses->tiblob);
754 ses->tiblob = NULL;
755 ses->tilen = 0;
758 if (ses->capabilities & CAP_UNICODE) {
759 if (iov[0].iov_len % 2) {
760 *bcc_ptr = 0;
761 bcc_ptr++;
763 unicode_ssetup_strings(&bcc_ptr, ses, nls_cp);
764 } else
765 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
766 } else if (type == Kerberos) {
767 #ifdef CONFIG_CIFS_UPCALL
768 struct cifs_spnego_msg *msg;
769 spnego_key = cifs_get_spnego_key(ses);
770 if (IS_ERR(spnego_key)) {
771 rc = PTR_ERR(spnego_key);
772 spnego_key = NULL;
773 goto ssetup_exit;
776 msg = spnego_key->payload.data;
777 /* check version field to make sure that cifs.upcall is
778 sending us a response in an expected form */
779 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
780 cERROR(1, "incorrect version of cifs.upcall (expected"
781 " %d but got %d)",
782 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
783 rc = -EKEYREJECTED;
784 goto ssetup_exit;
786 /* bail out if key is too long */
787 if (msg->sesskey_len >
788 sizeof(ses->auth_key.data.krb5)) {
789 cERROR(1, "Kerberos signing key too long (%u bytes)",
790 msg->sesskey_len);
791 rc = -EOVERFLOW;
792 goto ssetup_exit;
794 ses->auth_key.len = msg->sesskey_len;
795 memcpy(ses->auth_key.data.krb5, msg->data, msg->sesskey_len);
796 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
797 capabilities |= CAP_EXTENDED_SECURITY;
798 pSMB->req.Capabilities = cpu_to_le32(capabilities);
799 iov[1].iov_base = msg->data + msg->sesskey_len;
800 iov[1].iov_len = msg->secblob_len;
801 pSMB->req.SecurityBlobLength = cpu_to_le16(iov[1].iov_len);
803 if (ses->capabilities & CAP_UNICODE) {
804 /* unicode strings must be word aligned */
805 if ((iov[0].iov_len + iov[1].iov_len) % 2) {
806 *bcc_ptr = 0;
807 bcc_ptr++;
809 unicode_oslm_strings(&bcc_ptr, nls_cp);
810 unicode_domain_string(&bcc_ptr, ses, nls_cp);
811 } else
812 /* BB: is this right? */
813 ascii_ssetup_strings(&bcc_ptr, ses, nls_cp);
814 #else /* ! CONFIG_CIFS_UPCALL */
815 cERROR(1, "Kerberos negotiated but upcall support disabled!");
816 rc = -ENOSYS;
817 goto ssetup_exit;
818 #endif /* CONFIG_CIFS_UPCALL */
819 } else {
820 #ifdef CONFIG_CIFS_EXPERIMENTAL
821 if (type == RawNTLMSSP) {
822 if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) {
823 cERROR(1, "NTLMSSP requires Unicode support");
824 rc = -ENOSYS;
825 goto ssetup_exit;
828 cFYI(1, "ntlmssp session setup phase %d", phase);
829 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
830 capabilities |= CAP_EXTENDED_SECURITY;
831 pSMB->req.Capabilities |= cpu_to_le32(capabilities);
832 if (phase == NtLmNegotiate) {
833 setup_ntlmssp_neg_req(pSMB, ses);
834 iov[1].iov_len = sizeof(NEGOTIATE_MESSAGE);
835 iov[1].iov_base = &pSMB->req.SecurityBlob[0];
836 } else if (phase == NtLmAuthenticate) {
837 /* 5 is an empirical value, large enought to
838 * hold authenticate message, max 10 of
839 * av paris, doamin,user,workstation mames,
840 * flags etc..
842 ntlmsspblob = kmalloc(
843 5*sizeof(struct _AUTHENTICATE_MESSAGE),
844 GFP_KERNEL);
845 if (!ntlmsspblob) {
846 cERROR(1, "Can't allocate NTLMSSP");
847 rc = -ENOMEM;
848 goto ssetup_exit;
851 blob_len = build_ntlmssp_auth_blob(ntlmsspblob,
852 ses, nls_cp);
853 iov[1].iov_len = blob_len;
854 iov[1].iov_base = ntlmsspblob;
855 pSMB->req.SecurityBlobLength =
856 cpu_to_le16(blob_len);
857 /* Make sure that we tell the server that we
858 are using the uid that it just gave us back
859 on the response (challenge) */
860 smb_buf->Uid = ses->Suid;
861 } else {
862 cERROR(1, "invalid phase %d", phase);
863 rc = -ENOSYS;
864 goto ssetup_exit;
866 /* unicode strings must be word aligned */
867 if ((iov[0].iov_len + iov[1].iov_len) % 2) {
868 *bcc_ptr = 0;
869 bcc_ptr++;
871 unicode_oslm_strings(&bcc_ptr, nls_cp);
872 } else {
873 cERROR(1, "secType %d not supported!", type);
874 rc = -ENOSYS;
875 goto ssetup_exit;
877 #else
878 cERROR(1, "secType %d not supported!", type);
879 rc = -ENOSYS;
880 goto ssetup_exit;
881 #endif
884 iov[2].iov_base = str_area;
885 iov[2].iov_len = (long) bcc_ptr - (long) str_area;
887 count = iov[1].iov_len + iov[2].iov_len;
888 smb_buf->smb_buf_length += count;
890 BCC_LE(smb_buf) = cpu_to_le16(count);
892 rc = SendReceive2(xid, ses, iov, 3 /* num_iovecs */, &resp_buf_type,
893 CIFS_STD_OP /* not long */ | CIFS_LOG_ERROR);
894 /* SMB request buf freed in SendReceive2 */
896 cFYI(1, "ssetup rc from sendrecv2 is %d", rc);
898 pSMB = (SESSION_SETUP_ANDX *)iov[0].iov_base;
899 smb_buf = (struct smb_hdr *)iov[0].iov_base;
901 if ((type == RawNTLMSSP) && (smb_buf->Status.CifsError ==
902 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))) {
903 if (phase != NtLmNegotiate) {
904 cERROR(1, "Unexpected more processing error");
905 goto ssetup_exit;
907 /* NTLMSSP Negotiate sent now processing challenge (response) */
908 phase = NtLmChallenge; /* process ntlmssp challenge */
909 rc = 0; /* MORE_PROC rc is not an error here, but expected */
911 if (rc)
912 goto ssetup_exit;
914 if ((smb_buf->WordCount != 3) && (smb_buf->WordCount != 4)) {
915 rc = -EIO;
916 cERROR(1, "bad word count %d", smb_buf->WordCount);
917 goto ssetup_exit;
919 action = le16_to_cpu(pSMB->resp.Action);
920 if (action & GUEST_LOGIN)
921 cFYI(1, "Guest login"); /* BB mark SesInfo struct? */
922 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
923 cFYI(1, "UID = %d ", ses->Suid);
924 /* response can have either 3 or 4 word count - Samba sends 3 */
925 /* and lanman response is 3 */
926 bytes_remaining = BCC(smb_buf);
927 bcc_ptr = pByteArea(smb_buf);
929 if (smb_buf->WordCount == 4) {
930 __u16 blob_len;
931 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
932 if (blob_len > bytes_remaining) {
933 cERROR(1, "bad security blob length %d", blob_len);
934 rc = -EINVAL;
935 goto ssetup_exit;
937 if (phase == NtLmChallenge) {
938 rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses);
939 /* now goto beginning for ntlmssp authenticate phase */
940 if (rc)
941 goto ssetup_exit;
943 bcc_ptr += blob_len;
944 bytes_remaining -= blob_len;
947 /* BB check if Unicode and decode strings */
948 if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
949 /* unicode string area must be word-aligned */
950 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
951 ++bcc_ptr;
952 --bytes_remaining;
954 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, nls_cp);
955 } else {
956 rc = decode_ascii_ssetup(&bcc_ptr, bytes_remaining,
957 ses, nls_cp);
960 ssetup_exit:
961 if (spnego_key) {
962 key_revoke(spnego_key);
963 key_put(spnego_key);
965 kfree(str_area);
966 kfree(ntlmsspblob);
967 ntlmsspblob = NULL;
968 if (resp_buf_type == CIFS_SMALL_BUFFER) {
969 cFYI(1, "ssetup freeing small buf %p", iov[0].iov_base);
970 cifs_small_buf_release(iov[0].iov_base);
971 } else if (resp_buf_type == CIFS_LARGE_BUFFER)
972 cifs_buf_release(iov[0].iov_base);
974 /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
975 if ((phase == NtLmChallenge) && (rc == 0))
976 goto ssetup_ntlmssp_authenticate;
978 return rc;