kill dentry_update_name_case()
[sfrench/cifs-2.6.git] / fs / cifs / cifsencrypt.c
1 /*
2  *   fs/cifs/cifsencrypt.c
3  *
4  *   Encryption and hashing operations relating to NTLM, NTLMv2.  See MS-NLMP
5  *   for more detailed information
6  *
7  *   Copyright (C) International Business Machines  Corp., 2005,2013
8  *   Author(s): Steve French (sfrench@us.ibm.com)
9  *
10  *   This library is free software; you can redistribute it and/or modify
11  *   it under the terms of the GNU Lesser General Public License as published
12  *   by the Free Software Foundation; either version 2.1 of the License, or
13  *   (at your option) any later version.
14  *
15  *   This library is distributed in the hope that it will be useful,
16  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
18  *   the GNU Lesser General Public License for more details.
19  *
20  *   You should have received a copy of the GNU Lesser General Public License
21  *   along with this library; if not, write to the Free Software
22  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23  */
24
25 #include <linux/fs.h>
26 #include <linux/slab.h>
27 #include "cifspdu.h"
28 #include "cifsglob.h"
29 #include "cifs_debug.h"
30 #include "cifs_unicode.h"
31 #include "cifsproto.h"
32 #include "ntlmssp.h"
33 #include <linux/ctype.h>
34 #include <linux/random.h>
35 #include <linux/highmem.h>
36 #include <crypto/skcipher.h>
37 #include <crypto/aead.h>
38
39 int __cifs_calc_signature(struct smb_rqst *rqst,
40                         int start,
41                         struct TCP_Server_Info *server, char *signature,
42                         struct shash_desc *shash)
43 {
44         int i;
45         int rc;
46         struct kvec *iov = rqst->rq_iov;
47         int n_vec = rqst->rq_nvec;
48
49         for (i = start; i < n_vec; i++) {
50                 if (iov[i].iov_len == 0)
51                         continue;
52                 if (iov[i].iov_base == NULL) {
53                         cifs_dbg(VFS, "null iovec entry\n");
54                         return -EIO;
55                 }
56                 if (i == 1 && iov[1].iov_len <= 4)
57                         break; /* nothing to sign or corrupt header */
58                 rc = crypto_shash_update(shash,
59                                          iov[i].iov_base, iov[i].iov_len);
60                 if (rc) {
61                         cifs_dbg(VFS, "%s: Could not update with payload\n",
62                                  __func__);
63                         return rc;
64                 }
65         }
66
67         /* now hash over the rq_pages array */
68         for (i = 0; i < rqst->rq_npages; i++) {
69                 void *kaddr;
70                 unsigned int len, offset;
71
72                 rqst_page_get_length(rqst, i, &len, &offset);
73
74                 kaddr = (char *) kmap(rqst->rq_pages[i]) + offset;
75
76                 crypto_shash_update(shash, kaddr, len);
77
78                 kunmap(rqst->rq_pages[i]);
79         }
80
81         rc = crypto_shash_final(shash, signature);
82         if (rc)
83                 cifs_dbg(VFS, "%s: Could not generate hash\n", __func__);
84
85         return rc;
86 }
87
88 /*
89  * Calculate and return the CIFS signature based on the mac key and SMB PDU.
90  * The 16 byte signature must be allocated by the caller. Note we only use the
91  * 1st eight bytes and that the smb header signature field on input contains
92  * the sequence number before this function is called. Also, this function
93  * should be called with the server->srv_mutex held.
94  */
95 static int cifs_calc_signature(struct smb_rqst *rqst,
96                         struct TCP_Server_Info *server, char *signature)
97 {
98         int rc;
99
100         if (!rqst->rq_iov || !signature || !server)
101                 return -EINVAL;
102
103         rc = cifs_alloc_hash("md5", &server->secmech.md5,
104                              &server->secmech.sdescmd5);
105         if (rc)
106                 return -1;
107
108         rc = crypto_shash_init(&server->secmech.sdescmd5->shash);
109         if (rc) {
110                 cifs_dbg(VFS, "%s: Could not init md5\n", __func__);
111                 return rc;
112         }
113
114         rc = crypto_shash_update(&server->secmech.sdescmd5->shash,
115                 server->session_key.response, server->session_key.len);
116         if (rc) {
117                 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
118                 return rc;
119         }
120
121         return __cifs_calc_signature(rqst, 1, server, signature,
122                                      &server->secmech.sdescmd5->shash);
123 }
124
125 /* must be called with server->srv_mutex held */
126 int cifs_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server,
127                    __u32 *pexpected_response_sequence_number)
128 {
129         int rc = 0;
130         char smb_signature[20];
131         struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
132
133         if (rqst->rq_iov[0].iov_len != 4 ||
134             rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
135                 return -EIO;
136
137         if ((cifs_pdu == NULL) || (server == NULL))
138                 return -EINVAL;
139
140         if (!(cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) ||
141             server->tcpStatus == CifsNeedNegotiate)
142                 return rc;
143
144         if (!server->session_estab) {
145                 memcpy(cifs_pdu->Signature.SecuritySignature, "BSRSPYL", 8);
146                 return rc;
147         }
148
149         cifs_pdu->Signature.Sequence.SequenceNumber =
150                                 cpu_to_le32(server->sequence_number);
151         cifs_pdu->Signature.Sequence.Reserved = 0;
152
153         *pexpected_response_sequence_number = ++server->sequence_number;
154         ++server->sequence_number;
155
156         rc = cifs_calc_signature(rqst, server, smb_signature);
157         if (rc)
158                 memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
159         else
160                 memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
161
162         return rc;
163 }
164
165 int cifs_sign_smbv(struct kvec *iov, int n_vec, struct TCP_Server_Info *server,
166                    __u32 *pexpected_response_sequence)
167 {
168         struct smb_rqst rqst = { .rq_iov = iov,
169                                  .rq_nvec = n_vec };
170
171         return cifs_sign_rqst(&rqst, server, pexpected_response_sequence);
172 }
173
174 /* must be called with server->srv_mutex held */
175 int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server,
176                   __u32 *pexpected_response_sequence_number)
177 {
178         struct kvec iov[2];
179
180         iov[0].iov_base = cifs_pdu;
181         iov[0].iov_len = 4;
182         iov[1].iov_base = (char *)cifs_pdu + 4;
183         iov[1].iov_len = be32_to_cpu(cifs_pdu->smb_buf_length);
184
185         return cifs_sign_smbv(iov, 2, server,
186                               pexpected_response_sequence_number);
187 }
188
189 int cifs_verify_signature(struct smb_rqst *rqst,
190                           struct TCP_Server_Info *server,
191                           __u32 expected_sequence_number)
192 {
193         unsigned int rc;
194         char server_response_sig[8];
195         char what_we_think_sig_should_be[20];
196         struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
197
198         if (rqst->rq_iov[0].iov_len != 4 ||
199             rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
200                 return -EIO;
201
202         if (cifs_pdu == NULL || server == NULL)
203                 return -EINVAL;
204
205         if (!server->session_estab)
206                 return 0;
207
208         if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
209                 struct smb_com_lock_req *pSMB =
210                         (struct smb_com_lock_req *)cifs_pdu;
211             if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
212                         return 0;
213         }
214
215         /* BB what if signatures are supposed to be on for session but
216            server does not send one? BB */
217
218         /* Do not need to verify session setups with signature "BSRSPYL "  */
219         if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0)
220                 cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n",
221                          cifs_pdu->Command);
222
223         /* save off the origiginal signature so we can modify the smb and check
224                 its signature against what the server sent */
225         memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8);
226
227         cifs_pdu->Signature.Sequence.SequenceNumber =
228                                         cpu_to_le32(expected_sequence_number);
229         cifs_pdu->Signature.Sequence.Reserved = 0;
230
231         mutex_lock(&server->srv_mutex);
232         rc = cifs_calc_signature(rqst, server, what_we_think_sig_should_be);
233         mutex_unlock(&server->srv_mutex);
234
235         if (rc)
236                 return rc;
237
238 /*      cifs_dump_mem("what we think it should be: ",
239                       what_we_think_sig_should_be, 16); */
240
241         if (memcmp(server_response_sig, what_we_think_sig_should_be, 8))
242                 return -EACCES;
243         else
244                 return 0;
245
246 }
247
248 /* first calculate 24 bytes ntlm response and then 16 byte session key */
249 int setup_ntlm_response(struct cifs_ses *ses, const struct nls_table *nls_cp)
250 {
251         int rc = 0;
252         unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE;
253         char temp_key[CIFS_SESS_KEY_SIZE];
254
255         if (!ses)
256                 return -EINVAL;
257
258         ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL);
259         if (!ses->auth_key.response)
260                 return -ENOMEM;
261
262         ses->auth_key.len = temp_len;
263
264         rc = SMBNTencrypt(ses->password, ses->server->cryptkey,
265                         ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp);
266         if (rc) {
267                 cifs_dbg(FYI, "%s Can't generate NTLM response, error: %d\n",
268                          __func__, rc);
269                 return rc;
270         }
271
272         rc = E_md4hash(ses->password, temp_key, nls_cp);
273         if (rc) {
274                 cifs_dbg(FYI, "%s Can't generate NT hash, error: %d\n",
275                          __func__, rc);
276                 return rc;
277         }
278
279         rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE);
280         if (rc)
281                 cifs_dbg(FYI, "%s Can't generate NTLM session key, error: %d\n",
282                          __func__, rc);
283
284         return rc;
285 }
286
287 #ifdef CONFIG_CIFS_WEAK_PW_HASH
288 int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt,
289                         char *lnm_session_key)
290 {
291         int i;
292         int rc;
293         char password_with_pad[CIFS_ENCPWD_SIZE] = {0};
294
295         if (password)
296                 strncpy(password_with_pad, password, CIFS_ENCPWD_SIZE);
297
298         if (!encrypt && global_secflags & CIFSSEC_MAY_PLNTXT) {
299                 memcpy(lnm_session_key, password_with_pad,
300                         CIFS_ENCPWD_SIZE);
301                 return 0;
302         }
303
304         /* calculate old style session key */
305         /* calling toupper is less broken than repeatedly
306         calling nls_toupper would be since that will never
307         work for UTF8, but neither handles multibyte code pages
308         but the only alternative would be converting to UCS-16 (Unicode)
309         (using a routine something like UniStrupr) then
310         uppercasing and then converting back from Unicode - which
311         would only worth doing it if we knew it were utf8. Basically
312         utf8 and other multibyte codepages each need their own strupper
313         function since a byte at a time will ont work. */
314
315         for (i = 0; i < CIFS_ENCPWD_SIZE; i++)
316                 password_with_pad[i] = toupper(password_with_pad[i]);
317
318         rc = SMBencrypt(password_with_pad, cryptkey, lnm_session_key);
319
320         return rc;
321 }
322 #endif /* CIFS_WEAK_PW_HASH */
323
324 /* Build a proper attribute value/target info pairs blob.
325  * Fill in netbios and dns domain name and workstation name
326  * and client time (total five av pairs and + one end of fields indicator.
327  * Allocate domain name which gets freed when session struct is deallocated.
328  */
329 static int
330 build_avpair_blob(struct cifs_ses *ses, const struct nls_table *nls_cp)
331 {
332         unsigned int dlen;
333         unsigned int size = 2 * sizeof(struct ntlmssp2_name);
334         char *defdmname = "WORKGROUP";
335         unsigned char *blobptr;
336         struct ntlmssp2_name *attrptr;
337
338         if (!ses->domainName) {
339                 ses->domainName = kstrdup(defdmname, GFP_KERNEL);
340                 if (!ses->domainName)
341                         return -ENOMEM;
342         }
343
344         dlen = strlen(ses->domainName);
345
346         /*
347          * The length of this blob is two times the size of a
348          * structure (av pair) which holds name/size
349          * ( for NTLMSSP_AV_NB_DOMAIN_NAME followed by NTLMSSP_AV_EOL ) +
350          * unicode length of a netbios domain name
351          */
352         ses->auth_key.len = size + 2 * dlen;
353         ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL);
354         if (!ses->auth_key.response) {
355                 ses->auth_key.len = 0;
356                 return -ENOMEM;
357         }
358
359         blobptr = ses->auth_key.response;
360         attrptr = (struct ntlmssp2_name *) blobptr;
361
362         /*
363          * As defined in MS-NTLM 3.3.2, just this av pair field
364          * is sufficient as part of the temp
365          */
366         attrptr->type = cpu_to_le16(NTLMSSP_AV_NB_DOMAIN_NAME);
367         attrptr->length = cpu_to_le16(2 * dlen);
368         blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
369         cifs_strtoUTF16((__le16 *)blobptr, ses->domainName, dlen, nls_cp);
370
371         return 0;
372 }
373
374 /* Server has provided av pairs/target info in the type 2 challenge
375  * packet and we have plucked it and stored within smb session.
376  * We parse that blob here to find netbios domain name to be used
377  * as part of ntlmv2 authentication (in Target String), if not already
378  * specified on the command line.
379  * If this function returns without any error but without fetching
380  * domain name, authentication may fail against some server but
381  * may not fail against other (those who are not very particular
382  * about target string i.e. for some, just user name might suffice.
383  */
384 static int
385 find_domain_name(struct cifs_ses *ses, const struct nls_table *nls_cp)
386 {
387         unsigned int attrsize;
388         unsigned int type;
389         unsigned int onesize = sizeof(struct ntlmssp2_name);
390         unsigned char *blobptr;
391         unsigned char *blobend;
392         struct ntlmssp2_name *attrptr;
393
394         if (!ses->auth_key.len || !ses->auth_key.response)
395                 return 0;
396
397         blobptr = ses->auth_key.response;
398         blobend = blobptr + ses->auth_key.len;
399
400         while (blobptr + onesize < blobend) {
401                 attrptr = (struct ntlmssp2_name *) blobptr;
402                 type = le16_to_cpu(attrptr->type);
403                 if (type == NTLMSSP_AV_EOL)
404                         break;
405                 blobptr += 2; /* advance attr type */
406                 attrsize = le16_to_cpu(attrptr->length);
407                 blobptr += 2; /* advance attr size */
408                 if (blobptr + attrsize > blobend)
409                         break;
410                 if (type == NTLMSSP_AV_NB_DOMAIN_NAME) {
411                         if (!attrsize || attrsize >= CIFS_MAX_DOMAINNAME_LEN)
412                                 break;
413                         if (!ses->domainName) {
414                                 ses->domainName =
415                                         kmalloc(attrsize + 1, GFP_KERNEL);
416                                 if (!ses->domainName)
417                                                 return -ENOMEM;
418                                 cifs_from_utf16(ses->domainName,
419                                         (__le16 *)blobptr, attrsize, attrsize,
420                                         nls_cp, NO_MAP_UNI_RSVD);
421                                 break;
422                         }
423                 }
424                 blobptr += attrsize; /* advance attr  value */
425         }
426
427         return 0;
428 }
429
430 /* Server has provided av pairs/target info in the type 2 challenge
431  * packet and we have plucked it and stored within smb session.
432  * We parse that blob here to find the server given timestamp
433  * as part of ntlmv2 authentication (or local current time as
434  * default in case of failure)
435  */
436 static __le64
437 find_timestamp(struct cifs_ses *ses)
438 {
439         unsigned int attrsize;
440         unsigned int type;
441         unsigned int onesize = sizeof(struct ntlmssp2_name);
442         unsigned char *blobptr;
443         unsigned char *blobend;
444         struct ntlmssp2_name *attrptr;
445         struct timespec ts;
446
447         if (!ses->auth_key.len || !ses->auth_key.response)
448                 return 0;
449
450         blobptr = ses->auth_key.response;
451         blobend = blobptr + ses->auth_key.len;
452
453         while (blobptr + onesize < blobend) {
454                 attrptr = (struct ntlmssp2_name *) blobptr;
455                 type = le16_to_cpu(attrptr->type);
456                 if (type == NTLMSSP_AV_EOL)
457                         break;
458                 blobptr += 2; /* advance attr type */
459                 attrsize = le16_to_cpu(attrptr->length);
460                 blobptr += 2; /* advance attr size */
461                 if (blobptr + attrsize > blobend)
462                         break;
463                 if (type == NTLMSSP_AV_TIMESTAMP) {
464                         if (attrsize == sizeof(u64))
465                                 return *((__le64 *)blobptr);
466                 }
467                 blobptr += attrsize; /* advance attr value */
468         }
469
470         ktime_get_real_ts(&ts);
471         return cpu_to_le64(cifs_UnixTimeToNT(ts));
472 }
473
474 static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash,
475                             const struct nls_table *nls_cp)
476 {
477         int rc = 0;
478         int len;
479         char nt_hash[CIFS_NTHASH_SIZE];
480         __le16 *user;
481         wchar_t *domain;
482         wchar_t *server;
483
484         if (!ses->server->secmech.sdeschmacmd5) {
485                 cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__);
486                 return -1;
487         }
488
489         /* calculate md4 hash of password */
490         E_md4hash(ses->password, nt_hash, nls_cp);
491
492         rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash,
493                                 CIFS_NTHASH_SIZE);
494         if (rc) {
495                 cifs_dbg(VFS, "%s: Could not set NT Hash as a key\n", __func__);
496                 return rc;
497         }
498
499         rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
500         if (rc) {
501                 cifs_dbg(VFS, "%s: could not init hmacmd5\n", __func__);
502                 return rc;
503         }
504
505         /* convert ses->user_name to unicode */
506         len = ses->user_name ? strlen(ses->user_name) : 0;
507         user = kmalloc(2 + (len * 2), GFP_KERNEL);
508         if (user == NULL) {
509                 rc = -ENOMEM;
510                 return rc;
511         }
512
513         if (len) {
514                 len = cifs_strtoUTF16(user, ses->user_name, len, nls_cp);
515                 UniStrupr(user);
516         } else {
517                 memset(user, '\0', 2);
518         }
519
520         rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
521                                 (char *)user, 2 * len);
522         kfree(user);
523         if (rc) {
524                 cifs_dbg(VFS, "%s: Could not update with user\n", __func__);
525                 return rc;
526         }
527
528         /* convert ses->domainName to unicode and uppercase */
529         if (ses->domainName) {
530                 len = strlen(ses->domainName);
531
532                 domain = kmalloc(2 + (len * 2), GFP_KERNEL);
533                 if (domain == NULL) {
534                         rc = -ENOMEM;
535                         return rc;
536                 }
537                 len = cifs_strtoUTF16((__le16 *)domain, ses->domainName, len,
538                                       nls_cp);
539                 rc =
540                 crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
541                                         (char *)domain, 2 * len);
542                 kfree(domain);
543                 if (rc) {
544                         cifs_dbg(VFS, "%s: Could not update with domain\n",
545                                  __func__);
546                         return rc;
547                 }
548         } else {
549                 /* We use ses->serverName if no domain name available */
550                 len = strlen(ses->serverName);
551
552                 server = kmalloc(2 + (len * 2), GFP_KERNEL);
553                 if (server == NULL) {
554                         rc = -ENOMEM;
555                         return rc;
556                 }
557                 len = cifs_strtoUTF16((__le16 *)server, ses->serverName, len,
558                                         nls_cp);
559                 rc =
560                 crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
561                                         (char *)server, 2 * len);
562                 kfree(server);
563                 if (rc) {
564                         cifs_dbg(VFS, "%s: Could not update with server\n",
565                                  __func__);
566                         return rc;
567                 }
568         }
569
570         rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
571                                         ntlmv2_hash);
572         if (rc)
573                 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
574
575         return rc;
576 }
577
578 static int
579 CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash)
580 {
581         int rc;
582         struct ntlmv2_resp *ntlmv2 = (struct ntlmv2_resp *)
583             (ses->auth_key.response + CIFS_SESS_KEY_SIZE);
584         unsigned int hash_len;
585
586         /* The MD5 hash starts at challenge_key.key */
587         hash_len = ses->auth_key.len - (CIFS_SESS_KEY_SIZE +
588                 offsetof(struct ntlmv2_resp, challenge.key[0]));
589
590         if (!ses->server->secmech.sdeschmacmd5) {
591                 cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__);
592                 return -1;
593         }
594
595         rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
596                                  ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
597         if (rc) {
598                 cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n",
599                          __func__);
600                 return rc;
601         }
602
603         rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
604         if (rc) {
605                 cifs_dbg(VFS, "%s: could not init hmacmd5\n", __func__);
606                 return rc;
607         }
608
609         if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED)
610                 memcpy(ntlmv2->challenge.key,
611                        ses->ntlmssp->cryptkey, CIFS_SERVER_CHALLENGE_SIZE);
612         else
613                 memcpy(ntlmv2->challenge.key,
614                        ses->server->cryptkey, CIFS_SERVER_CHALLENGE_SIZE);
615         rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
616                                  ntlmv2->challenge.key, hash_len);
617         if (rc) {
618                 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
619                 return rc;
620         }
621
622         /* Note that the MD5 digest over writes anon.challenge_key.key */
623         rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
624                                 ntlmv2->ntlmv2_hash);
625         if (rc)
626                 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
627
628         return rc;
629 }
630
631 int
632 setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp)
633 {
634         int rc;
635         int baselen;
636         unsigned int tilen;
637         struct ntlmv2_resp *ntlmv2;
638         char ntlmv2_hash[16];
639         unsigned char *tiblob = NULL; /* target info blob */
640         __le64 rsp_timestamp;
641
642         if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED) {
643                 if (!ses->domainName) {
644                         if (ses->domainAuto) {
645                                 rc = find_domain_name(ses, nls_cp);
646                                 if (rc) {
647                                         cifs_dbg(VFS, "error %d finding domain name\n",
648                                                  rc);
649                                         goto setup_ntlmv2_rsp_ret;
650                                 }
651                         } else {
652                                 ses->domainName = kstrdup("", GFP_KERNEL);
653                         }
654                 }
655         } else {
656                 rc = build_avpair_blob(ses, nls_cp);
657                 if (rc) {
658                         cifs_dbg(VFS, "error %d building av pair blob\n", rc);
659                         goto setup_ntlmv2_rsp_ret;
660                 }
661         }
662
663         /* Must be within 5 minutes of the server (or in range +/-2h
664          * in case of Mac OS X), so simply carry over server timestamp
665          * (as Windows 7 does)
666          */
667         rsp_timestamp = find_timestamp(ses);
668
669         baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp);
670         tilen = ses->auth_key.len;
671         tiblob = ses->auth_key.response;
672
673         ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL);
674         if (!ses->auth_key.response) {
675                 rc = -ENOMEM;
676                 ses->auth_key.len = 0;
677                 goto setup_ntlmv2_rsp_ret;
678         }
679         ses->auth_key.len += baselen;
680
681         ntlmv2 = (struct ntlmv2_resp *)
682                         (ses->auth_key.response + CIFS_SESS_KEY_SIZE);
683         ntlmv2->blob_signature = cpu_to_le32(0x00000101);
684         ntlmv2->reserved = 0;
685         ntlmv2->time = rsp_timestamp;
686
687         get_random_bytes(&ntlmv2->client_chal, sizeof(ntlmv2->client_chal));
688         ntlmv2->reserved2 = 0;
689
690         memcpy(ses->auth_key.response + baselen, tiblob, tilen);
691
692         mutex_lock(&ses->server->srv_mutex);
693
694         rc = cifs_alloc_hash("hmac(md5)",
695                              &ses->server->secmech.hmacmd5,
696                              &ses->server->secmech.sdeschmacmd5);
697         if (rc) {
698                 goto unlock;
699         }
700
701         /* calculate ntlmv2_hash */
702         rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp);
703         if (rc) {
704                 cifs_dbg(VFS, "could not get v2 hash rc %d\n", rc);
705                 goto unlock;
706         }
707
708         /* calculate first part of the client response (CR1) */
709         rc = CalcNTLMv2_response(ses, ntlmv2_hash);
710         if (rc) {
711                 cifs_dbg(VFS, "Could not calculate CR1 rc: %d\n", rc);
712                 goto unlock;
713         }
714
715         /* now calculate the session key for NTLMv2 */
716         rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
717                 ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
718         if (rc) {
719                 cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n",
720                          __func__);
721                 goto unlock;
722         }
723
724         rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
725         if (rc) {
726                 cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__);
727                 goto unlock;
728         }
729
730         rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
731                 ntlmv2->ntlmv2_hash,
732                 CIFS_HMAC_MD5_HASH_SIZE);
733         if (rc) {
734                 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
735                 goto unlock;
736         }
737
738         rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
739                 ses->auth_key.response);
740         if (rc)
741                 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
742
743 unlock:
744         mutex_unlock(&ses->server->srv_mutex);
745 setup_ntlmv2_rsp_ret:
746         kfree(tiblob);
747
748         return rc;
749 }
750
751 int
752 calc_seckey(struct cifs_ses *ses)
753 {
754         int rc;
755         struct crypto_skcipher *tfm_arc4;
756         struct scatterlist sgin, sgout;
757         struct skcipher_request *req;
758         unsigned char *sec_key;
759
760         sec_key = kmalloc(CIFS_SESS_KEY_SIZE, GFP_KERNEL);
761         if (sec_key == NULL)
762                 return -ENOMEM;
763
764         get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE);
765
766         tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
767         if (IS_ERR(tfm_arc4)) {
768                 rc = PTR_ERR(tfm_arc4);
769                 cifs_dbg(VFS, "could not allocate crypto API arc4\n");
770                 goto out;
771         }
772
773         rc = crypto_skcipher_setkey(tfm_arc4, ses->auth_key.response,
774                                         CIFS_SESS_KEY_SIZE);
775         if (rc) {
776                 cifs_dbg(VFS, "%s: Could not set response as a key\n",
777                          __func__);
778                 goto out_free_cipher;
779         }
780
781         req = skcipher_request_alloc(tfm_arc4, GFP_KERNEL);
782         if (!req) {
783                 rc = -ENOMEM;
784                 cifs_dbg(VFS, "could not allocate crypto API arc4 request\n");
785                 goto out_free_cipher;
786         }
787
788         sg_init_one(&sgin, sec_key, CIFS_SESS_KEY_SIZE);
789         sg_init_one(&sgout, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
790
791         skcipher_request_set_callback(req, 0, NULL, NULL);
792         skcipher_request_set_crypt(req, &sgin, &sgout, CIFS_CPHTXT_SIZE, NULL);
793
794         rc = crypto_skcipher_encrypt(req);
795         skcipher_request_free(req);
796         if (rc) {
797                 cifs_dbg(VFS, "could not encrypt session key rc: %d\n", rc);
798                 goto out_free_cipher;
799         }
800
801         /* make secondary_key/nonce as session key */
802         memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE);
803         /* and make len as that of session key only */
804         ses->auth_key.len = CIFS_SESS_KEY_SIZE;
805
806 out_free_cipher:
807         crypto_free_skcipher(tfm_arc4);
808 out:
809         kfree(sec_key);
810         return rc;
811 }
812
813 void
814 cifs_crypto_secmech_release(struct TCP_Server_Info *server)
815 {
816         if (server->secmech.cmacaes) {
817                 crypto_free_shash(server->secmech.cmacaes);
818                 server->secmech.cmacaes = NULL;
819         }
820
821         if (server->secmech.hmacsha256) {
822                 crypto_free_shash(server->secmech.hmacsha256);
823                 server->secmech.hmacsha256 = NULL;
824         }
825
826         if (server->secmech.md5) {
827                 crypto_free_shash(server->secmech.md5);
828                 server->secmech.md5 = NULL;
829         }
830
831         if (server->secmech.sha512) {
832                 crypto_free_shash(server->secmech.sha512);
833                 server->secmech.sha512 = NULL;
834         }
835
836         if (server->secmech.hmacmd5) {
837                 crypto_free_shash(server->secmech.hmacmd5);
838                 server->secmech.hmacmd5 = NULL;
839         }
840
841         if (server->secmech.ccmaesencrypt) {
842                 crypto_free_aead(server->secmech.ccmaesencrypt);
843                 server->secmech.ccmaesencrypt = NULL;
844         }
845
846         if (server->secmech.ccmaesdecrypt) {
847                 crypto_free_aead(server->secmech.ccmaesdecrypt);
848                 server->secmech.ccmaesdecrypt = NULL;
849         }
850
851         kfree(server->secmech.sdesccmacaes);
852         server->secmech.sdesccmacaes = NULL;
853         kfree(server->secmech.sdeschmacsha256);
854         server->secmech.sdeschmacsha256 = NULL;
855         kfree(server->secmech.sdeschmacmd5);
856         server->secmech.sdeschmacmd5 = NULL;
857         kfree(server->secmech.sdescmd5);
858         server->secmech.sdescmd5 = NULL;
859         kfree(server->secmech.sdescsha512);
860         server->secmech.sdescsha512 = NULL;
861 }