]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/cifs/sess.c
CIFS: Separate SMB2 sync header processing
[mirror_ubuntu-zesty-kernel.git] / fs / cifs / sess.c
CommitLineData
3979877e
SF
1/*
2 * fs/cifs/sess.c
3 *
4 * SMB/CIFS session setup handling routines
5 *
d185cda7 6 * Copyright (c) International Business Machines Corp., 2006, 2009
3979877e
SF
7 * Author(s): Steve French (sfrench@us.ibm.com)
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#include "cifspdu.h"
25#include "cifsglob.h"
26#include "cifsproto.h"
27#include "cifs_unicode.h"
28#include "cifs_debug.h"
29#include "ntlmssp.h"
30#include "nterr.h"
9c53588e 31#include <linux/utsname.h>
5a0e3ad6 32#include <linux/slab.h>
2442421b 33#include "cifs_spnego.h"
3979877e 34
96daf2b0 35static __u32 cifs_ssetup_hdr(struct cifs_ses *ses, SESSION_SETUP_ANDX *pSMB)
3979877e
SF
36{
37 __u32 capabilities = 0;
38
39 /* init fields common to all four types of SessSetup */
eca6acf9
SF
40 /* Note that offsets for first seven fields in req struct are same */
41 /* in CIFS Specs so does not matter which of 3 forms of struct */
42 /* that we use in next few lines */
43 /* Note that header is initialized to zero in header_assemble */
3979877e 44 pSMB->req.AndXCommand = 0xFF;
c974befa
JL
45 pSMB->req.MaxBufferSize = cpu_to_le16(min_t(u32,
46 CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4,
47 USHRT_MAX));
3979877e 48 pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq);
bc09d141 49 pSMB->req.VcNumber = cpu_to_le16(1);
3979877e
SF
50
51 /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */
52
790fe579 53 /* BB verify whether signing required on neg or just on auth frame
3979877e
SF
54 (and NTLM case) */
55
56 capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS |
57 CAP_LARGE_WRITE_X | CAP_LARGE_READ_X;
58
38d77c50 59 if (ses->server->sign)
3979877e
SF
60 pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
61
62 if (ses->capabilities & CAP_UNICODE) {
63 pSMB->req.hdr.Flags2 |= SMBFLG2_UNICODE;
64 capabilities |= CAP_UNICODE;
65 }
66 if (ses->capabilities & CAP_STATUS32) {
67 pSMB->req.hdr.Flags2 |= SMBFLG2_ERR_STATUS;
68 capabilities |= CAP_STATUS32;
69 }
70 if (ses->capabilities & CAP_DFS) {
71 pSMB->req.hdr.Flags2 |= SMBFLG2_DFS;
72 capabilities |= CAP_DFS;
73 }
26f57364 74 if (ses->capabilities & CAP_UNIX)
3979877e 75 capabilities |= CAP_UNIX;
3979877e 76
3979877e
SF
77 return capabilities;
78}
79
0d3a01fa
JL
80static void
81unicode_oslm_strings(char **pbcc_area, const struct nls_table *nls_cp)
82{
83 char *bcc_ptr = *pbcc_area;
84 int bytes_ret = 0;
85
86 /* Copy OS version */
acbbb76a
SF
87 bytes_ret = cifs_strtoUTF16((__le16 *)bcc_ptr, "Linux version ", 32,
88 nls_cp);
0d3a01fa 89 bcc_ptr += 2 * bytes_ret;
acbbb76a
SF
90 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, init_utsname()->release,
91 32, nls_cp);
0d3a01fa
JL
92 bcc_ptr += 2 * bytes_ret;
93 bcc_ptr += 2; /* trailing null */
94
acbbb76a
SF
95 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS,
96 32, nls_cp);
0d3a01fa
JL
97 bcc_ptr += 2 * bytes_ret;
98 bcc_ptr += 2; /* trailing null */
99
100 *pbcc_area = bcc_ptr;
101}
102
96daf2b0 103static void unicode_domain_string(char **pbcc_area, struct cifs_ses *ses,
0d3a01fa
JL
104 const struct nls_table *nls_cp)
105{
106 char *bcc_ptr = *pbcc_area;
107 int bytes_ret = 0;
108
109 /* copy domain */
110 if (ses->domainName == NULL) {
111 /* Sending null domain better than using a bogus domain name (as
112 we did briefly in 2.6.18) since server will use its default */
113 *bcc_ptr = 0;
114 *(bcc_ptr+1) = 0;
115 bytes_ret = 0;
116 } else
acbbb76a 117 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->domainName,
057d6332 118 CIFS_MAX_DOMAINNAME_LEN, nls_cp);
0d3a01fa
JL
119 bcc_ptr += 2 * bytes_ret;
120 bcc_ptr += 2; /* account for null terminator */
121
122 *pbcc_area = bcc_ptr;
123}
124
125
96daf2b0 126static void unicode_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
790fe579 127 const struct nls_table *nls_cp)
3979877e 128{
790fe579 129 char *bcc_ptr = *pbcc_area;
3979877e
SF
130 int bytes_ret = 0;
131
132 /* BB FIXME add check that strings total less
133 than 335 or will need to send them as arrays */
134
0223cf0b
SF
135 /* unicode strings, must be word aligned before the call */
136/* if ((long) bcc_ptr % 2) {
3979877e
SF
137 *bcc_ptr = 0;
138 bcc_ptr++;
0223cf0b 139 } */
3979877e 140 /* copy user */
8727c8a8 141 if (ses->user_name == NULL) {
6e659c63
SF
142 /* null user mount */
143 *bcc_ptr = 0;
144 *(bcc_ptr+1) = 0;
301a6a31 145 } else {
acbbb76a 146 bytes_ret = cifs_strtoUTF16((__le16 *) bcc_ptr, ses->user_name,
8c3a2b4c 147 CIFS_MAX_USERNAME_LEN, nls_cp);
3979877e
SF
148 }
149 bcc_ptr += 2 * bytes_ret;
150 bcc_ptr += 2; /* account for null termination */
3979877e 151
0d3a01fa
JL
152 unicode_domain_string(&bcc_ptr, ses, nls_cp);
153 unicode_oslm_strings(&bcc_ptr, nls_cp);
3979877e
SF
154
155 *pbcc_area = bcc_ptr;
156}
157
96daf2b0 158static void ascii_ssetup_strings(char **pbcc_area, struct cifs_ses *ses,
790fe579 159 const struct nls_table *nls_cp)
3979877e 160{
790fe579 161 char *bcc_ptr = *pbcc_area;
3979877e
SF
162
163 /* copy user */
164 /* BB what about null user mounts - check that we do this BB */
790fe579 165 /* copy user */
de47a417 166 if (ses->user_name != NULL) {
8c3a2b4c
SL
167 strncpy(bcc_ptr, ses->user_name, CIFS_MAX_USERNAME_LEN);
168 bcc_ptr += strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN);
de47a417 169 }
8727c8a8 170 /* else null user mount */
3979877e 171 *bcc_ptr = 0;
790fe579 172 bcc_ptr++; /* account for null termination */
3979877e 173
790fe579 174 /* copy domain */
790fe579 175 if (ses->domainName != NULL) {
057d6332
CG
176 strncpy(bcc_ptr, ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
177 bcc_ptr += strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
790fe579 178 } /* else we will send a null domain name
6e659c63 179 so the server will default to its own domain */
3979877e
SF
180 *bcc_ptr = 0;
181 bcc_ptr++;
182
183 /* BB check for overflow here */
184
185 strcpy(bcc_ptr, "Linux version ");
186 bcc_ptr += strlen("Linux version ");
96b644bd
SH
187 strcpy(bcc_ptr, init_utsname()->release);
188 bcc_ptr += strlen(init_utsname()->release) + 1;
3979877e
SF
189
190 strcpy(bcc_ptr, CIFS_NETWORK_OPSYS);
191 bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1;
192
790fe579 193 *pbcc_area = bcc_ptr;
3979877e
SF
194}
195
59140797 196static void
96daf2b0 197decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifs_ses *ses,
59140797 198 const struct nls_table *nls_cp)
3979877e 199{
59140797 200 int len;
790fe579 201 char *data = *pbcc_area;
3979877e 202
f96637be 203 cifs_dbg(FYI, "bleft %d\n", bleft);
3979877e 204
26f57364 205 kfree(ses->serverOS);
acbbb76a 206 ses->serverOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
f96637be 207 cifs_dbg(FYI, "serverOS=%s\n", ses->serverOS);
59140797
JL
208 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
209 data += len;
210 bleft -= len;
211 if (bleft <= 0)
212 return;
3979877e 213
26f57364 214 kfree(ses->serverNOS);
acbbb76a 215 ses->serverNOS = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
f96637be 216 cifs_dbg(FYI, "serverNOS=%s\n", ses->serverNOS);
59140797
JL
217 len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2;
218 data += len;
219 bleft -= len;
220 if (bleft <= 0)
221 return;
790fe579 222
26f57364 223 kfree(ses->serverDomain);
acbbb76a 224 ses->serverDomain = cifs_strndup_from_utf16(data, bleft, true, nls_cp);
f96637be 225 cifs_dbg(FYI, "serverDomain=%s\n", ses->serverDomain);
790fe579 226
59140797 227 return;
3979877e
SF
228}
229
7d066459
JL
230static void decode_ascii_ssetup(char **pbcc_area, __u16 bleft,
231 struct cifs_ses *ses,
232 const struct nls_table *nls_cp)
3979877e 233{
3979877e 234 int len;
790fe579 235 char *bcc_ptr = *pbcc_area;
3979877e 236
f96637be 237 cifs_dbg(FYI, "decode sessetup ascii. bleft %d\n", bleft);
50c2f753 238
3979877e 239 len = strnlen(bcc_ptr, bleft);
790fe579 240 if (len >= bleft)
7d066459 241 return;
50c2f753 242
26f57364 243 kfree(ses->serverOS);
3979877e
SF
244
245 ses->serverOS = kzalloc(len + 1, GFP_KERNEL);
27b7edcf 246 if (ses->serverOS) {
3979877e 247 strncpy(ses->serverOS, bcc_ptr, len);
27b7edcf
NJ
248 if (strncmp(ses->serverOS, "OS/2", 4) == 0)
249 cifs_dbg(FYI, "OS/2 server\n");
250 }
3979877e
SF
251
252 bcc_ptr += len + 1;
253 bleft -= len + 1;
254
255 len = strnlen(bcc_ptr, bleft);
790fe579 256 if (len >= bleft)
7d066459 257 return;
3979877e 258
26f57364 259 kfree(ses->serverNOS);
3979877e
SF
260
261 ses->serverNOS = kzalloc(len + 1, GFP_KERNEL);
790fe579 262 if (ses->serverNOS)
3979877e
SF
263 strncpy(ses->serverNOS, bcc_ptr, len);
264
265 bcc_ptr += len + 1;
266 bleft -= len + 1;
267
790fe579
SF
268 len = strnlen(bcc_ptr, bleft);
269 if (len > bleft)
7d066459 270 return;
3979877e 271
9ac00b7d
SF
272 /* No domain field in LANMAN case. Domain is
273 returned by old servers in the SMB negprot response */
274 /* BB For newer servers which do not support Unicode,
275 but thus do return domain here we could add parsing
276 for it later, but it is not very important */
f96637be 277 cifs_dbg(FYI, "ascii: bytes left %d\n", bleft);
3979877e
SF
278}
279
5478f9ba 280int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len,
96daf2b0 281 struct cifs_ses *ses)
0b3cc858 282{
2b149f11
SP
283 unsigned int tioffset; /* challenge message target info area */
284 unsigned int tilen; /* challenge message target info area length */
285
0b3cc858
SF
286 CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr;
287
288 if (blob_len < sizeof(CHALLENGE_MESSAGE)) {
f96637be 289 cifs_dbg(VFS, "challenge blob len %d too small\n", blob_len);
0b3cc858
SF
290 return -EINVAL;
291 }
292
293 if (memcmp(pblob->Signature, "NTLMSSP", 8)) {
f96637be
JP
294 cifs_dbg(VFS, "blob signature incorrect %s\n",
295 pblob->Signature);
0b3cc858
SF
296 return -EINVAL;
297 }
298 if (pblob->MessageType != NtLmChallenge) {
f96637be
JP
299 cifs_dbg(VFS, "Incorrect message type %d\n",
300 pblob->MessageType);
0b3cc858
SF
301 return -EINVAL;
302 }
303
d3686d54 304 memcpy(ses->ntlmssp->cryptkey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE);
0b3cc858
SF
305 /* BB we could decode pblob->NegotiateFlags; some may be useful */
306 /* In particular we can examine sign flags */
307 /* BB spec says that if AvId field of MsvAvTimestamp is populated then
308 we must set the MIC field of the AUTHENTICATE_MESSAGE */
d3686d54 309 ses->ntlmssp->server_flags = le32_to_cpu(pblob->NegotiateFlags);
5443d130
SF
310 tioffset = le32_to_cpu(pblob->TargetInfoArray.BufferOffset);
311 tilen = le16_to_cpu(pblob->TargetInfoArray.Length);
4991a5fa 312 if (tioffset > blob_len || tioffset + tilen > blob_len) {
f96637be
JP
313 cifs_dbg(VFS, "tioffset + tilen too high %u + %u",
314 tioffset, tilen);
4991a5fa
DC
315 return -EINVAL;
316 }
d3686d54 317 if (tilen) {
f7f7c185
SMP
318 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen,
319 GFP_KERNEL);
d3686d54 320 if (!ses->auth_key.response) {
f96637be 321 cifs_dbg(VFS, "Challenge target info alloc failure");
2b149f11
SP
322 return -ENOMEM;
323 }
d3686d54 324 ses->auth_key.len = tilen;
2b149f11
SP
325 }
326
0b3cc858
SF
327 return 0;
328}
329
0b3cc858
SF
330/* BB Move to ntlmssp.c eventually */
331
332/* We do not malloc the blob, it is passed in pbuffer, because
333 it is fixed size, and small, making this approach cleaner */
5478f9ba 334void build_ntlmssp_negotiate_blob(unsigned char *pbuffer,
96daf2b0 335 struct cifs_ses *ses)
0b3cc858
SF
336{
337 NEGOTIATE_MESSAGE *sec_blob = (NEGOTIATE_MESSAGE *)pbuffer;
338 __u32 flags;
339
df8fbc24 340 memset(pbuffer, 0, sizeof(NEGOTIATE_MESSAGE));
0b3cc858
SF
341 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
342 sec_blob->MessageType = NtLmNegotiate;
343
344 /* BB is NTLMV2 session security format easier to use here? */
345 flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET |
346 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
df8fbc24 347 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC;
38d77c50 348 if (ses->server->sign) {
745e507a 349 flags |= NTLMSSP_NEGOTIATE_SIGN;
5c234aa5
SP
350 if (!ses->server->session_estab ||
351 ses->ntlmssp->sesskey_per_smbsess)
62411ab2 352 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
d2b91521 353 }
0b3cc858 354
df8fbc24 355 sec_blob->NegotiateFlags = cpu_to_le32(flags);
0b3cc858
SF
356
357 sec_blob->WorkstationName.BufferOffset = 0;
358 sec_blob->WorkstationName.Length = 0;
359 sec_blob->WorkstationName.MaximumLength = 0;
360
361 /* Domain name is sent on the Challenge not Negotiate NTLMSSP request */
362 sec_blob->DomainName.BufferOffset = 0;
363 sec_blob->DomainName.Length = 0;
364 sec_blob->DomainName.MaximumLength = 0;
365}
366
b8da344b
JM
367static int size_of_ntlmssp_blob(struct cifs_ses *ses)
368{
369 int sz = sizeof(AUTHENTICATE_MESSAGE) + ses->auth_key.len
370 - CIFS_SESS_KEY_SIZE + CIFS_CPHTXT_SIZE + 2;
371
372 if (ses->domainName)
373 sz += 2 * strnlen(ses->domainName, CIFS_MAX_DOMAINNAME_LEN);
374 else
375 sz += 2;
376
377 if (ses->user_name)
378 sz += 2 * strnlen(ses->user_name, CIFS_MAX_USERNAME_LEN);
379 else
380 sz += 2;
381
382 return sz;
383}
384
385int build_ntlmssp_auth_blob(unsigned char **pbuffer,
89f150f4 386 u16 *buflen,
96daf2b0 387 struct cifs_ses *ses,
2b149f11 388 const struct nls_table *nls_cp)
0b3cc858 389{
2b149f11 390 int rc;
b8da344b 391 AUTHENTICATE_MESSAGE *sec_blob;
0b3cc858
SF
392 __u32 flags;
393 unsigned char *tmp;
0b3cc858 394
b8da344b
JM
395 rc = setup_ntlmv2_rsp(ses, nls_cp);
396 if (rc) {
397 cifs_dbg(VFS, "Error %d during NTLMSSP authentication\n", rc);
398 *buflen = 0;
399 goto setup_ntlmv2_ret;
400 }
401 *pbuffer = kmalloc(size_of_ntlmssp_blob(ses), GFP_KERNEL);
402 sec_blob = (AUTHENTICATE_MESSAGE *)*pbuffer;
403
0b3cc858
SF
404 memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8);
405 sec_blob->MessageType = NtLmAuthenticate;
406
407 flags = NTLMSSP_NEGOTIATE_56 |
408 NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO |
409 NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE |
df8fbc24 410 NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_EXTENDED_SEC;
38d77c50 411 if (ses->server->sign) {
0b3cc858 412 flags |= NTLMSSP_NEGOTIATE_SIGN;
5c234aa5
SP
413 if (!ses->server->session_estab ||
414 ses->ntlmssp->sesskey_per_smbsess)
62411ab2
SP
415 flags |= NTLMSSP_NEGOTIATE_KEY_XCH;
416 }
0b3cc858 417
b8da344b 418 tmp = *pbuffer + sizeof(AUTHENTICATE_MESSAGE);
df8fbc24 419 sec_blob->NegotiateFlags = cpu_to_le32(flags);
0b3cc858
SF
420
421 sec_blob->LmChallengeResponse.BufferOffset =
422 cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE));
423 sec_blob->LmChallengeResponse.Length = 0;
424 sec_blob->LmChallengeResponse.MaximumLength = 0;
425
b8da344b
JM
426 sec_blob->NtChallengeResponse.BufferOffset =
427 cpu_to_le32(tmp - *pbuffer);
cfda35d9 428 if (ses->user_name != NULL) {
cfda35d9
SM
429 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
430 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
431 tmp += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
432
433 sec_blob->NtChallengeResponse.Length =
434 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
435 sec_blob->NtChallengeResponse.MaximumLength =
436 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
437 } else {
438 /*
439 * don't send an NT Response for anonymous access
440 */
441 sec_blob->NtChallengeResponse.Length = 0;
442 sec_blob->NtChallengeResponse.MaximumLength = 0;
2b149f11 443 }
0b3cc858
SF
444
445 if (ses->domainName == NULL) {
b8da344b 446 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
0b3cc858
SF
447 sec_blob->DomainName.Length = 0;
448 sec_blob->DomainName.MaximumLength = 0;
449 tmp += 2;
450 } else {
451 int len;
acbbb76a 452 len = cifs_strtoUTF16((__le16 *)tmp, ses->domainName,
202d772b 453 CIFS_MAX_DOMAINNAME_LEN, nls_cp);
0b3cc858 454 len *= 2; /* unicode is 2 bytes each */
b8da344b 455 sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
0b3cc858
SF
456 sec_blob->DomainName.Length = cpu_to_le16(len);
457 sec_blob->DomainName.MaximumLength = cpu_to_le16(len);
458 tmp += len;
459 }
460
8727c8a8 461 if (ses->user_name == NULL) {
b8da344b 462 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
0b3cc858
SF
463 sec_blob->UserName.Length = 0;
464 sec_blob->UserName.MaximumLength = 0;
465 tmp += 2;
466 } else {
467 int len;
acbbb76a 468 len = cifs_strtoUTF16((__le16 *)tmp, ses->user_name,
8c3a2b4c 469 CIFS_MAX_USERNAME_LEN, nls_cp);
0b3cc858 470 len *= 2; /* unicode is 2 bytes each */
b8da344b 471 sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
0b3cc858
SF
472 sec_blob->UserName.Length = cpu_to_le16(len);
473 sec_blob->UserName.MaximumLength = cpu_to_le16(len);
474 tmp += len;
475 }
476
b8da344b 477 sec_blob->WorkstationName.BufferOffset = cpu_to_le32(tmp - *pbuffer);
0b3cc858
SF
478 sec_blob->WorkstationName.Length = 0;
479 sec_blob->WorkstationName.MaximumLength = 0;
480 tmp += 2;
481
df8fbc24
SP
482 if (((ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_KEY_XCH) ||
483 (ses->ntlmssp->server_flags & NTLMSSP_NEGOTIATE_EXTENDED_SEC))
484 && !calc_seckey(ses)) {
d3686d54 485 memcpy(tmp, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
b8da344b 486 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
d2b91521
SP
487 sec_blob->SessionKey.Length = cpu_to_le16(CIFS_CPHTXT_SIZE);
488 sec_blob->SessionKey.MaximumLength =
489 cpu_to_le16(CIFS_CPHTXT_SIZE);
490 tmp += CIFS_CPHTXT_SIZE;
491 } else {
b8da344b 492 sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - *pbuffer);
d2b91521
SP
493 sec_blob->SessionKey.Length = 0;
494 sec_blob->SessionKey.MaximumLength = 0;
495 }
2b149f11 496
b8da344b 497 *buflen = tmp - *pbuffer;
2b149f11 498setup_ntlmv2_ret:
89f150f4 499 return rc;
0b3cc858 500}
0b3cc858 501
3f618223
JL
502enum securityEnum
503select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
504{
505 switch (server->negflavor) {
506 case CIFS_NEGFLAVOR_EXTENDED:
507 switch (requested) {
508 case Kerberos:
509 case RawNTLMSSP:
510 return requested;
511 case Unspecified:
512 if (server->sec_ntlmssp &&
513 (global_secflags & CIFSSEC_MAY_NTLMSSP))
514 return RawNTLMSSP;
515 if ((server->sec_kerberos || server->sec_mskerberos) &&
516 (global_secflags & CIFSSEC_MAY_KRB5))
517 return Kerberos;
518 /* Fallthrough */
519 default:
520 return Unspecified;
521 }
522 case CIFS_NEGFLAVOR_UNENCAP:
523 switch (requested) {
524 case NTLM:
525 case NTLMv2:
526 return requested;
527 case Unspecified:
528 if (global_secflags & CIFSSEC_MAY_NTLMV2)
529 return NTLMv2;
530 if (global_secflags & CIFSSEC_MAY_NTLM)
531 return NTLM;
3f618223 532 default:
dde2356c
SP
533 /* Fallthrough to attempt LANMAN authentication next */
534 break;
3f618223
JL
535 }
536 case CIFS_NEGFLAVOR_LANMAN:
537 switch (requested) {
538 case LANMAN:
539 return requested;
540 case Unspecified:
541 if (global_secflags & CIFSSEC_MAY_LANMAN)
542 return LANMAN;
543 /* Fallthrough */
544 default:
545 return Unspecified;
546 }
547 default:
548 return Unspecified;
549 }
550}
551
80a0e637
SP
552struct sess_data {
553 unsigned int xid;
554 struct cifs_ses *ses;
555 struct nls_table *nls_cp;
556 void (*func)(struct sess_data *);
557 int result;
558
559 /* we will send the SMB in three pieces:
560 * a fixed length beginning part, an optional
561 * SPNEGO blob (which can be zero length), and a
562 * last part which will include the strings
563 * and rest of bcc area. This allows us to avoid
564 * a large buffer 17K allocation
565 */
566 int buf0_type;
567 struct kvec iov[3];
568};
569
570static int
571sess_alloc_buffer(struct sess_data *sess_data, int wct)
572{
573 int rc;
574 struct cifs_ses *ses = sess_data->ses;
575 struct smb_hdr *smb_buf;
576
577 rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses,
578 (void **)&smb_buf);
579
580 if (rc)
581 return rc;
582
583 sess_data->iov[0].iov_base = (char *)smb_buf;
584 sess_data->iov[0].iov_len = be32_to_cpu(smb_buf->smb_buf_length) + 4;
585 /*
586 * This variable will be used to clear the buffer
587 * allocated above in case of any error in the calling function.
588 */
589 sess_data->buf0_type = CIFS_SMALL_BUFFER;
590
591 /* 2000 big enough to fit max user, domain, NOS name etc. */
592 sess_data->iov[2].iov_base = kmalloc(2000, GFP_KERNEL);
593 if (!sess_data->iov[2].iov_base) {
594 rc = -ENOMEM;
595 goto out_free_smb_buf;
596 }
597
598 return 0;
599
600out_free_smb_buf:
601 kfree(smb_buf);
602 sess_data->iov[0].iov_base = NULL;
603 sess_data->iov[0].iov_len = 0;
604 sess_data->buf0_type = CIFS_NO_BUFFER;
605 return rc;
606}
607
608static void
609sess_free_buffer(struct sess_data *sess_data)
610{
611
612 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
613 sess_data->buf0_type = CIFS_NO_BUFFER;
614 kfree(sess_data->iov[2].iov_base);
615}
616
617static int
618sess_establish_session(struct sess_data *sess_data)
619{
620 struct cifs_ses *ses = sess_data->ses;
621
622 mutex_lock(&ses->server->srv_mutex);
623 if (!ses->server->session_estab) {
624 if (ses->server->sign) {
625 ses->server->session_key.response =
626 kmemdup(ses->auth_key.response,
627 ses->auth_key.len, GFP_KERNEL);
628 if (!ses->server->session_key.response) {
629 mutex_unlock(&ses->server->srv_mutex);
630 return -ENOMEM;
631 }
632 ses->server->session_key.len =
633 ses->auth_key.len;
634 }
635 ses->server->sequence_number = 0x2;
636 ses->server->session_estab = true;
637 }
638 mutex_unlock(&ses->server->srv_mutex);
639
640 cifs_dbg(FYI, "CIFS session established successfully\n");
641 spin_lock(&GlobalMid_Lock);
642 ses->status = CifsGood;
643 ses->need_reconnect = false;
644 spin_unlock(&GlobalMid_Lock);
645
646 return 0;
647}
648
649static int
650sess_sendreceive(struct sess_data *sess_data)
651{
652 int rc;
653 struct smb_hdr *smb_buf = (struct smb_hdr *) sess_data->iov[0].iov_base;
654 __u16 count;
9a7baddf 655 struct kvec rsp_iov = { NULL, 0 };
80a0e637
SP
656
657 count = sess_data->iov[1].iov_len + sess_data->iov[2].iov_len;
658 smb_buf->smb_buf_length =
659 cpu_to_be32(be32_to_cpu(smb_buf->smb_buf_length) + count);
660 put_bcc(count, smb_buf);
661
662 rc = SendReceive2(sess_data->xid, sess_data->ses,
663 sess_data->iov, 3 /* num_iovecs */,
664 &sess_data->buf0_type,
9a7baddf
PS
665 CIFS_LOG_ERROR, &rsp_iov);
666 cifs_small_buf_release(sess_data->iov[0].iov_base);
667 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
80a0e637
SP
668
669 return rc;
670}
671
672/*
673 * LANMAN and plaintext are less secure and off by default.
674 * So we make this explicitly be turned on in kconfig (in the
675 * build) and turned on at runtime (changed from the default)
676 * in proc/fs/cifs or via mount parm. Unfortunately this is
677 * needed for old Win (e.g. Win95), some obscure NAS and OS/2
678 */
679#ifdef CONFIG_CIFS_WEAK_PW_HASH
680static void
681sess_auth_lanman(struct sess_data *sess_data)
682{
683 int rc = 0;
684 struct smb_hdr *smb_buf;
685 SESSION_SETUP_ANDX *pSMB;
686 char *bcc_ptr;
687 struct cifs_ses *ses = sess_data->ses;
688 char lnm_session_key[CIFS_AUTH_RESP_SIZE];
689 __u32 capabilities;
690 __u16 bytes_remaining;
691
692 /* lanman 2 style sessionsetup */
693 /* wct = 10 */
694 rc = sess_alloc_buffer(sess_data, 10);
695 if (rc)
696 goto out;
697
698 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
699 bcc_ptr = sess_data->iov[2].iov_base;
700 capabilities = cifs_ssetup_hdr(ses, pSMB);
701
702 pSMB->req.hdr.Flags2 &= ~SMBFLG2_UNICODE;
703
fa8f3a35
SM
704 if (ses->user_name != NULL) {
705 /* no capabilities flags in old lanman negotiation */
706 pSMB->old_req.PasswordLength = cpu_to_le16(CIFS_AUTH_RESP_SIZE);
80a0e637 707
fa8f3a35
SM
708 /* Calculate hash with password and copy into bcc_ptr.
709 * Encryption Key (stored as in cryptkey) gets used if the
710 * security mode bit in Negottiate Protocol response states
711 * to use challenge/response method (i.e. Password bit is 1).
712 */
713 rc = calc_lanman_hash(ses->password, ses->server->cryptkey,
714 ses->server->sec_mode & SECMODE_PW_ENCRYPT ?
715 true : false, lnm_session_key);
a6b6befb
LB
716 if (rc)
717 goto out;
80a0e637 718
fa8f3a35
SM
719 memcpy(bcc_ptr, (char *)lnm_session_key, CIFS_AUTH_RESP_SIZE);
720 bcc_ptr += CIFS_AUTH_RESP_SIZE;
721 } else {
722 pSMB->old_req.PasswordLength = 0;
723 }
80a0e637
SP
724
725 /*
726 * can not sign if LANMAN negotiated so no need
727 * to calculate signing key? but what if server
728 * changed to do higher than lanman dialect and
729 * we reconnected would we ever calc signing_key?
730 */
731
732 cifs_dbg(FYI, "Negotiating LANMAN setting up strings\n");
733 /* Unicode not allowed for LANMAN dialects */
734 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
735
736 sess_data->iov[2].iov_len = (long) bcc_ptr -
737 (long) sess_data->iov[2].iov_base;
738
739 rc = sess_sendreceive(sess_data);
740 if (rc)
741 goto out;
742
743 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
744 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
745
746 /* lanman response has a word count of 3 */
747 if (smb_buf->WordCount != 3) {
748 rc = -EIO;
749 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
750 goto out;
751 }
752
753 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
754 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
755
756 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
757 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
758
759 bytes_remaining = get_bcc(smb_buf);
760 bcc_ptr = pByteArea(smb_buf);
761
762 /* BB check if Unicode and decode strings */
763 if (bytes_remaining == 0) {
764 /* no string area to decode, do nothing */
765 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
766 /* unicode string area must be word-aligned */
767 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
768 ++bcc_ptr;
769 --bytes_remaining;
770 }
771 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
772 sess_data->nls_cp);
773 } else {
774 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
775 sess_data->nls_cp);
776 }
777
778 rc = sess_establish_session(sess_data);
779out:
780 sess_data->result = rc;
781 sess_data->func = NULL;
782 sess_free_buffer(sess_data);
783}
784
80a0e637
SP
785#endif
786
583cf7af
SP
787static void
788sess_auth_ntlm(struct sess_data *sess_data)
789{
790 int rc = 0;
791 struct smb_hdr *smb_buf;
792 SESSION_SETUP_ANDX *pSMB;
793 char *bcc_ptr;
794 struct cifs_ses *ses = sess_data->ses;
795 __u32 capabilities;
796 __u16 bytes_remaining;
797
798 /* old style NTLM sessionsetup */
799 /* wct = 13 */
800 rc = sess_alloc_buffer(sess_data, 13);
801 if (rc)
802 goto out;
803
804 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
805 bcc_ptr = sess_data->iov[2].iov_base;
806 capabilities = cifs_ssetup_hdr(ses, pSMB);
807
808 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
777f69b8
SM
809 if (ses->user_name != NULL) {
810 pSMB->req_no_secext.CaseInsensitivePasswordLength =
811 cpu_to_le16(CIFS_AUTH_RESP_SIZE);
812 pSMB->req_no_secext.CaseSensitivePasswordLength =
813 cpu_to_le16(CIFS_AUTH_RESP_SIZE);
814
815 /* calculate ntlm response and session key */
816 rc = setup_ntlm_response(ses, sess_data->nls_cp);
817 if (rc) {
818 cifs_dbg(VFS, "Error %d during NTLM authentication\n",
819 rc);
820 goto out;
821 }
583cf7af 822
777f69b8
SM
823 /* copy ntlm response */
824 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
825 CIFS_AUTH_RESP_SIZE);
826 bcc_ptr += CIFS_AUTH_RESP_SIZE;
827 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
828 CIFS_AUTH_RESP_SIZE);
829 bcc_ptr += CIFS_AUTH_RESP_SIZE;
830 } else {
831 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
832 pSMB->req_no_secext.CaseSensitivePasswordLength = 0;
833 }
583cf7af
SP
834
835 if (ses->capabilities & CAP_UNICODE) {
836 /* unicode strings must be word aligned */
837 if (sess_data->iov[0].iov_len % 2) {
838 *bcc_ptr = 0;
839 bcc_ptr++;
840 }
841 unicode_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
842 } else {
843 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
844 }
845
846
847 sess_data->iov[2].iov_len = (long) bcc_ptr -
848 (long) sess_data->iov[2].iov_base;
849
850 rc = sess_sendreceive(sess_data);
851 if (rc)
852 goto out;
853
854 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
855 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
856
857 if (smb_buf->WordCount != 3) {
858 rc = -EIO;
859 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
860 goto out;
861 }
862
863 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
864 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
865
866 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
867 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
868
869 bytes_remaining = get_bcc(smb_buf);
870 bcc_ptr = pByteArea(smb_buf);
871
872 /* BB check if Unicode and decode strings */
873 if (bytes_remaining == 0) {
874 /* no string area to decode, do nothing */
875 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
876 /* unicode string area must be word-aligned */
877 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
878 ++bcc_ptr;
879 --bytes_remaining;
880 }
881 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
882 sess_data->nls_cp);
883 } else {
884 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
885 sess_data->nls_cp);
886 }
887
888 rc = sess_establish_session(sess_data);
889out:
890 sess_data->result = rc;
891 sess_data->func = NULL;
892 sess_free_buffer(sess_data);
893 kfree(ses->auth_key.response);
894 ses->auth_key.response = NULL;
895}
896
897static void
898sess_auth_ntlmv2(struct sess_data *sess_data)
899{
900 int rc = 0;
901 struct smb_hdr *smb_buf;
902 SESSION_SETUP_ANDX *pSMB;
903 char *bcc_ptr;
904 struct cifs_ses *ses = sess_data->ses;
905 __u32 capabilities;
906 __u16 bytes_remaining;
907
908 /* old style NTLM sessionsetup */
909 /* wct = 13 */
910 rc = sess_alloc_buffer(sess_data, 13);
911 if (rc)
912 goto out;
913
914 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
915 bcc_ptr = sess_data->iov[2].iov_base;
916 capabilities = cifs_ssetup_hdr(ses, pSMB);
917
918 pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities);
919
920 /* LM2 password would be here if we supported it */
921 pSMB->req_no_secext.CaseInsensitivePasswordLength = 0;
922
1a967d6c
SM
923 if (ses->user_name != NULL) {
924 /* calculate nlmv2 response and session key */
925 rc = setup_ntlmv2_rsp(ses, sess_data->nls_cp);
926 if (rc) {
927 cifs_dbg(VFS, "Error %d during NTLMv2 authentication\n", rc);
928 goto out;
929 }
583cf7af 930
1a967d6c
SM
931 memcpy(bcc_ptr, ses->auth_key.response + CIFS_SESS_KEY_SIZE,
932 ses->auth_key.len - CIFS_SESS_KEY_SIZE);
933 bcc_ptr += ses->auth_key.len - CIFS_SESS_KEY_SIZE;
583cf7af 934
1a967d6c
SM
935 /* set case sensitive password length after tilen may get
936 * assigned, tilen is 0 otherwise.
937 */
938 pSMB->req_no_secext.CaseSensitivePasswordLength =
939 cpu_to_le16(ses->auth_key.len - CIFS_SESS_KEY_SIZE);
940 } else {
941 pSMB->req_no_secext.CaseSensitivePasswordLength = 0;
942 }
583cf7af
SP
943
944 if (ses->capabilities & CAP_UNICODE) {
945 if (sess_data->iov[0].iov_len % 2) {
946 *bcc_ptr = 0;
947 bcc_ptr++;
948 }
949 unicode_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
950 } else {
951 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
952 }
953
954
955 sess_data->iov[2].iov_len = (long) bcc_ptr -
956 (long) sess_data->iov[2].iov_base;
957
958 rc = sess_sendreceive(sess_data);
959 if (rc)
960 goto out;
961
962 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
963 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
964
965 if (smb_buf->WordCount != 3) {
966 rc = -EIO;
967 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
968 goto out;
969 }
970
971 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
972 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
973
974 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
975 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
976
977 bytes_remaining = get_bcc(smb_buf);
978 bcc_ptr = pByteArea(smb_buf);
979
980 /* BB check if Unicode and decode strings */
981 if (bytes_remaining == 0) {
982 /* no string area to decode, do nothing */
983 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
984 /* unicode string area must be word-aligned */
985 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
986 ++bcc_ptr;
987 --bytes_remaining;
988 }
989 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
990 sess_data->nls_cp);
991 } else {
992 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
993 sess_data->nls_cp);
994 }
995
996 rc = sess_establish_session(sess_data);
997out:
998 sess_data->result = rc;
999 sess_data->func = NULL;
1000 sess_free_buffer(sess_data);
1001 kfree(ses->auth_key.response);
1002 ses->auth_key.response = NULL;
1003}
1004
ee03c646
SP
1005#ifdef CONFIG_CIFS_UPCALL
1006static void
1007sess_auth_kerberos(struct sess_data *sess_data)
1008{
1009 int rc = 0;
1010 struct smb_hdr *smb_buf;
1011 SESSION_SETUP_ANDX *pSMB;
1012 char *bcc_ptr;
1013 struct cifs_ses *ses = sess_data->ses;
1014 __u32 capabilities;
1015 __u16 bytes_remaining;
1016 struct key *spnego_key = NULL;
1017 struct cifs_spnego_msg *msg;
1018 u16 blob_len;
1019
1020 /* extended security */
1021 /* wct = 12 */
1022 rc = sess_alloc_buffer(sess_data, 12);
1023 if (rc)
1024 goto out;
1025
1026 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1027 bcc_ptr = sess_data->iov[2].iov_base;
1028 capabilities = cifs_ssetup_hdr(ses, pSMB);
1029
1030 spnego_key = cifs_get_spnego_key(ses);
1031 if (IS_ERR(spnego_key)) {
1032 rc = PTR_ERR(spnego_key);
1033 spnego_key = NULL;
1034 goto out;
1035 }
1036
146aa8b1 1037 msg = spnego_key->payload.data[0];
ee03c646
SP
1038 /*
1039 * check version field to make sure that cifs.upcall is
1040 * sending us a response in an expected form
1041 */
1042 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1043 cifs_dbg(VFS,
1044 "incorrect version of cifs.upcall (expected %d but got %d)",
1045 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1046 rc = -EKEYREJECTED;
1047 goto out_put_spnego_key;
1048 }
1049
1050 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1051 GFP_KERNEL);
1052 if (!ses->auth_key.response) {
1053 cifs_dbg(VFS, "Kerberos can't allocate (%u bytes) memory",
1054 msg->sesskey_len);
1055 rc = -ENOMEM;
1056 goto out_put_spnego_key;
1057 }
1058 ses->auth_key.len = msg->sesskey_len;
1059
1060 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1061 capabilities |= CAP_EXTENDED_SECURITY;
1062 pSMB->req.Capabilities = cpu_to_le32(capabilities);
1063 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1064 sess_data->iov[1].iov_len = msg->secblob_len;
1065 pSMB->req.SecurityBlobLength = cpu_to_le16(sess_data->iov[1].iov_len);
1066
1067 if (ses->capabilities & CAP_UNICODE) {
1068 /* unicode strings must be word aligned */
1069 if ((sess_data->iov[0].iov_len
1070 + sess_data->iov[1].iov_len) % 2) {
1071 *bcc_ptr = 0;
1072 bcc_ptr++;
1073 }
1074 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
1075 unicode_domain_string(&bcc_ptr, ses, sess_data->nls_cp);
1076 } else {
1077 /* BB: is this right? */
1078 ascii_ssetup_strings(&bcc_ptr, ses, sess_data->nls_cp);
1079 }
1080
1081 sess_data->iov[2].iov_len = (long) bcc_ptr -
1082 (long) sess_data->iov[2].iov_base;
1083
1084 rc = sess_sendreceive(sess_data);
1085 if (rc)
1086 goto out_put_spnego_key;
1087
1088 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1089 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
1090
1091 if (smb_buf->WordCount != 4) {
1092 rc = -EIO;
1093 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1094 goto out_put_spnego_key;
1095 }
1096
1097 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
1098 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
1099
1100 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1101 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
1102
1103 bytes_remaining = get_bcc(smb_buf);
1104 bcc_ptr = pByteArea(smb_buf);
1105
1106 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1107 if (blob_len > bytes_remaining) {
1108 cifs_dbg(VFS, "bad security blob length %d\n",
1109 blob_len);
1110 rc = -EINVAL;
1111 goto out_put_spnego_key;
1112 }
1113 bcc_ptr += blob_len;
1114 bytes_remaining -= blob_len;
1115
1116 /* BB check if Unicode and decode strings */
1117 if (bytes_remaining == 0) {
1118 /* no string area to decode, do nothing */
1119 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
1120 /* unicode string area must be word-aligned */
1121 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
1122 ++bcc_ptr;
1123 --bytes_remaining;
1124 }
1125 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1126 sess_data->nls_cp);
1127 } else {
1128 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1129 sess_data->nls_cp);
1130 }
1131
1132 rc = sess_establish_session(sess_data);
1133out_put_spnego_key:
1134 key_invalidate(spnego_key);
1135 key_put(spnego_key);
1136out:
1137 sess_data->result = rc;
1138 sess_data->func = NULL;
1139 sess_free_buffer(sess_data);
1140 kfree(ses->auth_key.response);
1141 ses->auth_key.response = NULL;
1142}
1143
ee03c646 1144#endif /* ! CONFIG_CIFS_UPCALL */
583cf7af 1145
cc87c47d
SP
1146/*
1147 * The required kvec buffers have to be allocated before calling this
1148 * function.
1149 */
1150static int
1151_sess_auth_rawntlmssp_assemble_req(struct sess_data *sess_data)
3979877e 1152{
3979877e 1153 struct smb_hdr *smb_buf;
3979877e 1154 SESSION_SETUP_ANDX *pSMB;
cc87c47d 1155 struct cifs_ses *ses = sess_data->ses;
3979877e 1156 __u32 capabilities;
cc87c47d 1157 char *bcc_ptr;
254e55ed 1158
cc87c47d
SP
1159 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1160 smb_buf = (struct smb_hdr *)pSMB;
1161
1162 capabilities = cifs_ssetup_hdr(ses, pSMB);
1163 if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) {
1164 cifs_dbg(VFS, "NTLMSSP requires Unicode support\n");
1165 return -ENOSYS;
3534b850 1166 }
3979877e 1167
cc87c47d
SP
1168 pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC;
1169 capabilities |= CAP_EXTENDED_SECURITY;
1170 pSMB->req.Capabilities |= cpu_to_le32(capabilities);
80a0e637 1171
cc87c47d
SP
1172 bcc_ptr = sess_data->iov[2].iov_base;
1173 /* unicode strings must be word aligned */
1174 if ((sess_data->iov[0].iov_len + sess_data->iov[1].iov_len) % 2) {
1175 *bcc_ptr = 0;
1176 bcc_ptr++;
3f618223 1177 }
cc87c47d 1178 unicode_oslm_strings(&bcc_ptr, sess_data->nls_cp);
3f618223 1179
cc87c47d
SP
1180 sess_data->iov[2].iov_len = (long) bcc_ptr -
1181 (long) sess_data->iov[2].iov_base;
80a0e637 1182
cc87c47d
SP
1183 return 0;
1184}
1185
1186static void
1187sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data);
1188
1189static void
1190sess_auth_rawntlmssp_negotiate(struct sess_data *sess_data)
1191{
1192 int rc;
1193 struct smb_hdr *smb_buf;
1194 SESSION_SETUP_ANDX *pSMB;
1195 struct cifs_ses *ses = sess_data->ses;
1196 __u16 bytes_remaining;
1197 char *bcc_ptr;
1198 u16 blob_len;
1199
1200 cifs_dbg(FYI, "rawntlmssp session setup negotiate phase\n");
5c234aa5 1201
cc87c47d
SP
1202 /*
1203 * if memory allocation is successful, caller of this function
1204 * frees it.
1205 */
1206 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1207 if (!ses->ntlmssp) {
1208 rc = -ENOMEM;
1209 goto out;
d3686d54 1210 }
cc87c47d 1211 ses->ntlmssp->sesskey_per_smbsess = false;
d3686d54 1212
cc87c47d
SP
1213 /* wct = 12 */
1214 rc = sess_alloc_buffer(sess_data, 12);
1215 if (rc)
1216 goto out;
0b3cc858 1217
cc87c47d 1218 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
3979877e 1219
cc87c47d
SP
1220 /* Build security blob before we assemble the request */
1221 build_ntlmssp_negotiate_blob(pSMB->req.SecurityBlob, ses);
1222 sess_data->iov[1].iov_len = sizeof(NEGOTIATE_MESSAGE);
1223 sess_data->iov[1].iov_base = pSMB->req.SecurityBlob;
1224 pSMB->req.SecurityBlobLength = cpu_to_le16(sizeof(NEGOTIATE_MESSAGE));
1225
1226 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
790fe579 1227 if (rc)
cc87c47d 1228 goto out;
3979877e 1229
cc87c47d 1230 rc = sess_sendreceive(sess_data);
3979877e 1231
cc87c47d
SP
1232 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1233 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
750d1151 1234
cc87c47d
SP
1235 /* If true, rc here is expected and not an error */
1236 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
1237 smb_buf->Status.CifsError ==
1238 cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))
1239 rc = 0;
2442421b 1240
cc87c47d
SP
1241 if (rc)
1242 goto out;
1243
1244 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1245
1246 if (smb_buf->WordCount != 4) {
1247 rc = -EIO;
1248 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
1249 goto out;
5e6e6232 1250 }
3979877e 1251
cc87c47d
SP
1252 ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */
1253 cifs_dbg(FYI, "UID = %llu\n", ses->Suid);
2442421b 1254
cc87c47d
SP
1255 bytes_remaining = get_bcc(smb_buf);
1256 bcc_ptr = pByteArea(smb_buf);
b4d6fcf1 1257
cc87c47d
SP
1258 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1259 if (blob_len > bytes_remaining) {
1260 cifs_dbg(VFS, "bad security blob length %d\n",
1261 blob_len);
1262 rc = -EINVAL;
1263 goto out;
1264 }
0b3cc858 1265
cc87c47d
SP
1266 rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses);
1267out:
1268 sess_free_buffer(sess_data);
1269
1270 if (!rc) {
1271 sess_data->func = sess_auth_rawntlmssp_authenticate;
1272 return;
3979877e
SF
1273 }
1274
cc87c47d
SP
1275 /* Else error. Cleanup */
1276 kfree(ses->auth_key.response);
1277 ses->auth_key.response = NULL;
1278 kfree(ses->ntlmssp);
1279 ses->ntlmssp = NULL;
2442421b 1280
cc87c47d
SP
1281 sess_data->func = NULL;
1282 sess_data->result = rc;
1283}
3979877e 1284
cc87c47d
SP
1285static void
1286sess_auth_rawntlmssp_authenticate(struct sess_data *sess_data)
1287{
1288 int rc;
1289 struct smb_hdr *smb_buf;
1290 SESSION_SETUP_ANDX *pSMB;
1291 struct cifs_ses *ses = sess_data->ses;
1292 __u16 bytes_remaining;
1293 char *bcc_ptr;
b8da344b 1294 unsigned char *ntlmsspblob = NULL;
cc87c47d 1295 u16 blob_len;
3979877e 1296
cc87c47d 1297 cifs_dbg(FYI, "rawntlmssp session setup authenticate phase\n");
3979877e 1298
cc87c47d
SP
1299 /* wct = 12 */
1300 rc = sess_alloc_buffer(sess_data, 12);
1301 if (rc)
1302 goto out;
3979877e 1303
cc87c47d
SP
1304 /* Build security blob before we assemble the request */
1305 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1306 smb_buf = (struct smb_hdr *)pSMB;
b8da344b 1307 rc = build_ntlmssp_auth_blob(&ntlmsspblob,
cc87c47d
SP
1308 &blob_len, ses, sess_data->nls_cp);
1309 if (rc)
1310 goto out_free_ntlmsspblob;
1311 sess_data->iov[1].iov_len = blob_len;
1312 sess_data->iov[1].iov_base = ntlmsspblob;
1313 pSMB->req.SecurityBlobLength = cpu_to_le16(blob_len);
1314 /*
1315 * Make sure that we tell the server that we are using
1316 * the uid that it just gave us back on the response
1317 * (challenge)
1318 */
1319 smb_buf->Uid = ses->Suid;
1320
1321 rc = _sess_auth_rawntlmssp_assemble_req(sess_data);
0b3cc858 1322 if (rc)
cc87c47d 1323 goto out_free_ntlmsspblob;
0b3cc858 1324
cc87c47d
SP
1325 rc = sess_sendreceive(sess_data);
1326 if (rc)
1327 goto out_free_ntlmsspblob;
1328
1329 pSMB = (SESSION_SETUP_ANDX *)sess_data->iov[0].iov_base;
1330 smb_buf = (struct smb_hdr *)sess_data->iov[0].iov_base;
583cf7af 1331 if (smb_buf->WordCount != 4) {
3979877e 1332 rc = -EIO;
f96637be 1333 cifs_dbg(VFS, "bad word count %d\n", smb_buf->WordCount);
cc87c47d 1334 goto out_free_ntlmsspblob;
3979877e 1335 }
cc87c47d
SP
1336
1337 if (le16_to_cpu(pSMB->resp.Action) & GUEST_LOGIN)
f96637be 1338 cifs_dbg(FYI, "Guest login\n"); /* BB mark SesInfo struct? */
cc87c47d 1339
ee9bbf46
SP
1340 if (ses->Suid != smb_buf->Uid) {
1341 ses->Suid = smb_buf->Uid;
1342 cifs_dbg(FYI, "UID changed! new UID = %llu\n", ses->Suid);
1343 }
1344
690c522f 1345 bytes_remaining = get_bcc(smb_buf);
3979877e 1346 bcc_ptr = pByteArea(smb_buf);
583cf7af
SP
1347 blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength);
1348 if (blob_len > bytes_remaining) {
1349 cifs_dbg(VFS, "bad security blob length %d\n",
cc87c47d 1350 blob_len);
583cf7af 1351 rc = -EINVAL;
cc87c47d 1352 goto out_free_ntlmsspblob;
790fe579 1353 }
583cf7af
SP
1354 bcc_ptr += blob_len;
1355 bytes_remaining -= blob_len;
3979877e 1356
cc87c47d 1357
3979877e 1358 /* BB check if Unicode and decode strings */
fcda7f45
JL
1359 if (bytes_remaining == 0) {
1360 /* no string area to decode, do nothing */
1361 } else if (smb_buf->Flags2 & SMBFLG2_UNICODE) {
27b87fe5
JL
1362 /* unicode string area must be word-aligned */
1363 if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) {
1364 ++bcc_ptr;
1365 --bytes_remaining;
1366 }
cc87c47d
SP
1367 decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses,
1368 sess_data->nls_cp);
27b87fe5 1369 } else {
cc87c47d
SP
1370 decode_ascii_ssetup(&bcc_ptr, bytes_remaining, ses,
1371 sess_data->nls_cp);
27b87fe5 1372 }
50c2f753 1373
cc87c47d 1374out_free_ntlmsspblob:
2b149f11 1375 kfree(ntlmsspblob);
cc87c47d
SP
1376out:
1377 sess_free_buffer(sess_data);
d4e63bd6 1378
cc87c47d
SP
1379 if (!rc)
1380 rc = sess_establish_session(sess_data);
d4e63bd6 1381
cc87c47d 1382 /* Cleanup */
d4e63bd6
SP
1383 kfree(ses->auth_key.response);
1384 ses->auth_key.response = NULL;
1385 kfree(ses->ntlmssp);
cc87c47d 1386 ses->ntlmssp = NULL;
d4e63bd6 1387
cc87c47d
SP
1388 sess_data->func = NULL;
1389 sess_data->result = rc;
1390}
80a0e637 1391
27924075 1392static int select_sec(struct cifs_ses *ses, struct sess_data *sess_data)
cc87c47d
SP
1393{
1394 int type;
1395
1396 type = select_sectype(ses->server, ses->sectype);
1397 cifs_dbg(FYI, "sess setup type %d\n", type);
1398 if (type == Unspecified) {
1399 cifs_dbg(VFS,
1400 "Unable to select appropriate authentication method!");
1401 return -EINVAL;
1402 }
1403
1404 switch (type) {
1405 case LANMAN:
1406 /* LANMAN and plaintext are less secure and off by default.
1407 * So we make this explicitly be turned on in kconfig (in the
1408 * build) and turned on at runtime (changed from the default)
1409 * in proc/fs/cifs or via mount parm. Unfortunately this is
1410 * needed for old Win (e.g. Win95), some obscure NAS and OS/2 */
1411#ifdef CONFIG_CIFS_WEAK_PW_HASH
1412 sess_data->func = sess_auth_lanman;
1413 break;
1414#else
1415 return -EOPNOTSUPP;
1416#endif
1417 case NTLM:
1418 sess_data->func = sess_auth_ntlm;
1419 break;
1420 case NTLMv2:
1421 sess_data->func = sess_auth_ntlmv2;
1422 break;
1423 case Kerberos:
1424#ifdef CONFIG_CIFS_UPCALL
1425 sess_data->func = sess_auth_kerberos;
1426 break;
1427#else
1428 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1429 return -ENOSYS;
1430 break;
1431#endif /* CONFIG_CIFS_UPCALL */
1432 case RawNTLMSSP:
1433 sess_data->func = sess_auth_rawntlmssp_negotiate;
1434 break;
1435 default:
1436 cifs_dbg(VFS, "secType %d not supported!\n", type);
1437 return -ENOSYS;
1438 }
1439
1440 return 0;
1441}
1442
1443int CIFS_SessSetup(const unsigned int xid, struct cifs_ses *ses,
1444 const struct nls_table *nls_cp)
1445{
1446 int rc = 0;
1447 struct sess_data *sess_data;
1448
1449 if (ses == NULL) {
1450 WARN(1, "%s: ses == NULL!", __func__);
1451 return -EINVAL;
1452 }
1453
1454 sess_data = kzalloc(sizeof(struct sess_data), GFP_KERNEL);
1455 if (!sess_data)
1456 return -ENOMEM;
1457
1458 rc = select_sec(ses, sess_data);
1459 if (rc)
1460 goto out;
1461
1462 sess_data->xid = xid;
1463 sess_data->ses = ses;
1464 sess_data->buf0_type = CIFS_NO_BUFFER;
1465 sess_data->nls_cp = (struct nls_table *) nls_cp;
1466
1467 while (sess_data->func)
1468 sess_data->func(sess_data);
1469
1470 /* Store result before we free sess_data */
80a0e637 1471 rc = sess_data->result;
cc87c47d
SP
1472
1473out:
80a0e637
SP
1474 kfree(sess_data);
1475 return rc;
3979877e 1476}