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 <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 && CIFS_SERVER_IS_CHAN(server))
327 ses->chans[chan_index].server = NULL;
329 spin_unlock(&ses->chan_lock);
331 if (!iface && CIFS_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 = {NULL};
364 static const char unc_fmt[] = "\\%s\\foo";
365 char unc[sizeof(unc_fmt)+SERVER_NAME_LEN_WITH_NULL] = {0};
366 struct sockaddr_in *ipv4 = (struct sockaddr_in *)&iface->sockaddr;
367 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
392 /* Always make new connection for now (TODO?) */
393 ctx.nosharesock = true;
396 ctx.domainauto = ses->domainAuto;
397 ctx.domainname = ses->domainName;
399 /* no hostname for extra channels */
400 ctx.server_hostname = "";
402 ctx.username = ses->user_name;
403 ctx.password = ses->password;
404 ctx.sectype = ses->sectype;
405 ctx.sign = ses->sign;
408 /* XXX: Use ses->server->hostname? */
409 sprintf(unc, unc_fmt, ses->ip_addr);
413 /* Reuse same version as master connection */
414 ctx.vals = ses->server->vals;
415 ctx.ops = ses->server->ops;
417 ctx.noblocksnd = ses->server->noblocksnd;
418 ctx.noautotune = ses->server->noautotune;
419 ctx.sockopt_tcp_nodelay = ses->server->tcp_nodelay;
420 ctx.echo_interval = ses->server->echo_interval / HZ;
421 ctx.max_credits = ses->server->max_credits;
424 * This will be used for encoding/decoding user/domain/pw
425 * during sess setup auth.
427 ctx.local_nls = cifs_sb->local_nls;
429 /* Use RDMA if possible */
430 ctx.rdma = iface->rdma_capable;
431 memcpy(&ctx.dstaddr, &iface->sockaddr, sizeof(struct sockaddr_storage));
433 /* reuse master con client guid */
434 memcpy(&ctx.client_guid, ses->server->client_guid,
435 SMB2_CLIENT_GUID_SIZE);
436 ctx.use_client_guid = true;
438 chan_server = cifs_get_tcp_session(&ctx, ses->server);
440 spin_lock(&ses->chan_lock);
441 chan = &ses->chans[ses->chan_count];
442 chan->server = chan_server;
443 if (IS_ERR(chan->server)) {
444 rc = PTR_ERR(chan->server);
446 spin_unlock(&ses->chan_lock);
451 atomic_set(&ses->chan_seq, 0);
453 /* Mark this channel as needing connect/setup */
454 cifs_chan_set_need_reconnect(ses, chan->server);
456 spin_unlock(&ses->chan_lock);
458 mutex_lock(&ses->session_mutex);
460 * We need to allocate the server crypto now as we will need
461 * to sign packets before we generate the channel signing key
462 * (we sign with the session key)
464 rc = smb311_crypto_shash_allocate(chan->server);
466 cifs_dbg(VFS, "%s: crypto alloc failed\n", __func__);
467 mutex_unlock(&ses->session_mutex);
471 rc = cifs_negotiate_protocol(xid, ses, chan->server);
473 rc = cifs_setup_session(xid, ses, chan->server, cifs_sb->local_nls);
475 mutex_unlock(&ses->session_mutex);
478 if (rc && chan->server) {
480 * we should avoid race with these delayed works before we
481 * remove this channel
483 cancel_delayed_work_sync(&chan->server->echo);
484 cancel_delayed_work_sync(&chan->server->reconnect);
486 spin_lock(&ses->chan_lock);
487 /* we rely on all bits beyond chan_count to be clear */
488 cifs_chan_clear_need_reconnect(ses, chan->server);
491 * chan_count should never reach 0 as at least the primary
492 * channel is always allocated
494 WARN_ON(ses->chan_count < 1);
495 spin_unlock(&ses->chan_lock);
497 cifs_put_tcp_session(chan->server, 0);
504 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
505 static __u32 cifs_ssetup_hdr(struct cifs_ses *ses,
506 struct TCP_Server_Info *server,
507 SESSION_SETUP_ANDX *pSMB)
509 __u32 capabilities = 0;
511 /* init fields common to all four types of SessSetup */
512 /* Note that offsets for first seven fields in req struct are same */
513 /* in CIFS Specs so does not matter which of 3 forms of struct */
514 /* that we use in next few lines */
515 /* Note that header is initialized to zero in header_assemble */
516 pSMB->req.AndXCommand = 0xFF;
517 pSMB->req.MaxBufferSize = cpu_to_le16(min_t(u32,
518 CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4,
520 pSMB->req.MaxMpxCount = cpu_to_le16(server->maxReq);
521 pSMB->req.VcNumber = cpu_to_le16(1);
523 /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */
525 /* BB verify whether signing required on neg or just on auth frame
528 capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS |
529 CAP_LARGE_WRITE_X | CAP_LARGE_READ_X;
532 pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
534 if (ses->capabilities & CAP_UNICODE) {
535 pSMB->req.hdr.Flags2 |= SMBFLG2_UNICODE;
536 capabilities |= CAP_UNICODE;
538 if (ses->capabilities & CAP_STATUS32) {
539 pSMB->req.hdr.Flags2 |= SMBFLG2_ERR_STATUS;
540 capabilities |= CAP_STATUS32;
542 if (ses->capabilities & CAP_DFS) {
543 pSMB->req.hdr.Flags2 |= SMBFLG2_DFS;
544 capabilities |= CAP_DFS;
546 if (ses->capabilities & CAP_UNIX)
547 capabilities |= CAP_UNIX;
553 unicode_oslm_strings(char **pbcc_area, const struct nls_table *nls_cp)
555 char *bcc_ptr = *pbcc_area;
558 /* Copy OS version */
559 bytes_ret = cifs_strtoUTF16((__le16 *)bcc_ptr, "Linux version ", 32,
561 bcc_ptr += 2 * bytes_ret;
562 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, init_utsname()->release,
564 bcc_ptr += 2 * bytes_ret;
565 bcc_ptr += 2; /* trailing null */
567 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS,
569 bcc_ptr += 2 * bytes_ret;
570 bcc_ptr += 2; /* trailing null */
572 *pbcc_area = bcc_ptr;
575 static void unicode_domain_string(char **pbcc_area, struct cifs_ses *ses,
576 const struct nls_table *nls_cp)
578 char *bcc_ptr = *pbcc_area;
582 if (ses->domainName == NULL) {
583 /* Sending null domain better than using a bogus domain name (as
584 we did briefly in 2.6.18) since server will use its default */
589 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->domainName,
590 CIFS_MAX_DOMAINNAME_LEN, nls_cp);
591 bcc_ptr += 2 * bytes_ret;
592 bcc_ptr += 2; /* account for null terminator */
594 *pbcc_area = bcc_ptr;
597 static void unicode_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
598 const struct nls_table *nls_cp)
600 char *bcc_ptr = *pbcc_area;
603 /* BB FIXME add check that strings total less
604 than 335 or will need to send them as arrays */
607 if (ses->user_name == NULL) {
608 /* null user mount */
612 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->user_name,
613 CIFS_MAX_USERNAME_LEN, nls_cp);
615 bcc_ptr += 2 * bytes_ret;
616 bcc_ptr += 2; /* account for null termination */
618 unicode_domain_string(&bcc_ptr, ses, nls_cp);
619 unicode_oslm_strings(&bcc_ptr, nls_cp);
621 *pbcc_area = bcc_ptr;
624 static void ascii_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
625 const struct nls_table *nls_cp)
627 char *bcc_ptr = *pbcc_area;
631 /* BB what about null user mounts - check that we do this BB */
633 if (ses->user_name != NULL) {
634 len = strscpy(bcc_ptr, ses->user_name, CIFS_MAX_USERNAME_LEN);
635 if (WARN_ON_ONCE(len < 0))
636 len = CIFS_MAX_USERNAME_LEN - 1;
639 /* else null user mount */
641 bcc_ptr++; /* account for null termination */
644 if (ses->domainName != NULL) {
645 len = strscpy(bcc_ptr, ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
646 if (WARN_ON_ONCE(len < 0))
647 len = CIFS_MAX_DOMAINNAME_LEN - 1;
649 } /* else we will send a null domain name
650 so the server will default to its own domain */
654 /* BB check for overflow here */
656 strcpy(bcc_ptr, "Linux version ");
657 bcc_ptr += strlen("Linux version ");
658 strcpy(bcc_ptr, init_utsname()->release);
659 bcc_ptr += strlen(init_utsname()->release) + 1;
661 strcpy(bcc_ptr, CIFS_NETWORK_OPSYS);
662 bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1;
664 *pbcc_area = bcc_ptr;
668 decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifs_ses *ses,
669 const struct nls_table *nls_cp)
672 char *data = *pbcc_area;
674 cifs_dbg(FYI, "bleft %d\n", bleft);
676 kfree(ses->serverOS);
677 ses->serverOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
678 cifs_dbg(FYI, "serverOS=%s\n", ses->serverOS);
679 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
685 kfree(ses->serverNOS);
686 ses->serverNOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
687 cifs_dbg(FYI, "serverNOS=%s\n", ses->serverNOS);
688 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
694 kfree(ses->serverDomain);
695 ses->serverDomain = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
696 cifs_dbg(FYI, "serverDomain=%s\n", ses->serverDomain);
701 static void decode_ascii_ssetup(char **pbcc_area, __u16 bleft,
702 struct cifs_ses *ses,
703 const struct nls_table *nls_cp)
706 char *bcc_ptr = *pbcc_area;
708 cifs_dbg(FYI, "decode sessetup ascii. bleft %d\n", bleft);
710 len = strnlen(bcc_ptr, bleft);
714 kfree(ses->serverOS);
716 ses->serverOS = kmalloc(len + 1, GFP_KERNEL);
718 memcpy(ses->serverOS, bcc_ptr, len);
719 ses->serverOS[len] = 0;
720 if (strncmp(ses->serverOS, "OS/2", 4) == 0)
721 cifs_dbg(FYI, "OS/2 server\n");
727 len = strnlen(bcc_ptr, bleft);
731 kfree(ses->serverNOS);
733 ses->serverNOS = kmalloc(len + 1, GFP_KERNEL);
734 if (ses->serverNOS) {
735 memcpy(ses->serverNOS, bcc_ptr, len);
736 ses->serverNOS[len] = 0;
742 len = strnlen(bcc_ptr, bleft);
746 /* No domain field in LANMAN case. Domain is
747 returned by old servers in the SMB negprot response */
748 /* BB For newer servers which do not support Unicode,
749 but thus do return domain here we could add parsing
750 for it later, but it is not very important */
751 cifs_dbg(FYI, "ascii: bytes left %d\n", bleft);
753 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */
755 int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len,
756 struct cifs_ses *ses)
758 unsigned int tioffset; /* challenge message target info area */
759 unsigned int tilen; /* challenge message target info area length */
760 CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr;
763 if (blob_len < sizeof(CHALLENGE_MESSAGE)) {
764 cifs_dbg(VFS, "challenge blob len %d too small\n", blob_len);
768 if (memcmp(pblob->Signature, "NTLMSSP", 8)) {
769 cifs_dbg(VFS, "blob signature incorrect %s\n",
773 if (pblob->MessageType != NtLmChallenge) {
774 cifs_dbg(VFS, "Incorrect message type %d\n",
779 server_flags = le32_to_cpu(pblob->NegotiateFlags);
780 cifs_dbg(FYI, "%s: negotiate=0x%08x challenge=0x%08x\n", __func__,
781 ses->ntlmssp->client_flags, server_flags);
783 if ((ses->ntlmssp->client_flags & (NTLMSSP_NEGOTIATE_SEAL | NTLMSSP_NEGOTIATE_SIGN)) &&
784 (!(server_flags & NTLMSSP_NEGOTIATE_56) && !(server_flags & NTLMSSP_NEGOTIATE_128))) {
785 cifs_dbg(VFS, "%s: requested signing/encryption but server did not return either 56-bit or 128-bit session key size\n",
789 if (!(server_flags & NTLMSSP_NEGOTIATE_NTLM) && !(server_flags & NTLMSSP_NEGOTIATE_EXTENDED_SEC)) {
790 cifs_dbg(VFS, "%s: server does not seem to support either NTLMv1 or NTLMv2\n", __func__);
793 if (ses->server->sign && !(server_flags & NTLMSSP_NEGOTIATE_SIGN)) {
794 cifs_dbg(VFS, "%s: forced packet signing but server does not seem to support it\n",
798 if ((ses->ntlmssp->client_flags & NTLMSSP_NEGOTIATE_KEY_XCH) &&
799 !(server_flags & NTLMSSP_NEGOTIATE_KEY_XCH))
800 pr_warn_once("%s: authentication has been weakened as server does not support key exchange\n",
803 ses->ntlmssp->server_flags = server_flags;
805 memcpy(ses->ntlmssp->cryptkey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE);
806 /* In particular we can examine sign flags */
807 /* BB spec says that if AvId field of MsvAvTimestamp is populated then
808 we must set the MIC field of the AUTHENTICATE_MESSAGE */
810 tioffset = le32_to_cpu(pblob->TargetInfoArray.BufferOffset);
811 tilen = le16_to_cpu(pblob->TargetInfoArray.Length);
812 if (tioffset > blob_len || tioffset + tilen > blob_len) {
813 cifs_dbg(VFS, "tioffset + tilen too high %u + %u\n",
818 kfree_sensitive(ses->auth_key.response);
819 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen,
821 if (!ses->auth_key.response) {
822 cifs_dbg(VFS, "Challenge target info alloc failure\n");
825 ses->auth_key.len = tilen;
831 static int size_of_ntlmssp_blob(struct cifs_ses *ses, int base_size)
833 int sz = base_size + ses->auth_key.len
834 - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2;
837 sz += sizeof(__le16) * strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
839 sz += sizeof(__le16);
842 sz += sizeof(__le16) * strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN);
844 sz += sizeof(__le16);
846 if (ses->workstation_name[0])
847 sz += sizeof(__le16) * strnlen(ses->workstation_name,
848 ntlmssp_workstation_name_size(ses));
850 sz += sizeof(__le16);
855 static inline void cifs_security_buffer_from_str(SECURITY_BUFFER *pbuf,
858 unsigned char *pstart,
859 unsigned char **pcur,
860 const struct nls_table *nls_cp)
862 unsigned char *tmp = pstart;
872 pbuf->BufferOffset = cpu_to_le32(*pcur - pstart);
874 pbuf->MaximumLength = 0;
875 *pcur += sizeof(__le16);
877 len = cifs_strtoUTF16((__le16 *)*pcur,
881 len *= sizeof(__le16);
882 pbuf->BufferOffset = cpu_to_le32(*pcur - pstart);
883 pbuf->Length = cpu_to_le16(len);
884 pbuf->MaximumLength = cpu_to_le16(len);
889 /* BB Move to ntlmssp.c eventually */
891 int build_ntlmssp_negotiate_blob(unsigned char **pbuffer,
893 struct cifs_ses *ses,
894 struct TCP_Server_Info *server,
895 const struct nls_table *nls_cp)
898 NEGOTIATE_MESSAGE *sec_blob;
903 len = size_of_ntlmssp_blob(ses, sizeof(NEGOTIATE_MESSAGE));
904 *pbuffer = kmalloc(len, GFP_KERNEL);
907 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
909 goto setup_ntlm_neg_ret;
911 sec_blob = (NEGOTIATE_MESSAGE *)*pbuffer;
913 memset(*pbuffer, 0, sizeof(NEGOTIATE_MESSAGE));
914 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
915 sec_blob->MessageType = NtLmNegotiate;
917 /* BB is NTLMV2 session security format easier to use here? */
918 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
919 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
920 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC |
921 NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NTLMSSP_NEGOTIATE_SEAL |
922 NTLMSSP_NEGOTIATE_SIGN;
923 if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess)
924 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
926 tmp = *pbuffer + sizeof(NEGOTIATE_MESSAGE);
927 ses->ntlmssp->client_flags = flags;
928 sec_blob->NegotiateFlags = cpu_to_le32(flags);
930 /* these fields should be null in negotiate phase MS-NLMP 3.1.5.1.1 */
931 cifs_security_buffer_from_str(&sec_blob->DomainName,
933 CIFS_MAX_DOMAINNAME_LEN,
937 cifs_security_buffer_from_str(&sec_blob->WorkstationName,
939 CIFS_MAX_WORKSTATION_LEN,
943 *buflen = tmp - *pbuffer;
949 * Build ntlmssp blob with additional fields, such as version,
950 * supported by modern servers. For safety limit to SMB3 or later
951 * See notes in MS-NLMP Section 2.2.2.1 e.g.
953 int build_ntlmssp_smb3_negotiate_blob(unsigned char **pbuffer,
955 struct cifs_ses *ses,
956 struct TCP_Server_Info *server,
957 const struct nls_table *nls_cp)
960 struct negotiate_message *sec_blob;
965 len = size_of_ntlmssp_blob(ses, sizeof(struct negotiate_message));
966 *pbuffer = kmalloc(len, GFP_KERNEL);
969 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
971 goto setup_ntlm_smb3_neg_ret;
973 sec_blob = (struct negotiate_message *)*pbuffer;
975 memset(*pbuffer, 0, sizeof(struct negotiate_message));
976 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
977 sec_blob->MessageType = NtLmNegotiate;
979 /* BB is NTLMV2 session security format easier to use here? */
980 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
981 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
982 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC |
983 NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NTLMSSP_NEGOTIATE_SEAL |
984 NTLMSSP_NEGOTIATE_SIGN | NTLMSSP_NEGOTIATE_VERSION;
985 if (!server->session_estab || ses->ntlmssp->sesskey_per_smbsess)
986 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
988 sec_blob->Version.ProductMajorVersion = LINUX_VERSION_MAJOR;
989 sec_blob->Version.ProductMinorVersion = LINUX_VERSION_PATCHLEVEL;
990 sec_blob->Version.ProductBuild = cpu_to_le16(SMB3_PRODUCT_BUILD);
991 sec_blob->Version.NTLMRevisionCurrent = NTLMSSP_REVISION_W2K3;
993 tmp = *pbuffer + sizeof(struct negotiate_message);
994 ses->ntlmssp->client_flags = flags;
995 sec_blob->NegotiateFlags = cpu_to_le32(flags);
997 /* these fields should be null in negotiate phase MS-NLMP 3.1.5.1.1 */
998 cifs_security_buffer_from_str(&sec_blob->DomainName,
1000 CIFS_MAX_DOMAINNAME_LEN,
1004 cifs_security_buffer_from_str(&sec_blob->WorkstationName,
1006 CIFS_MAX_WORKSTATION_LEN,
1010 *buflen = tmp - *pbuffer;
1011 setup_ntlm_smb3_neg_ret:
1016 /* See MS-NLMP 2.2.1.3 */
1017 int build_ntlmssp_auth_blob(unsigned char **pbuffer,
1019 struct cifs_ses *ses,
1020 struct TCP_Server_Info *server,
1021 const struct nls_table *nls_cp)
1024 AUTHENTICATE_MESSAGE *sec_blob;
1029 rc = setup_ntlmv2_rsp(ses, nls_cp);
1031 cifs_dbg(VFS, "Error %d during NTLMSSP authentication\n", rc);
1033 goto setup_ntlmv2_ret;
1036 len = size_of_ntlmssp_blob(ses, sizeof(AUTHENTICATE_MESSAGE));
1037 *pbuffer = kmalloc(len, GFP_KERNEL);
1040 cifs_dbg(VFS, "Error %d during NTLMSSP allocation\n", rc);
1042 goto setup_ntlmv2_ret;
1044 sec_blob = (AUTHENTICATE_MESSAGE *)*pbuffer;
1046 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
1047 sec_blob->MessageType = NtLmAuthenticate;
1049 flags = ses->ntlmssp->server_flags | NTLMSSP_REQUEST_TARGET |
1050 NTLMSSP_NEGOTIATE_TARGET_INFO | NTLMSSP_NEGOTIATE_WORKSTATION_SUPPLIED;
1051 /* we only send version information in ntlmssp negotiate, so do not set this flag */
1052 flags = flags & ~NTLMSSP_NEGOTIATE_VERSION;
1053 tmp = *pbuffer + sizeof(AUTHENTICATE_MESSAGE);
1054 sec_blob->NegotiateFlags = cpu_to_le32(flags);
1056 sec_blob->LmChallengeResponse.BufferOffset =
1057 cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE));
1058 sec_blob->LmChallengeResponse.Length = 0;
1059 sec_blob->LmChallengeResponse.MaximumLength = 0;
1061 sec_blob->NtChallengeResponse.BufferOffset =
1062 cpu_to_le32(tmp - *pbuffer);
1063 if (ses->user_name != NULL) {
1064 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
1065 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1066 tmp += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
1068 sec_blob->NtChallengeResponse.Length =
1069 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1070 sec_blob->NtChallengeResponse.MaximumLength =
1071 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1074 * don't send an NT Response for anonymous access
1076 sec_blob->NtChallengeResponse.Length = 0;
1077 sec_blob->NtChallengeResponse.MaximumLength = 0;
1080 cifs_security_buffer_from_str(&sec_blob->DomainName,
1082 CIFS_MAX_DOMAINNAME_LEN,
1086 cifs_security_buffer_from_str(&sec_blob->UserName,
1088 CIFS_MAX_USERNAME_LEN,
1092 cifs_security_buffer_from_str(&sec_blob->WorkstationName,
1093 ses->workstation_name,
1094 ntlmssp_workstation_name_size(ses),
1098 if ((ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_KEY_XCH) &&
1099 (!ses->server->session_estab || ses->ntlmssp->sesskey_per_smbsess) &&
1100 !calc_seckey(ses)) {
1101 memcpy(tmp, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
1102 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
1103 sec_blob->SessionKey.Length = cpu_to_le16(CIFS_CPHTXT_SIZE);
1104 sec_blob->SessionKey.MaximumLength =
1105 cpu_to_le16(CIFS_CPHTXT_SIZE);
1106 tmp += CIFS_CPHTXT_SIZE;
1108 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
1109 sec_blob->SessionKey.Length = 0;
1110 sec_blob->SessionKey.MaximumLength = 0;
1113 *buflen = tmp - *pbuffer;
1119 cifs_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
1121 switch (server->negflavor) {
1122 case CIFS_NEGFLAVOR_EXTENDED:
1123 switch (requested) {
1128 if (server->sec_ntlmssp &&
1129 (global_secflags & CIFSSEC_MAY_NTLMSSP))
1131 if ((server->sec_kerberos || server->sec_mskerberos) &&
1132 (global_secflags & CIFSSEC_MAY_KRB5))
1138 case CIFS_NEGFLAVOR_UNENCAP:
1139 switch (requested) {
1143 if (global_secflags & CIFSSEC_MAY_NTLMV2)
1157 struct cifs_ses *ses;
1158 struct TCP_Server_Info *server;
1159 struct nls_table *nls_cp;
1160 void (*func)(struct sess_data *);
1163 /* we will send the SMB in three pieces:
1164 * a fixed length beginning part, an optional
1165 * SPNEGO blob (which can be zero length), and a
1166 * last part which will include the strings
1167 * and rest of bcc area. This allows us to avoid
1168 * a large buffer 17K allocation
1174 #ifdef CONFIG_CIFS_ALLOW_INSECURE_LEGACY
1176 sess_alloc_buffer(struct sess_data *sess_data, int wct)
1179 struct cifs_ses *ses = sess_data->ses;
1180 struct smb_hdr *smb_buf;
1182 rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses,
1188 sess_data->iov[0].iov_base = (char *)smb_buf;
1189 sess_data->iov[0].iov_len = be32_to_cpu(smb_buf->smb_buf_length) + 4;
1191 * This variable will be used to clear the buffer
1192 * allocated above in case of any error in the calling function.
1194 sess_data->buf0_type = CIFS_SMALL_BUFFER;
1196 /* 2000 big enough to fit max user, domain, NOS name etc. */
1197 sess_data->iov[2].iov_base = kmalloc(2000, GFP_KERNEL);
1198 if (!sess_data->iov[2].iov_base) {
1200 goto out_free_smb_buf;
1206 cifs_small_buf_release(smb_buf);
1207 sess_data->iov[0].iov_base = NULL;
1208 sess_data->iov[0].iov_len = 0;
1209 sess_data->buf0_type = CIFS_NO_BUFFER;
1214 sess_free_buffer(struct sess_data *sess_data)
1216 struct kvec *iov = sess_data->iov;
1219 * Zero the session data before freeing, as it might contain sensitive info (keys, etc).
1220 * Note that iov[1] is already freed by caller.
1222 if (sess_data->buf0_type != CIFS_NO_BUFFER && iov[0].iov_base)
1223 memzero_explicit(iov[0].iov_base, iov[0].iov_len);
1225 free_rsp_buf(sess_data->buf0_type, iov[0].iov_base);
1226 sess_data->buf0_type = CIFS_NO_BUFFER;
1227 kfree_sensitive(iov[2].iov_base);
1231 sess_establish_session(struct sess_data *sess_data)
1233 struct cifs_ses *ses = sess_data->ses;
1234 struct TCP_Server_Info *server = sess_data->server;
1236 cifs_server_lock(server);
1237 if (!server->session_estab) {
1239 server->session_key.response =
1240 kmemdup(ses->auth_key.response,
1241 ses->auth_key.len, GFP_KERNEL);
1242 if (!server->session_key.response) {
1243 cifs_server_unlock(server);
1246 server->session_key.len =
1249 server->sequence_number = 0x2;
1250 server->session_estab = true;
1252 cifs_server_unlock(server);
1254 cifs_dbg(FYI, "CIFS session established successfully\n");
1259 sess_sendreceive(struct sess_data *sess_data)
1262 struct smb_hdr *smb_buf = (struct smb_hdr *) sess_data->iov[0].iov_base;
1264 struct kvec rsp_iov = { NULL, 0 };
1266 count = sess_data->iov[1].iov_len + sess_data->iov[2].iov_len;
1267 be32_add_cpu(&smb_buf->smb_buf_length, count);
1268 put_bcc(count, smb_buf);
1270 rc = SendReceive2(sess_data->xid, sess_data->ses,
1271 sess_data->iov, 3 /* num_iovecs */,
1272 &sess_data->buf0_type,
1273 CIFS_LOG_ERROR, &rsp_iov);
1274 cifs_small_buf_release(sess_data->iov[0].iov_base);
1275 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
1281 sess_auth_ntlmv2(struct sess_data *sess_data)
1284 struct smb_hdr *smb_buf;
1285 SESSION_SETUP_ANDX *pSMB;
1287 struct cifs_ses *ses = sess_data->ses;
1288 struct TCP_Server_Info *server = sess_data->server;
1290 __u16 bytes_remaining;
1292 /* old style NTLM sessionsetup */
1294 rc = sess_alloc_buffer(sess_data, 13);
1298 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1299 bcc_ptr = sess_data->iov[2].iov_base;
1300 capabilities = cifs_ssetup_hdr(ses, server, pSMB);
1302 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
1304 /* LM2 password would be here if we supported it */
1305 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
1307 if (ses->user_name != NULL) {
1308 /* calculate nlmv2 response and session key */
1309 rc = setup_ntlmv2_rsp(ses, sess_data->nls_cp);
1311 cifs_dbg(VFS, "Error %d during NTLMv2 authentication\n", rc);
1315 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
1316 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1317 bcc_ptr += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
1319 /* set case sensitive password length after tilen may get
1320 * assigned, tilen is 0 otherwise.
1322 pSMB->req_no_secext.CaseSensitivePasswordLength =
1323 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
1325 pSMB->req_no_secext.CaseSensitivePasswordLength = 0;
1328 if (ses->capabilities & CAP_UNICODE) {
1329 if (!IS_ALIGNED(sess_data->iov[0].iov_len, 2)) {
1333 unicode_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1335 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1339 sess_data->iov[2].iov_len = (long) bcc_ptr -
1340 (long) sess_data->iov[2].iov_base;
1342 rc = sess_sendreceive(sess_data);
1346 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1347 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1349 if (smb_buf->WordCount != 3) {
1351 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1355 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1356 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1358 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1359 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1361 bytes_remaining = get_bcc(smb_buf);
1362 bcc_ptr = pByteArea(smb_buf);
1364 /* BB check if Unicode and decode strings */
1365 if (bytes_remaining == 0) {
1366 /* no string area to decode, do nothing */
1367 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1368 /* unicode string area must be word-aligned */
1369 if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) {
1373 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1376 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1380 rc = sess_establish_session(sess_data);
1382 sess_data->result = rc;
1383 sess_data->func = NULL;
1384 sess_free_buffer(sess_data);
1385 kfree_sensitive(ses->auth_key.response);
1386 ses->auth_key.response = NULL;
1389 #ifdef CONFIG_CIFS_UPCALL
1391 sess_auth_kerberos(struct sess_data *sess_data)
1394 struct smb_hdr *smb_buf;
1395 SESSION_SETUP_ANDX *pSMB;
1397 struct cifs_ses *ses = sess_data->ses;
1398 struct TCP_Server_Info *server = sess_data->server;
1400 __u16 bytes_remaining;
1401 struct key *spnego_key = NULL;
1402 struct cifs_spnego_msg *msg;
1405 /* extended security */
1407 rc = sess_alloc_buffer(sess_data, 12);
1411 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1412 bcc_ptr = sess_data->iov[2].iov_base;
1413 capabilities = cifs_ssetup_hdr(ses, server, pSMB);
1415 spnego_key = cifs_get_spnego_key(ses, server);
1416 if (IS_ERR(spnego_key)) {
1417 rc = PTR_ERR(spnego_key);
1422 msg = spnego_key->payload.data[0];
1424 * check version field to make sure that cifs.upcall is
1425 * sending us a response in an expected form
1427 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1428 cifs_dbg(VFS, "incorrect version of cifs.upcall (expected %d but got %d)\n",
1429 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1431 goto out_put_spnego_key;
1434 kfree_sensitive(ses->auth_key.response);
1435 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1437 if (!ses->auth_key.response) {
1438 cifs_dbg(VFS, "Kerberos can't allocate (%u bytes) memory\n",
1441 goto out_put_spnego_key;
1443 ses->auth_key.len = msg->sesskey_len;
1445 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1446 capabilities |= CAP_EXTENDED_SECURITY;
1447 pSMB->req.Capabilities = cpu_to_le32(capabilities);
1448 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1449 sess_data->iov[1].iov_len = msg->secblob_len;
1450 pSMB->req.SecurityBlobLength = cpu_to_le16(sess_data->iov[1].iov_len);
1452 if (ses->capabilities & CAP_UNICODE) {
1453 /* unicode strings must be word aligned */
1454 if (!IS_ALIGNED(sess_data->iov[0].iov_len + sess_data->iov[1].iov_len, 2)) {
1458 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1459 unicode_domain_string(&bcc_ptr, ses, sess_data->nls_cp);
1461 /* BB: is this right? */
1462 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1465 sess_data->iov[2].iov_len = (long) bcc_ptr -
1466 (long) sess_data->iov[2].iov_base;
1468 rc = sess_sendreceive(sess_data);
1470 goto out_put_spnego_key;
1472 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1473 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1475 if (smb_buf->WordCount != 4) {
1477 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1478 goto out_put_spnego_key;
1481 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1482 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1484 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1485 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1487 bytes_remaining = get_bcc(smb_buf);
1488 bcc_ptr = pByteArea(smb_buf);
1490 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1491 if (blob_len > bytes_remaining) {
1492 cifs_dbg(VFS, "bad security blob length %d\n",
1495 goto out_put_spnego_key;
1497 bcc_ptr += blob_len;
1498 bytes_remaining -= blob_len;
1500 /* BB check if Unicode and decode strings */
1501 if (bytes_remaining == 0) {
1502 /* no string area to decode, do nothing */
1503 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1504 /* unicode string area must be word-aligned */
1505 if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) {
1509 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1512 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1516 rc = sess_establish_session(sess_data);
1518 key_invalidate(spnego_key);
1519 key_put(spnego_key);
1521 sess_data->result = rc;
1522 sess_data->func = NULL;
1523 sess_free_buffer(sess_data);
1524 kfree_sensitive(ses->auth_key.response);
1525 ses->auth_key.response = NULL;
1528 #endif /* ! CONFIG_CIFS_UPCALL */
1531 * The required kvec buffers have to be allocated before calling this
1535 _sess_auth_rawntlmssp_assemble_req(struct sess_data *sess_data)
1537 SESSION_SETUP_ANDX *pSMB;
1538 struct cifs_ses *ses = sess_data->ses;
1539 struct TCP_Server_Info *server = sess_data->server;
1543 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1545 capabilities = cifs_ssetup_hdr(ses, server, pSMB);
1546 if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) {
1547 cifs_dbg(VFS, "NTLMSSP requires Unicode support\n");
1551 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1552 capabilities |= CAP_EXTENDED_SECURITY;
1553 pSMB->req.Capabilities |= cpu_to_le32(capabilities);
1555 bcc_ptr = sess_data->iov[2].iov_base;
1556 /* unicode strings must be word aligned */
1557 if (!IS_ALIGNED(sess_data->iov[0].iov_len + sess_data->iov[1].iov_len, 2)) {
1561 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1563 sess_data->iov[2].iov_len = (long) bcc_ptr -
1564 (long) sess_data->iov[2].iov_base;
1570 sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data);
1573 sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data)
1576 struct smb_hdr *smb_buf;
1577 SESSION_SETUP_ANDX *pSMB;
1578 struct cifs_ses *ses = sess_data->ses;
1579 struct TCP_Server_Info *server = sess_data->server;
1580 __u16 bytes_remaining;
1582 unsigned char *ntlmsspblob = NULL;
1585 cifs_dbg(FYI, "rawntlmssp session setup negotiate phase\n");
1588 * if memory allocation is successful, caller of this function
1591 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1592 if (!ses->ntlmssp) {
1596 ses->ntlmssp->sesskey_per_smbsess = false;
1599 rc = sess_alloc_buffer(sess_data, 12);
1603 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1605 /* Build security blob before we assemble the request */
1606 rc = build_ntlmssp_negotiate_blob(&ntlmsspblob,
1607 &blob_len, ses, server,
1610 goto out_free_ntlmsspblob;
1612 sess_data->iov[1].iov_len = blob_len;
1613 sess_data->iov[1].iov_base = ntlmsspblob;
1614 pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len);
1616 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
1618 goto out_free_ntlmsspblob;
1620 rc = sess_sendreceive(sess_data);
1622 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1623 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1625 /* If true, rc here is expected and not an error */
1626 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1627 smb_buf->Status.CifsError ==
1628 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))
1632 goto out_free_ntlmsspblob;
1634 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1636 if (smb_buf->WordCount != 4) {
1638 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1639 goto out_free_ntlmsspblob;
1642 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1643 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1645 bytes_remaining = get_bcc(smb_buf);
1646 bcc_ptr = pByteArea(smb_buf);
1648 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1649 if (blob_len > bytes_remaining) {
1650 cifs_dbg(VFS, "bad security blob length %d\n",
1653 goto out_free_ntlmsspblob;
1656 rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses);
1658 out_free_ntlmsspblob:
1659 kfree_sensitive(ntlmsspblob);
1661 sess_free_buffer(sess_data);
1664 sess_data->func = sess_auth_rawntlmssp_authenticate;
1668 /* Else error. Cleanup */
1669 kfree_sensitive(ses->auth_key.response);
1670 ses->auth_key.response = NULL;
1671 kfree_sensitive(ses->ntlmssp);
1672 ses->ntlmssp = NULL;
1674 sess_data->func = NULL;
1675 sess_data->result = rc;
1679 sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data)
1682 struct smb_hdr *smb_buf;
1683 SESSION_SETUP_ANDX *pSMB;
1684 struct cifs_ses *ses = sess_data->ses;
1685 struct TCP_Server_Info *server = sess_data->server;
1686 __u16 bytes_remaining;
1688 unsigned char *ntlmsspblob = NULL;
1691 cifs_dbg(FYI, "rawntlmssp session setup authenticate phase\n");
1694 rc = sess_alloc_buffer(sess_data, 12);
1698 /* Build security blob before we assemble the request */
1699 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1700 smb_buf = (struct smb_hdr *)pSMB;
1701 rc = build_ntlmssp_auth_blob(&ntlmsspblob,
1702 &blob_len, ses, server,
1705 goto out_free_ntlmsspblob;
1706 sess_data->iov[1].iov_len = blob_len;
1707 sess_data->iov[1].iov_base = ntlmsspblob;
1708 pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len);
1710 * Make sure that we tell the server that we are using
1711 * the uid that it just gave us back on the response
1714 smb_buf->Uid = ses->Suid;
1716 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
1718 goto out_free_ntlmsspblob;
1720 rc = sess_sendreceive(sess_data);
1722 goto out_free_ntlmsspblob;
1724 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1725 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1726 if (smb_buf->WordCount != 4) {
1728 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1729 goto out_free_ntlmsspblob;
1732 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1733 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1735 if (ses->Suid != smb_buf->Uid) {
1736 ses->Suid = smb_buf->Uid;
1737 cifs_dbg(FYI, "UID changed! new UID = %llu\n", ses->Suid);
1740 bytes_remaining = get_bcc(smb_buf);
1741 bcc_ptr = pByteArea(smb_buf);
1742 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1743 if (blob_len > bytes_remaining) {
1744 cifs_dbg(VFS, "bad security blob length %d\n",
1747 goto out_free_ntlmsspblob;
1749 bcc_ptr += blob_len;
1750 bytes_remaining -= blob_len;
1753 /* BB check if Unicode and decode strings */
1754 if (bytes_remaining == 0) {
1755 /* no string area to decode, do nothing */
1756 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1757 /* unicode string area must be word-aligned */
1758 if (!IS_ALIGNED((unsigned long)bcc_ptr - (unsigned long)smb_buf, 2)) {
1762 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1765 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1769 out_free_ntlmsspblob:
1770 kfree_sensitive(ntlmsspblob);
1772 sess_free_buffer(sess_data);
1775 rc = sess_establish_session(sess_data);
1778 kfree_sensitive(ses->auth_key.response);
1779 ses->auth_key.response = NULL;
1780 kfree_sensitive(ses->ntlmssp);
1781 ses->ntlmssp = NULL;
1783 sess_data->func = NULL;
1784 sess_data->result = rc;
1787 static int select_sec(struct sess_data *sess_data)
1790 struct cifs_ses *ses = sess_data->ses;
1791 struct TCP_Server_Info *server = sess_data->server;
1793 type = cifs_select_sectype(server, ses->sectype);
1794 cifs_dbg(FYI, "sess setup type %d\n", type);
1795 if (type == Unspecified) {
1796 cifs_dbg(VFS, "Unable to select appropriate authentication method!\n");
1802 sess_data->func = sess_auth_ntlmv2;
1805 #ifdef CONFIG_CIFS_UPCALL
1806 sess_data->func = sess_auth_kerberos;
1809 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1811 #endif /* CONFIG_CIFS_UPCALL */
1813 sess_data->func = sess_auth_rawntlmssp_negotiate;
1816 cifs_dbg(VFS, "secType %d not supported!\n", type);
1823 int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses,
1824 struct TCP_Server_Info *server,
1825 const struct nls_table *nls_cp)
1828 struct sess_data *sess_data;
1831 WARN(1, "%s: ses == NULL!", __func__);
1835 sess_data = kzalloc(sizeof(struct sess_data), GFP_KERNEL);
1839 sess_data->xid = xid;
1840 sess_data->ses = ses;
1841 sess_data->server = server;
1842 sess_data->buf0_type = CIFS_NO_BUFFER;
1843 sess_data->nls_cp = (struct nls_table *) nls_cp;
1845 rc = select_sec(sess_data);
1849 while (sess_data->func)
1850 sess_data->func(sess_data);
1852 /* Store result before we free sess_data */
1853 rc = sess_data->result;
1856 kfree_sensitive(sess_data);
1859 #endif /* CONFIG_CIFS_ALLOW_INSECURE_LEGACY */