blob: ecf15d845dbd81e7d9b809e0f141e54260a4a353 [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * fs/cifs/cifsencrypt.c
4 *
Steve French8b7a4542015-03-30 16:58:17 -05005 * Encryption and hashing operations relating to NTLM, NTLMv2. See MS-NLMP
6 * for more detailed information
7 *
Steve French95dc8dd2013-07-04 10:35:21 -05008 * Copyright (C) International Business Machines Corp., 2005,2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Author(s): Steve French (sfrench@us.ibm.com)
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "cifspdu.h"
Steve Frenchffdd6e42007-06-24 21:15:44 +000016#include "cifsglob.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "cifs_debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "cifs_unicode.h"
19#include "cifsproto.h"
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -050020#include "ntlmssp.h"
Steve French7c7b25b2006-06-01 19:20:10 +000021#include <linux/ctype.h>
Steve French6d027cf2006-06-05 16:26:05 +000022#include <linux/random.h>
Jeff Laytonfb308a62012-09-18 16:20:35 -070023#include <linux/highmem.h>
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +020024#include <linux/fips.h>
25#include <crypto/arc4.h>
Pavel Shilovsky026e93d2016-11-03 16:47:37 -070026#include <crypto/aead.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Al Viro16c568e2015-11-12 22:46:49 -050028int __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;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100036 int is_smb2 = server->vals->header_preamble_size == 0;
Al Viro16c568e2015-11-12 22:46:49 -050037
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100038 /* iov[0] is actual data and not the rfc1002 length for SMB2+ */
39 if (is_smb2) {
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030040 if (iov[0].iov_len <= 4)
41 return -EIO;
42 i = 0;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100043 } else {
44 if (n_vec < 2 || iov[0].iov_len != 4)
45 return -EIO;
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030046 i = 1; /* skip rfc1002 length */
Ronnie Sahlbergc713c872018-06-12 08:00:58 +100047 }
48
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030049 for (; i < n_vec; i++) {
Al Viro16c568e2015-11-12 22:46:49 -050050 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 }
Paulo Alcantara83ffdea2018-06-15 15:58:00 -030056
Pavel Shilovsky738f9de2016-11-23 15:14:57 -080057 rc = crypto_shash_update(shash,
58 iov[i].iov_base, iov[i].iov_len);
Al Viro16c568e2015-11-12 22:46:49 -050059 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++) {
Long Li4c0d2a52018-05-30 12:48:03 -070068 void *kaddr;
69 unsigned int len, offset;
Al Viro16c568e2015-11-12 22:46:49 -050070
Long Li4c0d2a52018-05-30 12:48:03 -070071 rqst_page_get_length(rqst, i, &len, &offset);
72
73 kaddr = (char *) kmap(rqst->rq_pages[i]) + offset;
Al Viro16c568e2015-11-12 22:46:49 -050074
Paulo Alcantaraa12d0c52018-06-23 14:52:25 -030075 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 }
Al Viro16c568e2015-11-12 22:46:49 -050082
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
Jeff Layton157c2492011-04-02 07:34:30 -040093/*
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 */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700100static int cifs_calc_signature(struct smb_rqst *rqst,
Jeff Layton826a95e2011-10-11 06:41:32 -0400101 struct TCP_Server_Info *server, char *signature)
Steve French84afc292005-12-02 13:32:45 -0800102{
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500103 int rc;
Steve French84afc292005-12-02 13:32:45 -0800104
Al Viro16c568e2015-11-12 22:46:49 -0500105 if (!rqst->rq_iov || !signature || !server)
Steve Frenche9917a02006-03-31 21:22:00 +0000106 return -EINVAL;
Steve French84afc292005-12-02 13:32:45 -0800107
Aurelien Aptel82fb82b2018-02-16 19:19:27 +0100108 rc = cifs_alloc_hash("md5", &server->secmech.md5,
109 &server->secmech.sdescmd5);
110 if (rc)
111 return -1;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500112
113 rc = crypto_shash_init(&server->secmech.sdescmd5->shash);
114 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500115 cifs_dbg(VFS, "%s: Could not init md5\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500116 return rc;
117 }
118
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500119 rc = crypto_shash_update(&server->secmech.sdescmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500120 server->session_key.response, server->session_key.len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500121 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500122 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500123 return rc;
124 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500125
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000126 return __cifs_calc_signature(rqst, server, signature,
Al Viro16c568e2015-11-12 22:46:49 -0500127 &server->secmech.sdescmd5->shash);
Steve French84afc292005-12-02 13:32:45 -0800128}
129
Jeff Laytona0f8b4f2011-01-07 11:30:28 -0500130/* must be called with server->srv_mutex held */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700131int cifs_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server,
Steve French63d25832007-11-05 21:46:10 +0000132 __u32 *pexpected_response_sequence_number)
Steve French84afc292005-12-02 13:32:45 -0800133{
134 int rc = 0;
135 char smb_signature[20];
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700136 struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Steve French84afc292005-12-02 13:32:45 -0800137
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800138 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
Steve Frenchffdd6e42007-06-24 21:15:44 +0000142 if ((cifs_pdu == NULL) || (server == NULL))
Steve French84afc292005-12-02 13:32:45 -0800143 return -EINVAL;
144
Jeff Layton998d6fc2011-07-26 12:21:17 -0400145 if (!(cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) ||
146 server->tcpStatus == CifsNeedNegotiate)
Steve French84afc292005-12-02 13:32:45 -0800147 return rc;
148
Jeff Layton998d6fc2011-07-26 12:21:17 -0400149 if (!server->session_estab) {
Jeff Laytonb4dacbc2011-10-11 06:41:32 -0400150 memcpy(cifs_pdu->Signature.SecuritySignature, "BSRSPYL", 8);
Jeff Layton998d6fc2011-07-26 12:21:17 -0400151 return rc;
152 }
153
Steve Frenchffdd6e42007-06-24 21:15:44 +0000154 cifs_pdu->Signature.Sequence.SequenceNumber =
Steve French84afc292005-12-02 13:32:45 -0800155 cpu_to_le32(server->sequence_number);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000156 cifs_pdu->Signature.Sequence.Reserved = 0;
Steve French84afc292005-12-02 13:32:45 -0800157
Jeff Layton0124cc42013-04-03 11:55:03 -0400158 *pexpected_response_sequence_number = ++server->sequence_number;
159 ++server->sequence_number;
Steve French84afc292005-12-02 13:32:45 -0800160
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700161 rc = cifs_calc_signature(rqst, server, smb_signature);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000162 if (rc)
163 memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
164 else
165 memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
Steve French84afc292005-12-02 13:32:45 -0800166
Steve Frenchffdd6e42007-06-24 21:15:44 +0000167 return rc;
Steve French84afc292005-12-02 13:32:45 -0800168}
169
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700170int 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
Jeff Layton826a95e2011-10-11 06:41:32 -0400179/* must be called with server->srv_mutex held */
180int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server,
181 __u32 *pexpected_response_sequence_number)
182{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800183 struct kvec iov[2];
Jeff Layton826a95e2011-10-11 06:41:32 -0400184
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800185 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);
Jeff Layton826a95e2011-10-11 06:41:32 -0400189
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800190 return cifs_sign_smbv(iov, 2, server,
Jeff Layton826a95e2011-10-11 06:41:32 -0400191 pexpected_response_sequence_number);
192}
193
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700194int cifs_verify_signature(struct smb_rqst *rqst,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500195 struct TCP_Server_Info *server,
Steve Frenchffdd6e42007-06-24 21:15:44 +0000196 __u32 expected_sequence_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Steve Frenchc8e56f12010-09-08 21:10:58 +0000198 unsigned int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 char server_response_sig[8];
200 char what_we_think_sig_should_be[20];
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700201 struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800203 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
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500207 if (cifs_pdu == NULL || server == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return -EINVAL;
209
Jeff Layton9c4843e2011-06-06 15:40:23 -0400210 if (!server->session_estab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return 0;
212
213 if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
Steve French50c2f752007-07-13 00:33:32 +0000214 struct smb_com_lock_req *pSMB =
Steve Frenchffdd6e42007-06-24 21:15:44 +0000215 (struct smb_com_lock_req *)cifs_pdu;
Colin Ian King58902552018-11-03 15:59:44 +0000216 if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return 0;
218 }
219
Steve French50c2f752007-07-13 00:33:32 +0000220 /* BB what if signatures are supposed to be on for session but
221 server does not send one? BB */
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /* Do not need to verify session setups with signature "BSRSPYL " */
Steve French50c2f752007-07-13 00:33:32 +0000224 if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0)
Joe Perchesf96637b2013-05-04 22:12:25 -0500225 cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n",
226 cifs_pdu->Command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /* save off the origiginal signature so we can modify the smb and check
229 its signature against what the server sent */
Steve French50c2f752007-07-13 00:33:32 +0000230 memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Steve French50c2f752007-07-13 00:33:32 +0000232 cifs_pdu->Signature.Sequence.SequenceNumber =
233 cpu_to_le32(expected_sequence_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 cifs_pdu->Signature.Sequence.Reserved = 0;
235
Jeff Layton157c2492011-04-02 07:34:30 -0400236 mutex_lock(&server->srv_mutex);
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700237 rc = cifs_calc_signature(rqst, server, what_we_think_sig_should_be);
Jeff Layton157c2492011-04-02 07:34:30 -0400238 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Steve French50c2f752007-07-13 00:33:32 +0000240 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return rc;
242
Steve French50c2f752007-07-13 00:33:32 +0000243/* cifs_dump_mem("what we think it should be: ",
244 what_we_think_sig_should_be, 16); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Steve French50c2f752007-07-13 00:33:32 +0000246 if (memcmp(server_response_sig, what_we_think_sig_should_be, 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return -EACCES;
248 else
249 return 0;
250
251}
252
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500253/* first calculate 24 bytes ntlm response and then 16 byte session key */
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500254int setup_ntlm_response(struct cifs_ses *ses, const struct nls_table *nls_cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600256 int rc = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500257 unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE;
258 char temp_key[CIFS_SESS_KEY_SIZE];
259
260 if (!ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return -EINVAL;
262
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500263 ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL);
Joe Perchesf96637b2013-05-04 22:12:25 -0500264 if (!ses->auth_key.response)
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500265 return -ENOMEM;
Joe Perchesf96637b2013-05-04 22:12:25 -0500266
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500267 ses->auth_key.len = temp_len;
268
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600269 rc = SMBNTencrypt(ses->password, ses->server->cryptkey,
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500270 ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600271 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500272 cifs_dbg(FYI, "%s Can't generate NTLM response, error: %d\n",
273 __func__, rc);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600274 return rc;
275 }
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500276
Shirish Pargaonkar9ef59922011-10-20 13:21:59 -0500277 rc = E_md4hash(ses->password, temp_key, nls_cp);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600278 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500279 cifs_dbg(FYI, "%s Can't generate NT hash, error: %d\n",
280 __func__, rc);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600281 return rc;
282 }
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500283
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600284 rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE);
285 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500286 cifs_dbg(FYI, "%s Can't generate NTLM session key, error: %d\n",
287 __func__, rc);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600288
289 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Steve French7c7b25b2006-06-01 19:20:10 +0000292#ifdef CONFIG_CIFS_WEAK_PW_HASH
Steve French43988d72011-04-19 18:23:31 +0000293int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt,
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500294 char *lnm_session_key)
Steve French7c7b25b2006-06-01 19:20:10 +0000295{
Ronnie Sahlberg52baa512018-12-12 11:50:00 +1000296 int i, len;
Steve French43988d72011-04-19 18:23:31 +0000297 int rc;
Aurelien Aptel97f4b722018-01-25 15:59:39 +0100298 char password_with_pad[CIFS_ENCPWD_SIZE] = {0};
Steve French7c7b25b2006-06-01 19:20:10 +0000299
Ronnie Sahlberg52baa512018-12-12 11:50:00 +1000300 if (password) {
301 for (len = 0; len < CIFS_ENCPWD_SIZE; len++)
302 if (!password[len])
303 break;
304
305 memcpy(password_with_pad, password, len);
306 }
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;
Arnd Bergmann95390202018-06-19 17:27:58 +0200455 struct timespec64 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
Arnd Bergmann95390202018-06-19 17:27:58 +0200480 ktime_get_real_ts64(&ts);
Deepa Dinamanie37fea52017-05-08 15:59:16 -0700481 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 Perchesa0a30362020-04-14 22:42:53 -0700511 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 {
Steve Frenchb438fcf2021-02-20 19:24:11 -0600559 /* We use ses->ip_addr if no domain name available */
560 len = strlen(ses->ip_addr);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500561
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 Frenchb438fcf2021-02-20 19:24:11 -0600567 len = cifs_strtoUTF16((__le16 *)server, ses->ip_addr, 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 Perchesa0a30362020-04-14 22:42:53 -0700615 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
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600652 if (nls_cp == NULL) {
653 cifs_dbg(VFS, "%s called with nls_cp==NULL\n", __func__);
654 return -EINVAL;
655 }
656
Jeff Layton3f618222013-06-12 19:52:14 -0500657 if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED) {
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500658 if (!ses->domainName) {
Germano Percossi39566442016-12-15 12:31:18 +0530659 if (ses->domainAuto) {
660 rc = find_domain_name(ses, nls_cp);
661 if (rc) {
662 cifs_dbg(VFS, "error %d finding domain name\n",
663 rc);
664 goto setup_ntlmv2_rsp_ret;
665 }
666 } else {
667 ses->domainName = kstrdup("", GFP_KERNEL);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500668 }
669 }
670 } else {
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500671 rc = build_avpair_blob(ses, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500672 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500673 cifs_dbg(VFS, "error %d building av pair blob\n", rc);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500674 goto setup_ntlmv2_rsp_ret;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500675 }
676 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000677
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200678 /* Must be within 5 minutes of the server (or in range +/-2h
679 * in case of Mac OS X), so simply carry over server timestamp
680 * (as Windows 7 does)
681 */
682 rsp_timestamp = find_timestamp(ses);
683
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500684 baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500685 tilen = ses->auth_key.len;
686 tiblob = ses->auth_key.response;
687
688 ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500689 if (!ses->auth_key.response) {
Anton Protopopov4b550af2016-02-10 12:50:21 -0500690 rc = -ENOMEM;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500691 ses->auth_key.len = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500692 goto setup_ntlmv2_rsp_ret;
693 }
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500694 ses->auth_key.len += baselen;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500695
Tim Gardner2c957dd2013-11-07 16:40:57 -0700696 ntlmv2 = (struct ntlmv2_resp *)
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500697 (ses->auth_key.response + CIFS_SESS_KEY_SIZE);
Tim Gardner2c957dd2013-11-07 16:40:57 -0700698 ntlmv2->blob_signature = cpu_to_le32(0x00000101);
699 ntlmv2->reserved = 0;
Peter Seiderer98ce94c2015-09-17 21:40:12 +0200700 ntlmv2->time = rsp_timestamp;
701
Tim Gardner2c957dd2013-11-07 16:40:57 -0700702 get_random_bytes(&ntlmv2->client_chal, sizeof(ntlmv2->client_chal));
703 ntlmv2->reserved2 = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500704
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500705 memcpy(ses->auth_key.response + baselen, tiblob, tilen);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500706
Rabin Vincentbd975d12016-07-19 09:26:21 +0200707 mutex_lock(&ses->server->srv_mutex);
708
Aurelien Aptel82fb82b2018-02-16 19:19:27 +0100709 rc = cifs_alloc_hash("hmac(md5)",
710 &ses->server->secmech.hmacmd5,
711 &ses->server->secmech.sdeschmacmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500712 if (rc) {
Rabin Vincentbd975d12016-07-19 09:26:21 +0200713 goto unlock;
Steve French95dc8dd2013-07-04 10:35:21 -0500714 }
715
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500716 /* calculate ntlmv2_hash */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500717 rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500718 if (rc) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700719 cifs_dbg(VFS, "Could not get v2 hash rc %d\n", rc);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200720 goto unlock;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500721 }
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500722
723 /* calculate first part of the client response (CR1) */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500724 rc = CalcNTLMv2_response(ses, ntlmv2_hash);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500725 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500726 cifs_dbg(VFS, "Could not calculate CR1 rc: %d\n", rc);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200727 goto unlock;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500728 }
Steve Frenchb609f062007-07-09 07:55:14 +0000729
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -0500730 /* now calculate the session key for NTLMv2 */
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500731 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500732 ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500733 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500734 cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n",
735 __func__);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200736 goto unlock;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500737 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500738
739 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
740 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500741 cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200742 goto unlock;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500743 }
744
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500745 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Tim Gardner2c957dd2013-11-07 16:40:57 -0700746 ntlmv2->ntlmv2_hash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500747 CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500748 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500749 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
Rabin Vincentbd975d12016-07-19 09:26:21 +0200750 goto unlock;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500751 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500752
753 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
754 ses->auth_key.response);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500755 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500756 cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500757
Rabin Vincentbd975d12016-07-19 09:26:21 +0200758unlock:
759 mutex_unlock(&ses->server->srv_mutex);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500760setup_ntlmv2_rsp_ret:
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500761 kfree(tiblob);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500762
763 return rc;
Steve French6d027cf2006-06-05 16:26:05 +0000764}
765
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500766int
Steve French96daf2b2011-05-27 04:34:02 +0000767calc_seckey(struct cifs_ses *ses)
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500768{
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200769 unsigned char sec_key[CIFS_SESS_KEY_SIZE]; /* a nonce */
770 struct arc4_ctx *ctx_arc4;
Sachin Prabhu5f4b5562016-10-17 16:40:22 -0400771
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200772 if (fips_enabled)
773 return -ENODEV;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500774
775 get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE);
776
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200777 ctx_arc4 = kmalloc(sizeof(*ctx_arc4), GFP_KERNEL);
778 if (!ctx_arc4) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700779 cifs_dbg(VFS, "Could not allocate arc4 context\n");
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200780 return -ENOMEM;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500781 }
782
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200783 arc4_setkey(ctx_arc4, ses->auth_key.response, CIFS_SESS_KEY_SIZE);
784 arc4_crypt(ctx_arc4, ses->ntlmssp->ciphertext, sec_key,
785 CIFS_CPHTXT_SIZE);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500786
787 /* make secondary_key/nonce as session key */
788 memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE);
789 /* and make len as that of session key only */
790 ses->auth_key.len = CIFS_SESS_KEY_SIZE;
791
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200792 memzero_explicit(sec_key, CIFS_SESS_KEY_SIZE);
Waiman Long453431a2020-08-06 23:18:13 -0700793 kfree_sensitive(ctx_arc4);
Ard Biesheuvel97a5fee2019-06-12 18:19:59 +0200794 return 0;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500795}
796
797void
Pavel Shilovsky026e93d2016-11-03 16:47:37 -0700798cifs_crypto_secmech_release(struct TCP_Server_Info *server)
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500799{
Steve French95dc8dd2013-07-04 10:35:21 -0500800 if (server->secmech.cmacaes) {
Steve French429b46f2013-06-26 23:45:05 -0500801 crypto_free_shash(server->secmech.cmacaes);
Steve French95dc8dd2013-07-04 10:35:21 -0500802 server->secmech.cmacaes = NULL;
803 }
Steve French429b46f2013-06-26 23:45:05 -0500804
Steve French95dc8dd2013-07-04 10:35:21 -0500805 if (server->secmech.hmacsha256) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700806 crypto_free_shash(server->secmech.hmacsha256);
Steve French95dc8dd2013-07-04 10:35:21 -0500807 server->secmech.hmacsha256 = NULL;
808 }
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700809
Steve French95dc8dd2013-07-04 10:35:21 -0500810 if (server->secmech.md5) {
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500811 crypto_free_shash(server->secmech.md5);
Steve French95dc8dd2013-07-04 10:35:21 -0500812 server->secmech.md5 = NULL;
813 }
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500814
Gustavo A. R. Silva70e80652018-02-19 11:11:13 -0600815 if (server->secmech.sha512) {
Aurelien Aptel5fcd7f32018-02-16 19:19:28 +0100816 crypto_free_shash(server->secmech.sha512);
817 server->secmech.sha512 = NULL;
818 }
819
Steve French95dc8dd2013-07-04 10:35:21 -0500820 if (server->secmech.hmacmd5) {
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500821 crypto_free_shash(server->secmech.hmacmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500822 server->secmech.hmacmd5 = NULL;
823 }
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500824
Pavel Shilovsky026e93d2016-11-03 16:47:37 -0700825 if (server->secmech.ccmaesencrypt) {
826 crypto_free_aead(server->secmech.ccmaesencrypt);
827 server->secmech.ccmaesencrypt = NULL;
828 }
829
830 if (server->secmech.ccmaesdecrypt) {
831 crypto_free_aead(server->secmech.ccmaesdecrypt);
832 server->secmech.ccmaesdecrypt = NULL;
833 }
834
Steve French429b46f2013-06-26 23:45:05 -0500835 kfree(server->secmech.sdesccmacaes);
Steve French95dc8dd2013-07-04 10:35:21 -0500836 server->secmech.sdesccmacaes = NULL;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700837 kfree(server->secmech.sdeschmacsha256);
Steve French95dc8dd2013-07-04 10:35:21 -0500838 server->secmech.sdeschmacsha256 = NULL;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500839 kfree(server->secmech.sdeschmacmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500840 server->secmech.sdeschmacmd5 = NULL;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500841 kfree(server->secmech.sdescmd5);
Steve French95dc8dd2013-07-04 10:35:21 -0500842 server->secmech.sdescmd5 = NULL;
Aurelien Aptel5fcd7f32018-02-16 19:19:28 +0100843 kfree(server->secmech.sdescsha512);
844 server->secmech.sdescsha512 = NULL;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500845}