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