1 // SPDX-License-Identifier: LGPL-2.1
4 * SMB/CIFS session setup handling routines
6 * Copyright (c) International Business Machines Corp., 2006, 2009
13 #include "cifsproto.h"
14 #include "cifs_unicode.h"
15 #include "cifs_debug.h"
18 #include <linux/utsname.h>
19 #include <linux/slab.h>
20 #include "cifs_spnego.h"
21 #include "smb2proto.h"
22 #include "fs_context.h"
25 cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
26 struct cifs_server_iface *iface);
29 is_server_using_iface(struct TCP_Server_Info *server,
30 struct cifs_server_iface *iface)
32 struct sockaddr_in *i4 = (struct sockaddr_in *)&iface->sockaddr;
33 struct sockaddr_in6 *i6 = (struct sockaddr_in6 *)&iface->sockaddr;
34 struct sockaddr_in *s4 = (struct sockaddr_in *)&server->dstaddr;
35 struct sockaddr_in6 *s6 = (struct sockaddr_in6 *)&server->dstaddr;
37 if (server->dstaddr.ss_family != iface->sockaddr.ss_family)
39 if (server->dstaddr.ss_family == AF_INET) {
40 if (s4->sin_addr.s_addr != i4->sin_addr.s_addr)
42 } else if (server->dstaddr.ss_family == AF_INET6) {
43 if (memcmp(&s6->sin6_addr, &i6->sin6_addr,
44 sizeof(i6->sin6_addr)) != 0)
47 /* unknown family.. */
53 bool is_ses_using_iface(struct cifs_ses *ses, struct cifs_server_iface *iface)
57 for (i = 0; i < ses->chan_count; i++) {
58 if (is_server_using_iface(ses->chans[i].server, iface))
64 /* returns number of channels added */
65 int cifs_try_adding_channels(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses)
67 int old_chan_count = ses->chan_count;
68 int left = ses->chan_max - ses->chan_count;
72 struct cifs_server_iface *ifaces = NULL;
77 "ses already at max_channels (%zu), nothing to open\n",
82 if (ses->server->dialect < SMB30_PROT_ID) {
83 cifs_dbg(VFS, "multichannel is not supported on this protocol version, use 3.0 or above\n");
87 if (!(ses->server->capabilities & SMB2_GLOBAL_CAP_MULTI_CHANNEL)) {
88 cifs_dbg(VFS, "server %s does not support multichannel\n", ses->server->hostname);
94 * Make a copy of the iface list at the time and use that
95 * instead so as to not hold the iface spinlock for opening
98 spin_lock(&ses->iface_lock);
99 iface_count = ses->iface_count;
100 if (iface_count <= 0) {
101 spin_unlock(&ses->iface_lock);
102 cifs_dbg(VFS, "no iface list available to open channels\n");
105 ifaces = kmemdup(ses->iface_list, iface_count*sizeof(*ifaces),
108 spin_unlock(&ses->iface_lock);
111 spin_unlock(&ses->iface_lock);
114 * Keep connecting to same, fastest, iface for all channels as
115 * long as its RSS. Try next fastest one if not RSS or channel
119 struct cifs_server_iface *iface;
122 if (tries > 3*ses->chan_max) {
123 cifs_dbg(FYI, "too many channel open attempts (%d channels left to open)\n",
129 if (is_ses_using_iface(ses, iface) && !iface->rss_capable) {
130 i = (i+1) % iface_count;
134 rc = cifs_ses_add_channel(cifs_sb, ses, iface);
136 cifs_dbg(FYI, "failed to open extra channel on iface#%d rc=%d\n",
138 i = (i+1) % iface_count;
142 cifs_dbg(FYI, "successfully opened new channel on iface#%d\n",
148 return ses->chan_count - old_chan_count;
152 * If server is a channel of ses, return the corresponding enclosing
153 * cifs_chan otherwise return NULL.
156 cifs_ses_find_chan(struct cifs_ses *ses, struct TCP_Server_Info *server)
160 for (i = 0; i < ses->chan_count; i++) {
161 if (ses->chans[i].server == server)
162 return &ses->chans[i];
168 cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
169 struct cifs_server_iface *iface)
171 struct cifs_chan *chan;
172 struct smb3_fs_context ctx = {NULL};
173 static const char unc_fmt[] = "\\%s\\foo";
174 char unc[sizeof(unc_fmt)+SERVER_NAME_LEN_WITH_NULL] = {0};
175 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr;
176 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&iface->sockaddr;
178 unsigned int xid = get_xid();
180 if (iface->sockaddr.ss_family == AF_INET)
181 cifs_dbg(FYI, "adding channel to ses %p (speed:%zu bps rdma:%s ip:%pI4)\n",
182 ses, iface->speed, iface->rdma_capable ? "yes" : "no",
185 cifs_dbg(FYI, "adding channel to ses %p (speed:%zu bps rdma:%s ip:%pI6)\n",
186 ses, iface->speed, iface->rdma_capable ? "yes" : "no",
190 * Setup a ctx with mostly the same info as the existing
191 * session and overwrite it with the requested iface data.
193 * We need to setup at least the fields used for negprot and
196 * We only need the ctx here, so we can reuse memory from
197 * the session and server without caring about memory
201 /* Always make new connection for now (TODO?) */
202 ctx.nosharesock = true;
205 ctx.domainauto = ses->domainAuto;
206 ctx.domainname = ses->domainName;
207 ctx.username = ses->user_name;
208 ctx.password = ses->password;
209 ctx.sectype = ses->sectype;
210 ctx.sign = ses->sign;
213 /* XXX: Use ses->server->hostname? */
214 sprintf(unc, unc_fmt, ses->ip_addr);
218 /* Reuse same version as master connection */
219 ctx.vals = ses->server->vals;
220 ctx.ops = ses->server->ops;
222 ctx.noblocksnd = ses->server->noblocksnd;
223 ctx.noautotune = ses->server->noautotune;
224 ctx.sockopt_tcp_nodelay = ses->server->tcp_nodelay;
225 ctx.echo_interval = ses->server->echo_interval / HZ;
226 ctx.max_credits = ses->server->max_credits;
229 * This will be used for encoding/decoding user/domain/pw
230 * during sess setup auth.
232 ctx.local_nls = cifs_sb->local_nls;
234 /* Use RDMA if possible */
235 ctx.rdma = iface->rdma_capable;
236 memcpy(&ctx.dstaddr, &iface->sockaddr, sizeof(struct sockaddr_storage));
238 /* reuse master con client guid */
239 memcpy(&ctx.client_guid, ses->server->client_guid,
240 SMB2_CLIENT_GUID_SIZE);
241 ctx.use_client_guid = true;
243 mutex_lock(&ses->session_mutex);
245 chan = ses->binding_chan = &ses->chans[ses->chan_count];
246 chan->server = cifs_get_tcp_session(&ctx);
247 if (IS_ERR(chan->server)) {
248 rc = PTR_ERR(chan->server);
252 spin_lock(&cifs_tcp_ses_lock);
253 chan->server->is_channel = true;
254 spin_unlock(&cifs_tcp_ses_lock);
257 * We need to allocate the server crypto now as we will need
258 * to sign packets before we generate the channel signing key
259 * (we sign with the session key)
261 rc = smb311_crypto_shash_allocate(chan->server);
263 cifs_dbg(VFS, "%s: crypto alloc failed\n", __func__);
268 rc = cifs_negotiate_protocol(xid, ses);
272 rc = cifs_setup_session(xid, ses, cifs_sb->local_nls);
276 /* success, put it on the list
277 * XXX: sharing ses between 2 tcp servers is not possible, the
278 * way "internal" linked lists works in linux makes element
279 * only able to belong to one list
281 * the binding session is already established so the rest of
282 * the code should be able to look it up, no need to add the
283 * ses to the new server.
287 atomic_set(&ses->chan_seq, 0);
289 ses->binding = false;
290 ses->binding_chan = NULL;
291 mutex_unlock(&ses->session_mutex);
293 if (rc && chan->server)
294 cifs_put_tcp_session(chan->server, 0);
299 static __u32 cifs_ssetup_hdr(struct cifs_ses *ses, SESSION_SETUP_ANDX *pSMB)
301 __u32 capabilities = 0;
303 /* init fields common to all four types of SessSetup */
304 /* Note that offsets for first seven fields in req struct are same */
305 /* in CIFS Specs so does not matter which of 3 forms of struct */
306 /* that we use in next few lines */
307 /* Note that header is initialized to zero in header_assemble */
308 pSMB->req.AndXCommand = 0xFF;
309 pSMB->req.MaxBufferSize = cpu_to_le16(min_t(u32,
310 CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4,
312 pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq);
313 pSMB->req.VcNumber = cpu_to_le16(1);
315 /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */
317 /* BB verify whether signing required on neg or just on auth frame
320 capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS |
321 CAP_LARGE_WRITE_X | CAP_LARGE_READ_X;
323 if (ses->server->sign)
324 pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
326 if (ses->capabilities & CAP_UNICODE) {
327 pSMB->req.hdr.Flags2 |= SMBFLG2_UNICODE;
328 capabilities |= CAP_UNICODE;
330 if (ses->capabilities & CAP_STATUS32) {
331 pSMB->req.hdr.Flags2 |= SMBFLG2_ERR_STATUS;
332 capabilities |= CAP_STATUS32;
334 if (ses->capabilities & CAP_DFS) {
335 pSMB->req.hdr.Flags2 |= SMBFLG2_DFS;
336 capabilities |= CAP_DFS;
338 if (ses->capabilities & CAP_UNIX)
339 capabilities |= CAP_UNIX;
345 unicode_oslm_strings(char **pbcc_area, const struct nls_table *nls_cp)
347 char *bcc_ptr = *pbcc_area;
350 /* Copy OS version */
351 bytes_ret = cifs_strtoUTF16((__le16 *)bcc_ptr, "Linux version ", 32,
353 bcc_ptr += 2 * bytes_ret;
354 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, init_utsname()->release,
356 bcc_ptr += 2 * bytes_ret;
357 bcc_ptr += 2; /* trailing null */
359 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS,
361 bcc_ptr += 2 * bytes_ret;
362 bcc_ptr += 2; /* trailing null */
364 *pbcc_area = bcc_ptr;
367 static void unicode_domain_string(char **pbcc_area, struct cifs_ses *ses,
368 const struct nls_table *nls_cp)
370 char *bcc_ptr = *pbcc_area;
374 if (ses->domainName == NULL) {
375 /* Sending null domain better than using a bogus domain name (as
376 we did briefly in 2.6.18) since server will use its default */
381 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->domainName,
382 CIFS_MAX_DOMAINNAME_LEN, nls_cp);
383 bcc_ptr += 2 * bytes_ret;
384 bcc_ptr += 2; /* account for null terminator */
386 *pbcc_area = bcc_ptr;
390 static void unicode_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
391 const struct nls_table *nls_cp)
393 char *bcc_ptr = *pbcc_area;
396 /* BB FIXME add check that strings total less
397 than 335 or will need to send them as arrays */
399 /* unicode strings, must be word aligned before the call */
400 /* if ((long) bcc_ptr % 2) {
405 if (ses->user_name == NULL) {
406 /* null user mount */
410 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->user_name,
411 CIFS_MAX_USERNAME_LEN, nls_cp);
413 bcc_ptr += 2 * bytes_ret;
414 bcc_ptr += 2; /* account for null termination */
416 unicode_domain_string(&bcc_ptr, ses, nls_cp);
417 unicode_oslm_strings(&bcc_ptr, nls_cp);
419 *pbcc_area = bcc_ptr;
422 static void ascii_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
423 const struct nls_table *nls_cp)
425 char *bcc_ptr = *pbcc_area;
429 /* BB what about null user mounts - check that we do this BB */
431 if (ses->user_name != NULL) {
432 len = strscpy(bcc_ptr, ses->user_name, CIFS_MAX_USERNAME_LEN);
433 if (WARN_ON_ONCE(len < 0))
434 len = CIFS_MAX_USERNAME_LEN - 1;
437 /* else null user mount */
439 bcc_ptr++; /* account for null termination */
442 if (ses->domainName != NULL) {
443 len = strscpy(bcc_ptr, ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
444 if (WARN_ON_ONCE(len < 0))
445 len = CIFS_MAX_DOMAINNAME_LEN - 1;
447 } /* else we will send a null domain name
448 so the server will default to its own domain */
452 /* BB check for overflow here */
454 strcpy(bcc_ptr, "Linux version ");
455 bcc_ptr += strlen("Linux version ");
456 strcpy(bcc_ptr, init_utsname()->release);
457 bcc_ptr += strlen(init_utsname()->release) + 1;
459 strcpy(bcc_ptr, CIFS_NETWORK_OPSYS);
460 bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1;
462 *pbcc_area = bcc_ptr;
466 decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifs_ses *ses,
467 const struct nls_table *nls_cp)
470 char *data = *pbcc_area;
472 cifs_dbg(FYI, "bleft %d\n", bleft);
474 kfree(ses->serverOS);
475 ses->serverOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
476 cifs_dbg(FYI, "serverOS=%s\n", ses->serverOS);
477 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
483 kfree(ses->serverNOS);
484 ses->serverNOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
485 cifs_dbg(FYI, "serverNOS=%s\n", ses->serverNOS);
486 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
492 kfree(ses->serverDomain);
493 ses->serverDomain = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
494 cifs_dbg(FYI, "serverDomain=%s\n", ses->serverDomain);
499 static void decode_ascii_ssetup(char **pbcc_area, __u16 bleft,
500 struct cifs_ses *ses,
501 const struct nls_table *nls_cp)
504 char *bcc_ptr = *pbcc_area;
506 cifs_dbg(FYI, "decode sessetup ascii. bleft %d\n", bleft);
508 len = strnlen(bcc_ptr, bleft);
512 kfree(ses->serverOS);
514 ses->serverOS = kmalloc(len + 1, GFP_KERNEL);
516 memcpy(ses->serverOS, bcc_ptr, len);
517 ses->serverOS[len] = 0;
518 if (strncmp(ses->serverOS, "OS/2", 4) == 0)
519 cifs_dbg(FYI, "OS/2 server\n");
525 len = strnlen(bcc_ptr, bleft);
529 kfree(ses->serverNOS);
531 ses->serverNOS = kmalloc(len + 1, GFP_KERNEL);
532 if (ses->serverNOS) {
533 memcpy(ses->serverNOS, bcc_ptr, len);
534 ses->serverNOS[len] = 0;
540 len = strnlen(bcc_ptr, bleft);
544 /* No domain field in LANMAN case. Domain is
545 returned by old servers in the SMB negprot response */
546 /* BB For newer servers which do not support Unicode,
547 but thus do return domain here we could add parsing
548 for it later, but it is not very important */
549 cifs_dbg(FYI, "ascii: bytes left %d\n", bleft);
552 int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len,
553 struct cifs_ses *ses)
555 unsigned int tioffset; /* challenge message target info area */
556 unsigned int tilen; /* challenge message target info area length */
558 CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr;
560 if (blob_len < sizeof(CHALLENGE_MESSAGE)) {
561 cifs_dbg(VFS, "challenge blob len %d too small\n", blob_len);
565 if (memcmp(pblob->Signature, "NTLMSSP", 8)) {
566 cifs_dbg(VFS, "blob signature incorrect %s\n",
570 if (pblob->MessageType != NtLmChallenge) {
571 cifs_dbg(VFS, "Incorrect message type %d\n",
576 memcpy(ses->ntlmssp->cryptkey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE);
577 /* BB we could decode pblob->NegotiateFlags; some may be useful */
578 /* In particular we can examine sign flags */
579 /* BB spec says that if AvId field of MsvAvTimestamp is populated then
580 we must set the MIC field of the AUTHENTICATE_MESSAGE */
581 ses->ntlmssp->server_flags = le32_to_cpu(pblob->NegotiateFlags);
582 tioffset = le32_to_cpu(pblob->TargetInfoArray.BufferOffset);
583 tilen = le16_to_cpu(pblob->TargetInfoArray.Length);
584 if (tioffset > blob_len || tioffset + tilen > blob_len) {
585 cifs_dbg(VFS, "tioffset + tilen too high %u + %u\n",
590 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen,
592 if (!ses->auth_key.response) {
593 cifs_dbg(VFS, "Challenge target info alloc failure\n");
596 ses->auth_key.len = tilen;
602 /* BB Move to ntlmssp.c eventually */
604 /* We do not malloc the blob, it is passed in pbuffer, because
605 it is fixed size, and small, making this approach cleaner */
606 void build_ntlmssp_negotiate_blob(unsigned char *pbuffer,
607 struct cifs_ses *ses)
609 struct TCP_Server_Info *server = cifs_ses_server(ses);
610 NEGOTIATE_MESSAGE *sec_blob = (NEGOTIATE_MESSAGE *)pbuffer;
613 memset(pbuffer, 0, sizeof(NEGOTIATE_MESSAGE));
614 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
615 sec_blob->MessageType = NtLmNegotiate;
617 /* BB is NTLMV2 session security format easier to use here? */
618 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
619 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
620 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC |
621 NTLMSSP_NEGOTIATE_SEAL;
623 flags |= NTLMSSP_NEGOTIATE_SIGN;
624 if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess)
625 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
627 sec_blob->NegotiateFlags = cpu_to_le32(flags);
629 sec_blob->WorkstationName.BufferOffset = 0;
630 sec_blob->WorkstationName.Length = 0;
631 sec_blob->WorkstationName.MaximumLength = 0;
633 /* Domain name is sent on the Challenge not Negotiate NTLMSSP request */
634 sec_blob->DomainName.BufferOffset = 0;
635 sec_blob->DomainName.Length = 0;
636 sec_blob->DomainName.MaximumLength = 0;
639 static int size_of_ntlmssp_blob(struct cifs_ses *ses)
641 int sz = sizeof(AUTHENTICATE_MESSAGE) + ses->auth_key.len
642 - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2;
645 sz += 2 * strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
650 sz += 2 * strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN);
657 int build_ntlmssp_auth_blob(unsigned char **pbuffer,
659 struct cifs_ses *ses,
660 const struct nls_table *nls_cp)
663 AUTHENTICATE_MESSAGE *sec_blob;
667 rc = setup_ntlmv2_rsp(ses, nls_cp);
669 cifs_dbg(VFS, "Error %d during NTLMSSP authentication\n", rc);
671 goto setup_ntlmv2_ret;
673 *pbuffer = kmalloc(size_of_ntlmssp_blob(ses), GFP_KERNEL);
676 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
678 goto setup_ntlmv2_ret;
680 sec_blob = (AUTHENTICATE_MESSAGE *)*pbuffer;
682 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
683 sec_blob->MessageType = NtLmAuthenticate;
685 flags = NTLMSSP_NEGOTIATE_56 |
686 NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO |
687 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
688 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC |
689 NTLMSSP_NEGOTIATE_SEAL;
690 if (ses->server->sign)
691 flags |= NTLMSSP_NEGOTIATE_SIGN;
692 if (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess)
693 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
695 tmp = *pbuffer + sizeof(AUTHENTICATE_MESSAGE);
696 sec_blob->NegotiateFlags = cpu_to_le32(flags);
698 sec_blob->LmChallengeResponse.BufferOffset =
699 cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE));
700 sec_blob->LmChallengeResponse.Length = 0;
701 sec_blob->LmChallengeResponse.MaximumLength = 0;
703 sec_blob->NtChallengeResponse.BufferOffset =
704 cpu_to_le32(tmp - *pbuffer);
705 if (ses->user_name != NULL) {
706 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
707 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
708 tmp += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
710 sec_blob->NtChallengeResponse.Length =
711 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
712 sec_blob->NtChallengeResponse.MaximumLength =
713 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
716 * don't send an NT Response for anonymous access
718 sec_blob->NtChallengeResponse.Length = 0;
719 sec_blob->NtChallengeResponse.MaximumLength = 0;
722 if (ses->domainName == NULL) {
723 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
724 sec_blob->DomainName.Length = 0;
725 sec_blob->DomainName.MaximumLength = 0;
729 len = cifs_strtoUTF16((__le16 *)tmp, ses->domainName,
730 CIFS_MAX_DOMAINNAME_LEN, nls_cp);
731 len *= 2; /* unicode is 2 bytes each */
732 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
733 sec_blob->DomainName.Length = cpu_to_le16(len);
734 sec_blob->DomainName.MaximumLength = cpu_to_le16(len);
738 if (ses->user_name == NULL) {
739 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
740 sec_blob->UserName.Length = 0;
741 sec_blob->UserName.MaximumLength = 0;
745 len = cifs_strtoUTF16((__le16 *)tmp, ses->user_name,
746 CIFS_MAX_USERNAME_LEN, nls_cp);
747 len *= 2; /* unicode is 2 bytes each */
748 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
749 sec_blob->UserName.Length = cpu_to_le16(len);
750 sec_blob->UserName.MaximumLength = cpu_to_le16(len);
754 sec_blob->WorkstationName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
755 sec_blob->WorkstationName.Length = 0;
756 sec_blob->WorkstationName.MaximumLength = 0;
759 if (((ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_KEY_XCH) ||
760 (ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_EXTENDED_SEC))
761 && !calc_seckey(ses)) {
762 memcpy(tmp, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
763 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
764 sec_blob->SessionKey.Length = cpu_to_le16(CIFS_CPHTXT_SIZE);
765 sec_blob->SessionKey.MaximumLength =
766 cpu_to_le16(CIFS_CPHTXT_SIZE);
767 tmp += CIFS_CPHTXT_SIZE;
769 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
770 sec_blob->SessionKey.Length = 0;
771 sec_blob->SessionKey.MaximumLength = 0;
774 *buflen = tmp - *pbuffer;
780 cifs_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
782 switch (server->negflavor) {
783 case CIFS_NEGFLAVOR_EXTENDED:
789 if (server->sec_ntlmssp &&
790 (global_secflags & CIFSSEC_MAY_NTLMSSP))
792 if ((server->sec_kerberos || server->sec_mskerberos) &&
793 (global_secflags & CIFSSEC_MAY_KRB5))
799 case CIFS_NEGFLAVOR_UNENCAP:
804 if (global_secflags & CIFSSEC_MAY_NTLMV2)
818 struct cifs_ses *ses;
819 struct nls_table *nls_cp;
820 void (*func)(struct sess_data *);
823 /* we will send the SMB in three pieces:
824 * a fixed length beginning part, an optional
825 * SPNEGO blob (which can be zero length), and a
826 * last part which will include the strings
827 * and rest of bcc area. This allows us to avoid
828 * a large buffer 17K allocation
835 sess_alloc_buffer(struct sess_data *sess_data, int wct)
838 struct cifs_ses *ses = sess_data->ses;
839 struct smb_hdr *smb_buf;
841 rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses,
847 sess_data->iov[0].iov_base = (char *)smb_buf;
848 sess_data->iov[0].iov_len = be32_to_cpu(smb_buf->smb_buf_length) + 4;
850 * This variable will be used to clear the buffer
851 * allocated above in case of any error in the calling function.
853 sess_data->buf0_type = CIFS_SMALL_BUFFER;
855 /* 2000 big enough to fit max user, domain, NOS name etc. */
856 sess_data->iov[2].iov_base = kmalloc(2000, GFP_KERNEL);
857 if (!sess_data->iov[2].iov_base) {
859 goto out_free_smb_buf;
865 cifs_small_buf_release(smb_buf);
866 sess_data->iov[0].iov_base = NULL;
867 sess_data->iov[0].iov_len = 0;
868 sess_data->buf0_type = CIFS_NO_BUFFER;
873 sess_free_buffer(struct sess_data *sess_data)
876 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
877 sess_data->buf0_type = CIFS_NO_BUFFER;
878 kfree(sess_data->iov[2].iov_base);
882 sess_establish_session(struct sess_data *sess_data)
884 struct cifs_ses *ses = sess_data->ses;
886 mutex_lock(&ses->server->srv_mutex);
887 if (!ses->server->session_estab) {
888 if (ses->server->sign) {
889 ses->server->session_key.response =
890 kmemdup(ses->auth_key.response,
891 ses->auth_key.len, GFP_KERNEL);
892 if (!ses->server->session_key.response) {
893 mutex_unlock(&ses->server->srv_mutex);
896 ses->server->session_key.len =
899 ses->server->sequence_number = 0x2;
900 ses->server->session_estab = true;
902 mutex_unlock(&ses->server->srv_mutex);
904 cifs_dbg(FYI, "CIFS session established successfully\n");
905 spin_lock(&GlobalMid_Lock);
906 ses->status = CifsGood;
907 ses->need_reconnect = false;
908 spin_unlock(&GlobalMid_Lock);
914 sess_sendreceive(struct sess_data *sess_data)
917 struct smb_hdr *smb_buf = (struct smb_hdr *) sess_data->iov[0].iov_base;
919 struct kvec rsp_iov = { NULL, 0 };
921 count = sess_data->iov[1].iov_len + sess_data->iov[2].iov_len;
922 be32_add_cpu(&smb_buf->smb_buf_length, count);
923 put_bcc(count, smb_buf);
925 rc = SendReceive2(sess_data->xid, sess_data->ses,
926 sess_data->iov, 3 /* num_iovecs */,
927 &sess_data->buf0_type,
928 CIFS_LOG_ERROR, &rsp_iov);
929 cifs_small_buf_release(sess_data->iov[0].iov_base);
930 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
936 sess_auth_ntlmv2(struct sess_data *sess_data)
939 struct smb_hdr *smb_buf;
940 SESSION_SETUP_ANDX *pSMB;
942 struct cifs_ses *ses = sess_data->ses;
944 __u16 bytes_remaining;
946 /* old style NTLM sessionsetup */
948 rc = sess_alloc_buffer(sess_data, 13);
952 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
953 bcc_ptr = sess_data->iov[2].iov_base;
954 capabilities = cifs_ssetup_hdr(ses, pSMB);
956 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
958 /* LM2 password would be here if we supported it */
959 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
961 if (ses->user_name != NULL) {
962 /* calculate nlmv2 response and session key */
963 rc = setup_ntlmv2_rsp(ses, sess_data->nls_cp);
965 cifs_dbg(VFS, "Error %d during NTLMv2 authentication\n", rc);
969 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
970 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
971 bcc_ptr += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
973 /* set case sensitive password length after tilen may get
974 * assigned, tilen is 0 otherwise.
976 pSMB->req_no_secext.CaseSensitivePasswordLength =
977 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
979 pSMB->req_no_secext.CaseSensitivePasswordLength = 0;
982 if (ses->capabilities & CAP_UNICODE) {
983 if (sess_data->iov[0].iov_len % 2) {
987 unicode_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
989 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
993 sess_data->iov[2].iov_len = (long) bcc_ptr -
994 (long) sess_data->iov[2].iov_base;
996 rc = sess_sendreceive(sess_data);
1000 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1001 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1003 if (smb_buf->WordCount != 3) {
1005 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1009 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1010 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1012 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1013 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1015 bytes_remaining = get_bcc(smb_buf);
1016 bcc_ptr = pByteArea(smb_buf);
1018 /* BB check if Unicode and decode strings */
1019 if (bytes_remaining == 0) {
1020 /* no string area to decode, do nothing */
1021 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1022 /* unicode string area must be word-aligned */
1023 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
1027 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1030 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1034 rc = sess_establish_session(sess_data);
1036 sess_data->result = rc;
1037 sess_data->func = NULL;
1038 sess_free_buffer(sess_data);
1039 kfree(ses->auth_key.response);
1040 ses->auth_key.response = NULL;
1043 #ifdef CONFIG_CIFS_UPCALL
1045 sess_auth_kerberos(struct sess_data *sess_data)
1048 struct smb_hdr *smb_buf;
1049 SESSION_SETUP_ANDX *pSMB;
1051 struct cifs_ses *ses = sess_data->ses;
1053 __u16 bytes_remaining;
1054 struct key *spnego_key = NULL;
1055 struct cifs_spnego_msg *msg;
1058 /* extended security */
1060 rc = sess_alloc_buffer(sess_data, 12);
1064 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1065 bcc_ptr = sess_data->iov[2].iov_base;
1066 capabilities = cifs_ssetup_hdr(ses, pSMB);
1068 spnego_key = cifs_get_spnego_key(ses);
1069 if (IS_ERR(spnego_key)) {
1070 rc = PTR_ERR(spnego_key);
1075 msg = spnego_key->payload.data[0];
1077 * check version field to make sure that cifs.upcall is
1078 * sending us a response in an expected form
1080 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1081 cifs_dbg(VFS, "incorrect version of cifs.upcall (expected %d but got %d)\n",
1082 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1084 goto out_put_spnego_key;
1087 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1089 if (!ses->auth_key.response) {
1090 cifs_dbg(VFS, "Kerberos can't allocate (%u bytes) memory\n",
1093 goto out_put_spnego_key;
1095 ses->auth_key.len = msg->sesskey_len;
1097 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1098 capabilities |= CAP_EXTENDED_SECURITY;
1099 pSMB->req.Capabilities = cpu_to_le32(capabilities);
1100 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1101 sess_data->iov[1].iov_len = msg->secblob_len;
1102 pSMB->req.SecurityBlobLength = cpu_to_le16(sess_data->iov[1].iov_len);
1104 if (ses->capabilities & CAP_UNICODE) {
1105 /* unicode strings must be word aligned */
1106 if ((sess_data->iov[0].iov_len
1107 + sess_data->iov[1].iov_len) % 2) {
1111 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1112 unicode_domain_string(&bcc_ptr, ses, sess_data->nls_cp);
1114 /* BB: is this right? */
1115 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1118 sess_data->iov[2].iov_len = (long) bcc_ptr -
1119 (long) sess_data->iov[2].iov_base;
1121 rc = sess_sendreceive(sess_data);
1123 goto out_put_spnego_key;
1125 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1126 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1128 if (smb_buf->WordCount != 4) {
1130 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1131 goto out_put_spnego_key;
1134 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1135 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1137 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1138 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1140 bytes_remaining = get_bcc(smb_buf);
1141 bcc_ptr = pByteArea(smb_buf);
1143 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1144 if (blob_len > bytes_remaining) {
1145 cifs_dbg(VFS, "bad security blob length %d\n",
1148 goto out_put_spnego_key;
1150 bcc_ptr += blob_len;
1151 bytes_remaining -= blob_len;
1153 /* BB check if Unicode and decode strings */
1154 if (bytes_remaining == 0) {
1155 /* no string area to decode, do nothing */
1156 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1157 /* unicode string area must be word-aligned */
1158 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
1162 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1165 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1169 rc = sess_establish_session(sess_data);
1171 key_invalidate(spnego_key);
1172 key_put(spnego_key);
1174 sess_data->result = rc;
1175 sess_data->func = NULL;
1176 sess_free_buffer(sess_data);
1177 kfree(ses->auth_key.response);
1178 ses->auth_key.response = NULL;
1181 #endif /* ! CONFIG_CIFS_UPCALL */
1184 * The required kvec buffers have to be allocated before calling this
1188 _sess_auth_rawntlmssp_assemble_req(struct sess_data *sess_data)
1190 SESSION_SETUP_ANDX *pSMB;
1191 struct cifs_ses *ses = sess_data->ses;
1195 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1197 capabilities = cifs_ssetup_hdr(ses, pSMB);
1198 if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) {
1199 cifs_dbg(VFS, "NTLMSSP requires Unicode support\n");
1203 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1204 capabilities |= CAP_EXTENDED_SECURITY;
1205 pSMB->req.Capabilities |= cpu_to_le32(capabilities);
1207 bcc_ptr = sess_data->iov[2].iov_base;
1208 /* unicode strings must be word aligned */
1209 if ((sess_data->iov[0].iov_len + sess_data->iov[1].iov_len) % 2) {
1213 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1215 sess_data->iov[2].iov_len = (long) bcc_ptr -
1216 (long) sess_data->iov[2].iov_base;
1222 sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data);
1225 sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data)
1228 struct smb_hdr *smb_buf;
1229 SESSION_SETUP_ANDX *pSMB;
1230 struct cifs_ses *ses = sess_data->ses;
1231 __u16 bytes_remaining;
1235 cifs_dbg(FYI, "rawntlmssp session setup negotiate phase\n");
1238 * if memory allocation is successful, caller of this function
1241 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1242 if (!ses->ntlmssp) {
1246 ses->ntlmssp->sesskey_per_smbsess = false;
1249 rc = sess_alloc_buffer(sess_data, 12);
1253 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1255 /* Build security blob before we assemble the request */
1256 build_ntlmssp_negotiate_blob(pSMB->req.SecurityBlob, ses);
1257 sess_data->iov[1].iov_len = sizeof(NEGOTIATE_MESSAGE);
1258 sess_data->iov[1].iov_base = pSMB->req.SecurityBlob;
1259 pSMB->req.SecurityBlobLength = cpu_to_le16(sizeof(NEGOTIATE_MESSAGE));
1261 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
1265 rc = sess_sendreceive(sess_data);
1267 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1268 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1270 /* If true, rc here is expected and not an error */
1271 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1272 smb_buf->Status.CifsError ==
1273 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))
1279 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1281 if (smb_buf->WordCount != 4) {
1283 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1287 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1288 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1290 bytes_remaining = get_bcc(smb_buf);
1291 bcc_ptr = pByteArea(smb_buf);
1293 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1294 if (blob_len > bytes_remaining) {
1295 cifs_dbg(VFS, "bad security blob length %d\n",
1301 rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses);
1303 sess_free_buffer(sess_data);
1306 sess_data->func = sess_auth_rawntlmssp_authenticate;
1310 /* Else error. Cleanup */
1311 kfree(ses->auth_key.response);
1312 ses->auth_key.response = NULL;
1313 kfree(ses->ntlmssp);
1314 ses->ntlmssp = NULL;
1316 sess_data->func = NULL;
1317 sess_data->result = rc;
1321 sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data)
1324 struct smb_hdr *smb_buf;
1325 SESSION_SETUP_ANDX *pSMB;
1326 struct cifs_ses *ses = sess_data->ses;
1327 __u16 bytes_remaining;
1329 unsigned char *ntlmsspblob = NULL;
1332 cifs_dbg(FYI, "rawntlmssp session setup authenticate phase\n");
1335 rc = sess_alloc_buffer(sess_data, 12);
1339 /* Build security blob before we assemble the request */
1340 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1341 smb_buf = (struct smb_hdr *)pSMB;
1342 rc = build_ntlmssp_auth_blob(&ntlmsspblob,
1343 &blob_len, ses, sess_data->nls_cp);
1345 goto out_free_ntlmsspblob;
1346 sess_data->iov[1].iov_len = blob_len;
1347 sess_data->iov[1].iov_base = ntlmsspblob;
1348 pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len);
1350 * Make sure that we tell the server that we are using
1351 * the uid that it just gave us back on the response
1354 smb_buf->Uid = ses->Suid;
1356 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
1358 goto out_free_ntlmsspblob;
1360 rc = sess_sendreceive(sess_data);
1362 goto out_free_ntlmsspblob;
1364 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1365 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1366 if (smb_buf->WordCount != 4) {
1368 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1369 goto out_free_ntlmsspblob;
1372 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1373 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1375 if (ses->Suid != smb_buf->Uid) {
1376 ses->Suid = smb_buf->Uid;
1377 cifs_dbg(FYI, "UID changed! new UID = %llu\n", ses->Suid);
1380 bytes_remaining = get_bcc(smb_buf);
1381 bcc_ptr = pByteArea(smb_buf);
1382 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1383 if (blob_len > bytes_remaining) {
1384 cifs_dbg(VFS, "bad security blob length %d\n",
1387 goto out_free_ntlmsspblob;
1389 bcc_ptr += blob_len;
1390 bytes_remaining -= blob_len;
1393 /* BB check if Unicode and decode strings */
1394 if (bytes_remaining == 0) {
1395 /* no string area to decode, do nothing */
1396 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1397 /* unicode string area must be word-aligned */
1398 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
1402 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1405 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1409 out_free_ntlmsspblob:
1412 sess_free_buffer(sess_data);
1415 rc = sess_establish_session(sess_data);
1418 kfree(ses->auth_key.response);
1419 ses->auth_key.response = NULL;
1420 kfree(ses->ntlmssp);
1421 ses->ntlmssp = NULL;
1423 sess_data->func = NULL;
1424 sess_data->result = rc;
1427 static int select_sec(struct cifs_ses *ses, struct sess_data *sess_data)
1431 type = cifs_select_sectype(ses->server, ses->sectype);
1432 cifs_dbg(FYI, "sess setup type %d\n", type);
1433 if (type == Unspecified) {
1434 cifs_dbg(VFS, "Unable to select appropriate authentication method!\n");
1440 sess_data->func = sess_auth_ntlmv2;
1443 #ifdef CONFIG_CIFS_UPCALL
1444 sess_data->func = sess_auth_kerberos;
1447 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1449 #endif /* CONFIG_CIFS_UPCALL */
1451 sess_data->func = sess_auth_rawntlmssp_negotiate;
1454 cifs_dbg(VFS, "secType %d not supported!\n", type);
1461 int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses,
1462 const struct nls_table *nls_cp)
1465 struct sess_data *sess_data;
1468 WARN(1, "%s: ses == NULL!", __func__);
1472 sess_data = kzalloc(sizeof(struct sess_data), GFP_KERNEL);
1476 rc = select_sec(ses, sess_data);
1480 sess_data->xid = xid;
1481 sess_data->ses = ses;
1482 sess_data->buf0_type = CIFS_NO_BUFFER;
1483 sess_data->nls_cp = (struct nls_table *) nls_cp;
1485 while (sess_data->func)
1486 sess_data->func(sess_data);
1488 /* Store result before we free sess_data */
1489 rc = sess_data->result;