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