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