Steve French | 929be90 | 2021-06-18 00:31:49 -0500 | [diff] [blame^] | 1 | // SPDX-License-Identifier: LGPL-2.1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * fs/cifs/cifsencrypt.c |
| 4 | * |
Steve French | 8b7a454 | 2015-03-30 16:58:17 -0500 | [diff] [blame] | 5 | * Encryption and hashing operations relating to NTLM, NTLMv2. See MS-NLMP |
| 6 | * for more detailed information |
| 7 | * |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 8 | * Copyright (C) International Business Machines Corp., 2005,2013 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include "cifspdu.h" |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 16 | #include "cifsglob.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include "cifs_debug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "cifs_unicode.h" |
| 19 | #include "cifsproto.h" |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 20 | #include "ntlmssp.h" |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 21 | #include <linux/ctype.h> |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 22 | #include <linux/random.h> |
Jeff Layton | fb308a6 | 2012-09-18 16:20:35 -0700 | [diff] [blame] | 23 | #include <linux/highmem.h> |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 24 | #include <linux/fips.h> |
| 25 | #include <crypto/arc4.h> |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 26 | #include <crypto/aead.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 28 | int __cifs_calc_signature(struct smb_rqst *rqst, |
| 29 | struct TCP_Server_Info *server, char *signature, |
| 30 | struct shash_desc *shash) |
| 31 | { |
| 32 | int i; |
| 33 | int rc; |
| 34 | struct kvec *iov = rqst->rq_iov; |
| 35 | int n_vec = rqst->rq_nvec; |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 36 | int is_smb2 = server->vals->header_preamble_size == 0; |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 37 | |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 38 | /* iov[0] is actual data and not the rfc1002 length for SMB2+ */ |
| 39 | if (is_smb2) { |
Paulo Alcantara | 83ffdea | 2018-06-15 15:58:00 -0300 | [diff] [blame] | 40 | if (iov[0].iov_len <= 4) |
| 41 | return -EIO; |
| 42 | i = 0; |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 43 | } else { |
| 44 | if (n_vec < 2 || iov[0].iov_len != 4) |
| 45 | return -EIO; |
Paulo Alcantara | 83ffdea | 2018-06-15 15:58:00 -0300 | [diff] [blame] | 46 | i = 1; /* skip rfc1002 length */ |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 47 | } |
| 48 | |
Paulo Alcantara | 83ffdea | 2018-06-15 15:58:00 -0300 | [diff] [blame] | 49 | for (; i < n_vec; i++) { |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 50 | if (iov[i].iov_len == 0) |
| 51 | continue; |
| 52 | if (iov[i].iov_base == NULL) { |
| 53 | cifs_dbg(VFS, "null iovec entry\n"); |
| 54 | return -EIO; |
| 55 | } |
Paulo Alcantara | 83ffdea | 2018-06-15 15:58:00 -0300 | [diff] [blame] | 56 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 57 | rc = crypto_shash_update(shash, |
| 58 | iov[i].iov_base, iov[i].iov_len); |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 59 | if (rc) { |
| 60 | cifs_dbg(VFS, "%s: Could not update with payload\n", |
| 61 | __func__); |
| 62 | return rc; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | /* now hash over the rq_pages array */ |
| 67 | for (i = 0; i < rqst->rq_npages; i++) { |
Long Li | 4c0d2a5 | 2018-05-30 12:48:03 -0700 | [diff] [blame] | 68 | void *kaddr; |
| 69 | unsigned int len, offset; |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 70 | |
Long Li | 4c0d2a5 | 2018-05-30 12:48:03 -0700 | [diff] [blame] | 71 | rqst_page_get_length(rqst, i, &len, &offset); |
| 72 | |
| 73 | kaddr = (char *) kmap(rqst->rq_pages[i]) + offset; |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 74 | |
Paulo Alcantara | a12d0c5 | 2018-06-23 14:52:25 -0300 | [diff] [blame] | 75 | rc = crypto_shash_update(shash, kaddr, len); |
| 76 | if (rc) { |
| 77 | cifs_dbg(VFS, "%s: Could not update with payload\n", |
| 78 | __func__); |
| 79 | kunmap(rqst->rq_pages[i]); |
| 80 | return rc; |
| 81 | } |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 82 | |
| 83 | kunmap(rqst->rq_pages[i]); |
| 84 | } |
| 85 | |
| 86 | rc = crypto_shash_final(shash, signature); |
| 87 | if (rc) |
| 88 | cifs_dbg(VFS, "%s: Could not generate hash\n", __func__); |
| 89 | |
| 90 | return rc; |
| 91 | } |
| 92 | |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 93 | /* |
| 94 | * Calculate and return the CIFS signature based on the mac key and SMB PDU. |
| 95 | * The 16 byte signature must be allocated by the caller. Note we only use the |
| 96 | * 1st eight bytes and that the smb header signature field on input contains |
| 97 | * the sequence number before this function is called. Also, this function |
| 98 | * should be called with the server->srv_mutex held. |
| 99 | */ |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 100 | static int cifs_calc_signature(struct smb_rqst *rqst, |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 101 | struct TCP_Server_Info *server, char *signature) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 102 | { |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 103 | int rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 104 | |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 105 | if (!rqst->rq_iov || !signature || !server) |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 106 | return -EINVAL; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 107 | |
Aurelien Aptel | 82fb82b | 2018-02-16 19:19:27 +0100 | [diff] [blame] | 108 | rc = cifs_alloc_hash("md5", &server->secmech.md5, |
| 109 | &server->secmech.sdescmd5); |
| 110 | if (rc) |
| 111 | return -1; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 112 | |
| 113 | rc = crypto_shash_init(&server->secmech.sdescmd5->shash); |
| 114 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 115 | cifs_dbg(VFS, "%s: Could not init md5\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 116 | return rc; |
| 117 | } |
| 118 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 119 | rc = crypto_shash_update(&server->secmech.sdescmd5->shash, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 120 | server->session_key.response, server->session_key.len); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 121 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 122 | cifs_dbg(VFS, "%s: Could not update with response\n", __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 123 | return rc; |
| 124 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 125 | |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 126 | return __cifs_calc_signature(rqst, server, signature, |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 127 | &server->secmech.sdescmd5->shash); |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 128 | } |
| 129 | |
Jeff Layton | a0f8b4f | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 130 | /* must be called with server->srv_mutex held */ |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 131 | int cifs_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server, |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 132 | __u32 *pexpected_response_sequence_number) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 133 | { |
| 134 | int rc = 0; |
| 135 | char smb_signature[20]; |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 136 | struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 137 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 138 | if (rqst->rq_iov[0].iov_len != 4 || |
| 139 | rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) |
| 140 | return -EIO; |
| 141 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 142 | if ((cifs_pdu == NULL) || (server == NULL)) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 143 | return -EINVAL; |
| 144 | |
Jeff Layton | 998d6fc | 2011-07-26 12:21:17 -0400 | [diff] [blame] | 145 | if (!(cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) || |
| 146 | server->tcpStatus == CifsNeedNegotiate) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 147 | return rc; |
| 148 | |
Jeff Layton | 998d6fc | 2011-07-26 12:21:17 -0400 | [diff] [blame] | 149 | if (!server->session_estab) { |
Jeff Layton | b4dacbc | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 150 | memcpy(cifs_pdu->Signature.SecuritySignature, "BSRSPYL", 8); |
Jeff Layton | 998d6fc | 2011-07-26 12:21:17 -0400 | [diff] [blame] | 151 | return rc; |
| 152 | } |
| 153 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 154 | cifs_pdu->Signature.Sequence.SequenceNumber = |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 155 | cpu_to_le32(server->sequence_number); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 156 | cifs_pdu->Signature.Sequence.Reserved = 0; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 157 | |
Jeff Layton | 0124cc4 | 2013-04-03 11:55:03 -0400 | [diff] [blame] | 158 | *pexpected_response_sequence_number = ++server->sequence_number; |
| 159 | ++server->sequence_number; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 160 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 161 | rc = cifs_calc_signature(rqst, server, smb_signature); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 162 | if (rc) |
| 163 | memset(cifs_pdu->Signature.SecuritySignature, 0, 8); |
| 164 | else |
| 165 | memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8); |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 166 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 167 | return rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 168 | } |
| 169 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 170 | int cifs_sign_smbv(struct kvec *iov, int n_vec, struct TCP_Server_Info *server, |
| 171 | __u32 *pexpected_response_sequence) |
| 172 | { |
| 173 | struct smb_rqst rqst = { .rq_iov = iov, |
| 174 | .rq_nvec = n_vec }; |
| 175 | |
| 176 | return cifs_sign_rqst(&rqst, server, pexpected_response_sequence); |
| 177 | } |
| 178 | |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 179 | /* must be called with server->srv_mutex held */ |
| 180 | int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server, |
| 181 | __u32 *pexpected_response_sequence_number) |
| 182 | { |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 183 | struct kvec iov[2]; |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 184 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 185 | iov[0].iov_base = cifs_pdu; |
| 186 | iov[0].iov_len = 4; |
| 187 | iov[1].iov_base = (char *)cifs_pdu + 4; |
| 188 | iov[1].iov_len = be32_to_cpu(cifs_pdu->smb_buf_length); |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 189 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 190 | return cifs_sign_smbv(iov, 2, server, |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 191 | pexpected_response_sequence_number); |
| 192 | } |
| 193 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 194 | int cifs_verify_signature(struct smb_rqst *rqst, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 195 | struct TCP_Server_Info *server, |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 196 | __u32 expected_sequence_number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 198 | unsigned int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | char server_response_sig[8]; |
| 200 | char what_we_think_sig_should_be[20]; |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 201 | struct smb_hdr *cifs_pdu = (struct smb_hdr *)rqst->rq_iov[0].iov_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 203 | if (rqst->rq_iov[0].iov_len != 4 || |
| 204 | rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) |
| 205 | return -EIO; |
| 206 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 207 | if (cifs_pdu == NULL || server == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return -EINVAL; |
| 209 | |
Jeff Layton | 9c4843e | 2011-06-06 15:40:23 -0400 | [diff] [blame] | 210 | if (!server->session_estab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | return 0; |
| 212 | |
| 213 | if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 214 | struct smb_com_lock_req *pSMB = |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 215 | (struct smb_com_lock_req *)cifs_pdu; |
Colin Ian King | 5890255 | 2018-11-03 15:59:44 +0000 | [diff] [blame] | 216 | if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | return 0; |
| 218 | } |
| 219 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 220 | /* BB what if signatures are supposed to be on for session but |
| 221 | server does not send one? BB */ |
| 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | /* Do not need to verify session setups with signature "BSRSPYL " */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 224 | if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 225 | cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n", |
| 226 | cifs_pdu->Command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | /* save off the origiginal signature so we can modify the smb and check |
| 229 | its signature against what the server sent */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 230 | memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 232 | cifs_pdu->Signature.Sequence.SequenceNumber = |
| 233 | cpu_to_le32(expected_sequence_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | cifs_pdu->Signature.Sequence.Reserved = 0; |
| 235 | |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 236 | mutex_lock(&server->srv_mutex); |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 237 | rc = cifs_calc_signature(rqst, server, what_we_think_sig_should_be); |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 238 | mutex_unlock(&server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 240 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | return rc; |
| 242 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 243 | /* cifs_dump_mem("what we think it should be: ", |
| 244 | what_we_think_sig_should_be, 16); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 246 | if (memcmp(server_response_sig, what_we_think_sig_should_be, 8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return -EACCES; |
| 248 | else |
| 249 | return 0; |
| 250 | |
| 251 | } |
| 252 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 253 | /* first calculate 24 bytes ntlm response and then 16 byte session key */ |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 254 | int setup_ntlm_response(struct cifs_ses *ses, const struct nls_table *nls_cp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | { |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 256 | int rc = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 257 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return -EINVAL; |
| 262 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 263 | ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 264 | if (!ses->auth_key.response) |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 265 | return -ENOMEM; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 266 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 267 | ses->auth_key.len = temp_len; |
| 268 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 269 | rc = SMBNTencrypt(ses->password, ses->server->cryptkey, |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 270 | ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 271 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 272 | cifs_dbg(FYI, "%s Can't generate NTLM response, error: %d\n", |
| 273 | __func__, rc); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 274 | return rc; |
| 275 | } |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 276 | |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 277 | rc = E_md4hash(ses->password, temp_key, nls_cp); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 278 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 279 | cifs_dbg(FYI, "%s Can't generate NT hash, error: %d\n", |
| 280 | __func__, rc); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 281 | return rc; |
| 282 | } |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 283 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 284 | rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE); |
| 285 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 286 | cifs_dbg(FYI, "%s Can't generate NTLM session key, error: %d\n", |
| 287 | __func__, rc); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 288 | |
| 289 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | } |
| 291 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 292 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 293 | int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt, |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 294 | char *lnm_session_key) |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 295 | { |
Ronnie Sahlberg | 52baa51 | 2018-12-12 11:50:00 +1000 | [diff] [blame] | 296 | int i, len; |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 297 | int rc; |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 298 | char password_with_pad[CIFS_ENCPWD_SIZE] = {0}; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 299 | |
Ronnie Sahlberg | 52baa51 | 2018-12-12 11:50:00 +1000 | [diff] [blame] | 300 | 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 French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 307 | |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 308 | if (!encrypt && global_secflags & CIFSSEC_MAY_PLNTXT) { |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 309 | memcpy(lnm_session_key, password_with_pad, |
| 310 | CIFS_ENCPWD_SIZE); |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 311 | return 0; |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 312 | } |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 313 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 314 | /* 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 Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 325 | for (i = 0; i < CIFS_ENCPWD_SIZE; i++) |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 326 | password_with_pad[i] = toupper(password_with_pad[i]); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 327 | |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 328 | rc = SMBencrypt(password_with_pad, cryptkey, lnm_session_key); |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 329 | |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 330 | return rc; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 331 | } |
| 332 | #endif /* CIFS_WEAK_PW_HASH */ |
| 333 | |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 334 | /* 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 Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 338 | */ |
| 339 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 340 | build_avpair_blob(struct cifs_ses *ses, const struct nls_table *nls_cp) |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 341 | { |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 342 | unsigned int dlen; |
Shirish Pargaonkar | cfbd6f8 | 2011-08-24 23:05:46 -0500 | [diff] [blame] | 343 | unsigned int size = 2 * sizeof(struct ntlmssp2_name); |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 344 | char *defdmname = "WORKGROUP"; |
| 345 | unsigned char *blobptr; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 346 | struct ntlmssp2_name *attrptr; |
| 347 | |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 348 | 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 Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 355 | |
Shirish Pargaonkar | cfbd6f8 | 2011-08-24 23:05:46 -0500 | [diff] [blame] | 356 | /* |
| 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 Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 361 | */ |
Shirish Pargaonkar | cfbd6f8 | 2011-08-24 23:05:46 -0500 | [diff] [blame] | 362 | ses->auth_key.len = size + 2 * dlen; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 363 | ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL); |
| 364 | if (!ses->auth_key.response) { |
| 365 | ses->auth_key.len = 0; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 366 | return -ENOMEM; |
| 367 | } |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 368 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 369 | blobptr = ses->auth_key.response; |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 370 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 371 | |
Shirish Pargaonkar | cfbd6f8 | 2011-08-24 23:05:46 -0500 | [diff] [blame] | 372 | /* |
| 373 | * As defined in MS-NTLM 3.3.2, just this av pair field |
| 374 | * is sufficient as part of the temp |
| 375 | */ |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 376 | 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 French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 379 | cifs_strtoUTF16((__le16 *)blobptr, ses->domainName, dlen, nls_cp); |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 380 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 381 | 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 | */ |
| 394 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 395 | find_domain_name(struct cifs_ses *ses, const struct nls_table *nls_cp) |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 396 | { |
| 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 Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 404 | if (!ses->auth_key.len || !ses->auth_key.response) |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 405 | return 0; |
| 406 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 407 | blobptr = ses->auth_key.response; |
| 408 | blobend = blobptr + ses->auth_key.len; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 409 | |
| 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 Gang | 057d633 | 2013-07-19 09:01:36 +0800 | [diff] [blame] | 421 | if (!attrsize || attrsize >= CIFS_MAX_DOMAINNAME_LEN) |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 422 | break; |
| 423 | if (!ses->domainName) { |
| 424 | ses->domainName = |
| 425 | kmalloc(attrsize + 1, GFP_KERNEL); |
| 426 | if (!ses->domainName) |
| 427 | return -ENOMEM; |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 428 | cifs_from_utf16(ses->domainName, |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 429 | (__le16 *)blobptr, attrsize, attrsize, |
Steve French | b693855 | 2014-09-25 13:20:05 -0500 | [diff] [blame] | 430 | nls_cp, NO_MAP_UNI_RSVD); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 431 | break; |
| 432 | } |
| 433 | } |
| 434 | blobptr += attrsize; /* advance attr value */ |
| 435 | } |
| 436 | |
| 437 | return 0; |
| 438 | } |
| 439 | |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 440 | /* 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 | */ |
| 446 | static __le64 |
| 447 | find_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 Bergmann | 9539020 | 2018-06-19 17:27:58 +0200 | [diff] [blame] | 455 | struct timespec64 ts; |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 456 | |
| 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 Bergmann | 9539020 | 2018-06-19 17:27:58 +0200 | [diff] [blame] | 480 | ktime_get_real_ts64(&ts); |
Deepa Dinamani | e37fea5 | 2017-05-08 15:59:16 -0700 | [diff] [blame] | 481 | return cpu_to_le64(cifs_UnixTimeToNT(ts)); |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 482 | } |
| 483 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 484 | static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 485 | const struct nls_table *nls_cp) |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 486 | { |
| 487 | int rc = 0; |
| 488 | int len; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 489 | char nt_hash[CIFS_NTHASH_SIZE]; |
Steve French | fdf96a9 | 2013-06-25 14:03:16 -0500 | [diff] [blame] | 490 | __le16 *user; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 491 | wchar_t *domain; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 492 | wchar_t *server; |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 493 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 494 | if (!ses->server->secmech.sdeschmacmd5) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 495 | cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 496 | return -1; |
| 497 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 498 | |
| 499 | /* calculate md4 hash of password */ |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 500 | E_md4hash(ses->password, nt_hash, nls_cp); |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 501 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 502 | rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 503 | CIFS_NTHASH_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 504 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 505 | cifs_dbg(VFS, "%s: Could not set NT Hash as a key\n", __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 506 | return rc; |
| 507 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 508 | |
| 509 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 510 | if (rc) { |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 511 | cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 512 | return rc; |
| 513 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 514 | |
Steve French | fdf96a9 | 2013-06-25 14:03:16 -0500 | [diff] [blame] | 515 | /* convert ses->user_name to unicode */ |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 516 | len = ses->user_name ? strlen(ses->user_name) : 0; |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 517 | user = kmalloc(2 + (len * 2), GFP_KERNEL); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 518 | if (user == NULL) { |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 519 | rc = -ENOMEM; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 520 | return rc; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 521 | } |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 522 | |
| 523 | if (len) { |
Steve French | fdf96a9 | 2013-06-25 14:03:16 -0500 | [diff] [blame] | 524 | len = cifs_strtoUTF16(user, ses->user_name, len, nls_cp); |
Jeff Layton | 04febab | 2012-01-17 16:09:15 -0500 | [diff] [blame] | 525 | UniStrupr(user); |
| 526 | } else { |
| 527 | memset(user, '\0', 2); |
| 528 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 529 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 530 | rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 531 | (char *)user, 2 * len); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 532 | kfree(user); |
| 533 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 534 | cifs_dbg(VFS, "%s: Could not update with user\n", __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 535 | return rc; |
| 536 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 537 | |
| 538 | /* convert ses->domainName to unicode and uppercase */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 539 | if (ses->domainName) { |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 540 | len = strlen(ses->domainName); |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 541 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 542 | domain = kmalloc(2 + (len * 2), GFP_KERNEL); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 543 | if (domain == NULL) { |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 544 | rc = -ENOMEM; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 545 | return rc; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 546 | } |
Steve French | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 547 | len = cifs_strtoUTF16((__le16 *)domain, ses->domainName, len, |
| 548 | nls_cp); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 549 | rc = |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 550 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 551 | (char *)domain, 2 * len); |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 552 | kfree(domain); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 553 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 554 | cifs_dbg(VFS, "%s: Could not update with domain\n", |
| 555 | __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 556 | return rc; |
| 557 | } |
Steve French | 8b7a454 | 2015-03-30 16:58:17 -0500 | [diff] [blame] | 558 | } else { |
Steve French | b438fcf | 2021-02-20 19:24:11 -0600 | [diff] [blame] | 559 | /* We use ses->ip_addr if no domain name available */ |
| 560 | len = strlen(ses->ip_addr); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 561 | |
| 562 | server = kmalloc(2 + (len * 2), GFP_KERNEL); |
| 563 | if (server == NULL) { |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 564 | rc = -ENOMEM; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 565 | return rc; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 566 | } |
Steve French | b438fcf | 2021-02-20 19:24:11 -0600 | [diff] [blame] | 567 | len = cifs_strtoUTF16((__le16 *)server, ses->ip_addr, len, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 568 | nls_cp); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 569 | rc = |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 570 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 571 | (char *)server, 2 * len); |
| 572 | kfree(server); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 573 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 574 | cifs_dbg(VFS, "%s: Could not update with server\n", |
| 575 | __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 576 | return rc; |
| 577 | } |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 578 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 579 | |
| 580 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 581 | ntlmv2_hash); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 582 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 583 | cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 584 | |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 585 | return rc; |
| 586 | } |
| 587 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 588 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 589 | CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash) |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 590 | { |
| 591 | int rc; |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 592 | 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 Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 599 | |
| 600 | if (!ses->server->secmech.sdeschmacmd5) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 601 | cifs_dbg(VFS, "%s: can't generate ntlmv2 hash\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 602 | return -1; |
| 603 | } |
| 604 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 605 | rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 606 | ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 607 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 608 | cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n", |
| 609 | __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 610 | return rc; |
| 611 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 612 | |
| 613 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 614 | if (rc) { |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 615 | cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 616 | return rc; |
| 617 | } |
| 618 | |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 619 | if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED) |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 620 | memcpy(ntlmv2->challenge.key, |
| 621 | ses->ntlmssp->cryptkey, CIFS_SERVER_CHALLENGE_SIZE); |
Shirish Pargaonkar | d3ba50b | 2010-10-27 15:20:36 -0500 | [diff] [blame] | 622 | else |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 623 | memcpy(ntlmv2->challenge.key, |
| 624 | ses->server->cryptkey, CIFS_SERVER_CHALLENGE_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 625 | rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 626 | ntlmv2->challenge.key, hash_len); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 627 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 628 | cifs_dbg(VFS, "%s: Could not update with response\n", __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 629 | return rc; |
| 630 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 631 | |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 632 | /* Note that the MD5 digest over writes anon.challenge_key.key */ |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 633 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 634 | ntlmv2->ntlmv2_hash); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 635 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 636 | cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 637 | |
| 638 | return rc; |
| 639 | } |
| 640 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 641 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 642 | setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp) |
Steve French | 9fbc590 | 2010-08-20 20:42:26 +0000 | [diff] [blame] | 643 | { |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 644 | int rc; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 645 | int baselen; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 646 | unsigned int tilen; |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 647 | struct ntlmv2_resp *ntlmv2; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 648 | char ntlmv2_hash[16]; |
| 649 | unsigned char *tiblob = NULL; /* target info blob */ |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 650 | __le64 rsp_timestamp; |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 651 | |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 652 | if (nls_cp == NULL) { |
| 653 | cifs_dbg(VFS, "%s called with nls_cp==NULL\n", __func__); |
| 654 | return -EINVAL; |
| 655 | } |
| 656 | |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 657 | if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED) { |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 658 | if (!ses->domainName) { |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 659 | 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 Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 668 | } |
| 669 | } |
| 670 | } else { |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 671 | rc = build_avpair_blob(ses, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 672 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 673 | cifs_dbg(VFS, "error %d building av pair blob\n", rc); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 674 | goto setup_ntlmv2_rsp_ret; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 675 | } |
| 676 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 677 | |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 678 | /* 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 Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 684 | baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 685 | tilen = ses->auth_key.len; |
| 686 | tiblob = ses->auth_key.response; |
| 687 | |
| 688 | ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 689 | if (!ses->auth_key.response) { |
Anton Protopopov | 4b550af | 2016-02-10 12:50:21 -0500 | [diff] [blame] | 690 | rc = -ENOMEM; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 691 | ses->auth_key.len = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 692 | goto setup_ntlmv2_rsp_ret; |
| 693 | } |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 694 | ses->auth_key.len += baselen; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 695 | |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 696 | ntlmv2 = (struct ntlmv2_resp *) |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 697 | (ses->auth_key.response + CIFS_SESS_KEY_SIZE); |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 698 | ntlmv2->blob_signature = cpu_to_le32(0x00000101); |
| 699 | ntlmv2->reserved = 0; |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 700 | ntlmv2->time = rsp_timestamp; |
| 701 | |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 702 | get_random_bytes(&ntlmv2->client_chal, sizeof(ntlmv2->client_chal)); |
| 703 | ntlmv2->reserved2 = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 704 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 705 | memcpy(ses->auth_key.response + baselen, tiblob, tilen); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 706 | |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 707 | mutex_lock(&ses->server->srv_mutex); |
| 708 | |
Aurelien Aptel | 82fb82b | 2018-02-16 19:19:27 +0100 | [diff] [blame] | 709 | rc = cifs_alloc_hash("hmac(md5)", |
| 710 | &ses->server->secmech.hmacmd5, |
| 711 | &ses->server->secmech.sdeschmacmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 712 | if (rc) { |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 713 | goto unlock; |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 714 | } |
| 715 | |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 716 | /* calculate ntlmv2_hash */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 717 | rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 718 | if (rc) { |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 719 | cifs_dbg(VFS, "Could not get v2 hash rc %d\n", rc); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 720 | goto unlock; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 721 | } |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 722 | |
| 723 | /* calculate first part of the client response (CR1) */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 724 | rc = CalcNTLMv2_response(ses, ntlmv2_hash); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 725 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 726 | cifs_dbg(VFS, "Could not calculate CR1 rc: %d\n", rc); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 727 | goto unlock; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 728 | } |
Steve French | b609f06 | 2007-07-09 07:55:14 +0000 | [diff] [blame] | 729 | |
Shirish Pargaonkar | 5d0d288 | 2010-10-13 18:15:00 -0500 | [diff] [blame] | 730 | /* now calculate the session key for NTLMv2 */ |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 731 | rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 732 | ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 733 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 734 | cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n", |
| 735 | __func__); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 736 | goto unlock; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 737 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 738 | |
| 739 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 740 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 741 | cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 742 | goto unlock; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 743 | } |
| 744 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 745 | rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 746 | ntlmv2->ntlmv2_hash, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 747 | CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 748 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 749 | cifs_dbg(VFS, "%s: Could not update with response\n", __func__); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 750 | goto unlock; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 751 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 752 | |
| 753 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
| 754 | ses->auth_key.response); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 755 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 756 | cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 757 | |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 758 | unlock: |
| 759 | mutex_unlock(&ses->server->srv_mutex); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 760 | setup_ntlmv2_rsp_ret: |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 761 | kfree(tiblob); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 762 | |
| 763 | return rc; |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 764 | } |
| 765 | |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 766 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 767 | calc_seckey(struct cifs_ses *ses) |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 768 | { |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 769 | unsigned char sec_key[CIFS_SESS_KEY_SIZE]; /* a nonce */ |
| 770 | struct arc4_ctx *ctx_arc4; |
Sachin Prabhu | 5f4b556 | 2016-10-17 16:40:22 -0400 | [diff] [blame] | 771 | |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 772 | if (fips_enabled) |
| 773 | return -ENODEV; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 774 | |
| 775 | get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE); |
| 776 | |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 777 | ctx_arc4 = kmalloc(sizeof(*ctx_arc4), GFP_KERNEL); |
| 778 | if (!ctx_arc4) { |
Joe Perches | a0a3036 | 2020-04-14 22:42:53 -0700 | [diff] [blame] | 779 | cifs_dbg(VFS, "Could not allocate arc4 context\n"); |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 780 | return -ENOMEM; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 781 | } |
| 782 | |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 783 | 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 Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 786 | |
| 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 Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 792 | memzero_explicit(sec_key, CIFS_SESS_KEY_SIZE); |
Waiman Long | 453431a | 2020-08-06 23:18:13 -0700 | [diff] [blame] | 793 | kfree_sensitive(ctx_arc4); |
Ard Biesheuvel | 97a5fee | 2019-06-12 18:19:59 +0200 | [diff] [blame] | 794 | return 0; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | void |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 798 | cifs_crypto_secmech_release(struct TCP_Server_Info *server) |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 799 | { |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 800 | if (server->secmech.cmacaes) { |
Steve French | 429b46f | 2013-06-26 23:45:05 -0500 | [diff] [blame] | 801 | crypto_free_shash(server->secmech.cmacaes); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 802 | server->secmech.cmacaes = NULL; |
| 803 | } |
Steve French | 429b46f | 2013-06-26 23:45:05 -0500 | [diff] [blame] | 804 | |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 805 | if (server->secmech.hmacsha256) { |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 806 | crypto_free_shash(server->secmech.hmacsha256); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 807 | server->secmech.hmacsha256 = NULL; |
| 808 | } |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 809 | |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 810 | if (server->secmech.md5) { |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 811 | crypto_free_shash(server->secmech.md5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 812 | server->secmech.md5 = NULL; |
| 813 | } |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 814 | |
Gustavo A. R. Silva | 70e8065 | 2018-02-19 11:11:13 -0600 | [diff] [blame] | 815 | if (server->secmech.sha512) { |
Aurelien Aptel | 5fcd7f3 | 2018-02-16 19:19:28 +0100 | [diff] [blame] | 816 | crypto_free_shash(server->secmech.sha512); |
| 817 | server->secmech.sha512 = NULL; |
| 818 | } |
| 819 | |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 820 | if (server->secmech.hmacmd5) { |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 821 | crypto_free_shash(server->secmech.hmacmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 822 | server->secmech.hmacmd5 = NULL; |
| 823 | } |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 824 | |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 825 | 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 French | 429b46f | 2013-06-26 23:45:05 -0500 | [diff] [blame] | 835 | kfree(server->secmech.sdesccmacaes); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 836 | server->secmech.sdesccmacaes = NULL; |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 837 | kfree(server->secmech.sdeschmacsha256); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 838 | server->secmech.sdeschmacsha256 = NULL; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 839 | kfree(server->secmech.sdeschmacmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 840 | server->secmech.sdeschmacmd5 = NULL; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 841 | kfree(server->secmech.sdescmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 842 | server->secmech.sdescmd5 = NULL; |
Aurelien Aptel | 5fcd7f3 | 2018-02-16 19:19:28 +0100 | [diff] [blame] | 843 | kfree(server->secmech.sdescsha512); |
| 844 | server->secmech.sdescsha512 = NULL; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 845 | } |