blob: ee2a8ec70056f7451695cb75bfe1e00a95280ff0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifsencrypt.c
3 *
Steve French8b7a4542015-03-30 16:58:17 -05004 * Encryption and hashing operations relating to NTLM, NTLMv2. See MS-NLMP
5 * for more detailed information
6 *
Steve French95dc8dd2013-07-04 10:35:21 -05007 * Copyright (C) International Business Machines Corp., 2005,2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "cifspdu.h"
Steve Frenchffdd6e42007-06-24 21:15:44 +000028#include "cifsglob.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "cifs_debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "cifs_unicode.h"
31#include "cifsproto.h"
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -050032#include "ntlmssp.h"
Steve French7c7b25b2006-06-01 19:20:10 +000033#include <linux/ctype.h>
Steve French6d027cf2006-06-05 16:26:05 +000034#include <linux/random.h>
Jeff Laytonfb308a62012-09-18 16:20:35 -070035#include <linux/highmem.h>
Herbert Xu9651ddb2016-01-24 21:17:17 +080036#include <crypto/skcipher.h>
Pavel Shilovsky026e93d2016-11-03 16:47:37 -070037#include <crypto/aead.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Al Viro16c568e2015-11-12 22:46:49 -050039int __cifs_calc_signature(struct smb_rqst *rqst,
40 struct TCP_Server_Info *server, char *signature,
41 struct shash_desc *shash)
42{
43 int i;
44 int rc;
45 struct kvec *iov = rqst->rq_iov;
46 int n_vec = rqst->rq_nvec;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100047 int is_smb2 = server->vals->header_preamble_size == 0;
Al Viro16c568e2015-11-12 22:46:49 -050048
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100049 /* iov[0] is actual data and not the rfc1002 length for SMB2+ */
50 if (is_smb2) {
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030051 if (iov[0].iov_len <= 4)
52 return -EIO;
53 i = 0;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100054 } else {
55 if (n_vec < 2 || iov[0].iov_len != 4)
56 return -EIO;
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030057 i = 1; /* skip rfc1002 length */
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100058 }
59
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030060 for (; i < n_vec; i++) {
Al Viro16c568e2015-11-12 22:46:49 -050061 if (iov[i].iov_len == 0)
62 continue;
63 if (iov[i].iov_base == NULL) {
64 cifs_dbg(VFS, "null iovec entry\n");
65 return -EIO;
66 }
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030067
Pavel Shilovsky738f9de2016-11-23 15:14:57 -080068 rc = crypto_shash_update(shash,
69 iov[i].iov_base, iov[i].iov_len);
Al Viro16c568e2015-11-12 22:46:49 -050070 if (rc) {
71 cifs_dbg(VFS, "%s: Could not update with payload\n",
72 __func__);
73 return rc;
74 }
75 }
76
77 /* now hash over the rq_pages array */
78 for (i = 0; i < rqst->rq_npages; i++) {
Long Li4c0d2a52018-05-30 12:48:03 -070079 void *kaddr;
80 unsigned int len, offset;
Al Viro16c568e2015-11-12 22:46:49 -050081
Long Li4c0d2a52018-05-30 12:48:03 -070082 rqst_page_get_length(rqst, i, &len, &offset);
83
84 kaddr = (char *) kmap(rqst->rq_pages[i]) + offset;
Al Viro16c568e2015-11-12 22:46:49 -050085
86 crypto_shash_update(shash, kaddr, len);
87
88 kunmap(rqst->rq_pages[i]);
89 }
90
91 rc = crypto_shash_final(shash, signature);
92 if (rc)
93 cifs_dbg(VFS, "%s: Could not generate hash\n", __func__);
94
95 return rc;
96}
97
Jeff Layton157c2492011-04-02 07:34:30 -040098/*
99 * Calculate and return the CIFS signature based on the mac key and SMB PDU.
100 * The 16 byte signature must be allocated by the caller. Note we only use the
101 * 1st eight bytes and that the smb header signature field on input contains
102 * the sequence number before this function is called. Also, this function
103 * should be called with the server->srv_mutex held.
104 */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700105static int cifs_calc_signature(struct smb_rqst *rqst,
Jeff Layton826a95e2011-10-11 06:41:32 -0400106 struct TCP_Server_Info *server, char *signature)
Steve French84afc292005-12-02 13:32:45 -0800107{
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500108 int rc;
Steve French84afc292005-12-02 13:32:45 -0800109
Al Viro16c568e2015-11-12 22:46:49 -0500110 if (!rqst->rq_iov || !signature || !server)
Steve Frenche9917a02006-03-31 21:22:00 +0000111 return -EINVAL;
Steve French84afc292005-12-02 13:32:45 -0800112
Aurelien Aptel82fb82b2018-02-16 19:19:27 +0100113 rc = cifs_alloc_hash("md5", &server->secmech.md5,
114 &server->secmech.sdescmd5);
115 if (rc)
116 return -1;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500117
118 rc = crypto_shash_init(&server->secmech.sdescmd5->shash);
119 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500120 cifs_dbg(VFS, "%s: Could not init md5\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500121 return rc;
122 }
123
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500124 rc = crypto_shash_update(&server->secmech.sdescmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500125 server->session_key.response, server->session_key.len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500126 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500127 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500128 return rc;
129 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500130
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000131 return __cifs_calc_signature(rqst, server, signature,
Al Viro16c568e2015-11-12 22:46:49 -0500132 &server->secmech.sdescmd5->shash);
Steve French84afc292005-12-02 13:32:45 -0800133}
134
Jeff Laytona0f8b4f2011-01-07 11:30:28 -0500135/* must be called with server->srv_mutex held */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700136int cifs_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server,
Steve French63d25832007-11-05 21:46:10 +0000137 __u32 *pexpected_response_sequence_number)
Steve French84afc292005-12-02 13:32:45 -0800138{
139 int rc = 0;
140 char smb_signature[20];
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700141 struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Steve French84afc292005-12-02 13:32:45 -0800142
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800143 if (rqst->rq_iov[0].iov_len != 4 ||
144 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
145 return -EIO;
146
Steve Frenchffdd6e42007-06-24 21:15:44 +0000147 if ((cifs_pdu == NULL) || (server == NULL))
Steve French84afc292005-12-02 13:32:45 -0800148 return -EINVAL;
149
Jeff Layton998d6fc2011-07-26 12:21:17 -0400150 if (!(cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) ||
151 server->tcpStatus == CifsNeedNegotiate)
Steve French84afc292005-12-02 13:32:45 -0800152 return rc;
153
Jeff Layton998d6fc2011-07-26 12:21:17 -0400154 if (!server->session_estab) {
Jeff Laytonb4dacbc2011-10-11 06:41:32 -0400155 memcpy(cifs_pdu->Signature.SecuritySignature, "BSRSPYL", 8);
Jeff Layton998d6fc2011-07-26 12:21:17 -0400156 return rc;
157 }
158
Steve Frenchffdd6e42007-06-24 21:15:44 +0000159 cifs_pdu->Signature.Sequence.SequenceNumber =
Steve French84afc292005-12-02 13:32:45 -0800160 cpu_to_le32(server->sequence_number);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000161 cifs_pdu->Signature.Sequence.Reserved = 0;
Steve French84afc292005-12-02 13:32:45 -0800162
Jeff Layton0124cc42013-04-03 11:55:03 -0400163 *pexpected_response_sequence_number = ++server->sequence_number;
164 ++server->sequence_number;
Steve French84afc292005-12-02 13:32:45 -0800165
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700166 rc = cifs_calc_signature(rqst, server, smb_signature);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000167 if (rc)
168 memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
169 else
170 memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
Steve French84afc292005-12-02 13:32:45 -0800171
Steve Frenchffdd6e42007-06-24 21:15:44 +0000172 return rc;
Steve French84afc292005-12-02 13:32:45 -0800173}
174
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700175int cifs_sign_smbv(struct kvec *iov, int n_vec, struct TCP_Server_Info *server,
176 __u32 *pexpected_response_sequence)
177{
178 struct smb_rqst rqst = { .rq_iov = iov,
179 .rq_nvec = n_vec };
180
181 return cifs_sign_rqst(&rqst, server, pexpected_response_sequence);
182}
183
Jeff Layton826a95e2011-10-11 06:41:32 -0400184/* must be called with server->srv_mutex held */
185int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server,
186 __u32 *pexpected_response_sequence_number)
187{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800188 struct kvec iov[2];
Jeff Layton826a95e2011-10-11 06:41:32 -0400189
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800190 iov[0].iov_base = cifs_pdu;
191 iov[0].iov_len = 4;
192 iov[1].iov_base = (char *)cifs_pdu + 4;
193 iov[1].iov_len = be32_to_cpu(cifs_pdu->smb_buf_length);
Jeff Layton826a95e2011-10-11 06:41:32 -0400194
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800195 return cifs_sign_smbv(iov, 2, server,
Jeff Layton826a95e2011-10-11 06:41:32 -0400196 pexpected_response_sequence_number);
197}
198
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700199int cifs_verify_signature(struct smb_rqst *rqst,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500200 struct TCP_Server_Info *server,
Steve Frenchffdd6e42007-06-24 21:15:44 +0000201 __u32 expected_sequence_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Steve Frenchc8e56f12010-09-08 21:10:58 +0000203 unsigned int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 char server_response_sig[8];
205 char what_we_think_sig_should_be[20];
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700206 struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800208 if (rqst->rq_iov[0].iov_len != 4 ||
209 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
210 return -EIO;
211
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500212 if (cifs_pdu == NULL || server == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return -EINVAL;
214
Jeff Layton9c4843e2011-06-06 15:40:23 -0400215 if (!server->session_estab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
217
218 if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
Steve French50c2f752007-07-13 00:33:32 +0000219 struct smb_com_lock_req *pSMB =
Steve Frenchffdd6e42007-06-24 21:15:44 +0000220 (struct smb_com_lock_req *)cifs_pdu;
221 if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223 }
224
Steve French50c2f752007-07-13 00:33:32 +0000225 /* BB what if signatures are supposed to be on for session but
226 server does not send one? BB */
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /* Do not need to verify session setups with signature "BSRSPYL " */
Steve French50c2f752007-07-13 00:33:32 +0000229 if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0)
Joe Perchesf96637b2013-05-04 22:12:25 -0500230 cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n",
231 cifs_pdu->Command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /* save off the origiginal signature so we can modify the smb and check
234 its signature against what the server sent */
Steve French50c2f752007-07-13 00:33:32 +0000235 memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Steve French50c2f752007-07-13 00:33:32 +0000237 cifs_pdu->Signature.Sequence.SequenceNumber =
238 cpu_to_le32(expected_sequence_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 cifs_pdu->Signature.Sequence.Reserved = 0;
240
Jeff Layton157c2492011-04-02 07:34:30 -0400241 mutex_lock(&server->srv_mutex);
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700242 rc = cifs_calc_signature(rqst, server, what_we_think_sig_should_be);
Jeff Layton157c2492011-04-02 07:34:30 -0400243 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Steve French50c2f752007-07-13 00:33:32 +0000245 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return rc;
247
Steve French50c2f752007-07-13 00:33:32 +0000248/* cifs_dump_mem("what we think it should be: ",
249 what_we_think_sig_should_be, 16); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Steve French50c2f752007-07-13 00:33:32 +0000251 if (memcmp(server_response_sig, what_we_think_sig_should_be, 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 return -EACCES;
253 else
254 return 0;
255
256}
257
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500258/* first calculate 24 bytes ntlm response and then 16 byte session key */
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500259int setup_ntlm_response(struct cifs_ses *ses, const struct nls_table *nls_cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600261 int rc = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500262 unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE;
263 char temp_key[CIFS_SESS_KEY_SIZE];
264
265 if (!ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return -EINVAL;
267
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500268 ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -0500269 if (!ses->auth_key.response)
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500270 return -ENOMEM;
Joe Perchesf96637b2013-05-04 22:12:25 -0500271
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500272 ses->auth_key.len = temp_len;
273
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600274 rc = SMBNTencrypt(ses->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500275 ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600276 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500277 cifs_dbg(FYI, "%s Can't generate NTLM response, error: %d\n",
278 __func__, rc);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600279 return rc;
280 }
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500281
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500282 rc = E_md4hash(ses->password, temp_key, nls_cp);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600283 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500284 cifs_dbg(FYI, "%s Can't generate NT hash, error: %d\n",
285 __func__, rc);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600286 return rc;
287 }
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500288
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600289 rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE);
290 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500291 cifs_dbg(FYI, "%s Can't generate NTLM session key, error: %d\n",
292 __func__, rc);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600293
294 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
Steve French7c7b25b2006-06-01 19:20:10 +0000297#ifdef CONFIG_CIFS_WEAK_PW_HASH
Steve French43988d72011-04-19 18:23:31 +0000298int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt,
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500299 char *lnm_session_key)
Steve French7c7b25b2006-06-01 19:20:10 +0000300{
301 int i;
Steve French43988d72011-04-19 18:23:31 +0000302 int rc;
Aurelien Aptel97f4b722018-01-25 15:59:39 +0100303 char password_with_pad[CIFS_ENCPWD_SIZE] = {0};
Steve French7c7b25b2006-06-01 19:20:10 +0000304
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500305 if (password)
306 strncpy(password_with_pad, password, CIFS_ENCPWD_SIZE);
Steve French7c7b25b2006-06-01 19:20:10 +0000307
Jeff Layton04912d62010-04-24 07:57:45 -0400308 if (!encrypt && global_secflags & CIFSSEC_MAY_PLNTXT) {
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500309 memcpy(lnm_session_key, password_with_pad,
310 CIFS_ENCPWD_SIZE);
Steve French43988d72011-04-19 18:23:31 +0000311 return 0;
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500312 }
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000313
Steve French7c7b25b2006-06-01 19:20:10 +0000314 /* calculate old style session key */
315 /* calling toupper is less broken than repeatedly
316 calling nls_toupper would be since that will never
317 work for UTF8, but neither handles multibyte code pages
318 but the only alternative would be converting to UCS-16 (Unicode)
319 (using a routine something like UniStrupr) then
320 uppercasing and then converting back from Unicode - which
321 would only worth doing it if we knew it were utf8. Basically
322 utf8 and other multibyte codepages each need their own strupper
323 function since a byte at a time will ont work. */
324
Shirish Pargaonkaref571ca2008-07-24 15:56:05 +0000325 for (i = 0; i < CIFS_ENCPWD_SIZE; i++)
Steve French7c7b25b2006-06-01 19:20:10 +0000326 password_with_pad[i] = toupper(password_with_pad[i]);
Steve French7c7b25b2006-06-01 19:20:10 +0000327
Steve French43988d72011-04-19 18:23:31 +0000328 rc = SMBencrypt(password_with_pad, cryptkey, lnm_session_key);
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500329
Steve French43988d72011-04-19 18:23:31 +0000330 return rc;
Steve French7c7b25b2006-06-01 19:20:10 +0000331}
332#endif /* CIFS_WEAK_PW_HASH */
333
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500334/* Build a proper attribute value/target info pairs blob.
335 * Fill in netbios and dns domain name and workstation name
336 * and client time (total five av pairs and + one end of fields indicator.
337 * Allocate domain name which gets freed when session struct is deallocated.
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500338 */
339static int
Steve French96daf2b2011-05-27 04:34:02 +0000340build_avpair_blob(struct cifs_ses *ses, const struct nls_table *nls_cp)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500341{
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500342 unsigned int dlen;
Shirish Pargaonkarcfbd6f82011-08-24 23:05:46 -0500343 unsigned int size = 2 * sizeof(struct ntlmssp2_name);
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500344 char *defdmname = "WORKGROUP";
345 unsigned char *blobptr;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500346 struct ntlmssp2_name *attrptr;
347
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500348 if (!ses->domainName) {
349 ses->domainName = kstrdup(defdmname, GFP_KERNEL);
350 if (!ses->domainName)
351 return -ENOMEM;
352 }
353
354 dlen = strlen(ses->domainName);
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500355
Shirish Pargaonkarcfbd6f82011-08-24 23:05:46 -0500356 /*
357 * The length of this blob is two times the size of a
358 * structure (av pair) which holds name/size
359 * ( for NTLMSSP_AV_NB_DOMAIN_NAME followed by NTLMSSP_AV_EOL ) +
360 * unicode length of a netbios domain name
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500361 */
Shirish Pargaonkarcfbd6f82011-08-24 23:05:46 -0500362 ses->auth_key.len = size + 2 * dlen;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500363 ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL);
364 if (!ses->auth_key.response) {
365 ses->auth_key.len = 0;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500366 return -ENOMEM;
367 }
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500368
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500369 blobptr = ses->auth_key.response;
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500370 attrptr = (struct ntlmssp2_name *) blobptr;
371
Shirish Pargaonkarcfbd6f82011-08-24 23:05:46 -0500372 /*
373 * As defined in MS-NTLM 3.3.2, just this av pair field
374 * is sufficient as part of the temp
375 */
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500376 attrptr->type = cpu_to_le16(NTLMSSP_AV_NB_DOMAIN_NAME);
377 attrptr->length = cpu_to_le16(2 * dlen);
378 blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
Steve Frenchacbbb762012-01-18 22:32:33 -0600379 cifs_strtoUTF16((__le16 *)blobptr, ses->domainName, dlen, nls_cp);
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500380
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500381 return 0;
382}
383
384/* Server has provided av pairs/target info in the type 2 challenge
385 * packet and we have plucked it and stored within smb session.
386 * We parse that blob here to find netbios domain name to be used
387 * as part of ntlmv2 authentication (in Target String), if not already
388 * specified on the command line.
389 * If this function returns without any error but without fetching
390 * domain name, authentication may fail against some server but
391 * may not fail against other (those who are not very particular
392 * about target string i.e. for some, just user name might suffice.
393 */
394static int
Steve French96daf2b2011-05-27 04:34:02 +0000395find_domain_name(struct cifs_ses *ses, const struct nls_table *nls_cp)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500396{
397 unsigned int attrsize;
398 unsigned int type;
399 unsigned int onesize = sizeof(struct ntlmssp2_name);
400 unsigned char *blobptr;
401 unsigned char *blobend;
402 struct ntlmssp2_name *attrptr;
403
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500404 if (!ses->auth_key.len || !ses->auth_key.response)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500405 return 0;
406
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500407 blobptr = ses->auth_key.response;
408 blobend = blobptr + ses->auth_key.len;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500409
410 while (blobptr + onesize < blobend) {
411 attrptr = (struct ntlmssp2_name *) blobptr;
412 type = le16_to_cpu(attrptr->type);
413 if (type == NTLMSSP_AV_EOL)
414 break;
415 blobptr += 2; /* advance attr type */
416 attrsize = le16_to_cpu(attrptr->length);
417 blobptr += 2; /* advance attr size */
418 if (blobptr + attrsize > blobend)
419 break;
420 if (type == NTLMSSP_AV_NB_DOMAIN_NAME) {
Chen Gang057d6332013-07-19 09:01:36 +0800421 if (!attrsize || attrsize >= CIFS_MAX_DOMAINNAME_LEN)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500422 break;
423 if (!ses->domainName) {
424 ses->domainName =
425 kmalloc(attrsize + 1, GFP_KERNEL);
426 if (!ses->domainName)
427 return -ENOMEM;
Steve Frenchacbbb762012-01-18 22:32:33 -0600428 cifs_from_utf16(ses->domainName,
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500429 (__le16 *)blobptr, attrsize, attrsize,
Steve Frenchb6938552014-09-25 13:20:05 -0500430 nls_cp, NO_MAP_UNI_RSVD);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500431 break;
432 }
433 }
434 blobptr += attrsize; /* advance attr value */
435 }
436
437 return 0;
438}
439
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200440/* Server has provided av pairs/target info in the type 2 challenge
441 * packet and we have plucked it and stored within smb session.
442 * We parse that blob here to find the server given timestamp
443 * as part of ntlmv2 authentication (or local current time as
444 * default in case of failure)
445 */
446static __le64
447find_timestamp(struct cifs_ses *ses)
448{
449 unsigned int attrsize;
450 unsigned int type;
451 unsigned int onesize = sizeof(struct ntlmssp2_name);
452 unsigned char *blobptr;
453 unsigned char *blobend;
454 struct ntlmssp2_name *attrptr;
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700455 struct timespec ts;
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200456
457 if (!ses->auth_key.len || !ses->auth_key.response)
458 return 0;
459
460 blobptr = ses->auth_key.response;
461 blobend = blobptr + ses->auth_key.len;
462
463 while (blobptr + onesize < blobend) {
464 attrptr = (struct ntlmssp2_name *) blobptr;
465 type = le16_to_cpu(attrptr->type);
466 if (type == NTLMSSP_AV_EOL)
467 break;
468 blobptr += 2; /* advance attr type */
469 attrsize = le16_to_cpu(attrptr->length);
470 blobptr += 2; /* advance attr size */
471 if (blobptr + attrsize > blobend)
472 break;
473 if (type == NTLMSSP_AV_TIMESTAMP) {
474 if (attrsize == sizeof(u64))
475 return *((__le64 *)blobptr);
476 }
477 blobptr += attrsize; /* advance attr value */
478 }
479
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700480 ktime_get_real_ts(&ts);
481 return cpu_to_le64(cifs_UnixTimeToNT(ts));
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200482}
483
Steve French96daf2b2011-05-27 04:34:02 +0000484static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash,
Steve French50c2f752007-07-13 00:33:32 +0000485 const struct nls_table *nls_cp)
Steve Frencha8ee0342006-06-05 23:34:19 +0000486{
487 int rc = 0;
488 int len;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500489 char nt_hash[CIFS_NTHASH_SIZE];
Steve Frenchfdf96a92013-06-25 14:03:16 -0500490 __le16 *user;
Steve French50c2f752007-07-13 00:33:32 +0000491 wchar_t *domain;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500492 wchar_t *server;
Steve Frenchc8e56f12010-09-08 21:10:58 +0000493
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500494 if (!ses->server->secmech.sdeschmacmd5) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500495 cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500496 return -1;
497 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000498
499 /* calculate md4 hash of password */
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500500 E_md4hash(ses->password, nt_hash, nls_cp);
Steve Frencha8ee0342006-06-05 23:34:19 +0000501
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500502 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500503 CIFS_NTHASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500504 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500505 cifs_dbg(VFS, "%s: Could not set NT Hash as a key\n", __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500506 return rc;
507 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500508
509 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
510 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500511 cifs_dbg(VFS, "%s: could not init hmacmd5\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500512 return rc;
513 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000514
Steve Frenchfdf96a92013-06-25 14:03:16 -0500515 /* convert ses->user_name to unicode */
Jeff Layton04febab2012-01-17 16:09:15 -0500516 len = ses->user_name ? strlen(ses->user_name) : 0;
Steve French1717ffc2006-06-08 05:41:32 +0000517 user = kmalloc(2 + (len * 2), GFP_KERNEL);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500518 if (user == NULL) {
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500519 rc = -ENOMEM;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500520 return rc;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500521 }
Jeff Layton04febab2012-01-17 16:09:15 -0500522
523 if (len) {
Steve Frenchfdf96a92013-06-25 14:03:16 -0500524 len = cifs_strtoUTF16(user, ses->user_name, len, nls_cp);
Jeff Layton04febab2012-01-17 16:09:15 -0500525 UniStrupr(user);
526 } else {
527 memset(user, '\0', 2);
528 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500529
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500530 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500531 (char *)user, 2 * len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500532 kfree(user);
533 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500534 cifs_dbg(VFS, "%s: Could not update with user\n", __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500535 return rc;
536 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000537
538 /* convert ses->domainName to unicode and uppercase */
Steve French50c2f752007-07-13 00:33:32 +0000539 if (ses->domainName) {
Steve French1717ffc2006-06-08 05:41:32 +0000540 len = strlen(ses->domainName);
Steve Frencha8ee0342006-06-05 23:34:19 +0000541
Steve French50c2f752007-07-13 00:33:32 +0000542 domain = kmalloc(2 + (len * 2), GFP_KERNEL);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500543 if (domain == NULL) {
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500544 rc = -ENOMEM;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500545 return rc;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500546 }
Steve Frenchacbbb762012-01-18 22:32:33 -0600547 len = cifs_strtoUTF16((__le16 *)domain, ses->domainName, len,
548 nls_cp);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500549 rc =
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500550 crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
551 (char *)domain, 2 * len);
Steve French1717ffc2006-06-08 05:41:32 +0000552 kfree(domain);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500553 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500554 cifs_dbg(VFS, "%s: Could not update with domain\n",
555 __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500556 return rc;
557 }
Steve French8b7a4542015-03-30 16:58:17 -0500558 } else {
559 /* We use ses->serverName if no domain name available */
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500560 len = strlen(ses->serverName);
561
562 server = kmalloc(2 + (len * 2), GFP_KERNEL);
563 if (server == NULL) {
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500564 rc = -ENOMEM;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500565 return rc;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500566 }
Steve Frenchacbbb762012-01-18 22:32:33 -0600567 len = cifs_strtoUTF16((__le16 *)server, ses->serverName, len,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500568 nls_cp);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500569 rc =
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500570 crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
571 (char *)server, 2 * len);
572 kfree(server);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500573 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500574 cifs_dbg(VFS, "%s: Could not update with server\n",
575 __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500576 return rc;
577 }
Steve French1717ffc2006-06-08 05:41:32 +0000578 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500579
580 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500581 ntlmv2_hash);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500582 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500583 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500584
Steve Frencha8ee0342006-06-05 23:34:19 +0000585 return rc;
586}
587
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500588static int
Steve French96daf2b2011-05-27 04:34:02 +0000589CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash)
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500590{
591 int rc;
Tim Gardner2c957dd2013-11-07 16:40:57 -0700592 struct ntlmv2_resp *ntlmv2 = (struct ntlmv2_resp *)
593 (ses->auth_key.response + CIFS_SESS_KEY_SIZE);
594 unsigned int hash_len;
595
596 /* The MD5 hash starts at challenge_key.key */
597 hash_len = ses->auth_key.len - (CIFS_SESS_KEY_SIZE +
598 offsetof(struct ntlmv2_resp, challenge.key[0]));
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500599
600 if (!ses->server->secmech.sdeschmacmd5) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500601 cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500602 return -1;
603 }
604
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500605 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
Tim Gardner2c957dd2013-11-07 16:40:57 -0700606 ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500607 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500608 cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n",
609 __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500610 return rc;
611 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500612
613 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
614 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500615 cifs_dbg(VFS, "%s: could not init hmacmd5\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500616 return rc;
617 }
618
Jeff Layton3f618222013-06-12 19:52:14 -0500619 if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED)
Tim Gardner2c957dd2013-11-07 16:40:57 -0700620 memcpy(ntlmv2->challenge.key,
621 ses->ntlmssp->cryptkey, CIFS_SERVER_CHALLENGE_SIZE);
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -0500622 else
Tim Gardner2c957dd2013-11-07 16:40:57 -0700623 memcpy(ntlmv2->challenge.key,
624 ses->server->cryptkey, CIFS_SERVER_CHALLENGE_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500625 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Tim Gardner2c957dd2013-11-07 16:40:57 -0700626 ntlmv2->challenge.key, hash_len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500627 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500628 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500629 return rc;
630 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500631
Tim Gardner2c957dd2013-11-07 16:40:57 -0700632 /* Note that the MD5 digest over writes anon.challenge_key.key */
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500633 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
Tim Gardner2c957dd2013-11-07 16:40:57 -0700634 ntlmv2->ntlmv2_hash);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500635 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500636 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500637
638 return rc;
639}
640
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500641int
Steve French96daf2b2011-05-27 04:34:02 +0000642setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp)
Steve French9fbc5902010-08-20 20:42:26 +0000643{
Steve Frenchc8e56f12010-09-08 21:10:58 +0000644 int rc;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500645 int baselen;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500646 unsigned int tilen;
Tim Gardner2c957dd2013-11-07 16:40:57 -0700647 struct ntlmv2_resp *ntlmv2;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500648 char ntlmv2_hash[16];
649 unsigned char *tiblob = NULL; /* target info blob */
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200650 __le64 rsp_timestamp;
Steve French6d027cf2006-06-05 16:26:05 +0000651
Jeff Layton3f618222013-06-12 19:52:14 -0500652 if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED) {
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500653 if (!ses->domainName) {
Germano Percossi39566442016-12-15 12:31:18 +0530654 if (ses->domainAuto) {
655 rc = find_domain_name(ses, nls_cp);
656 if (rc) {
657 cifs_dbg(VFS, "error %d finding domain name\n",
658 rc);
659 goto setup_ntlmv2_rsp_ret;
660 }
661 } else {
662 ses->domainName = kstrdup("", GFP_KERNEL);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500663 }
664 }
665 } else {
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500666 rc = build_avpair_blob(ses, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500667 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500668 cifs_dbg(VFS, "error %d building av pair blob\n", rc);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500669 goto setup_ntlmv2_rsp_ret;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500670 }
671 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000672
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200673 /* Must be within 5 minutes of the server (or in range +/-2h
674 * in case of Mac OS X), so simply carry over server timestamp
675 * (as Windows 7 does)
676 */
677 rsp_timestamp = find_timestamp(ses);
678
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500679 baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500680 tilen = ses->auth_key.len;
681 tiblob = ses->auth_key.response;
682
683 ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500684 if (!ses->auth_key.response) {
Anton Protopopov4b550af2016-02-10 12:50:21 -0500685 rc = -ENOMEM;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500686 ses->auth_key.len = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500687 goto setup_ntlmv2_rsp_ret;
688 }
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500689 ses->auth_key.len += baselen;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500690
Tim Gardner2c957dd2013-11-07 16:40:57 -0700691 ntlmv2 = (struct ntlmv2_resp *)
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500692 (ses->auth_key.response + CIFS_SESS_KEY_SIZE);
Tim Gardner2c957dd2013-11-07 16:40:57 -0700693 ntlmv2->blob_signature = cpu_to_le32(0x00000101);
694 ntlmv2->reserved = 0;
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200695 ntlmv2->time = rsp_timestamp;
696
Tim Gardner2c957dd2013-11-07 16:40:57 -0700697 get_random_bytes(&ntlmv2->client_chal, sizeof(ntlmv2->client_chal));
698 ntlmv2->reserved2 = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500699
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500700 memcpy(ses->auth_key.response + baselen, tiblob, tilen);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500701
Rabin Vincentbd975d12016-07-19 09:26:21 +0200702 mutex_lock(&ses->server->srv_mutex);
703
Aurelien Aptel82fb82b2018-02-16 19:19:27 +0100704 rc = cifs_alloc_hash("hmac(md5)",
705 &ses->server->secmech.hmacmd5,
706 &ses->server->secmech.sdeschmacmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500707 if (rc) {
Rabin Vincentbd975d12016-07-19 09:26:21 +0200708 goto unlock;
Steve French95dc8dd2013-07-04 10:35:21 -0500709 }
710
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500711 /* calculate ntlmv2_hash */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500712 rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500713 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500714 cifs_dbg(VFS, "could not get v2 hash rc %d\n", rc);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200715 goto unlock;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500716 }
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500717
718 /* calculate first part of the client response (CR1) */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500719 rc = CalcNTLMv2_response(ses, ntlmv2_hash);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500720 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500721 cifs_dbg(VFS, "Could not calculate CR1 rc: %d\n", rc);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200722 goto unlock;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500723 }
Steve Frenchb609f062007-07-09 07:55:14 +0000724
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -0500725 /* now calculate the session key for NTLMv2 */
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500726 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500727 ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500728 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500729 cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n",
730 __func__);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200731 goto unlock;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500732 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500733
734 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
735 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500736 cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200737 goto unlock;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500738 }
739
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500740 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Tim Gardner2c957dd2013-11-07 16:40:57 -0700741 ntlmv2->ntlmv2_hash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500742 CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500743 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500744 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200745 goto unlock;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500746 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500747
748 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
749 ses->auth_key.response);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500750 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500751 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500752
Rabin Vincentbd975d12016-07-19 09:26:21 +0200753unlock:
754 mutex_unlock(&ses->server->srv_mutex);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500755setup_ntlmv2_rsp_ret:
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500756 kfree(tiblob);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500757
758 return rc;
Steve French6d027cf2006-06-05 16:26:05 +0000759}
760
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500761int
Steve French96daf2b2011-05-27 04:34:02 +0000762calc_seckey(struct cifs_ses *ses)
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500763{
764 int rc;
Herbert Xu9651ddb2016-01-24 21:17:17 +0800765 struct crypto_skcipher *tfm_arc4;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500766 struct scatterlist sgin, sgout;
Herbert Xu9651ddb2016-01-24 21:17:17 +0800767 struct skcipher_request *req;
Sachin Prabhu5f4b5562016-10-17 16:40:22 -0400768 unsigned char *sec_key;
769
770 sec_key = kmalloc(CIFS_SESS_KEY_SIZE, GFP_KERNEL);
771 if (sec_key == NULL)
772 return -ENOMEM;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500773
774 get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE);
775
Herbert Xu9651ddb2016-01-24 21:17:17 +0800776 tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
Shirish Pargaonkar7a8587e2011-01-29 13:54:58 -0600777 if (IS_ERR(tfm_arc4)) {
778 rc = PTR_ERR(tfm_arc4);
Joe Perchesf96637b2013-05-04 22:12:25 -0500779 cifs_dbg(VFS, "could not allocate crypto API arc4\n");
Sachin Prabhu5f4b5562016-10-17 16:40:22 -0400780 goto out;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500781 }
782
Herbert Xu9651ddb2016-01-24 21:17:17 +0800783 rc = crypto_skcipher_setkey(tfm_arc4, ses->auth_key.response,
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500784 CIFS_SESS_KEY_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500785 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500786 cifs_dbg(VFS, "%s: Could not set response as a key\n",
787 __func__);
Herbert Xu9651ddb2016-01-24 21:17:17 +0800788 goto out_free_cipher;
789 }
790
791 req = skcipher_request_alloc(tfm_arc4, GFP_KERNEL);
792 if (!req) {
793 rc = -ENOMEM;
794 cifs_dbg(VFS, "could not allocate crypto API arc4 request\n");
795 goto out_free_cipher;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500796 }
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500797
798 sg_init_one(&sgin, sec_key, CIFS_SESS_KEY_SIZE);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500799 sg_init_one(&sgout, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500800
Herbert Xu9651ddb2016-01-24 21:17:17 +0800801 skcipher_request_set_callback(req, 0, NULL, NULL);
802 skcipher_request_set_crypt(req, &sgin, &sgout, CIFS_CPHTXT_SIZE, NULL);
803
804 rc = crypto_skcipher_encrypt(req);
805 skcipher_request_free(req);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500806 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500807 cifs_dbg(VFS, "could not encrypt session key rc: %d\n", rc);
Herbert Xu9651ddb2016-01-24 21:17:17 +0800808 goto out_free_cipher;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500809 }
810
811 /* make secondary_key/nonce as session key */
812 memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE);
813 /* and make len as that of session key only */
814 ses->auth_key.len = CIFS_SESS_KEY_SIZE;
815
Herbert Xu9651ddb2016-01-24 21:17:17 +0800816out_free_cipher:
817 crypto_free_skcipher(tfm_arc4);
Sachin Prabhu5f4b5562016-10-17 16:40:22 -0400818out:
819 kfree(sec_key);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500820 return rc;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500821}
822
823void
Pavel Shilovsky026e93d2016-11-03 16:47:37 -0700824cifs_crypto_secmech_release(struct TCP_Server_Info *server)
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500825{
Steve French95dc8dd2013-07-04 10:35:21 -0500826 if (server->secmech.cmacaes) {
Steve French429b46f2013-06-26 23:45:05 -0500827 crypto_free_shash(server->secmech.cmacaes);
Steve French95dc8dd2013-07-04 10:35:21 -0500828 server->secmech.cmacaes = NULL;
829 }
Steve French429b46f2013-06-26 23:45:05 -0500830
Steve French95dc8dd2013-07-04 10:35:21 -0500831 if (server->secmech.hmacsha256) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700832 crypto_free_shash(server->secmech.hmacsha256);
Steve French95dc8dd2013-07-04 10:35:21 -0500833 server->secmech.hmacsha256 = NULL;
834 }
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700835
Steve French95dc8dd2013-07-04 10:35:21 -0500836 if (server->secmech.md5) {
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500837 crypto_free_shash(server->secmech.md5);
Steve French95dc8dd2013-07-04 10:35:21 -0500838 server->secmech.md5 = NULL;
839 }
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500840
Gustavo A. R. Silva70e80652018-02-19 11:11:13 -0600841 if (server->secmech.sha512) {
Aurelien Aptel5fcd7f32018-02-16 19:19:28 +0100842 crypto_free_shash(server->secmech.sha512);
843 server->secmech.sha512 = NULL;
844 }
845
Steve French95dc8dd2013-07-04 10:35:21 -0500846 if (server->secmech.hmacmd5) {
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500847 crypto_free_shash(server->secmech.hmacmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500848 server->secmech.hmacmd5 = NULL;
849 }
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500850
Pavel Shilovsky026e93d2016-11-03 16:47:37 -0700851 if (server->secmech.ccmaesencrypt) {
852 crypto_free_aead(server->secmech.ccmaesencrypt);
853 server->secmech.ccmaesencrypt = NULL;
854 }
855
856 if (server->secmech.ccmaesdecrypt) {
857 crypto_free_aead(server->secmech.ccmaesdecrypt);
858 server->secmech.ccmaesdecrypt = NULL;
859 }
860
Steve French429b46f2013-06-26 23:45:05 -0500861 kfree(server->secmech.sdesccmacaes);
Steve French95dc8dd2013-07-04 10:35:21 -0500862 server->secmech.sdesccmacaes = NULL;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700863 kfree(server->secmech.sdeschmacsha256);
Steve French95dc8dd2013-07-04 10:35:21 -0500864 server->secmech.sdeschmacsha256 = NULL;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500865 kfree(server->secmech.sdeschmacmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500866 server->secmech.sdeschmacmd5 = NULL;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500867 kfree(server->secmech.sdescmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500868 server->secmech.sdescmd5 = NULL;
Aurelien Aptel5fcd7f32018-02-16 19:19:28 +0100869 kfree(server->secmech.sdescsha512);
870 server->secmech.sdescsha512 = NULL;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500871}