Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/cifsencrypt.c |
| 3 | * |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2005,2006 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * This library is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU Lesser General Public License as published |
| 9 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 15 | * the GNU Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public License |
| 18 | * along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
| 22 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include "cifspdu.h" |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 25 | #include "cifsglob.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include "cifs_debug.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include "cifs_unicode.h" |
| 28 | #include "cifsproto.h" |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 29 | #include "ntlmssp.h" |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 30 | #include <linux/ctype.h> |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 31 | #include <linux/random.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 33 | /* |
| 34 | * Calculate and return the CIFS signature based on the mac key and SMB PDU. |
| 35 | * The 16 byte signature must be allocated by the caller. Note we only use the |
| 36 | * 1st eight bytes and that the smb header signature field on input contains |
| 37 | * the sequence number before this function is called. Also, this function |
| 38 | * should be called with the server->srv_mutex held. |
| 39 | */ |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 40 | static int cifs_calculate_signature(const struct smb_hdr *cifs_pdu, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 41 | struct TCP_Server_Info *server, char *signature) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | { |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 43 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 45 | if (cifs_pdu == NULL || signature == NULL || server == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return -EINVAL; |
| 47 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 48 | if (!server->secmech.sdescmd5) { |
| 49 | cERROR(1, "%s: Can't generate signature\n", __func__); |
| 50 | return -1; |
| 51 | } |
Steve French | b609f06 | 2007-07-09 07:55:14 +0000 | [diff] [blame] | 52 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 53 | rc = crypto_shash_init(&server->secmech.sdescmd5->shash); |
| 54 | if (rc) { |
| 55 | cERROR(1, "%s: Oould not init md5\n", __func__); |
| 56 | return rc; |
| 57 | } |
| 58 | |
| 59 | crypto_shash_update(&server->secmech.sdescmd5->shash, |
| 60 | server->session_key.response, server->session_key.len); |
| 61 | |
| 62 | crypto_shash_update(&server->secmech.sdescmd5->shash, |
Steve French | be8e3b0 | 2011-04-29 05:40:20 +0000 | [diff] [blame] | 63 | cifs_pdu->Protocol, be32_to_cpu(cifs_pdu->smb_buf_length)); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 64 | |
| 65 | rc = crypto_shash_final(&server->secmech.sdescmd5->shash, signature); |
| 66 | |
Steve French | 56234e2 | 2010-09-08 20:57:05 +0000 | [diff] [blame] | 67 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Jeff Layton | a0f8b4f | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 70 | /* must be called with server->srv_mutex held */ |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 71 | int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server, |
| 72 | __u32 *pexpected_response_sequence_number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | int rc = 0; |
| 75 | char smb_signature[20]; |
| 76 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 77 | if ((cifs_pdu == NULL) || (server == NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | return -EINVAL; |
| 79 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 80 | if ((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | return rc; |
| 82 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 83 | cifs_pdu->Signature.Sequence.SequenceNumber = |
| 84 | cpu_to_le32(server->sequence_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | cifs_pdu->Signature.Sequence.Reserved = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 86 | |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 87 | *pexpected_response_sequence_number = server->sequence_number++; |
| 88 | server->sequence_number++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 90 | rc = cifs_calculate_signature(cifs_pdu, server, smb_signature); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 91 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | memset(cifs_pdu->Signature.SecuritySignature, 0, 8); |
| 93 | else |
| 94 | memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8); |
| 95 | |
| 96 | return rc; |
| 97 | } |
| 98 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 99 | static int cifs_calc_signature2(const struct kvec *iov, int n_vec, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 100 | struct TCP_Server_Info *server, char *signature) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 101 | { |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 102 | int i; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 103 | int rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 104 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 105 | if (iov == NULL || signature == NULL || server == NULL) |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 106 | return -EINVAL; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 107 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 108 | if (!server->secmech.sdescmd5) { |
| 109 | cERROR(1, "%s: Can't generate signature\n", __func__); |
| 110 | return -1; |
| 111 | } |
| 112 | |
| 113 | rc = crypto_shash_init(&server->secmech.sdescmd5->shash); |
| 114 | if (rc) { |
| 115 | cERROR(1, "%s: Oould not init md5\n", __func__); |
| 116 | return rc; |
| 117 | } |
| 118 | |
| 119 | crypto_shash_update(&server->secmech.sdescmd5->shash, |
| 120 | server->session_key.response, server->session_key.len); |
| 121 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 122 | for (i = 0; i < n_vec; i++) { |
Jeff Layton | 745542e | 2007-11-03 04:34:04 +0000 | [diff] [blame] | 123 | if (iov[i].iov_len == 0) |
| 124 | continue; |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 125 | if (iov[i].iov_base == NULL) { |
Steve French | 56234e2 | 2010-09-08 20:57:05 +0000 | [diff] [blame] | 126 | cERROR(1, "null iovec entry"); |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 127 | return -EIO; |
Jeff Layton | 745542e | 2007-11-03 04:34:04 +0000 | [diff] [blame] | 128 | } |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 129 | /* The first entry includes a length field (which does not get |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 130 | signed that occupies the first 4 bytes before the header */ |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 131 | if (i == 0) { |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 132 | if (iov[0].iov_len <= 8) /* cmd field at offset 9 */ |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 133 | break; /* nothing to sign or corrupt header */ |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 134 | crypto_shash_update(&server->secmech.sdescmd5->shash, |
| 135 | iov[i].iov_base + 4, iov[i].iov_len - 4); |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 136 | } else |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 137 | crypto_shash_update(&server->secmech.sdescmd5->shash, |
| 138 | iov[i].iov_base, iov[i].iov_len); |
Steve French | e9917a0 | 2006-03-31 21:22:00 +0000 | [diff] [blame] | 139 | } |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 140 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 141 | rc = crypto_shash_final(&server->secmech.sdescmd5->shash, signature); |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 142 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 143 | return rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 144 | } |
| 145 | |
Jeff Layton | a0f8b4f | 2011-01-07 11:30:28 -0500 | [diff] [blame] | 146 | /* must be called with server->srv_mutex held */ |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 147 | int cifs_sign_smb2(struct kvec *iov, int n_vec, struct TCP_Server_Info *server, |
Steve French | 63d2583 | 2007-11-05 21:46:10 +0000 | [diff] [blame] | 148 | __u32 *pexpected_response_sequence_number) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 149 | { |
| 150 | int rc = 0; |
| 151 | char smb_signature[20]; |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 152 | struct smb_hdr *cifs_pdu = iov[0].iov_base; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 153 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 154 | if ((cifs_pdu == NULL) || (server == NULL)) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 155 | return -EINVAL; |
| 156 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 157 | if ((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0) |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 158 | return rc; |
| 159 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 160 | cifs_pdu->Signature.Sequence.SequenceNumber = |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 161 | cpu_to_le32(server->sequence_number); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 162 | cifs_pdu->Signature.Sequence.Reserved = 0; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 163 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 164 | *pexpected_response_sequence_number = server->sequence_number++; |
| 165 | server->sequence_number++; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 166 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 167 | rc = cifs_calc_signature2(iov, n_vec, server, smb_signature); |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 168 | if (rc) |
| 169 | memset(cifs_pdu->Signature.SecuritySignature, 0, 8); |
| 170 | else |
| 171 | memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8); |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 172 | |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 173 | return rc; |
Steve French | 84afc29 | 2005-12-02 13:32:45 -0800 | [diff] [blame] | 174 | } |
| 175 | |
Steve French | b609f06 | 2007-07-09 07:55:14 +0000 | [diff] [blame] | 176 | int cifs_verify_signature(struct smb_hdr *cifs_pdu, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 177 | struct TCP_Server_Info *server, |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 178 | __u32 expected_sequence_number) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 180 | unsigned int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | char server_response_sig[8]; |
| 182 | char what_we_think_sig_should_be[20]; |
| 183 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 184 | if (cifs_pdu == NULL || server == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | return -EINVAL; |
| 186 | |
Jeff Layton | 9c4843e | 2011-06-06 15:40:23 -0400 | [diff] [blame] | 187 | if (!server->session_estab) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | return 0; |
| 189 | |
| 190 | if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 191 | struct smb_com_lock_req *pSMB = |
Steve French | ffdd6e4 | 2007-06-24 21:15:44 +0000 | [diff] [blame] | 192 | (struct smb_com_lock_req *)cifs_pdu; |
| 193 | if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | return 0; |
| 195 | } |
| 196 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 197 | /* BB what if signatures are supposed to be on for session but |
| 198 | server does not send one? BB */ |
| 199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | /* Do not need to verify session setups with signature "BSRSPYL " */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 201 | if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 202 | cFYI(1, "dummy signature received for smb command 0x%x", |
| 203 | cifs_pdu->Command); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
| 205 | /* save off the origiginal signature so we can modify the smb and check |
| 206 | its signature against what the server sent */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 207 | memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 209 | cifs_pdu->Signature.Sequence.SequenceNumber = |
| 210 | cpu_to_le32(expected_sequence_number); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | cifs_pdu->Signature.Sequence.Reserved = 0; |
| 212 | |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 213 | mutex_lock(&server->srv_mutex); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 214 | rc = cifs_calculate_signature(cifs_pdu, server, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | what_we_think_sig_should_be); |
Jeff Layton | 157c249 | 2011-04-02 07:34:30 -0400 | [diff] [blame] | 216 | mutex_unlock(&server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 218 | if (rc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | return rc; |
| 220 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 221 | /* cifs_dump_mem("what we think it should be: ", |
| 222 | what_we_think_sig_should_be, 16); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 224 | if (memcmp(server_response_sig, what_we_think_sig_should_be, 8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | return -EACCES; |
| 226 | else |
| 227 | return 0; |
| 228 | |
| 229 | } |
| 230 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 231 | /* first calculate 24 bytes ntlm response and then 16 byte session key */ |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 232 | int setup_ntlm_response(struct cifs_ses *ses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 234 | int rc = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 235 | unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE; |
| 236 | char temp_key[CIFS_SESS_KEY_SIZE]; |
| 237 | |
| 238 | if (!ses) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | return -EINVAL; |
| 240 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 241 | ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL); |
| 242 | if (!ses->auth_key.response) { |
| 243 | cERROR(1, "NTLM can't allocate (%u bytes) memory", temp_len); |
| 244 | return -ENOMEM; |
| 245 | } |
| 246 | ses->auth_key.len = temp_len; |
| 247 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 248 | rc = SMBNTencrypt(ses->password, ses->server->cryptkey, |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 249 | ses->auth_key.response + CIFS_SESS_KEY_SIZE); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 250 | if (rc) { |
| 251 | cFYI(1, "%s Can't generate NTLM response, error: %d", |
| 252 | __func__, rc); |
| 253 | return rc; |
| 254 | } |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 255 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 256 | rc = E_md4hash(ses->password, temp_key); |
| 257 | if (rc) { |
| 258 | cFYI(1, "%s Can't generate NT hash, error: %d", __func__, rc); |
| 259 | return rc; |
| 260 | } |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 261 | |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 262 | rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE); |
| 263 | if (rc) |
| 264 | cFYI(1, "%s Can't generate NTLM session key, error: %d", |
| 265 | __func__, rc); |
| 266 | |
| 267 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 270 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 271 | int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt, |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 272 | char *lnm_session_key) |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 273 | { |
| 274 | int i; |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 275 | int rc; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 276 | char password_with_pad[CIFS_ENCPWD_SIZE]; |
| 277 | |
| 278 | memset(password_with_pad, 0, CIFS_ENCPWD_SIZE); |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 279 | if (password) |
| 280 | strncpy(password_with_pad, password, CIFS_ENCPWD_SIZE); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 281 | |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 282 | if (!encrypt && global_secflags & CIFSSEC_MAY_PLNTXT) { |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 283 | memset(lnm_session_key, 0, CIFS_SESS_KEY_SIZE); |
| 284 | memcpy(lnm_session_key, password_with_pad, |
| 285 | CIFS_ENCPWD_SIZE); |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 286 | return 0; |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 287 | } |
Steve French | bdc4bf6e | 2006-06-02 22:57:13 +0000 | [diff] [blame] | 288 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 289 | /* calculate old style session key */ |
| 290 | /* calling toupper is less broken than repeatedly |
| 291 | calling nls_toupper would be since that will never |
| 292 | work for UTF8, but neither handles multibyte code pages |
| 293 | but the only alternative would be converting to UCS-16 (Unicode) |
| 294 | (using a routine something like UniStrupr) then |
| 295 | uppercasing and then converting back from Unicode - which |
| 296 | would only worth doing it if we knew it were utf8. Basically |
| 297 | utf8 and other multibyte codepages each need their own strupper |
| 298 | function since a byte at a time will ont work. */ |
| 299 | |
Shirish Pargaonkar | ef571ca | 2008-07-24 15:56:05 +0000 | [diff] [blame] | 300 | for (i = 0; i < CIFS_ENCPWD_SIZE; i++) |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 301 | password_with_pad[i] = toupper(password_with_pad[i]); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 302 | |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 303 | rc = SMBencrypt(password_with_pad, cryptkey, lnm_session_key); |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 304 | |
Steve French | 43988d7 | 2011-04-19 18:23:31 +0000 | [diff] [blame] | 305 | return rc; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 306 | } |
| 307 | #endif /* CIFS_WEAK_PW_HASH */ |
| 308 | |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 309 | /* Build a proper attribute value/target info pairs blob. |
| 310 | * Fill in netbios and dns domain name and workstation name |
| 311 | * and client time (total five av pairs and + one end of fields indicator. |
| 312 | * Allocate domain name which gets freed when session struct is deallocated. |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 313 | */ |
| 314 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 315 | 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] | 316 | { |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 317 | unsigned int dlen; |
| 318 | unsigned int wlen; |
| 319 | unsigned int size = 6 * sizeof(struct ntlmssp2_name); |
| 320 | __le64 curtime; |
| 321 | char *defdmname = "WORKGROUP"; |
| 322 | unsigned char *blobptr; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 323 | struct ntlmssp2_name *attrptr; |
| 324 | |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 325 | if (!ses->domainName) { |
| 326 | ses->domainName = kstrdup(defdmname, GFP_KERNEL); |
| 327 | if (!ses->domainName) |
| 328 | return -ENOMEM; |
| 329 | } |
| 330 | |
| 331 | dlen = strlen(ses->domainName); |
| 332 | wlen = strlen(ses->server->hostname); |
| 333 | |
| 334 | /* The length of this blob is a size which is |
| 335 | * six times the size of a structure which holds name/size + |
| 336 | * two times the unicode length of a domain name + |
| 337 | * two times the unicode length of a server name + |
| 338 | * size of a timestamp (which is 8 bytes). |
| 339 | */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 340 | ses->auth_key.len = size + 2 * (2 * dlen) + 2 * (2 * wlen) + 8; |
| 341 | ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL); |
| 342 | if (!ses->auth_key.response) { |
| 343 | ses->auth_key.len = 0; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 344 | cERROR(1, "Challenge target info allocation failure"); |
| 345 | return -ENOMEM; |
| 346 | } |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 347 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 348 | blobptr = ses->auth_key.response; |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 349 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 350 | |
| 351 | attrptr->type = cpu_to_le16(NTLMSSP_AV_NB_DOMAIN_NAME); |
| 352 | attrptr->length = cpu_to_le16(2 * dlen); |
| 353 | blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name); |
| 354 | cifs_strtoUCS((__le16 *)blobptr, ses->domainName, dlen, nls_cp); |
| 355 | |
| 356 | blobptr += 2 * dlen; |
| 357 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 358 | |
| 359 | attrptr->type = cpu_to_le16(NTLMSSP_AV_NB_COMPUTER_NAME); |
| 360 | attrptr->length = cpu_to_le16(2 * wlen); |
| 361 | blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name); |
| 362 | cifs_strtoUCS((__le16 *)blobptr, ses->server->hostname, wlen, nls_cp); |
| 363 | |
| 364 | blobptr += 2 * wlen; |
| 365 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 366 | |
| 367 | attrptr->type = cpu_to_le16(NTLMSSP_AV_DNS_DOMAIN_NAME); |
| 368 | attrptr->length = cpu_to_le16(2 * dlen); |
| 369 | blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name); |
| 370 | cifs_strtoUCS((__le16 *)blobptr, ses->domainName, dlen, nls_cp); |
| 371 | |
| 372 | blobptr += 2 * dlen; |
| 373 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 374 | |
| 375 | attrptr->type = cpu_to_le16(NTLMSSP_AV_DNS_COMPUTER_NAME); |
| 376 | attrptr->length = cpu_to_le16(2 * wlen); |
| 377 | blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name); |
| 378 | cifs_strtoUCS((__le16 *)blobptr, ses->server->hostname, wlen, nls_cp); |
| 379 | |
| 380 | blobptr += 2 * wlen; |
| 381 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 382 | |
| 383 | attrptr->type = cpu_to_le16(NTLMSSP_AV_TIMESTAMP); |
| 384 | attrptr->length = cpu_to_le16(sizeof(__le64)); |
| 385 | blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name); |
| 386 | curtime = cpu_to_le64(cifs_UnixTimeToNT(CURRENT_TIME)); |
| 387 | memcpy(blobptr, &curtime, sizeof(__le64)); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 388 | |
| 389 | return 0; |
| 390 | } |
| 391 | |
| 392 | /* Server has provided av pairs/target info in the type 2 challenge |
| 393 | * packet and we have plucked it and stored within smb session. |
| 394 | * We parse that blob here to find netbios domain name to be used |
| 395 | * as part of ntlmv2 authentication (in Target String), if not already |
| 396 | * specified on the command line. |
| 397 | * If this function returns without any error but without fetching |
| 398 | * domain name, authentication may fail against some server but |
| 399 | * may not fail against other (those who are not very particular |
| 400 | * about target string i.e. for some, just user name might suffice. |
| 401 | */ |
| 402 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 403 | 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] | 404 | { |
| 405 | unsigned int attrsize; |
| 406 | unsigned int type; |
| 407 | unsigned int onesize = sizeof(struct ntlmssp2_name); |
| 408 | unsigned char *blobptr; |
| 409 | unsigned char *blobend; |
| 410 | struct ntlmssp2_name *attrptr; |
| 411 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 412 | if (!ses->auth_key.len || !ses->auth_key.response) |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 413 | return 0; |
| 414 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 415 | blobptr = ses->auth_key.response; |
| 416 | blobend = blobptr + ses->auth_key.len; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 417 | |
| 418 | while (blobptr + onesize < blobend) { |
| 419 | attrptr = (struct ntlmssp2_name *) blobptr; |
| 420 | type = le16_to_cpu(attrptr->type); |
| 421 | if (type == NTLMSSP_AV_EOL) |
| 422 | break; |
| 423 | blobptr += 2; /* advance attr type */ |
| 424 | attrsize = le16_to_cpu(attrptr->length); |
| 425 | blobptr += 2; /* advance attr size */ |
| 426 | if (blobptr + attrsize > blobend) |
| 427 | break; |
| 428 | if (type == NTLMSSP_AV_NB_DOMAIN_NAME) { |
| 429 | if (!attrsize) |
| 430 | break; |
| 431 | if (!ses->domainName) { |
| 432 | ses->domainName = |
| 433 | kmalloc(attrsize + 1, GFP_KERNEL); |
| 434 | if (!ses->domainName) |
| 435 | return -ENOMEM; |
| 436 | cifs_from_ucs2(ses->domainName, |
| 437 | (__le16 *)blobptr, attrsize, attrsize, |
Shirish Pargaonkar | f7c5445 | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 438 | nls_cp, false); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 439 | break; |
| 440 | } |
| 441 | } |
| 442 | blobptr += attrsize; /* advance attr value */ |
| 443 | } |
| 444 | |
| 445 | return 0; |
| 446 | } |
| 447 | |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 448 | static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 449 | const struct nls_table *nls_cp) |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 450 | { |
| 451 | int rc = 0; |
| 452 | int len; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 453 | char nt_hash[CIFS_NTHASH_SIZE]; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 454 | wchar_t *user; |
| 455 | wchar_t *domain; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 456 | wchar_t *server; |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 457 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 458 | if (!ses->server->secmech.sdeschmacmd5) { |
| 459 | cERROR(1, "calc_ntlmv2_hash: can't generate ntlmv2 hash\n"); |
| 460 | return -1; |
| 461 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 462 | |
| 463 | /* calculate md4 hash of password */ |
| 464 | E_md4hash(ses->password, nt_hash); |
| 465 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 466 | crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash, |
| 467 | CIFS_NTHASH_SIZE); |
| 468 | |
| 469 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 470 | if (rc) { |
| 471 | cERROR(1, "calc_ntlmv2_hash: could not init hmacmd5\n"); |
| 472 | return rc; |
| 473 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 474 | |
Steve French | 8727c8a | 2011-02-25 01:11:56 -0600 | [diff] [blame] | 475 | /* convert ses->user_name to unicode and uppercase */ |
| 476 | len = strlen(ses->user_name); |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 477 | user = kmalloc(2 + (len * 2), GFP_KERNEL); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 478 | if (user == NULL) { |
| 479 | cERROR(1, "calc_ntlmv2_hash: user mem alloc failure\n"); |
| 480 | rc = -ENOMEM; |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 481 | goto calc_exit_2; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 482 | } |
Steve French | 8727c8a | 2011-02-25 01:11:56 -0600 | [diff] [blame] | 483 | len = cifs_strtoUCS((__le16 *)user, ses->user_name, len, nls_cp); |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 484 | UniStrupr(user); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 485 | |
| 486 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 487 | (char *)user, 2 * len); |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 488 | |
| 489 | /* convert ses->domainName to unicode and uppercase */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 490 | if (ses->domainName) { |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 491 | len = strlen(ses->domainName); |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 492 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 493 | domain = kmalloc(2 + (len * 2), GFP_KERNEL); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 494 | if (domain == NULL) { |
| 495 | cERROR(1, "calc_ntlmv2_hash: domain mem alloc failure"); |
| 496 | rc = -ENOMEM; |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 497 | goto calc_exit_1; |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 498 | } |
Cyril Gorcunov | 8f2376a | 2007-10-14 17:58:43 +0000 | [diff] [blame] | 499 | len = cifs_strtoUCS((__le16 *)domain, ses->domainName, len, |
| 500 | nls_cp); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 501 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 502 | (char *)domain, 2 * len); |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 503 | kfree(domain); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 504 | } else if (ses->serverName) { |
| 505 | len = strlen(ses->serverName); |
| 506 | |
| 507 | server = kmalloc(2 + (len * 2), GFP_KERNEL); |
| 508 | if (server == NULL) { |
| 509 | cERROR(1, "calc_ntlmv2_hash: server mem alloc failure"); |
| 510 | rc = -ENOMEM; |
| 511 | goto calc_exit_1; |
| 512 | } |
| 513 | len = cifs_strtoUCS((__le16 *)server, ses->serverName, len, |
| 514 | nls_cp); |
| 515 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 516 | (char *)server, 2 * len); |
| 517 | kfree(server); |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 518 | } |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 519 | |
| 520 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 521 | ntlmv2_hash); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 522 | |
Steve French | 1717ffc | 2006-06-08 05:41:32 +0000 | [diff] [blame] | 523 | calc_exit_1: |
| 524 | kfree(user); |
| 525 | calc_exit_2: |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 526 | return rc; |
| 527 | } |
| 528 | |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 529 | static int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 530 | CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash) |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 531 | { |
| 532 | int rc; |
| 533 | unsigned int offset = CIFS_SESS_KEY_SIZE + 8; |
| 534 | |
| 535 | if (!ses->server->secmech.sdeschmacmd5) { |
| 536 | cERROR(1, "calc_ntlmv2_hash: can't generate ntlmv2 hash\n"); |
| 537 | return -1; |
| 538 | } |
| 539 | |
| 540 | crypto_shash_setkey(ses->server->secmech.hmacmd5, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 541 | ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 542 | |
| 543 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 544 | if (rc) { |
| 545 | cERROR(1, "CalcNTLMv2_response: could not init hmacmd5"); |
| 546 | return rc; |
| 547 | } |
| 548 | |
Shirish Pargaonkar | d3ba50b | 2010-10-27 15:20:36 -0500 | [diff] [blame] | 549 | if (ses->server->secType == RawNTLMSSP) |
| 550 | memcpy(ses->auth_key.response + offset, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 551 | ses->ntlmssp->cryptkey, CIFS_SERVER_CHALLENGE_SIZE); |
Shirish Pargaonkar | d3ba50b | 2010-10-27 15:20:36 -0500 | [diff] [blame] | 552 | else |
| 553 | memcpy(ses->auth_key.response + offset, |
| 554 | ses->server->cryptkey, CIFS_SERVER_CHALLENGE_SIZE); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 555 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 556 | ses->auth_key.response + offset, ses->auth_key.len - offset); |
| 557 | |
| 558 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
| 559 | ses->auth_key.response + CIFS_SESS_KEY_SIZE); |
| 560 | |
| 561 | return rc; |
| 562 | } |
| 563 | |
| 564 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 565 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 566 | 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] | 567 | { |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 568 | int rc; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 569 | int baselen; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 570 | unsigned int tilen; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 571 | struct ntlmv2_resp *buf; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 572 | char ntlmv2_hash[16]; |
| 573 | unsigned char *tiblob = NULL; /* target info blob */ |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 574 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 575 | if (ses->server->secType == RawNTLMSSP) { |
| 576 | if (!ses->domainName) { |
Shirish Pargaonkar | f7c5445 | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 577 | rc = find_domain_name(ses, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 578 | if (rc) { |
| 579 | cERROR(1, "error %d finding domain name", rc); |
| 580 | goto setup_ntlmv2_rsp_ret; |
| 581 | } |
| 582 | } |
| 583 | } else { |
Shirish Pargaonkar | 9daa42e | 2010-10-10 13:21:05 -0500 | [diff] [blame] | 584 | rc = build_avpair_blob(ses, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 585 | if (rc) { |
| 586 | cERROR(1, "error %d building av pair blob", rc); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 587 | goto setup_ntlmv2_rsp_ret; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 588 | } |
| 589 | } |
Steve French | a8ee034 | 2006-06-05 23:34:19 +0000 | [diff] [blame] | 590 | |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 591 | baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 592 | tilen = ses->auth_key.len; |
| 593 | tiblob = ses->auth_key.response; |
| 594 | |
| 595 | ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 596 | if (!ses->auth_key.response) { |
| 597 | rc = ENOMEM; |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 598 | ses->auth_key.len = 0; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 599 | cERROR(1, "%s: Can't allocate auth blob", __func__); |
| 600 | goto setup_ntlmv2_rsp_ret; |
| 601 | } |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 602 | ses->auth_key.len += baselen; |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 603 | |
| 604 | buf = (struct ntlmv2_resp *) |
| 605 | (ses->auth_key.response + CIFS_SESS_KEY_SIZE); |
| 606 | buf->blob_signature = cpu_to_le32(0x00000101); |
| 607 | buf->reserved = 0; |
| 608 | buf->time = cpu_to_le64(cifs_UnixTimeToNT(CURRENT_TIME)); |
| 609 | get_random_bytes(&buf->client_chal, sizeof(buf->client_chal)); |
| 610 | buf->reserved2 = 0; |
| 611 | |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 612 | memcpy(ses->auth_key.response + baselen, tiblob, tilen); |
Shirish Pargaonkar | 21e7339 | 2010-10-21 06:42:55 -0500 | [diff] [blame] | 613 | |
Shirish Pargaonkar | f7c5445 | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 614 | /* calculate ntlmv2_hash */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 615 | rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 616 | if (rc) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 617 | cERROR(1, "could not get v2 hash rc %d", rc); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 618 | goto setup_ntlmv2_rsp_ret; |
| 619 | } |
Shirish Pargaonkar | f7c5445 | 2010-10-26 18:10:24 -0500 | [diff] [blame] | 620 | |
| 621 | /* calculate first part of the client response (CR1) */ |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 622 | rc = CalcNTLMv2_response(ses, ntlmv2_hash); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 623 | if (rc) { |
| 624 | cERROR(1, "Could not calculate CR1 rc: %d", rc); |
| 625 | goto setup_ntlmv2_rsp_ret; |
| 626 | } |
Steve French | b609f06 | 2007-07-09 07:55:14 +0000 | [diff] [blame] | 627 | |
Shirish Pargaonkar | 5d0d288 | 2010-10-13 18:15:00 -0500 | [diff] [blame] | 628 | /* now calculate the session key for NTLMv2 */ |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 629 | crypto_shash_setkey(ses->server->secmech.hmacmd5, |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 630 | ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE); |
Shirish Pargaonkar | 307fbd3 | 2010-10-21 14:25:17 -0500 | [diff] [blame] | 631 | |
| 632 | rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash); |
| 633 | if (rc) { |
| 634 | cERROR(1, "%s: Could not init hmacmd5\n", __func__); |
| 635 | goto setup_ntlmv2_rsp_ret; |
| 636 | } |
| 637 | |
| 638 | crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash, |
| 639 | ses->auth_key.response + CIFS_SESS_KEY_SIZE, |
| 640 | CIFS_HMAC_MD5_HASH_SIZE); |
| 641 | |
| 642 | rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash, |
| 643 | ses->auth_key.response); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 644 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 645 | setup_ntlmv2_rsp_ret: |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 646 | kfree(tiblob); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 647 | |
| 648 | return rc; |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 649 | } |
| 650 | |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 651 | int |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 652 | calc_seckey(struct cifs_ses *ses) |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 653 | { |
| 654 | int rc; |
| 655 | struct crypto_blkcipher *tfm_arc4; |
| 656 | struct scatterlist sgin, sgout; |
| 657 | struct blkcipher_desc desc; |
| 658 | unsigned char sec_key[CIFS_SESS_KEY_SIZE]; /* a nonce */ |
| 659 | |
| 660 | get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE); |
| 661 | |
| 662 | tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); |
Shirish Pargaonkar | 7a8587e | 2011-01-29 13:54:58 -0600 | [diff] [blame] | 663 | if (IS_ERR(tfm_arc4)) { |
| 664 | rc = PTR_ERR(tfm_arc4); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 665 | cERROR(1, "could not allocate crypto API arc4\n"); |
Shirish Pargaonkar | 7a8587e | 2011-01-29 13:54:58 -0600 | [diff] [blame] | 666 | return rc; |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | desc.tfm = tfm_arc4; |
| 670 | |
| 671 | crypto_blkcipher_setkey(tfm_arc4, ses->auth_key.response, |
| 672 | CIFS_SESS_KEY_SIZE); |
| 673 | |
| 674 | sg_init_one(&sgin, sec_key, CIFS_SESS_KEY_SIZE); |
Shirish Pargaonkar | d3686d5 | 2010-10-28 09:53:07 -0500 | [diff] [blame] | 675 | sg_init_one(&sgout, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE); |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 676 | |
| 677 | rc = crypto_blkcipher_encrypt(&desc, &sgout, &sgin, CIFS_CPHTXT_SIZE); |
| 678 | if (rc) { |
| 679 | cERROR(1, "could not encrypt session key rc: %d\n", rc); |
| 680 | crypto_free_blkcipher(tfm_arc4); |
| 681 | return rc; |
| 682 | } |
| 683 | |
| 684 | /* make secondary_key/nonce as session key */ |
| 685 | memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE); |
| 686 | /* and make len as that of session key only */ |
| 687 | ses->auth_key.len = CIFS_SESS_KEY_SIZE; |
| 688 | |
| 689 | crypto_free_blkcipher(tfm_arc4); |
| 690 | |
| 691 | return 0; |
| 692 | } |
| 693 | |
| 694 | void |
| 695 | cifs_crypto_shash_release(struct TCP_Server_Info *server) |
| 696 | { |
| 697 | if (server->secmech.md5) |
| 698 | crypto_free_shash(server->secmech.md5); |
| 699 | |
| 700 | if (server->secmech.hmacmd5) |
| 701 | crypto_free_shash(server->secmech.hmacmd5); |
| 702 | |
| 703 | kfree(server->secmech.sdeschmacmd5); |
| 704 | |
| 705 | kfree(server->secmech.sdescmd5); |
| 706 | } |
| 707 | |
| 708 | int |
| 709 | cifs_crypto_shash_allocate(struct TCP_Server_Info *server) |
| 710 | { |
| 711 | int rc; |
| 712 | unsigned int size; |
| 713 | |
| 714 | server->secmech.hmacmd5 = crypto_alloc_shash("hmac(md5)", 0, 0); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 715 | if (IS_ERR(server->secmech.hmacmd5)) { |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 716 | cERROR(1, "could not allocate crypto hmacmd5\n"); |
| 717 | return PTR_ERR(server->secmech.hmacmd5); |
| 718 | } |
| 719 | |
| 720 | server->secmech.md5 = crypto_alloc_shash("md5", 0, 0); |
Shirish Pargaonkar | ee2c925 | 2011-01-27 09:58:04 -0600 | [diff] [blame] | 721 | if (IS_ERR(server->secmech.md5)) { |
Shirish Pargaonkar | d2b9152 | 2010-10-21 14:25:08 -0500 | [diff] [blame] | 722 | cERROR(1, "could not allocate crypto md5\n"); |
| 723 | rc = PTR_ERR(server->secmech.md5); |
| 724 | goto crypto_allocate_md5_fail; |
| 725 | } |
| 726 | |
| 727 | size = sizeof(struct shash_desc) + |
| 728 | crypto_shash_descsize(server->secmech.hmacmd5); |
| 729 | server->secmech.sdeschmacmd5 = kmalloc(size, GFP_KERNEL); |
| 730 | if (!server->secmech.sdeschmacmd5) { |
| 731 | cERROR(1, "cifs_crypto_shash_allocate: can't alloc hmacmd5\n"); |
| 732 | rc = -ENOMEM; |
| 733 | goto crypto_allocate_hmacmd5_sdesc_fail; |
| 734 | } |
| 735 | server->secmech.sdeschmacmd5->shash.tfm = server->secmech.hmacmd5; |
| 736 | server->secmech.sdeschmacmd5->shash.flags = 0x0; |
| 737 | |
| 738 | |
| 739 | size = sizeof(struct shash_desc) + |
| 740 | crypto_shash_descsize(server->secmech.md5); |
| 741 | server->secmech.sdescmd5 = kmalloc(size, GFP_KERNEL); |
| 742 | if (!server->secmech.sdescmd5) { |
| 743 | cERROR(1, "cifs_crypto_shash_allocate: can't alloc md5\n"); |
| 744 | rc = -ENOMEM; |
| 745 | goto crypto_allocate_md5_sdesc_fail; |
| 746 | } |
| 747 | server->secmech.sdescmd5->shash.tfm = server->secmech.md5; |
| 748 | server->secmech.sdescmd5->shash.flags = 0x0; |
| 749 | |
| 750 | return 0; |
| 751 | |
| 752 | crypto_allocate_md5_sdesc_fail: |
| 753 | kfree(server->secmech.sdeschmacmd5); |
| 754 | |
| 755 | crypto_allocate_hmacmd5_sdesc_fail: |
| 756 | crypto_free_shash(server->secmech.md5); |
| 757 | |
| 758 | crypto_allocate_md5_fail: |
| 759 | crypto_free_shash(server->secmech.hmacmd5); |
| 760 | |
| 761 | return rc; |
| 762 | } |