1 // SPDX-License-Identifier: LGPL-2.1
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)
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 <linux/version.h>
22 #include "cifs_spnego.h"
23 #include "smb2proto.h"
24 #include "fs_context.h"
27 cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
28 struct cifs_server_iface *iface);
31 is_server_using_iface(struct TCP_Server_Info *server,
32 struct cifs_server_iface *iface)
34 struct sockaddr_in *i4 = (struct sockaddr_in *)&iface->sockaddr;
35 struct sockaddr_in6 *i6 = (struct sockaddr_in6 *)&iface->sockaddr;
36 struct sockaddr_in *s4 = (struct sockaddr_in *)&server->dstaddr;
37 struct sockaddr_in6 *s6 = (struct sockaddr_in6 *)&server->dstaddr;
39 if (server->dstaddr.ss_family != iface->sockaddr.ss_family)
41 if (server->dstaddr.ss_family == AF_INET) {
42 if (s4->sin_addr.s_addr != i4->sin_addr.s_addr)
44 } else if (server->dstaddr.ss_family == AF_INET6) {
45 if (memcmp(&s6->sin6_addr, &i6->sin6_addr,
46 sizeof(i6->sin6_addr)) != 0)
49 /* unknown family.. */
55 bool is_ses_using_iface(struct cifs_ses *ses, struct cifs_server_iface *iface)
59 spin_lock(&ses->chan_lock);
60 for (i = 0; i < ses->chan_count; i++) {
61 if (ses->chans[i].iface == iface) {
62 spin_unlock(&ses->chan_lock);
66 spin_unlock(&ses->chan_lock);
70 /* channel helper functions. assumed that chan_lock is held by caller. */
73 cifs_ses_get_chan_index(struct cifs_ses *ses,
74 struct TCP_Server_Info *server)
78 for (i = 0; i < ses->chan_count; i++) {
79 if (ses->chans[i].server == server)
83 /* If we didn't find the channel, it is likely a bug */
85 cifs_dbg(VFS, "unable to get chan index for server: 0x%llx",
92 cifs_chan_set_in_reconnect(struct cifs_ses *ses,
93 struct TCP_Server_Info *server)
95 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
97 ses->chans[chan_index].in_reconnect = true;
101 cifs_chan_clear_in_reconnect(struct cifs_ses *ses,
102 struct TCP_Server_Info *server)
104 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
106 ses->chans[chan_index].in_reconnect = false;
110 cifs_chan_in_reconnect(struct cifs_ses *ses,
111 struct TCP_Server_Info *server)
113 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
115 return CIFS_CHAN_IN_RECONNECT(ses, chan_index);
119 cifs_chan_set_need_reconnect(struct cifs_ses *ses,
120 struct TCP_Server_Info *server)
122 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
124 set_bit(chan_index, &ses->chans_need_reconnect);
125 cifs_dbg(FYI, "Set reconnect bitmask for chan %u; now 0x%lx\n",
126 chan_index, ses->chans_need_reconnect);
130 cifs_chan_clear_need_reconnect(struct cifs_ses *ses,
131 struct TCP_Server_Info *server)
133 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
135 clear_bit(chan_index, &ses->chans_need_reconnect);
136 cifs_dbg(FYI, "Cleared reconnect bitmask for chan %u; now 0x%lx\n",
137 chan_index, ses->chans_need_reconnect);
141 cifs_chan_needs_reconnect(struct cifs_ses *ses,
142 struct TCP_Server_Info *server)
144 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
146 return CIFS_CHAN_NEEDS_RECONNECT(ses, chan_index);
150 cifs_chan_is_iface_active(struct cifs_ses *ses,
151 struct TCP_Server_Info *server)
153 unsigned int chan_index = cifs_ses_get_chan_index(ses, server);
155 return ses->chans[chan_index].iface &&
156 ses->chans[chan_index].iface->is_active;
159 /* returns number of channels added */
160 int cifs_try_adding_channels(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses)
162 struct TCP_Server_Info *server = ses->server;
163 int old_chan_count, new_chan_count;
167 struct cifs_server_iface *iface = NULL, *niface = NULL;
169 spin_lock(&ses->chan_lock);
171 new_chan_count = old_chan_count = ses->chan_count;
172 left = ses->chan_max - ses->chan_count;
175 spin_unlock(&ses->chan_lock);
177 "ses already at max_channels (%zu), nothing to open\n",
182 if (server->dialect < SMB30_PROT_ID) {
183 spin_unlock(&ses->chan_lock);
184 cifs_dbg(VFS, "multichannel is not supported on this protocol version, use 3.0 or above\n");
188 if (!(server->capabilities & SMB2_GLOBAL_CAP_MULTI_CHANNEL)) {
190 spin_unlock(&ses->chan_lock);
191 cifs_server_dbg(VFS, "no multichannel support\n");
194 spin_unlock(&ses->chan_lock);
197 * Keep connecting to same, fastest, iface for all channels as
198 * long as its RSS. Try next fastest one if not RSS or channel
201 spin_lock(&ses->iface_lock);
202 iface = list_first_entry(&ses->iface_list, struct cifs_server_iface,
204 spin_unlock(&ses->iface_lock);
209 if (tries > 3*ses->chan_max) {
210 cifs_dbg(FYI, "too many channel open attempts (%d channels left to open)\n",
215 spin_lock(&ses->iface_lock);
216 if (!ses->iface_count) {
217 spin_unlock(&ses->iface_lock);
221 list_for_each_entry_safe_from(iface, niface, &ses->iface_list,
223 /* skip ifaces that are unusable */
224 if (!iface->is_active ||
225 (is_ses_using_iface(ses, iface) &&
226 !iface->rss_capable)) {
230 /* take ref before unlock */
231 kref_get(&iface->refcount);
233 spin_unlock(&ses->iface_lock);
234 rc = cifs_ses_add_channel(cifs_sb, ses, iface);
235 spin_lock(&ses->iface_lock);
238 cifs_dbg(VFS, "failed to open extra channel on iface:%pIS rc=%d\n",
241 kref_put(&iface->refcount, release_iface);
245 cifs_dbg(FYI, "successfully opened new channel on iface:%pIS\n",
249 spin_unlock(&ses->iface_lock);
255 return new_chan_count - old_chan_count;
259 * update the iface for the channel if necessary.
260 * will return 0 when iface is updated, 1 if removed, 2 otherwise
261 * Must be called with chan_lock held.
264 cifs_chan_update_iface(struct cifs_ses *ses, struct TCP_Server_Info *server)
266 unsigned int chan_index;
267 struct cifs_server_iface *iface = NULL;
268 struct cifs_server_iface *old_iface = NULL;
271 spin_lock(&ses->chan_lock);
272 chan_index = cifs_ses_get_chan_index(ses, server);
274 spin_unlock(&ses->chan_lock);
278 if (ses->chans[chan_index].iface) {
279 old_iface = ses->chans[chan_index].iface;
280 if (old_iface->is_active) {
281 spin_unlock(&ses->chan_lock);
285 spin_unlock(&ses->chan_lock);
287 spin_lock(&ses->iface_lock);
288 /* then look for a new one */
289 list_for_each_entry(iface, &ses->iface_list, iface_head) {
290 if (!iface->is_active ||
291 (is_ses_using_iface(ses, iface) &&
292 !iface->rss_capable)) {
295 kref_get(&iface->refcount);
299 if (list_entry_is_head(iface, &ses->iface_list, iface_head)) {
302 cifs_dbg(FYI, "unable to find a suitable iface\n");
305 /* now drop the ref to the current iface */
306 if (old_iface && iface) {
307 cifs_dbg(FYI, "replacing iface: %pIS with %pIS\n",
308 &old_iface->sockaddr,
310 kref_put(&old_iface->refcount, release_iface);
311 } else if (old_iface) {
312 cifs_dbg(FYI, "releasing ref to iface: %pIS\n",
313 &old_iface->sockaddr);
314 kref_put(&old_iface->refcount, release_iface);
317 cifs_dbg(FYI, "adding new iface: %pIS\n", &iface->sockaddr);
319 spin_unlock(&ses->iface_lock);
321 spin_lock(&ses->chan_lock);
322 chan_index = cifs_ses_get_chan_index(ses, server);
323 ses->chans[chan_index].iface = iface;
325 /* No iface is found. if secondary chan, drop connection */
326 if (!iface && SERVER_IS_CHAN(server))
327 ses->chans[chan_index].server = NULL;
329 spin_unlock(&ses->chan_lock);
331 if (!iface && SERVER_IS_CHAN(server))
332 cifs_put_tcp_session(server, false);
338 * If server is a channel of ses, return the corresponding enclosing
339 * cifs_chan otherwise return NULL.
342 cifs_ses_find_chan(struct cifs_ses *ses, struct TCP_Server_Info *server)
346 spin_lock(&ses->chan_lock);
347 for (i = 0; i < ses->chan_count; i++) {
348 if (ses->chans[i].server == server) {
349 spin_unlock(&ses->chan_lock);
350 return &ses->chans[i];
353 spin_unlock(&ses->chan_lock);
358 cifs_ses_add_channel(struct cifs_sb_info *cifs_sb, struct cifs_ses *ses,
359 struct cifs_server_iface *iface)
361 struct TCP_Server_Info *chan_server;
362 struct cifs_chan *chan;
363 struct smb3_fs_context *ctx;
364 static const char unc_fmt[] = "\\%s\\foo";
365 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr;
366 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)&iface->sockaddr;
369 unsigned int xid = get_xid();
371 if (iface->sockaddr.ss_family == AF_INET)
372 cifs_dbg(FYI, "adding channel to ses %p (speed:%zu bps rdma:%s ip:%pI4)\n",
373 ses, iface->speed, iface->rdma_capable ? "yes" : "no",
376 cifs_dbg(FYI, "adding channel to ses %p (speed:%zu bps rdma:%s ip:%pI6)\n",
377 ses, iface->speed, iface->rdma_capable ? "yes" : "no",
381 * Setup a ctx with mostly the same info as the existing
382 * session and overwrite it with the requested iface data.
384 * We need to setup at least the fields used for negprot and
387 * We only need the ctx here, so we can reuse memory from
388 * the session and server without caring about memory
391 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
397 /* Always make new connection for now (TODO?) */
398 ctx->nosharesock = true;
401 ctx->domainauto = ses->domainAuto;
402 ctx->domainname = ses->domainName;
404 /* no hostname for extra channels */
405 ctx->server_hostname = "";
407 ctx->username = ses->user_name;
408 ctx->password = ses->password;
409 ctx->sectype = ses->sectype;
410 ctx->sign = ses->sign;
413 /* XXX: Use ses->server->hostname? */
414 len = sizeof(unc_fmt) + SERVER_NAME_LEN_WITH_NULL;
415 ctx->UNC = kzalloc(len, GFP_KERNEL);
420 scnprintf(ctx->UNC, len, unc_fmt, ses->ip_addr);
423 /* Reuse same version as master connection */
424 ctx->vals = ses->server->vals;
425 ctx->ops = ses->server->ops;
427 ctx->noblocksnd = ses->server->noblocksnd;
428 ctx->noautotune = ses->server->noautotune;
429 ctx->sockopt_tcp_nodelay = ses->server->tcp_nodelay;
430 ctx->echo_interval = ses->server->echo_interval / HZ;
431 ctx->max_credits = ses->server->max_credits;
434 * This will be used for encoding/decoding user/domain/pw
435 * during sess setup auth.
437 ctx->local_nls = cifs_sb->local_nls;
439 /* Use RDMA if possible */
440 ctx->rdma = iface->rdma_capable;
441 memcpy(&ctx->dstaddr, &iface->sockaddr, sizeof(ctx->dstaddr));
443 /* reuse master con client guid */
444 memcpy(&ctx->client_guid, ses->server->client_guid,
445 sizeof(ctx->client_guid));
446 ctx->use_client_guid = true;
448 chan_server = cifs_get_tcp_session(ctx, ses->server);
450 spin_lock(&ses->chan_lock);
451 chan = &ses->chans[ses->chan_count];
452 chan->server = chan_server;
453 if (IS_ERR(chan->server)) {
454 rc = PTR_ERR(chan->server);
456 spin_unlock(&ses->chan_lock);
461 atomic_set(&ses->chan_seq, 0);
463 /* Mark this channel as needing connect/setup */
464 cifs_chan_set_need_reconnect(ses, chan->server);
466 spin_unlock(&ses->chan_lock);
468 mutex_lock(&ses->session_mutex);
470 * We need to allocate the server crypto now as we will need
471 * to sign packets before we generate the channel signing key
472 * (we sign with the session key)
474 rc = smb311_crypto_shash_allocate(chan->server);
476 cifs_dbg(VFS, "%s: crypto alloc failed\n", __func__);
477 mutex_unlock(&ses->session_mutex);
481 rc = cifs_negotiate_protocol(xid, ses, chan->server);
483 rc = cifs_setup_session(xid, ses, chan->server, cifs_sb->local_nls);
485 mutex_unlock(&ses->session_mutex);
488 if (rc && chan->server) {
490 * we should avoid race with these delayed works before we
491 * remove this channel
493 cancel_delayed_work_sync(&chan->server->echo);
494 cancel_delayed_work_sync(&chan->server->reconnect);
496 spin_lock(&ses->chan_lock);
497 /* we rely on all bits beyond chan_count to be clear */
498 cifs_chan_clear_need_reconnect(ses, chan->server);
501 * chan_count should never reach 0 as at least the primary
502 * channel is always allocated
504 WARN_ON(ses->chan_count < 1);
505 spin_unlock(&ses->chan_lock);
507 cifs_put_tcp_session(chan->server, 0);
518 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
519 static __u32 cifs_ssetup_hdr(struct cifs_ses *ses,
520 struct TCP_Server_Info *server,
521 SESSION_SETUP_ANDX *pSMB)
523 __u32 capabilities = 0;
525 /* init fields common to all four types of SessSetup */
526 /* Note that offsets for first seven fields in req struct are same */
527 /* in CIFS Specs so does not matter which of 3 forms of struct */
528 /* that we use in next few lines */
529 /* Note that header is initialized to zero in header_assemble */
530 pSMB->req.AndXCommand = 0xFF;
531 pSMB->req.MaxBufferSize = cpu_to_le16(min_t(u32,
532 CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4,
534 pSMB->req.MaxMpxCount = cpu_to_le16(server->maxReq);
535 pSMB->req.VcNumber = cpu_to_le16(1);
537 /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */
539 /* BB verify whether signing required on neg or just on auth frame
542 capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS |
543 CAP_LARGE_WRITE_X | CAP_LARGE_READ_X;
546 pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
548 if (ses->capabilities & CAP_UNICODE) {
549 pSMB->req.hdr.Flags2 |= SMBFLG2_UNICODE;
550 capabilities |= CAP_UNICODE;
552 if (ses->capabilities & CAP_STATUS32) {
553 pSMB->req.hdr.Flags2 |= SMBFLG2_ERR_STATUS;
554 capabilities |= CAP_STATUS32;
556 if (ses->capabilities & CAP_DFS) {
557 pSMB->req.hdr.Flags2 |= SMBFLG2_DFS;
558 capabilities |= CAP_DFS;
560 if (ses->capabilities & CAP_UNIX)
561 capabilities |= CAP_UNIX;
567 unicode_oslm_strings(char **pbcc_area, const struct nls_table *nls_cp)
569 char *bcc_ptr = *pbcc_area;
572 /* Copy OS version */
573 bytes_ret = cifs_strtoUTF16((__le16 *)bcc_ptr, "Linux version ", 32,
575 bcc_ptr += 2 * bytes_ret;
576 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, init_utsname()->release,
578 bcc_ptr += 2 * bytes_ret;
579 bcc_ptr += 2; /* trailing null */
581 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS,
583 bcc_ptr += 2 * bytes_ret;
584 bcc_ptr += 2; /* trailing null */
586 *pbcc_area = bcc_ptr;
589 static void unicode_domain_string(char **pbcc_area, struct cifs_ses *ses,
590 const struct nls_table *nls_cp)
592 char *bcc_ptr = *pbcc_area;
596 if (ses->domainName == NULL) {
597 /* Sending null domain better than using a bogus domain name (as
598 we did briefly in 2.6.18) since server will use its default */
603 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->domainName,
604 CIFS_MAX_DOMAINNAME_LEN, nls_cp);
605 bcc_ptr += 2 * bytes_ret;
606 bcc_ptr += 2; /* account for null terminator */
608 *pbcc_area = bcc_ptr;
611 static void unicode_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
612 const struct nls_table *nls_cp)
614 char *bcc_ptr = *pbcc_area;
617 /* BB FIXME add check that strings total less
618 than 335 or will need to send them as arrays */
621 if (ses->user_name == NULL) {
622 /* null user mount */
626 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->user_name,
627 CIFS_MAX_USERNAME_LEN, nls_cp);
629 bcc_ptr += 2 * bytes_ret;
630 bcc_ptr += 2; /* account for null termination */
632 unicode_domain_string(&bcc_ptr, ses, nls_cp);
633 unicode_oslm_strings(&bcc_ptr, nls_cp);
635 *pbcc_area = bcc_ptr;
638 static void ascii_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
639 const struct nls_table *nls_cp)
641 char *bcc_ptr = *pbcc_area;
645 /* BB what about null user mounts - check that we do this BB */
647 if (ses->user_name != NULL) {
648 len = strscpy(bcc_ptr, ses->user_name, CIFS_MAX_USERNAME_LEN);
649 if (WARN_ON_ONCE(len < 0))
650 len = CIFS_MAX_USERNAME_LEN - 1;
653 /* else null user mount */
655 bcc_ptr++; /* account for null termination */
658 if (ses->domainName != NULL) {
659 len = strscpy(bcc_ptr, ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
660 if (WARN_ON_ONCE(len < 0))
661 len = CIFS_MAX_DOMAINNAME_LEN - 1;
663 } /* else we will send a null domain name
664 so the server will default to its own domain */
668 /* BB check for overflow here */
670 strcpy(bcc_ptr, "Linux version ");
671 bcc_ptr += strlen("Linux version ");
672 strcpy(bcc_ptr, init_utsname()->release);
673 bcc_ptr += strlen(init_utsname()->release) + 1;
675 strcpy(bcc_ptr, CIFS_NETWORK_OPSYS);
676 bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1;
678 *pbcc_area = bcc_ptr;
682 decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifs_ses *ses,
683 const struct nls_table *nls_cp)
686 char *data = *pbcc_area;
688 cifs_dbg(FYI, "bleft %d\n", bleft);
690 kfree(ses->serverOS);
691 ses->serverOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
692 cifs_dbg(FYI, "serverOS=%s\n", ses->serverOS);
693 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
699 kfree(ses->serverNOS);
700 ses->serverNOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
701 cifs_dbg(FYI, "serverNOS=%s\n", ses->serverNOS);
702 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
708 kfree(ses->serverDomain);
709 ses->serverDomain = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
710 cifs_dbg(FYI, "serverDomain=%s\n", ses->serverDomain);
715 static void decode_ascii_ssetup(char **pbcc_area, __u16 bleft,
716 struct cifs_ses *ses,
717 const struct nls_table *nls_cp)
720 char *bcc_ptr = *pbcc_area;
722 cifs_dbg(FYI, "decode sessetup ascii. bleft %d\n", bleft);
724 len = strnlen(bcc_ptr, bleft);
728 kfree(ses->serverOS);
730 ses->serverOS = kmalloc(len + 1, GFP_KERNEL);
732 memcpy(ses->serverOS, bcc_ptr, len);
733 ses->serverOS[len] = 0;
734 if (strncmp(ses->serverOS, "OS/2", 4) == 0)
735 cifs_dbg(FYI, "OS/2 server\n");
741 len = strnlen(bcc_ptr, bleft);
745 kfree(ses->serverNOS);
747 ses->serverNOS = kmalloc(len + 1, GFP_KERNEL);
748 if (ses->serverNOS) {
749 memcpy(ses->serverNOS, bcc_ptr, len);
750 ses->serverNOS[len] = 0;
756 len = strnlen(bcc_ptr, bleft);
760 /* No domain field in LANMAN case. Domain is
761 returned by old servers in the SMB negprot response */
762 /* BB For newer servers which do not support Unicode,
763 but thus do return domain here we could add parsing
764 for it later, but it is not very important */
765 cifs_dbg(FYI, "ascii: bytes left %d\n", bleft);
767 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
769 int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len,
770 struct cifs_ses *ses)
772 unsigned int tioffset; /* challenge message target info area */
773 unsigned int tilen; /* challenge message target info area length */
774 CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr;
777 if (blob_len < sizeof(CHALLENGE_MESSAGE)) {
778 cifs_dbg(VFS, "challenge blob len %d too small\n", blob_len);
782 if (memcmp(pblob->Signature, "NTLMSSP", 8)) {
783 cifs_dbg(VFS, "blob signature incorrect %s\n",
787 if (pblob->MessageType != NtLmChallenge) {
788 cifs_dbg(VFS, "Incorrect message type %d\n",
793 server_flags = le32_to_cpu(pblob->NegotiateFlags);
794 cifs_dbg(FYI, "%s: negotiate=0x%08x challenge=0x%08x\n", __func__,
795 ses->ntlmssp->client_flags, server_flags);
797 if ((ses->ntlmssp->client_flags & (NTLMSSP_NEGOTIATE_SEAL | NTLMSSP_NEGOTIATE_SIGN)) &&
798 (!(server_flags & NTLMSSP_NEGOTIATE_56) && !(server_flags & NTLMSSP_NEGOTIATE_128))) {
799 cifs_dbg(VFS, "%s: requested signing/encryption but server did not return either 56-bit or 128-bit session key size\n",
803 if (!(server_flags & NTLMSSP_NEGOTIATE_NTLM) && !(server_flags & NTLMSSP_NEGOTIATE_EXTENDED_SEC)) {
804 cifs_dbg(VFS, "%s: server does not seem to support either NTLMv1 or NTLMv2\n", __func__);
807 if (ses->server->sign && !(server_flags & NTLMSSP_NEGOTIATE_SIGN)) {
808 cifs_dbg(VFS, "%s: forced packet signing but server does not seem to support it\n",
812 if ((ses->ntlmssp->client_flags & NTLMSSP_NEGOTIATE_KEY_XCH) &&
813 !(server_flags & NTLMSSP_NEGOTIATE_KEY_XCH))
814 pr_warn_once("%s: authentication has been weakened as server does not support key exchange\n",
817 ses->ntlmssp->server_flags = server_flags;
819 memcpy(ses->ntlmssp->cryptkey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE);
820 /* In particular we can examine sign flags */
821 /* BB spec says that if AvId field of MsvAvTimestamp is populated then
822 we must set the MIC field of the AUTHENTICATE_MESSAGE */
824 tioffset = le32_to_cpu(pblob->TargetInfoArray.BufferOffset);
825 tilen = le16_to_cpu(pblob->TargetInfoArray.Length);
826 if (tioffset > blob_len || tioffset + tilen > blob_len) {
827 cifs_dbg(VFS, "tioffset + tilen too high %u + %u\n",
832 kfree_sensitive(ses->auth_key.response);
833 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen,
835 if (!ses->auth_key.response) {
836 cifs_dbg(VFS, "Challenge target info alloc failure\n");
839 ses->auth_key.len = tilen;
845 static int size_of_ntlmssp_blob(struct cifs_ses *ses, int base_size)
847 int sz = base_size + ses->auth_key.len
848 - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2;
851 sz += sizeof(__le16) * strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
853 sz += sizeof(__le16);
856 sz += sizeof(__le16) * strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN);
858 sz += sizeof(__le16);
860 if (ses->workstation_name[0])
861 sz += sizeof(__le16) * strnlen(ses->workstation_name,
862 ntlmssp_workstation_name_size(ses));
864 sz += sizeof(__le16);
869 static inline void cifs_security_buffer_from_str(SECURITY_BUFFER *pbuf,
872 unsigned char *pstart,
873 unsigned char **pcur,
874 const struct nls_table *nls_cp)
876 unsigned char *tmp = pstart;
886 pbuf->BufferOffset = cpu_to_le32(*pcur - pstart);
888 pbuf->MaximumLength = 0;
889 *pcur += sizeof(__le16);
891 len = cifs_strtoUTF16((__le16 *)*pcur,
895 len *= sizeof(__le16);
896 pbuf->BufferOffset = cpu_to_le32(*pcur - pstart);
897 pbuf->Length = cpu_to_le16(len);
898 pbuf->MaximumLength = cpu_to_le16(len);
903 /* BB Move to ntlmssp.c eventually */
905 int build_ntlmssp_negotiate_blob(unsigned char **pbuffer,
907 struct cifs_ses *ses,
908 struct TCP_Server_Info *server,
909 const struct nls_table *nls_cp)
912 NEGOTIATE_MESSAGE *sec_blob;
917 len = size_of_ntlmssp_blob(ses, sizeof(NEGOTIATE_MESSAGE));
918 *pbuffer = kmalloc(len, GFP_KERNEL);
921 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
923 goto setup_ntlm_neg_ret;
925 sec_blob = (NEGOTIATE_MESSAGE *)*pbuffer;
927 memset(*pbuffer, 0, sizeof(NEGOTIATE_MESSAGE));
928 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
929 sec_blob->MessageType = NtLmNegotiate;
931 /* BB is NTLMV2 session security format easier to use here? */
932 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
933 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
934 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC |
935 NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NTLMSSP_NEGOTIATE_SEAL |
936 NTLMSSP_NEGOTIATE_SIGN;
937 if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess)
938 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
940 tmp = *pbuffer + sizeof(NEGOTIATE_MESSAGE);
941 ses->ntlmssp->client_flags = flags;
942 sec_blob->NegotiateFlags = cpu_to_le32(flags);
944 /* these fields should be null in negotiate phase MS-NLMP 3.1.5.1.1 */
945 cifs_security_buffer_from_str(&sec_blob->DomainName,
947 CIFS_MAX_DOMAINNAME_LEN,
951 cifs_security_buffer_from_str(&sec_blob->WorkstationName,
953 CIFS_MAX_WORKSTATION_LEN,
957 *buflen = tmp - *pbuffer;
963 * Build ntlmssp blob with additional fields, such as version,
964 * supported by modern servers. For safety limit to SMB3 or later
965 * See notes in MS-NLMP Section 2.2.2.1 e.g.
967 int build_ntlmssp_smb3_negotiate_blob(unsigned char **pbuffer,
969 struct cifs_ses *ses,
970 struct TCP_Server_Info *server,
971 const struct nls_table *nls_cp)
974 struct negotiate_message *sec_blob;
979 len = size_of_ntlmssp_blob(ses, sizeof(struct negotiate_message));
980 *pbuffer = kmalloc(len, GFP_KERNEL);
983 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
985 goto setup_ntlm_smb3_neg_ret;
987 sec_blob = (struct negotiate_message *)*pbuffer;
989 memset(*pbuffer, 0, sizeof(struct negotiate_message));
990 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
991 sec_blob->MessageType = NtLmNegotiate;
993 /* BB is NTLMV2 session security format easier to use here? */
994 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
995 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
996 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC |
997 NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NTLMSSP_NEGOTIATE_SEAL |
998 NTLMSSP_NEGOTIATE_SIGN | NTLMSSP_NEGOTIATE_VERSION;
999 if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess)
1000 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
1002 sec_blob->Version.ProductMajorVersion = LINUX_VERSION_MAJOR;
1003 sec_blob->Version.ProductMinorVersion = LINUX_VERSION_PATCHLEVEL;
1004 sec_blob->Version.ProductBuild = cpu_to_le16(SMB3_PRODUCT_BUILD);
1005 sec_blob->Version.NTLMRevisionCurrent = NTLMSSP_REVISION_W2K3;
1007 tmp = *pbuffer + sizeof(struct negotiate_message);
1008 ses->ntlmssp->client_flags = flags;
1009 sec_blob->NegotiateFlags = cpu_to_le32(flags);
1011 /* these fields should be null in negotiate phase MS-NLMP 3.1.5.1.1 */
1012 cifs_security_buffer_from_str(&sec_blob->DomainName,
1014 CIFS_MAX_DOMAINNAME_LEN,
1018 cifs_security_buffer_from_str(&sec_blob->WorkstationName,
1020 CIFS_MAX_WORKSTATION_LEN,
1024 *buflen = tmp - *pbuffer;
1025 setup_ntlm_smb3_neg_ret:
1030 /* See MS-NLMP 2.2.1.3 */
1031 int build_ntlmssp_auth_blob(unsigned char **pbuffer,
1033 struct cifs_ses *ses,
1034 struct TCP_Server_Info *server,
1035 const struct nls_table *nls_cp)
1038 AUTHENTICATE_MESSAGE *sec_blob;
1043 rc = setup_ntlmv2_rsp(ses, nls_cp);
1045 cifs_dbg(VFS, "Error %d during NTLMSSP authentication\n", rc);
1047 goto setup_ntlmv2_ret;
1050 len = size_of_ntlmssp_blob(ses, sizeof(AUTHENTICATE_MESSAGE));
1051 *pbuffer = kmalloc(len, GFP_KERNEL);
1054 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
1056 goto setup_ntlmv2_ret;
1058 sec_blob = (AUTHENTICATE_MESSAGE *)*pbuffer;
1060 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
1061 sec_blob->MessageType = NtLmAuthenticate;
1063 flags = ses->ntlmssp->server_flags | NTLMSSP_REQUEST_TARGET |
1064 NTLMSSP_NEGOTIATE_TARGET_INFO | NTLMSSP_NEGOTIATE_WORKSTATION_SUPPLIED;
1065 /* we only send version information in ntlmssp negotiate, so do not set this flag */
1066 flags = flags & ~NTLMSSP_NEGOTIATE_VERSION;
1067 tmp = *pbuffer + sizeof(AUTHENTICATE_MESSAGE);
1068 sec_blob->NegotiateFlags = cpu_to_le32(flags);
1070 sec_blob->LmChallengeResponse.BufferOffset =
1071 cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE));
1072 sec_blob->LmChallengeResponse.Length = 0;
1073 sec_blob->LmChallengeResponse.MaximumLength = 0;
1075 sec_blob->NtChallengeResponse.BufferOffset =
1076 cpu_to_le32(tmp - *pbuffer);
1077 if (ses->user_name != NULL) {
1078 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
1079 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1080 tmp += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
1082 sec_blob->NtChallengeResponse.Length =
1083 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1084 sec_blob->NtChallengeResponse.MaximumLength =
1085 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1088 * don't send an NT Response for anonymous access
1090 sec_blob->NtChallengeResponse.Length = 0;
1091 sec_blob->NtChallengeResponse.MaximumLength = 0;
1094 cifs_security_buffer_from_str(&sec_blob->DomainName,
1096 CIFS_MAX_DOMAINNAME_LEN,
1100 cifs_security_buffer_from_str(&sec_blob->UserName,
1102 CIFS_MAX_USERNAME_LEN,
1106 cifs_security_buffer_from_str(&sec_blob->WorkstationName,
1107 ses->workstation_name,
1108 ntlmssp_workstation_name_size(ses),
1112 if ((ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_KEY_XCH) &&
1113 (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess) &&
1114 !calc_seckey(ses)) {
1115 memcpy(tmp, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
1116 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
1117 sec_blob->SessionKey.Length = cpu_to_le16(CIFS_CPHTXT_SIZE);
1118 sec_blob->SessionKey.MaximumLength =
1119 cpu_to_le16(CIFS_CPHTXT_SIZE);
1120 tmp += CIFS_CPHTXT_SIZE;
1122 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
1123 sec_blob->SessionKey.Length = 0;
1124 sec_blob->SessionKey.MaximumLength = 0;
1127 *buflen = tmp - *pbuffer;
1133 cifs_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
1135 switch (server->negflavor) {
1136 case CIFS_NEGFLAVOR_EXTENDED:
1137 switch (requested) {
1142 if (server->sec_ntlmssp &&
1143 (global_secflags & CIFSSEC_MAY_NTLMSSP))
1145 if ((server->sec_kerberos || server->sec_mskerberos) &&
1146 (global_secflags & CIFSSEC_MAY_KRB5))
1152 case CIFS_NEGFLAVOR_UNENCAP:
1153 switch (requested) {
1157 if (global_secflags & CIFSSEC_MAY_NTLMV2)
1171 struct cifs_ses *ses;
1172 struct TCP_Server_Info *server;
1173 struct nls_table *nls_cp;
1174 void (*func)(struct sess_data *);
1177 /* we will send the SMB in three pieces:
1178 * a fixed length beginning part, an optional
1179 * SPNEGO blob (which can be zero length), and a
1180 * last part which will include the strings
1181 * and rest of bcc area. This allows us to avoid
1182 * a large buffer 17K allocation
1188 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1190 sess_alloc_buffer(struct sess_data *sess_data, int wct)
1193 struct cifs_ses *ses = sess_data->ses;
1194 struct smb_hdr *smb_buf;
1196 rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses,
1202 sess_data->iov[0].iov_base = (char *)smb_buf;
1203 sess_data->iov[0].iov_len = be32_to_cpu(smb_buf->smb_buf_length) + 4;
1205 * This variable will be used to clear the buffer
1206 * allocated above in case of any error in the calling function.
1208 sess_data->buf0_type = CIFS_SMALL_BUFFER;
1210 /* 2000 big enough to fit max user, domain, NOS name etc. */
1211 sess_data->iov[2].iov_base = kmalloc(2000, GFP_KERNEL);
1212 if (!sess_data->iov[2].iov_base) {
1214 goto out_free_smb_buf;
1220 cifs_small_buf_release(smb_buf);
1221 sess_data->iov[0].iov_base = NULL;
1222 sess_data->iov[0].iov_len = 0;
1223 sess_data->buf0_type = CIFS_NO_BUFFER;
1228 sess_free_buffer(struct sess_data *sess_data)
1230 struct kvec *iov = sess_data->iov;
1233 * Zero the session data before freeing, as it might contain sensitive info (keys, etc).
1234 * Note that iov[1] is already freed by caller.
1236 if (sess_data->buf0_type != CIFS_NO_BUFFER && iov[0].iov_base)
1237 memzero_explicit(iov[0].iov_base, iov[0].iov_len);
1239 free_rsp_buf(sess_data->buf0_type, iov[0].iov_base);
1240 sess_data->buf0_type = CIFS_NO_BUFFER;
1241 kfree_sensitive(iov[2].iov_base);
1245 sess_establish_session(struct sess_data *sess_data)
1247 struct cifs_ses *ses = sess_data->ses;
1248 struct TCP_Server_Info *server = sess_data->server;
1250 cifs_server_lock(server);
1251 if (!server->session_estab) {
1253 server->session_key.response =
1254 kmemdup(ses->auth_key.response,
1255 ses->auth_key.len, GFP_KERNEL);
1256 if (!server->session_key.response) {
1257 cifs_server_unlock(server);
1260 server->session_key.len =
1263 server->sequence_number = 0x2;
1264 server->session_estab = true;
1266 cifs_server_unlock(server);
1268 cifs_dbg(FYI, "CIFS session established successfully\n");
1273 sess_sendreceive(struct sess_data *sess_data)
1276 struct smb_hdr *smb_buf = (struct smb_hdr *) sess_data->iov[0].iov_base;
1278 struct kvec rsp_iov = { NULL, 0 };
1280 count = sess_data->iov[1].iov_len + sess_data->iov[2].iov_len;
1281 be32_add_cpu(&smb_buf->smb_buf_length, count);
1282 put_bcc(count, smb_buf);
1284 rc = SendReceive2(sess_data->xid, sess_data->ses,
1285 sess_data->iov, 3 /* num_iovecs */,
1286 &sess_data->buf0_type,
1287 CIFS_LOG_ERROR, &rsp_iov);
1288 cifs_small_buf_release(sess_data->iov[0].iov_base);
1289 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
1295 sess_auth_ntlmv2(struct sess_data *sess_data)
1298 struct smb_hdr *smb_buf;
1299 SESSION_SETUP_ANDX *pSMB;
1301 struct cifs_ses *ses = sess_data->ses;
1302 struct TCP_Server_Info *server = sess_data->server;
1304 __u16 bytes_remaining;
1306 /* old style NTLM sessionsetup */
1308 rc = sess_alloc_buffer(sess_data, 13);
1312 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1313 bcc_ptr = sess_data->iov[2].iov_base;
1314 capabilities = cifs_ssetup_hdr(ses, server, pSMB);
1316 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
1318 /* LM2 password would be here if we supported it */
1319 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
1321 if (ses->user_name != NULL) {
1322 /* calculate nlmv2 response and session key */
1323 rc = setup_ntlmv2_rsp(ses, sess_data->nls_cp);
1325 cifs_dbg(VFS, "Error %d during NTLMv2 authentication\n", rc);
1329 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
1330 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1331 bcc_ptr += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
1333 /* set case sensitive password length after tilen may get
1334 * assigned, tilen is 0 otherwise.
1336 pSMB->req_no_secext.CaseSensitivePasswordLength =
1337 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1339 pSMB->req_no_secext.CaseSensitivePasswordLength = 0;
1342 if (ses->capabilities & CAP_UNICODE) {
1343 if (!IS_ALIGNED(sess_data->iov[0].iov_len, 2)) {
1347 unicode_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1349 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1353 sess_data->iov[2].iov_len = (long) bcc_ptr -
1354 (long) sess_data->iov[2].iov_base;
1356 rc = sess_sendreceive(sess_data);
1360 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1361 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1363 if (smb_buf->WordCount != 3) {
1365 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1369 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1370 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1372 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1373 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1375 bytes_remaining = get_bcc(smb_buf);
1376 bcc_ptr = pByteArea(smb_buf);
1378 /* BB check if Unicode and decode strings */
1379 if (bytes_remaining == 0) {
1380 /* no string area to decode, do nothing */
1381 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1382 /* unicode string area must be word-aligned */
1383 if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) {
1387 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1390 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1394 rc = sess_establish_session(sess_data);
1396 sess_data->result = rc;
1397 sess_data->func = NULL;
1398 sess_free_buffer(sess_data);
1399 kfree_sensitive(ses->auth_key.response);
1400 ses->auth_key.response = NULL;
1403 #ifdef CONFIG_CIFS_UPCALL
1405 sess_auth_kerberos(struct sess_data *sess_data)
1408 struct smb_hdr *smb_buf;
1409 SESSION_SETUP_ANDX *pSMB;
1411 struct cifs_ses *ses = sess_data->ses;
1412 struct TCP_Server_Info *server = sess_data->server;
1414 __u16 bytes_remaining;
1415 struct key *spnego_key = NULL;
1416 struct cifs_spnego_msg *msg;
1419 /* extended security */
1421 rc = sess_alloc_buffer(sess_data, 12);
1425 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1426 bcc_ptr = sess_data->iov[2].iov_base;
1427 capabilities = cifs_ssetup_hdr(ses, server, pSMB);
1429 spnego_key = cifs_get_spnego_key(ses, server);
1430 if (IS_ERR(spnego_key)) {
1431 rc = PTR_ERR(spnego_key);
1436 msg = spnego_key->payload.data[0];
1438 * check version field to make sure that cifs.upcall is
1439 * sending us a response in an expected form
1441 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1442 cifs_dbg(VFS, "incorrect version of cifs.upcall (expected %d but got %d)\n",
1443 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1445 goto out_put_spnego_key;
1448 kfree_sensitive(ses->auth_key.response);
1449 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1451 if (!ses->auth_key.response) {
1452 cifs_dbg(VFS, "Kerberos can't allocate (%u bytes) memory\n",
1455 goto out_put_spnego_key;
1457 ses->auth_key.len = msg->sesskey_len;
1459 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1460 capabilities |= CAP_EXTENDED_SECURITY;
1461 pSMB->req.Capabilities = cpu_to_le32(capabilities);
1462 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1463 sess_data->iov[1].iov_len = msg->secblob_len;
1464 pSMB->req.SecurityBlobLength = cpu_to_le16(sess_data->iov[1].iov_len);
1466 if (ses->capabilities & CAP_UNICODE) {
1467 /* unicode strings must be word aligned */
1468 if (!IS_ALIGNED(sess_data->iov[0].iov_len + sess_data->iov[1].iov_len, 2)) {
1472 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1473 unicode_domain_string(&bcc_ptr, ses, sess_data->nls_cp);
1475 /* BB: is this right? */
1476 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1479 sess_data->iov[2].iov_len = (long) bcc_ptr -
1480 (long) sess_data->iov[2].iov_base;
1482 rc = sess_sendreceive(sess_data);
1484 goto out_put_spnego_key;
1486 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1487 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1489 if (smb_buf->WordCount != 4) {
1491 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1492 goto out_put_spnego_key;
1495 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1496 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1498 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1499 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1501 bytes_remaining = get_bcc(smb_buf);
1502 bcc_ptr = pByteArea(smb_buf);
1504 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1505 if (blob_len > bytes_remaining) {
1506 cifs_dbg(VFS, "bad security blob length %d\n",
1509 goto out_put_spnego_key;
1511 bcc_ptr += blob_len;
1512 bytes_remaining -= blob_len;
1514 /* BB check if Unicode and decode strings */
1515 if (bytes_remaining == 0) {
1516 /* no string area to decode, do nothing */
1517 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1518 /* unicode string area must be word-aligned */
1519 if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) {
1523 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1526 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1530 rc = sess_establish_session(sess_data);
1532 key_invalidate(spnego_key);
1533 key_put(spnego_key);
1535 sess_data->result = rc;
1536 sess_data->func = NULL;
1537 sess_free_buffer(sess_data);
1538 kfree_sensitive(ses->auth_key.response);
1539 ses->auth_key.response = NULL;
1542 #endif /* ! CONFIG_CIFS_UPCALL */
1545 * The required kvec buffers have to be allocated before calling this
1549 _sess_auth_rawntlmssp_assemble_req(struct sess_data *sess_data)
1551 SESSION_SETUP_ANDX *pSMB;
1552 struct cifs_ses *ses = sess_data->ses;
1553 struct TCP_Server_Info *server = sess_data->server;
1557 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1559 capabilities = cifs_ssetup_hdr(ses, server, pSMB);
1560 if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) {
1561 cifs_dbg(VFS, "NTLMSSP requires Unicode support\n");
1565 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1566 capabilities |= CAP_EXTENDED_SECURITY;
1567 pSMB->req.Capabilities |= cpu_to_le32(capabilities);
1569 bcc_ptr = sess_data->iov[2].iov_base;
1570 /* unicode strings must be word aligned */
1571 if (!IS_ALIGNED(sess_data->iov[0].iov_len + sess_data->iov[1].iov_len, 2)) {
1575 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1577 sess_data->iov[2].iov_len = (long) bcc_ptr -
1578 (long) sess_data->iov[2].iov_base;
1584 sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data);
1587 sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data)
1590 struct smb_hdr *smb_buf;
1591 SESSION_SETUP_ANDX *pSMB;
1592 struct cifs_ses *ses = sess_data->ses;
1593 struct TCP_Server_Info *server = sess_data->server;
1594 __u16 bytes_remaining;
1596 unsigned char *ntlmsspblob = NULL;
1599 cifs_dbg(FYI, "rawntlmssp session setup negotiate phase\n");
1602 * if memory allocation is successful, caller of this function
1605 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1606 if (!ses->ntlmssp) {
1610 ses->ntlmssp->sesskey_per_smbsess = false;
1613 rc = sess_alloc_buffer(sess_data, 12);
1617 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1619 /* Build security blob before we assemble the request */
1620 rc = build_ntlmssp_negotiate_blob(&ntlmsspblob,
1621 &blob_len, ses, server,
1624 goto out_free_ntlmsspblob;
1626 sess_data->iov[1].iov_len = blob_len;
1627 sess_data->iov[1].iov_base = ntlmsspblob;
1628 pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len);
1630 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
1632 goto out_free_ntlmsspblob;
1634 rc = sess_sendreceive(sess_data);
1636 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1637 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1639 /* If true, rc here is expected and not an error */
1640 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1641 smb_buf->Status.CifsError ==
1642 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))
1646 goto out_free_ntlmsspblob;
1648 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1650 if (smb_buf->WordCount != 4) {
1652 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1653 goto out_free_ntlmsspblob;
1656 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1657 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1659 bytes_remaining = get_bcc(smb_buf);
1660 bcc_ptr = pByteArea(smb_buf);
1662 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1663 if (blob_len > bytes_remaining) {
1664 cifs_dbg(VFS, "bad security blob length %d\n",
1667 goto out_free_ntlmsspblob;
1670 rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses);
1672 out_free_ntlmsspblob:
1673 kfree_sensitive(ntlmsspblob);
1675 sess_free_buffer(sess_data);
1678 sess_data->func = sess_auth_rawntlmssp_authenticate;
1682 /* Else error. Cleanup */
1683 kfree_sensitive(ses->auth_key.response);
1684 ses->auth_key.response = NULL;
1685 kfree_sensitive(ses->ntlmssp);
1686 ses->ntlmssp = NULL;
1688 sess_data->func = NULL;
1689 sess_data->result = rc;
1693 sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data)
1696 struct smb_hdr *smb_buf;
1697 SESSION_SETUP_ANDX *pSMB;
1698 struct cifs_ses *ses = sess_data->ses;
1699 struct TCP_Server_Info *server = sess_data->server;
1700 __u16 bytes_remaining;
1702 unsigned char *ntlmsspblob = NULL;
1705 cifs_dbg(FYI, "rawntlmssp session setup authenticate phase\n");
1708 rc = sess_alloc_buffer(sess_data, 12);
1712 /* Build security blob before we assemble the request */
1713 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1714 smb_buf = (struct smb_hdr *)pSMB;
1715 rc = build_ntlmssp_auth_blob(&ntlmsspblob,
1716 &blob_len, ses, server,
1719 goto out_free_ntlmsspblob;
1720 sess_data->iov[1].iov_len = blob_len;
1721 sess_data->iov[1].iov_base = ntlmsspblob;
1722 pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len);
1724 * Make sure that we tell the server that we are using
1725 * the uid that it just gave us back on the response
1728 smb_buf->Uid = ses->Suid;
1730 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
1732 goto out_free_ntlmsspblob;
1734 rc = sess_sendreceive(sess_data);
1736 goto out_free_ntlmsspblob;
1738 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1739 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1740 if (smb_buf->WordCount != 4) {
1742 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1743 goto out_free_ntlmsspblob;
1746 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1747 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1749 if (ses->Suid != smb_buf->Uid) {
1750 ses->Suid = smb_buf->Uid;
1751 cifs_dbg(FYI, "UID changed! new UID = %llu\n", ses->Suid);
1754 bytes_remaining = get_bcc(smb_buf);
1755 bcc_ptr = pByteArea(smb_buf);
1756 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1757 if (blob_len > bytes_remaining) {
1758 cifs_dbg(VFS, "bad security blob length %d\n",
1761 goto out_free_ntlmsspblob;
1763 bcc_ptr += blob_len;
1764 bytes_remaining -= blob_len;
1767 /* BB check if Unicode and decode strings */
1768 if (bytes_remaining == 0) {
1769 /* no string area to decode, do nothing */
1770 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1771 /* unicode string area must be word-aligned */
1772 if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) {
1776 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1779 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1783 out_free_ntlmsspblob:
1784 kfree_sensitive(ntlmsspblob);
1786 sess_free_buffer(sess_data);
1789 rc = sess_establish_session(sess_data);
1792 kfree_sensitive(ses->auth_key.response);
1793 ses->auth_key.response = NULL;
1794 kfree_sensitive(ses->ntlmssp);
1795 ses->ntlmssp = NULL;
1797 sess_data->func = NULL;
1798 sess_data->result = rc;
1801 static int select_sec(struct sess_data *sess_data)
1804 struct cifs_ses *ses = sess_data->ses;
1805 struct TCP_Server_Info *server = sess_data->server;
1807 type = cifs_select_sectype(server, ses->sectype);
1808 cifs_dbg(FYI, "sess setup type %d\n", type);
1809 if (type == Unspecified) {
1810 cifs_dbg(VFS, "Unable to select appropriate authentication method!\n");
1816 sess_data->func = sess_auth_ntlmv2;
1819 #ifdef CONFIG_CIFS_UPCALL
1820 sess_data->func = sess_auth_kerberos;
1823 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1825 #endif /* CONFIG_CIFS_UPCALL */
1827 sess_data->func = sess_auth_rawntlmssp_negotiate;
1830 cifs_dbg(VFS, "secType %d not supported!\n", type);
1837 int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses,
1838 struct TCP_Server_Info *server,
1839 const struct nls_table *nls_cp)
1842 struct sess_data *sess_data;
1845 WARN(1, "%s: ses == NULL!", __func__);
1849 sess_data = kzalloc(sizeof(struct sess_data), GFP_KERNEL);
1853 sess_data->xid = xid;
1854 sess_data->ses = ses;
1855 sess_data->server = server;
1856 sess_data->buf0_type = CIFS_NO_BUFFER;
1857 sess_data->nls_cp = (struct nls_table *) nls_cp;
1859 rc = select_sec(sess_data);
1863 while (sess_data->func)
1864 sess_data->func(sess_data);
1866 /* Store result before we free sess_data */
1867 rc = sess_data->result;
1870 kfree_sensitive(sess_data);
1873 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */