blob: 259991bd2112b4d40bd919d5d405b2440317831d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifsencrypt.c
3 *
Steve French12b3b8f2006-02-09 21:12:47 +00004 * Copyright (C) International Business Machines Corp., 2005,2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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 Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "cifspdu.h"
Steve Frenchffdd6e42007-06-24 21:15:44 +000025#include "cifsglob.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "cifs_debug.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "cifs_unicode.h"
28#include "cifsproto.h"
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -050029#include "ntlmssp.h"
Steve French7c7b25b2006-06-01 19:20:10 +000030#include <linux/ctype.h>
Steve French6d027cf2006-06-05 16:26:05 +000031#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Jeff Layton157c2492011-04-02 07:34:30 -040033/*
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 Frenchffdd6e42007-06-24 21:15:44 +000040static int cifs_calculate_signature(const struct smb_hdr *cifs_pdu,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -050041 struct TCP_Server_Info *server, char *signature)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050043 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Shirish Pargaonkar21e73392010-10-21 06:42:55 -050045 if (cifs_pdu == NULL || signature == NULL || server == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 return -EINVAL;
47
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050048 if (!server->secmech.sdescmd5) {
49 cERROR(1, "%s: Can't generate signature\n", __func__);
50 return -1;
51 }
Steve Frenchb609f062007-07-09 07:55:14 +000052
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050053 rc = crypto_shash_init(&server->secmech.sdescmd5->shash);
54 if (rc) {
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050055 cERROR(1, "%s: Could not init md5\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050056 return rc;
57 }
58
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050059 rc = crypto_shash_update(&server->secmech.sdescmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050060 server->session_key.response, server->session_key.len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050061 if (rc) {
62 cERROR(1, "%s: Could not update with response\n", __func__);
63 return rc;
64 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050065
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050066 rc = crypto_shash_update(&server->secmech.sdescmd5->shash,
Steve Frenchbe8e3b02011-04-29 05:40:20 +000067 cifs_pdu->Protocol, be32_to_cpu(cifs_pdu->smb_buf_length));
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050068 if (rc) {
69 cERROR(1, "%s: Could not update with payload\n", __func__);
70 return rc;
71 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050072
73 rc = crypto_shash_final(&server->secmech.sdescmd5->shash, signature);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050074 if (rc)
75 cERROR(1, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -050076
Shirish Pargaonkar14cae322011-06-20 16:14:03 -050077 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Jeff Laytona0f8b4f2011-01-07 11:30:28 -050080/* must be called with server->srv_mutex held */
Steve Frenchffdd6e42007-06-24 21:15:44 +000081int cifs_sign_smb(struct smb_hdr *cifs_pdu, struct TCP_Server_Info *server,
82 __u32 *pexpected_response_sequence_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 int rc = 0;
85 char smb_signature[20];
86
Steve Frenchffdd6e42007-06-24 21:15:44 +000087 if ((cifs_pdu == NULL) || (server == NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return -EINVAL;
89
Steve Frenchffdd6e42007-06-24 21:15:44 +000090 if ((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return rc;
92
Steve French50c2f752007-07-13 00:33:32 +000093 cifs_pdu->Signature.Sequence.SequenceNumber =
94 cpu_to_le32(server->sequence_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 cifs_pdu->Signature.Sequence.Reserved = 0;
Steve French50c2f752007-07-13 00:33:32 +000096
Steve Frenchad009ac2005-04-28 22:41:05 -070097 *pexpected_response_sequence_number = server->sequence_number++;
98 server->sequence_number++;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500100 rc = cifs_calculate_signature(cifs_pdu, server, smb_signature);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000101 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
103 else
104 memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
105
106 return rc;
107}
108
Steve Frenchffdd6e42007-06-24 21:15:44 +0000109static int cifs_calc_signature2(const struct kvec *iov, int n_vec,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500110 struct TCP_Server_Info *server, char *signature)
Steve French84afc292005-12-02 13:32:45 -0800111{
Steve Frenche9917a02006-03-31 21:22:00 +0000112 int i;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500113 int rc;
Steve French84afc292005-12-02 13:32:45 -0800114
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500115 if (iov == NULL || signature == NULL || server == NULL)
Steve Frenche9917a02006-03-31 21:22:00 +0000116 return -EINVAL;
Steve French84afc292005-12-02 13:32:45 -0800117
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500118 if (!server->secmech.sdescmd5) {
119 cERROR(1, "%s: Can't generate signature\n", __func__);
120 return -1;
121 }
122
123 rc = crypto_shash_init(&server->secmech.sdescmd5->shash);
124 if (rc) {
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500125 cERROR(1, "%s: Could not init md5\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500126 return rc;
127 }
128
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500129 rc = crypto_shash_update(&server->secmech.sdescmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500130 server->session_key.response, server->session_key.len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500131 if (rc) {
132 cERROR(1, "%s: Could not update with response\n", __func__);
133 return rc;
134 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500135
Steve French50c2f752007-07-13 00:33:32 +0000136 for (i = 0; i < n_vec; i++) {
Jeff Layton745542e2007-11-03 04:34:04 +0000137 if (iov[i].iov_len == 0)
138 continue;
Steve Frenchffdd6e42007-06-24 21:15:44 +0000139 if (iov[i].iov_base == NULL) {
Steve French56234e22010-09-08 20:57:05 +0000140 cERROR(1, "null iovec entry");
Steve Frenche9917a02006-03-31 21:22:00 +0000141 return -EIO;
Jeff Layton745542e2007-11-03 04:34:04 +0000142 }
Steve Frenchffdd6e42007-06-24 21:15:44 +0000143 /* The first entry includes a length field (which does not get
Steve Frenche9917a02006-03-31 21:22:00 +0000144 signed that occupies the first 4 bytes before the header */
Steve Frenchffdd6e42007-06-24 21:15:44 +0000145 if (i == 0) {
Steve French63d25832007-11-05 21:46:10 +0000146 if (iov[0].iov_len <= 8) /* cmd field at offset 9 */
Steve Frenche9917a02006-03-31 21:22:00 +0000147 break; /* nothing to sign or corrupt header */
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500148 rc =
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500149 crypto_shash_update(&server->secmech.sdescmd5->shash,
150 iov[i].iov_base + 4, iov[i].iov_len - 4);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500151 } else {
152 rc =
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500153 crypto_shash_update(&server->secmech.sdescmd5->shash,
154 iov[i].iov_base, iov[i].iov_len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500155 }
156 if (rc) {
157 cERROR(1, "%s: Could not update with payload\n",
158 __func__);
159 return rc;
160 }
Steve Frenche9917a02006-03-31 21:22:00 +0000161 }
Steve French84afc292005-12-02 13:32:45 -0800162
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500163 rc = crypto_shash_final(&server->secmech.sdescmd5->shash, signature);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500164 if (rc)
165 cERROR(1, "%s: Could not generate md5 hash\n", __func__);
Steve French84afc292005-12-02 13:32:45 -0800166
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500167 return rc;
Steve French84afc292005-12-02 13:32:45 -0800168}
169
Jeff Laytona0f8b4f2011-01-07 11:30:28 -0500170/* must be called with server->srv_mutex held */
Steve Frenchffdd6e42007-06-24 21:15:44 +0000171int cifs_sign_smb2(struct kvec *iov, int n_vec, struct TCP_Server_Info *server,
Steve French63d25832007-11-05 21:46:10 +0000172 __u32 *pexpected_response_sequence_number)
Steve French84afc292005-12-02 13:32:45 -0800173{
174 int rc = 0;
175 char smb_signature[20];
Steve Frenchffdd6e42007-06-24 21:15:44 +0000176 struct smb_hdr *cifs_pdu = iov[0].iov_base;
Steve French84afc292005-12-02 13:32:45 -0800177
Steve Frenchffdd6e42007-06-24 21:15:44 +0000178 if ((cifs_pdu == NULL) || (server == NULL))
Steve French84afc292005-12-02 13:32:45 -0800179 return -EINVAL;
180
Steve Frenchffdd6e42007-06-24 21:15:44 +0000181 if ((cifs_pdu->Flags2 & SMBFLG2_SECURITY_SIGNATURE) == 0)
Steve French84afc292005-12-02 13:32:45 -0800182 return rc;
183
Steve Frenchffdd6e42007-06-24 21:15:44 +0000184 cifs_pdu->Signature.Sequence.SequenceNumber =
Steve French84afc292005-12-02 13:32:45 -0800185 cpu_to_le32(server->sequence_number);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000186 cifs_pdu->Signature.Sequence.Reserved = 0;
Steve French84afc292005-12-02 13:32:45 -0800187
Steve Frenchffdd6e42007-06-24 21:15:44 +0000188 *pexpected_response_sequence_number = server->sequence_number++;
189 server->sequence_number++;
Steve French84afc292005-12-02 13:32:45 -0800190
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500191 rc = cifs_calc_signature2(iov, n_vec, server, smb_signature);
Steve Frenchffdd6e42007-06-24 21:15:44 +0000192 if (rc)
193 memset(cifs_pdu->Signature.SecuritySignature, 0, 8);
194 else
195 memcpy(cifs_pdu->Signature.SecuritySignature, smb_signature, 8);
Steve French84afc292005-12-02 13:32:45 -0800196
Steve Frenchffdd6e42007-06-24 21:15:44 +0000197 return rc;
Steve French84afc292005-12-02 13:32:45 -0800198}
199
Steve Frenchb609f062007-07-09 07:55:14 +0000200int cifs_verify_signature(struct smb_hdr *cifs_pdu,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500201 struct TCP_Server_Info *server,
Steve Frenchffdd6e42007-06-24 21:15:44 +0000202 __u32 expected_sequence_number)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Steve Frenchc8e56f12010-09-08 21:10:58 +0000204 unsigned int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 char server_response_sig[8];
206 char what_we_think_sig_should_be[20];
207
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500208 if (cifs_pdu == NULL || server == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return -EINVAL;
210
Jeff Layton9c4843e2011-06-06 15:40:23 -0400211 if (!server->session_estab)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return 0;
213
214 if (cifs_pdu->Command == SMB_COM_LOCKING_ANDX) {
Steve French50c2f752007-07-13 00:33:32 +0000215 struct smb_com_lock_req *pSMB =
Steve Frenchffdd6e42007-06-24 21:15:44 +0000216 (struct smb_com_lock_req *)cifs_pdu;
217 if (pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 0;
219 }
220
Steve French50c2f752007-07-13 00:33:32 +0000221 /* BB what if signatures are supposed to be on for session but
222 server does not send one? BB */
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 /* Do not need to verify session setups with signature "BSRSPYL " */
Steve French50c2f752007-07-13 00:33:32 +0000225 if (memcmp(cifs_pdu->Signature.SecuritySignature, "BSRSPYL ", 8) == 0)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000226 cFYI(1, "dummy signature received for smb command 0x%x",
227 cifs_pdu->Command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* save off the origiginal signature so we can modify the smb and check
230 its signature against what the server sent */
Steve French50c2f752007-07-13 00:33:32 +0000231 memcpy(server_response_sig, cifs_pdu->Signature.SecuritySignature, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Steve French50c2f752007-07-13 00:33:32 +0000233 cifs_pdu->Signature.Sequence.SequenceNumber =
234 cpu_to_le32(expected_sequence_number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 cifs_pdu->Signature.Sequence.Reserved = 0;
236
Jeff Layton157c2492011-04-02 07:34:30 -0400237 mutex_lock(&server->srv_mutex);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500238 rc = cifs_calculate_signature(cifs_pdu, server,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 what_we_think_sig_should_be);
Jeff Layton157c2492011-04-02 07:34:30 -0400240 mutex_unlock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Steve French50c2f752007-07-13 00:33:32 +0000242 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return rc;
244
Steve French50c2f752007-07-13 00:33:32 +0000245/* cifs_dump_mem("what we think it should be: ",
246 what_we_think_sig_should_be, 16); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Steve French50c2f752007-07-13 00:33:32 +0000248 if (memcmp(server_response_sig, what_we_think_sig_should_be, 8))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return -EACCES;
250 else
251 return 0;
252
253}
254
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500255/* first calculate 24 bytes ntlm response and then 16 byte session key */
Steve French96daf2b2011-05-27 04:34:02 +0000256int setup_ntlm_response(struct cifs_ses *ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600258 int rc = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500259 unsigned int temp_len = CIFS_SESS_KEY_SIZE + CIFS_AUTH_RESP_SIZE;
260 char temp_key[CIFS_SESS_KEY_SIZE];
261
262 if (!ses)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return -EINVAL;
264
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500265 ses->auth_key.response = kmalloc(temp_len, GFP_KERNEL);
266 if (!ses->auth_key.response) {
267 cERROR(1, "NTLM can't allocate (%u bytes) memory", temp_len);
268 return -ENOMEM;
269 }
270 ses->auth_key.len = temp_len;
271
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600272 rc = SMBNTencrypt(ses->password, ses->server->cryptkey,
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500273 ses->auth_key.response + CIFS_SESS_KEY_SIZE);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600274 if (rc) {
275 cFYI(1, "%s Can't generate NTLM response, error: %d",
276 __func__, rc);
277 return rc;
278 }
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500279
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600280 rc = E_md4hash(ses->password, temp_key);
281 if (rc) {
282 cFYI(1, "%s Can't generate NT hash, error: %d", __func__, rc);
283 return rc;
284 }
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500285
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600286 rc = mdfour(ses->auth_key.response, temp_key, CIFS_SESS_KEY_SIZE);
287 if (rc)
288 cFYI(1, "%s Can't generate NTLM session key, error: %d",
289 __func__, rc);
290
291 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Steve French7c7b25b2006-06-01 19:20:10 +0000294#ifdef CONFIG_CIFS_WEAK_PW_HASH
Steve French43988d72011-04-19 18:23:31 +0000295int calc_lanman_hash(const char *password, const char *cryptkey, bool encrypt,
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500296 char *lnm_session_key)
Steve French7c7b25b2006-06-01 19:20:10 +0000297{
298 int i;
Steve French43988d72011-04-19 18:23:31 +0000299 int rc;
Steve French7c7b25b2006-06-01 19:20:10 +0000300 char password_with_pad[CIFS_ENCPWD_SIZE];
301
302 memset(password_with_pad, 0, CIFS_ENCPWD_SIZE);
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500303 if (password)
304 strncpy(password_with_pad, password, CIFS_ENCPWD_SIZE);
Steve French7c7b25b2006-06-01 19:20:10 +0000305
Jeff Layton04912d62010-04-24 07:57:45 -0400306 if (!encrypt && global_secflags & CIFSSEC_MAY_PLNTXT) {
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500307 memset(lnm_session_key, 0, CIFS_SESS_KEY_SIZE);
308 memcpy(lnm_session_key, password_with_pad,
309 CIFS_ENCPWD_SIZE);
Steve French43988d72011-04-19 18:23:31 +0000310 return 0;
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500311 }
Steve Frenchbdc4bf6e2006-06-02 22:57:13 +0000312
Steve French7c7b25b2006-06-01 19:20:10 +0000313 /* calculate old style session key */
314 /* calling toupper is less broken than repeatedly
315 calling nls_toupper would be since that will never
316 work for UTF8, but neither handles multibyte code pages
317 but the only alternative would be converting to UCS-16 (Unicode)
318 (using a routine something like UniStrupr) then
319 uppercasing and then converting back from Unicode - which
320 would only worth doing it if we knew it were utf8. Basically
321 utf8 and other multibyte codepages each need their own strupper
322 function since a byte at a time will ont work. */
323
Shirish Pargaonkaref571ca2008-07-24 15:56:05 +0000324 for (i = 0; i < CIFS_ENCPWD_SIZE; i++)
Steve French7c7b25b2006-06-01 19:20:10 +0000325 password_with_pad[i] = toupper(password_with_pad[i]);
Steve French7c7b25b2006-06-01 19:20:10 +0000326
Steve French43988d72011-04-19 18:23:31 +0000327 rc = SMBencrypt(password_with_pad, cryptkey, lnm_session_key);
Jeff Layton4e53a3f2008-12-05 20:41:21 -0500328
Steve French43988d72011-04-19 18:23:31 +0000329 return rc;
Steve French7c7b25b2006-06-01 19:20:10 +0000330}
331#endif /* CIFS_WEAK_PW_HASH */
332
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500333/* Build a proper attribute value/target info pairs blob.
334 * Fill in netbios and dns domain name and workstation name
335 * and client time (total five av pairs and + one end of fields indicator.
336 * Allocate domain name which gets freed when session struct is deallocated.
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500337 */
338static int
Steve French96daf2b2011-05-27 04:34:02 +0000339build_avpair_blob(struct cifs_ses *ses, const struct nls_table *nls_cp)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500340{
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500341 unsigned int dlen;
342 unsigned int wlen;
343 unsigned int size = 6 * sizeof(struct ntlmssp2_name);
344 __le64 curtime;
345 char *defdmname = "WORKGROUP";
346 unsigned char *blobptr;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500347 struct ntlmssp2_name *attrptr;
348
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500349 if (!ses->domainName) {
350 ses->domainName = kstrdup(defdmname, GFP_KERNEL);
351 if (!ses->domainName)
352 return -ENOMEM;
353 }
354
355 dlen = strlen(ses->domainName);
356 wlen = strlen(ses->server->hostname);
357
358 /* The length of this blob is a size which is
359 * six times the size of a structure which holds name/size +
360 * two times the unicode length of a domain name +
361 * two times the unicode length of a server name +
362 * size of a timestamp (which is 8 bytes).
363 */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500364 ses->auth_key.len = size + 2 * (2 * dlen) + 2 * (2 * wlen) + 8;
365 ses->auth_key.response = kzalloc(ses->auth_key.len, GFP_KERNEL);
366 if (!ses->auth_key.response) {
367 ses->auth_key.len = 0;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500368 cERROR(1, "Challenge target info allocation failure");
369 return -ENOMEM;
370 }
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500371
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500372 blobptr = ses->auth_key.response;
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500373 attrptr = (struct ntlmssp2_name *) blobptr;
374
375 attrptr->type = cpu_to_le16(NTLMSSP_AV_NB_DOMAIN_NAME);
376 attrptr->length = cpu_to_le16(2 * dlen);
377 blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
378 cifs_strtoUCS((__le16 *)blobptr, ses->domainName, dlen, nls_cp);
379
380 blobptr += 2 * dlen;
381 attrptr = (struct ntlmssp2_name *) blobptr;
382
383 attrptr->type = cpu_to_le16(NTLMSSP_AV_NB_COMPUTER_NAME);
384 attrptr->length = cpu_to_le16(2 * wlen);
385 blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
386 cifs_strtoUCS((__le16 *)blobptr, ses->server->hostname, wlen, nls_cp);
387
388 blobptr += 2 * wlen;
389 attrptr = (struct ntlmssp2_name *) blobptr;
390
391 attrptr->type = cpu_to_le16(NTLMSSP_AV_DNS_DOMAIN_NAME);
392 attrptr->length = cpu_to_le16(2 * dlen);
393 blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
394 cifs_strtoUCS((__le16 *)blobptr, ses->domainName, dlen, nls_cp);
395
396 blobptr += 2 * dlen;
397 attrptr = (struct ntlmssp2_name *) blobptr;
398
399 attrptr->type = cpu_to_le16(NTLMSSP_AV_DNS_COMPUTER_NAME);
400 attrptr->length = cpu_to_le16(2 * wlen);
401 blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
402 cifs_strtoUCS((__le16 *)blobptr, ses->server->hostname, wlen, nls_cp);
403
404 blobptr += 2 * wlen;
405 attrptr = (struct ntlmssp2_name *) blobptr;
406
407 attrptr->type = cpu_to_le16(NTLMSSP_AV_TIMESTAMP);
408 attrptr->length = cpu_to_le16(sizeof(__le64));
409 blobptr = (unsigned char *)attrptr + sizeof(struct ntlmssp2_name);
410 curtime = cpu_to_le64(cifs_UnixTimeToNT(CURRENT_TIME));
411 memcpy(blobptr, &curtime, sizeof(__le64));
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500412
413 return 0;
414}
415
416/* Server has provided av pairs/target info in the type 2 challenge
417 * packet and we have plucked it and stored within smb session.
418 * We parse that blob here to find netbios domain name to be used
419 * as part of ntlmv2 authentication (in Target String), if not already
420 * specified on the command line.
421 * If this function returns without any error but without fetching
422 * domain name, authentication may fail against some server but
423 * may not fail against other (those who are not very particular
424 * about target string i.e. for some, just user name might suffice.
425 */
426static int
Steve French96daf2b2011-05-27 04:34:02 +0000427find_domain_name(struct cifs_ses *ses, const struct nls_table *nls_cp)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500428{
429 unsigned int attrsize;
430 unsigned int type;
431 unsigned int onesize = sizeof(struct ntlmssp2_name);
432 unsigned char *blobptr;
433 unsigned char *blobend;
434 struct ntlmssp2_name *attrptr;
435
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500436 if (!ses->auth_key.len || !ses->auth_key.response)
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500437 return 0;
438
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500439 blobptr = ses->auth_key.response;
440 blobend = blobptr + ses->auth_key.len;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500441
442 while (blobptr + onesize < blobend) {
443 attrptr = (struct ntlmssp2_name *) blobptr;
444 type = le16_to_cpu(attrptr->type);
445 if (type == NTLMSSP_AV_EOL)
446 break;
447 blobptr += 2; /* advance attr type */
448 attrsize = le16_to_cpu(attrptr->length);
449 blobptr += 2; /* advance attr size */
450 if (blobptr + attrsize > blobend)
451 break;
452 if (type == NTLMSSP_AV_NB_DOMAIN_NAME) {
453 if (!attrsize)
454 break;
455 if (!ses->domainName) {
456 ses->domainName =
457 kmalloc(attrsize + 1, GFP_KERNEL);
458 if (!ses->domainName)
459 return -ENOMEM;
460 cifs_from_ucs2(ses->domainName,
461 (__le16 *)blobptr, attrsize, attrsize,
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500462 nls_cp, false);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500463 break;
464 }
465 }
466 blobptr += attrsize; /* advance attr value */
467 }
468
469 return 0;
470}
471
Steve French96daf2b2011-05-27 04:34:02 +0000472static int calc_ntlmv2_hash(struct cifs_ses *ses, char *ntlmv2_hash,
Steve French50c2f752007-07-13 00:33:32 +0000473 const struct nls_table *nls_cp)
Steve Frencha8ee0342006-06-05 23:34:19 +0000474{
475 int rc = 0;
476 int len;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500477 char nt_hash[CIFS_NTHASH_SIZE];
Steve French50c2f752007-07-13 00:33:32 +0000478 wchar_t *user;
479 wchar_t *domain;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500480 wchar_t *server;
Steve Frenchc8e56f12010-09-08 21:10:58 +0000481
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500482 if (!ses->server->secmech.sdeschmacmd5) {
483 cERROR(1, "calc_ntlmv2_hash: can't generate ntlmv2 hash\n");
484 return -1;
485 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000486
487 /* calculate md4 hash of password */
488 E_md4hash(ses->password, nt_hash);
489
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500490 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5, nt_hash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500491 CIFS_NTHASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500492 if (rc) {
493 cERROR(1, "%s: Could not set NT Hash as a key", __func__);
494 return rc;
495 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500496
497 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
498 if (rc) {
499 cERROR(1, "calc_ntlmv2_hash: could not init hmacmd5\n");
500 return rc;
501 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000502
Steve French8727c8a2011-02-25 01:11:56 -0600503 /* convert ses->user_name to unicode and uppercase */
504 len = strlen(ses->user_name);
Steve French1717ffc2006-06-08 05:41:32 +0000505 user = kmalloc(2 + (len * 2), GFP_KERNEL);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500506 if (user == NULL) {
507 cERROR(1, "calc_ntlmv2_hash: user mem alloc failure\n");
508 rc = -ENOMEM;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500509 return rc;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500510 }
Steve French8727c8a2011-02-25 01:11:56 -0600511 len = cifs_strtoUCS((__le16 *)user, ses->user_name, len, nls_cp);
Steve French1717ffc2006-06-08 05:41:32 +0000512 UniStrupr(user);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500513
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500514 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500515 (char *)user, 2 * len);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500516 kfree(user);
517 if (rc) {
518 cERROR(1, "%s: Could not update with user\n", __func__);
519 return rc;
520 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000521
522 /* convert ses->domainName to unicode and uppercase */
Steve French50c2f752007-07-13 00:33:32 +0000523 if (ses->domainName) {
Steve French1717ffc2006-06-08 05:41:32 +0000524 len = strlen(ses->domainName);
Steve Frencha8ee0342006-06-05 23:34:19 +0000525
Steve French50c2f752007-07-13 00:33:32 +0000526 domain = kmalloc(2 + (len * 2), GFP_KERNEL);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500527 if (domain == NULL) {
528 cERROR(1, "calc_ntlmv2_hash: domain mem alloc failure");
529 rc = -ENOMEM;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500530 return rc;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500531 }
Cyril Gorcunov8f2376a2007-10-14 17:58:43 +0000532 len = cifs_strtoUCS((__le16 *)domain, ses->domainName, len,
533 nls_cp);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500534 rc =
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500535 crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
536 (char *)domain, 2 * len);
Steve French1717ffc2006-06-08 05:41:32 +0000537 kfree(domain);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500538 if (rc) {
539 cERROR(1, "%s: Could not update with domain\n",
540 __func__);
541 return rc;
542 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500543 } else if (ses->serverName) {
544 len = strlen(ses->serverName);
545
546 server = kmalloc(2 + (len * 2), GFP_KERNEL);
547 if (server == NULL) {
548 cERROR(1, "calc_ntlmv2_hash: server mem alloc failure");
549 rc = -ENOMEM;
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500550 return rc;
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500551 }
552 len = cifs_strtoUCS((__le16 *)server, ses->serverName, len,
553 nls_cp);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500554 rc =
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500555 crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
556 (char *)server, 2 * len);
557 kfree(server);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500558 if (rc) {
559 cERROR(1, "%s: Could not update with server\n",
560 __func__);
561 return rc;
562 }
Steve French1717ffc2006-06-08 05:41:32 +0000563 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500564
565 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500566 ntlmv2_hash);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500567 if (rc)
568 cERROR(1, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500569
Steve Frencha8ee0342006-06-05 23:34:19 +0000570 return rc;
571}
572
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500573static int
Steve French96daf2b2011-05-27 04:34:02 +0000574CalcNTLMv2_response(const struct cifs_ses *ses, char *ntlmv2_hash)
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500575{
576 int rc;
577 unsigned int offset = CIFS_SESS_KEY_SIZE + 8;
578
579 if (!ses->server->secmech.sdeschmacmd5) {
580 cERROR(1, "calc_ntlmv2_hash: can't generate ntlmv2 hash\n");
581 return -1;
582 }
583
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500584 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500585 ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500586 if (rc) {
587 cERROR(1, "%s: Could not set NTLMV2 Hash as a key", __func__);
588 return rc;
589 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500590
591 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
592 if (rc) {
593 cERROR(1, "CalcNTLMv2_response: could not init hmacmd5");
594 return rc;
595 }
596
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -0500597 if (ses->server->secType == RawNTLMSSP)
598 memcpy(ses->auth_key.response + offset,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500599 ses->ntlmssp->cryptkey, CIFS_SERVER_CHALLENGE_SIZE);
Shirish Pargaonkard3ba50b2010-10-27 15:20:36 -0500600 else
601 memcpy(ses->auth_key.response + offset,
602 ses->server->cryptkey, CIFS_SERVER_CHALLENGE_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500603 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500604 ses->auth_key.response + offset, ses->auth_key.len - offset);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500605 if (rc) {
606 cERROR(1, "%s: Could not update with response\n", __func__);
607 return rc;
608 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500609
610 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
611 ses->auth_key.response + CIFS_SESS_KEY_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500612 if (rc)
613 cERROR(1, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500614
615 return rc;
616}
617
618
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500619int
Steve French96daf2b2011-05-27 04:34:02 +0000620setup_ntlmv2_rsp(struct cifs_ses *ses, const struct nls_table *nls_cp)
Steve French9fbc5902010-08-20 20:42:26 +0000621{
Steve Frenchc8e56f12010-09-08 21:10:58 +0000622 int rc;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500623 int baselen;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500624 unsigned int tilen;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500625 struct ntlmv2_resp *buf;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500626 char ntlmv2_hash[16];
627 unsigned char *tiblob = NULL; /* target info blob */
Steve French6d027cf2006-06-05 16:26:05 +0000628
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500629 if (ses->server->secType == RawNTLMSSP) {
630 if (!ses->domainName) {
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500631 rc = find_domain_name(ses, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500632 if (rc) {
633 cERROR(1, "error %d finding domain name", rc);
634 goto setup_ntlmv2_rsp_ret;
635 }
636 }
637 } else {
Shirish Pargaonkar9daa42e2010-10-10 13:21:05 -0500638 rc = build_avpair_blob(ses, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500639 if (rc) {
640 cERROR(1, "error %d building av pair blob", rc);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500641 goto setup_ntlmv2_rsp_ret;
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500642 }
643 }
Steve Frencha8ee0342006-06-05 23:34:19 +0000644
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500645 baselen = CIFS_SESS_KEY_SIZE + sizeof(struct ntlmv2_resp);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500646 tilen = ses->auth_key.len;
647 tiblob = ses->auth_key.response;
648
649 ses->auth_key.response = kmalloc(baselen + tilen, GFP_KERNEL);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500650 if (!ses->auth_key.response) {
651 rc = ENOMEM;
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500652 ses->auth_key.len = 0;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500653 cERROR(1, "%s: Can't allocate auth blob", __func__);
654 goto setup_ntlmv2_rsp_ret;
655 }
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500656 ses->auth_key.len += baselen;
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500657
658 buf = (struct ntlmv2_resp *)
659 (ses->auth_key.response + CIFS_SESS_KEY_SIZE);
660 buf->blob_signature = cpu_to_le32(0x00000101);
661 buf->reserved = 0;
662 buf->time = cpu_to_le64(cifs_UnixTimeToNT(CURRENT_TIME));
663 get_random_bytes(&buf->client_chal, sizeof(buf->client_chal));
664 buf->reserved2 = 0;
665
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500666 memcpy(ses->auth_key.response + baselen, tiblob, tilen);
Shirish Pargaonkar21e73392010-10-21 06:42:55 -0500667
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500668 /* calculate ntlmv2_hash */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500669 rc = calc_ntlmv2_hash(ses, ntlmv2_hash, nls_cp);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500670 if (rc) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000671 cERROR(1, "could not get v2 hash rc %d", rc);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500672 goto setup_ntlmv2_rsp_ret;
673 }
Shirish Pargaonkarf7c5445a2010-10-26 18:10:24 -0500674
675 /* calculate first part of the client response (CR1) */
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500676 rc = CalcNTLMv2_response(ses, ntlmv2_hash);
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500677 if (rc) {
678 cERROR(1, "Could not calculate CR1 rc: %d", rc);
679 goto setup_ntlmv2_rsp_ret;
680 }
Steve Frenchb609f062007-07-09 07:55:14 +0000681
Shirish Pargaonkar5d0d2882010-10-13 18:15:00 -0500682 /* now calculate the session key for NTLMv2 */
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500683 rc = crypto_shash_setkey(ses->server->secmech.hmacmd5,
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500684 ntlmv2_hash, CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500685 if (rc) {
686 cERROR(1, "%s: Could not set NTLMV2 Hash as a key", __func__);
687 goto setup_ntlmv2_rsp_ret;
688 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500689
690 rc = crypto_shash_init(&ses->server->secmech.sdeschmacmd5->shash);
691 if (rc) {
692 cERROR(1, "%s: Could not init hmacmd5\n", __func__);
693 goto setup_ntlmv2_rsp_ret;
694 }
695
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500696 rc = crypto_shash_update(&ses->server->secmech.sdeschmacmd5->shash,
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500697 ses->auth_key.response + CIFS_SESS_KEY_SIZE,
698 CIFS_HMAC_MD5_HASH_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500699 if (rc) {
700 cERROR(1, "%s: Could not update with response\n", __func__);
701 goto setup_ntlmv2_rsp_ret;
702 }
Shirish Pargaonkar307fbd32010-10-21 14:25:17 -0500703
704 rc = crypto_shash_final(&ses->server->secmech.sdeschmacmd5->shash,
705 ses->auth_key.response);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500706 if (rc)
707 cERROR(1, "%s: Could not generate md5 hash\n", __func__);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500708
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500709setup_ntlmv2_rsp_ret:
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500710 kfree(tiblob);
Shirish Pargaonkar2b149f12010-09-18 22:02:18 -0500711
712 return rc;
Steve French6d027cf2006-06-05 16:26:05 +0000713}
714
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500715int
Steve French96daf2b2011-05-27 04:34:02 +0000716calc_seckey(struct cifs_ses *ses)
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500717{
718 int rc;
719 struct crypto_blkcipher *tfm_arc4;
720 struct scatterlist sgin, sgout;
721 struct blkcipher_desc desc;
722 unsigned char sec_key[CIFS_SESS_KEY_SIZE]; /* a nonce */
723
724 get_random_bytes(sec_key, CIFS_SESS_KEY_SIZE);
725
726 tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC);
Shirish Pargaonkar7a8587e2011-01-29 13:54:58 -0600727 if (IS_ERR(tfm_arc4)) {
728 rc = PTR_ERR(tfm_arc4);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500729 cERROR(1, "could not allocate crypto API arc4\n");
Shirish Pargaonkar7a8587e2011-01-29 13:54:58 -0600730 return rc;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500731 }
732
733 desc.tfm = tfm_arc4;
734
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500735 rc = crypto_blkcipher_setkey(tfm_arc4, ses->auth_key.response,
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500736 CIFS_SESS_KEY_SIZE);
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500737 if (rc) {
738 cERROR(1, "%s: Could not set response as a key", __func__);
739 return rc;
740 }
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500741
742 sg_init_one(&sgin, sec_key, CIFS_SESS_KEY_SIZE);
Shirish Pargaonkard3686d52010-10-28 09:53:07 -0500743 sg_init_one(&sgout, ses->ntlmssp->ciphertext, CIFS_CPHTXT_SIZE);
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500744
745 rc = crypto_blkcipher_encrypt(&desc, &sgout, &sgin, CIFS_CPHTXT_SIZE);
746 if (rc) {
747 cERROR(1, "could not encrypt session key rc: %d\n", rc);
748 crypto_free_blkcipher(tfm_arc4);
749 return rc;
750 }
751
752 /* make secondary_key/nonce as session key */
753 memcpy(ses->auth_key.response, sec_key, CIFS_SESS_KEY_SIZE);
754 /* and make len as that of session key only */
755 ses->auth_key.len = CIFS_SESS_KEY_SIZE;
756
757 crypto_free_blkcipher(tfm_arc4);
758
Shirish Pargaonkar14cae322011-06-20 16:14:03 -0500759 return rc;
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500760}
761
762void
763cifs_crypto_shash_release(struct TCP_Server_Info *server)
764{
765 if (server->secmech.md5)
766 crypto_free_shash(server->secmech.md5);
767
768 if (server->secmech.hmacmd5)
769 crypto_free_shash(server->secmech.hmacmd5);
770
771 kfree(server->secmech.sdeschmacmd5);
772
773 kfree(server->secmech.sdescmd5);
774}
775
776int
777cifs_crypto_shash_allocate(struct TCP_Server_Info *server)
778{
779 int rc;
780 unsigned int size;
781
782 server->secmech.hmacmd5 = crypto_alloc_shash("hmac(md5)", 0, 0);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600783 if (IS_ERR(server->secmech.hmacmd5)) {
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500784 cERROR(1, "could not allocate crypto hmacmd5\n");
785 return PTR_ERR(server->secmech.hmacmd5);
786 }
787
788 server->secmech.md5 = crypto_alloc_shash("md5", 0, 0);
Shirish Pargaonkaree2c9252011-01-27 09:58:04 -0600789 if (IS_ERR(server->secmech.md5)) {
Shirish Pargaonkard2b91522010-10-21 14:25:08 -0500790 cERROR(1, "could not allocate crypto md5\n");
791 rc = PTR_ERR(server->secmech.md5);
792 goto crypto_allocate_md5_fail;
793 }
794
795 size = sizeof(struct shash_desc) +
796 crypto_shash_descsize(server->secmech.hmacmd5);
797 server->secmech.sdeschmacmd5 = kmalloc(size, GFP_KERNEL);
798 if (!server->secmech.sdeschmacmd5) {
799 cERROR(1, "cifs_crypto_shash_allocate: can't alloc hmacmd5\n");
800 rc = -ENOMEM;
801 goto crypto_allocate_hmacmd5_sdesc_fail;
802 }
803 server->secmech.sdeschmacmd5->shash.tfm = server->secmech.hmacmd5;
804 server->secmech.sdeschmacmd5->shash.flags = 0x0;
805
806
807 size = sizeof(struct shash_desc) +
808 crypto_shash_descsize(server->secmech.md5);
809 server->secmech.sdescmd5 = kmalloc(size, GFP_KERNEL);
810 if (!server->secmech.sdescmd5) {
811 cERROR(1, "cifs_crypto_shash_allocate: can't alloc md5\n");
812 rc = -ENOMEM;
813 goto crypto_allocate_md5_sdesc_fail;
814 }
815 server->secmech.sdescmd5->shash.tfm = server->secmech.md5;
816 server->secmech.sdescmd5->shash.flags = 0x0;
817
818 return 0;
819
820crypto_allocate_md5_sdesc_fail:
821 kfree(server->secmech.sdeschmacmd5);
822
823crypto_allocate_hmacmd5_sdesc_fail:
824 crypto_free_shash(server->secmech.md5);
825
826crypto_allocate_md5_fail:
827 crypto_free_shash(server->secmech.hmacmd5);
828
829 return rc;
830}