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 | |
| 86 | crypto_shash_update(shash, kaddr, len); |
| 87 | |
| 88 | kunmap(rqst->rq_pages[i]); |
| 89 | } |
| 90 | |
| 91 | rc = crypto_shash_final(shash, signature); |
| 92 | if (rc) |
| 93 | cifs_dbg(VFS, "%s: Could not generate hash\n", __func__); |
| 94 | |
| 95 | return rc; |
| 96 | } |
| 97 | |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 98 | /* |
| 99 | * Calculate and return the CIFS signature based on the mac key and SMB PDU. |
| 100 | * The 16 byte signature must be allocated by the caller. Note we only use the |
| 101 | * 1st eight bytes and that the smb header signature field on input contains |
| 102 | * the sequence number before this function is called. Also, this function |
| 103 | * should be called with the server->srv_mutex held. |
| 104 | */ |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 105 | static int cifs_calc_signature(struct smb_rqst *rqst, |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 106 | struct TCP_Server_Info *server, char *signature) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 107 | { |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 108 | int rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 109 | |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 110 | if (!rqst->rq_iov || !signature || !server) |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 111 | return -EINVAL; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 112 | |
Aurelien Aptel | 82fb82b | 2018-02-16 19:19:27 +0100 | [diff] [blame] | 113 | rc = cifs_alloc_hash("md5", &server->secmech.md5, |
| 114 | &server->secmech.sdescmd5); |
| 115 | if (rc) |
| 116 | return -1; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 117 | |
| 118 | rc = crypto_shash_init(&server->secmech.sdescmd5->shash); |
| 119 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 120 | cifs_dbg(VFS, "%s: Could not init md5\n", __func__); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 121 | return rc; |
| 122 | } |
| 123 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 124 | rc = crypto_shash_update(&server->secmech.sdescmd5->shash, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 125 | server->session_key.response, server->session_key.len); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 126 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 127 | cifs_dbg(VFS, "%s: Could not update with response\n", __func__); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 128 | return rc; |
| 129 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 130 | |
Ronnie Sahlberg | c713c87 | 2018-06-12 08:00:58 +1000 | [diff] [blame] | 131 | return __cifs_calc_signature(rqst, server, signature, |
Al Viro | 16c568e | 2015-11-12 22:46:49 -0500 | [diff] [blame] | 132 | &server->secmech.sdescmd5->shash); |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 133 | } |
| 134 | |
Jeff Layton | a0f8b4f | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 135 | /* must be called with server->srv_mutex held */ |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 136 | 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] | 137 | __u32 *pexpected_response_sequence_number) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 138 | { |
| 139 | int rc = 0; |
| 140 | char smb_signature[20]; |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 141 | 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] | 142 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 143 | if (rqst->rq_iov[0].iov_len != 4 || |
| 144 | rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) |
| 145 | return -EIO; |
| 146 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 147 | if ((cifs_pdu == NULL) || (server == NULL)) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 148 | return -EINVAL; |
| 149 | |
Jeff Layton | 998d6fc | 2011-07-26 12:21:17 -0400 | [diff] [blame] | 150 | if (!(cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) || |
| 151 | server->tcpStatus == CifsNeedNegotiate) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 152 | return rc; |
| 153 | |
Jeff Layton | 998d6fc | 2011-07-26 12:21:17 -0400 | [diff] [blame] | 154 | if (!server->session_estab) { |
Jeff Layton | b4dacbc | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 155 | memcpy(cifs_pdu->Signature.SecuritySignature, "BSRSPYL", 8); |
Jeff Layton | 998d6fc | 2011-07-26 12:21:17 -0400 | [diff] [blame] | 156 | return rc; |
| 157 | } |
| 158 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 159 | cifs_pdu->Signature.Sequence.SequenceNumber = |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 160 | cpu_to_le32(server->sequence_number); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 161 | cifs_pdu->Signature.Sequence.Reserved = 0; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 162 | |
Jeff Layton | 0124cc4 | 2013-04-03 11:55:03 -0400 | [diff] [blame] | 163 | *pexpected_response_sequence_number = ++server->sequence_number; |
| 164 | ++server->sequence_number; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 165 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 166 | rc = cifs_calc_signature(rqst, server, smb_signature); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 167 | if (rc) |
| 168 | memset(cifs_pdu->Signature.SecuritySignature, 0, 8); |
| 169 | else |
| 170 | memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8); |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 171 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 172 | return rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 173 | } |
| 174 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 175 | int cifs_sign_smbv(struct kvec *iov, int n_vec, struct TCP_Server_Info *server, |
| 176 | __u32 *pexpected_response_sequence) |
| 177 | { |
| 178 | struct smb_rqst rqst = { .rq_iov = iov, |
| 179 | .rq_nvec = n_vec }; |
| 180 | |
| 181 | return cifs_sign_rqst(&rqst, server, pexpected_response_sequence); |
| 182 | } |
| 183 | |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 184 | /* must be called with server->srv_mutex held */ |
| 185 | int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server, |
| 186 | __u32 *pexpected_response_sequence_number) |
| 187 | { |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 188 | struct kvec iov[2]; |
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 | iov[0].iov_base = cifs_pdu; |
| 191 | iov[0].iov_len = 4; |
| 192 | iov[1].iov_base = (char *)cifs_pdu + 4; |
| 193 | iov[1].iov_len = be32_to_cpu(cifs_pdu->smb_buf_length); |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 194 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 195 | return cifs_sign_smbv(iov, 2, server, |
Jeff Layton | 826a95e | 2011-10-11 06:41:32 -0400 | [diff] [blame] | 196 | pexpected_response_sequence_number); |
| 197 | } |
| 198 | |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 199 | int cifs_verify_signature(struct smb_rqst *rqst, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 200 | struct TCP_Server_Info *server, |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 201 | __u32 expected_sequence_number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | { |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 203 | unsigned int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | char server_response_sig[8]; |
| 205 | char what_we_think_sig_should_be[20]; |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 206 | 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] | 207 | |
Pavel Shilovsky | 738f9de | 2016-11-23 15:14:57 -0800 | [diff] [blame] | 208 | if (rqst->rq_iov[0].iov_len != 4 || |
| 209 | rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base) |
| 210 | return -EIO; |
| 211 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 212 | if (cifs_pdu == NULL || server == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | return -EINVAL; |
| 214 | |
Jeff Layton | 9c4843e | 2011-06-06 15:40:23 -0400 | [diff] [blame] | 215 | if (!server->session_estab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | return 0; |
| 217 | |
| 218 | if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 219 | struct smb_com_lock_req *pSMB = |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 220 | (struct smb_com_lock_req *)cifs_pdu; |
| 221 | if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | return 0; |
| 223 | } |
| 224 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 225 | /* BB what if signatures are supposed to be on for session but |
| 226 | server does not send one? BB */ |
| 227 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | /* Do not need to verify session setups with signature "BSRSPYL " */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 229 | if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 230 | cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n", |
| 231 | cifs_pdu->Command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | /* save off the origiginal signature so we can modify the smb and check |
| 234 | its signature against what the server sent */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 235 | memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 237 | cifs_pdu->Signature.Sequence.SequenceNumber = |
| 238 | cpu_to_le32(expected_sequence_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | cifs_pdu->Signature.Sequence.Reserved = 0; |
| 240 | |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 241 | mutex_lock(&server->srv_mutex); |
Jeff Layton | bf5ea0e | 2012-09-18 16:20:34 -0700 | [diff] [blame] | 242 | rc = cifs_calc_signature(rqst, server, what_we_think_sig_should_be); |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 243 | mutex_unlock(&server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 245 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | return rc; |
| 247 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 248 | /* cifs_dump_mem("what we think it should be: ", |
| 249 | what_we_think_sig_should_be, 16); */ |
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 (memcmp(server_response_sig, what_we_think_sig_should_be, 8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | return -EACCES; |
| 253 | else |
| 254 | return 0; |
| 255 | |
| 256 | } |
| 257 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 258 | /* first calculate 24 bytes ntlm response and then 16 byte session key */ |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 259 | 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] | 260 | { |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 261 | int rc = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 262 | unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE; |
| 263 | char temp_key[CIFS_SESS_KEY_SIZE]; |
| 264 | |
| 265 | if (!ses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | return -EINVAL; |
| 267 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 268 | ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 269 | if (!ses->auth_key.response) |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 270 | return -ENOMEM; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 271 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 272 | ses->auth_key.len = temp_len; |
| 273 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 274 | rc = SMBNTencrypt(ses->password, ses->server->cryptkey, |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 275 | ses->auth_key.response + CIFS_SESS_KEY_SIZE, nls_cp); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 276 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 277 | cifs_dbg(FYI, "%s Can't generate NTLM response, error: %d\n", |
| 278 | __func__, rc); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 279 | return rc; |
| 280 | } |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 281 | |
Shirish Pargaonkar | 9ef5992 | 2011-10-20 13:21:59 -0500 | [diff] [blame] | 282 | rc = E_md4hash(ses->password, temp_key, nls_cp); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 283 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 284 | cifs_dbg(FYI, "%s Can't generate NT hash, error: %d\n", |
| 285 | __func__, rc); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 286 | return rc; |
| 287 | } |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 288 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 289 | rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE); |
| 290 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 291 | cifs_dbg(FYI, "%s Can't generate NTLM session key, error: %d\n", |
| 292 | __func__, rc); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 293 | |
| 294 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 297 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 298 | int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt, |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 299 | char *lnm_session_key) |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 300 | { |
| 301 | int i; |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 302 | int rc; |
Aurelien Aptel | 97f4b72 | 2018-01-25 15:59:39 +0100 | [diff] [blame] | 303 | char password_with_pad[CIFS_ENCPWD_SIZE] = {0}; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 304 | |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 305 | if (password) |
| 306 | strncpy(password_with_pad, password, CIFS_ENCPWD_SIZE); |
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; |
Deepa Dinamani | e37fea5 | 2017-05-08 15:59:16 -0700 | [diff] [blame] | 455 | struct timespec 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 | |
Deepa Dinamani | e37fea5 | 2017-05-08 15:59:16 -0700 | [diff] [blame] | 480 | ktime_get_real_ts(&ts); |
| 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 | f96637b | 2013-05-04 22:12:25 -0500 | [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 { |
| 559 | /* We use ses->serverName if no domain name available */ |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 560 | len = strlen(ses->serverName); |
| 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 | acbbb76 | 2012-01-18 22:32:33 -0600 | [diff] [blame] | 567 | len = cifs_strtoUTF16((__le16 *)server, ses->serverName, 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 | f96637b | 2013-05-04 22:12:25 -0500 | [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 | |
Jeff Layton | 3f61822 | 2013-06-12 19:52:14 -0500 | [diff] [blame] | 652 | if (ses->server->negflavor == CIFS_NEGFLAVOR_EXTENDED) { |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 653 | if (!ses->domainName) { |
Germano Percossi | 3956644 | 2016-12-15 12:31:18 +0530 | [diff] [blame] | 654 | if (ses->domainAuto) { |
| 655 | rc = find_domain_name(ses, nls_cp); |
| 656 | if (rc) { |
| 657 | cifs_dbg(VFS, "error %d finding domain name\n", |
| 658 | rc); |
| 659 | goto setup_ntlmv2_rsp_ret; |
| 660 | } |
| 661 | } else { |
| 662 | ses->domainName = kstrdup("", GFP_KERNEL); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 663 | } |
| 664 | } |
| 665 | } else { |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 666 | rc = build_avpair_blob(ses, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 667 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 668 | cifs_dbg(VFS, "error %d building av pair blob\n", rc); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 669 | goto setup_ntlmv2_rsp_ret; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 670 | } |
| 671 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 672 | |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 673 | /* Must be within 5 minutes of the server (or in range +/-2h |
| 674 | * in case of Mac OS X), so simply carry over server timestamp |
| 675 | * (as Windows 7 does) |
| 676 | */ |
| 677 | rsp_timestamp = find_timestamp(ses); |
| 678 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 679 | baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 680 | tilen = ses->auth_key.len; |
| 681 | tiblob = ses->auth_key.response; |
| 682 | |
| 683 | ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 684 | if (!ses->auth_key.response) { |
Anton Protopopov | 4b550af | 2016-02-10 12:50:21 -0500 | [diff] [blame] | 685 | rc = -ENOMEM; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 686 | ses->auth_key.len = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 687 | goto setup_ntlmv2_rsp_ret; |
| 688 | } |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 689 | ses->auth_key.len += baselen; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 690 | |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 691 | ntlmv2 = (struct ntlmv2_resp *) |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 692 | (ses->auth_key.response + CIFS_SESS_KEY_SIZE); |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 693 | ntlmv2->blob_signature = cpu_to_le32(0x00000101); |
| 694 | ntlmv2->reserved = 0; |
Peter Seiderer | 98ce94c | 2015-09-17 21:40:12 +0200 | [diff] [blame] | 695 | ntlmv2->time = rsp_timestamp; |
| 696 | |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 697 | get_random_bytes(&ntlmv2->client_chal, sizeof(ntlmv2->client_chal)); |
| 698 | ntlmv2->reserved2 = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 699 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 700 | memcpy(ses->auth_key.response + baselen, tiblob, tilen); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 701 | |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 702 | mutex_lock(&ses->server->srv_mutex); |
| 703 | |
Aurelien Aptel | 82fb82b | 2018-02-16 19:19:27 +0100 | [diff] [blame] | 704 | rc = cifs_alloc_hash("hmac(md5)", |
| 705 | &ses->server->secmech.hmacmd5, |
| 706 | &ses->server->secmech.sdeschmacmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 707 | if (rc) { |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 708 | goto unlock; |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 709 | } |
| 710 | |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 711 | /* calculate ntlmv2_hash */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 712 | rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 713 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 714 | cifs_dbg(VFS, "could not get v2 hash rc %d\n", rc); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 715 | goto unlock; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 716 | } |
Shirish Pargaonkar | f7c5445a | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 717 | |
| 718 | /* calculate first part of the client response (CR1) */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 719 | rc = CalcNTLMv2_response(ses, ntlmv2_hash); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 720 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 721 | cifs_dbg(VFS, "Could not calculate CR1 rc: %d\n", rc); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 722 | goto unlock; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 723 | } |
Steve French | b609f06 | 2007-07-09 07:55:14 +0000 | [diff] [blame] | 724 | |
Shirish Pargaonkar | 5d0d288 | 2010-10-13 18:15:00 -0500 | [diff] [blame] | 725 | /* now calculate the session key for NTLMv2 */ |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 726 | rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 727 | ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 728 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 729 | cifs_dbg(VFS, "%s: Could not set NTLMV2 Hash as a key\n", |
| 730 | __func__); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 731 | goto unlock; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 732 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 733 | |
| 734 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 735 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 736 | cifs_dbg(VFS, "%s: Could not init hmacmd5\n", __func__); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 737 | goto unlock; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 738 | } |
| 739 | |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 740 | rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
Tim Gardner | 2c957dd | 2013-11-07 16:40:57 -0700 | [diff] [blame] | 741 | ntlmv2->ntlmv2_hash, |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 742 | CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 743 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 744 | cifs_dbg(VFS, "%s: Could not update with response\n", __func__); |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 745 | goto unlock; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 746 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 747 | |
| 748 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
| 749 | ses->auth_key.response); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 750 | if (rc) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 751 | cifs_dbg(VFS, "%s: Could not generate md5 hash\n", __func__); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 752 | |
Rabin Vincent | bd975d1 | 2016-07-19 09:26:21 +0200 | [diff] [blame] | 753 | unlock: |
| 754 | mutex_unlock(&ses->server->srv_mutex); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 755 | setup_ntlmv2_rsp_ret: |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 756 | kfree(tiblob); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 757 | |
| 758 | return rc; |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 761 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 762 | calc_seckey(struct cifs_ses *ses) |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 763 | { |
| 764 | int rc; |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 765 | struct crypto_skcipher *tfm_arc4; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 766 | struct scatterlist sgin, sgout; |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 767 | struct skcipher_request *req; |
Sachin Prabhu | 5f4b556 | 2016-10-17 16:40:22 -0400 | [diff] [blame] | 768 | unsigned char *sec_key; |
| 769 | |
| 770 | sec_key = kmalloc(CIFS_SESS_KEY_SIZE, GFP_KERNEL); |
| 771 | if (sec_key == NULL) |
| 772 | return -ENOMEM; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 773 | |
| 774 | get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE); |
| 775 | |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 776 | tfm_arc4 = crypto_alloc_skcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); |
Shirish Pargaonkar | 7a8587e | 2011-01-29 13:54:58 -0600 | [diff] [blame] | 777 | if (IS_ERR(tfm_arc4)) { |
| 778 | rc = PTR_ERR(tfm_arc4); |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 779 | cifs_dbg(VFS, "could not allocate crypto API arc4\n"); |
Sachin Prabhu | 5f4b556 | 2016-10-17 16:40:22 -0400 | [diff] [blame] | 780 | goto out; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 781 | } |
| 782 | |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 783 | rc = crypto_skcipher_setkey(tfm_arc4, ses->auth_key.response, |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 784 | CIFS_SESS_KEY_SIZE); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 785 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 786 | cifs_dbg(VFS, "%s: Could not set response as a key\n", |
| 787 | __func__); |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 788 | goto out_free_cipher; |
| 789 | } |
| 790 | |
| 791 | req = skcipher_request_alloc(tfm_arc4, GFP_KERNEL); |
| 792 | if (!req) { |
| 793 | rc = -ENOMEM; |
| 794 | cifs_dbg(VFS, "could not allocate crypto API arc4 request\n"); |
| 795 | goto out_free_cipher; |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 796 | } |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 797 | |
| 798 | sg_init_one(&sgin, sec_key, CIFS_SESS_KEY_SIZE); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 799 | sg_init_one(&sgout, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 800 | |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 801 | skcipher_request_set_callback(req, 0, NULL, NULL); |
| 802 | skcipher_request_set_crypt(req, &sgin, &sgout, CIFS_CPHTXT_SIZE, NULL); |
| 803 | |
| 804 | rc = crypto_skcipher_encrypt(req); |
| 805 | skcipher_request_free(req); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 806 | if (rc) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 807 | cifs_dbg(VFS, "could not encrypt session key rc: %d\n", rc); |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 808 | goto out_free_cipher; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 809 | } |
| 810 | |
| 811 | /* make secondary_key/nonce as session key */ |
| 812 | memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE); |
| 813 | /* and make len as that of session key only */ |
| 814 | ses->auth_key.len = CIFS_SESS_KEY_SIZE; |
| 815 | |
Herbert Xu | 9651ddb | 2016-01-24 21:17:17 +0800 | [diff] [blame] | 816 | out_free_cipher: |
| 817 | crypto_free_skcipher(tfm_arc4); |
Sachin Prabhu | 5f4b556 | 2016-10-17 16:40:22 -0400 | [diff] [blame] | 818 | out: |
| 819 | kfree(sec_key); |
Shirish Pargaonkar | 14cae32 | 2011-06-20 16:14:03 -0500 | [diff] [blame] | 820 | return rc; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | void |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 824 | cifs_crypto_secmech_release(struct TCP_Server_Info *server) |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 825 | { |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 826 | if (server->secmech.cmacaes) { |
Steve French | 429b46f | 2013-06-26 23:45:05 -0500 | [diff] [blame] | 827 | crypto_free_shash(server->secmech.cmacaes); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 828 | server->secmech.cmacaes = NULL; |
| 829 | } |
Steve French | 429b46f | 2013-06-26 23:45:05 -0500 | [diff] [blame] | 830 | |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 831 | if (server->secmech.hmacsha256) { |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 832 | crypto_free_shash(server->secmech.hmacsha256); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 833 | server->secmech.hmacsha256 = NULL; |
| 834 | } |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 835 | |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 836 | if (server->secmech.md5) { |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 837 | crypto_free_shash(server->secmech.md5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 838 | server->secmech.md5 = NULL; |
| 839 | } |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 840 | |
Gustavo A. R. Silva | 70e8065 | 2018-02-19 11:11:13 -0600 | [diff] [blame] | 841 | if (server->secmech.sha512) { |
Aurelien Aptel | 5fcd7f3 | 2018-02-16 19:19:28 +0100 | [diff] [blame] | 842 | crypto_free_shash(server->secmech.sha512); |
| 843 | server->secmech.sha512 = NULL; |
| 844 | } |
| 845 | |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 846 | if (server->secmech.hmacmd5) { |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 847 | crypto_free_shash(server->secmech.hmacmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 848 | server->secmech.hmacmd5 = NULL; |
| 849 | } |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 850 | |
Pavel Shilovsky | 026e93d | 2016-11-03 16:47:37 -0700 | [diff] [blame] | 851 | if (server->secmech.ccmaesencrypt) { |
| 852 | crypto_free_aead(server->secmech.ccmaesencrypt); |
| 853 | server->secmech.ccmaesencrypt = NULL; |
| 854 | } |
| 855 | |
| 856 | if (server->secmech.ccmaesdecrypt) { |
| 857 | crypto_free_aead(server->secmech.ccmaesdecrypt); |
| 858 | server->secmech.ccmaesdecrypt = NULL; |
| 859 | } |
| 860 | |
Steve French | 429b46f | 2013-06-26 23:45:05 -0500 | [diff] [blame] | 861 | kfree(server->secmech.sdesccmacaes); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 862 | server->secmech.sdesccmacaes = NULL; |
Pavel Shilovsky | 3c1bf7e | 2012-09-18 16:20:30 -0700 | [diff] [blame] | 863 | kfree(server->secmech.sdeschmacsha256); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 864 | server->secmech.sdeschmacsha256 = NULL; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 865 | kfree(server->secmech.sdeschmacmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 866 | server->secmech.sdeschmacmd5 = NULL; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 867 | kfree(server->secmech.sdescmd5); |
Steve French | 95dc8dd | 2013-07-04 10:35:21 -0500 | [diff] [blame] | 868 | server->secmech.sdescmd5 = NULL; |
Aurelien Aptel | 5fcd7f3 | 2018-02-16 19:19:28 +0100 | [diff] [blame] | 869 | kfree(server->secmech.sdescsha512); |
| 870 | server->secmech.sdescsha512 = NULL; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 871 | } |