blob: 390b0d0198f8fb13ae3b39854489dd128977b4f4 [file] [log] [blame]
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +04001/*
2 * fs/cifs/smb2transport.c
3 *
4 * Copyright (C) International Business Machines Corp., 2002, 2011
5 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Jeremy Allison (jra@samba.org) 2006
8 * Pavel Shilovsky (pshilovsky@samba.org) 2012
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>
26#include <linux/list.h>
27#include <linux/wait.h>
28#include <linux/net.h>
29#include <linux/delay.h>
30#include <linux/uaccess.h>
31#include <asm/processor.h>
32#include <linux/mempool.h>
Jeff Laytonfb308a62012-09-18 16:20:35 -070033#include <linux/highmem.h>
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040034#include "smb2pdu.h"
35#include "cifsglob.h"
36#include "cifsproto.h"
37#include "smb2proto.h"
38#include "cifs_debug.h"
39#include "smb2status.h"
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -070040#include "smb2glob.h"
41
Steve French95dc8dd2013-07-04 10:35:21 -050042static int
43smb2_crypto_shash_allocate(struct TCP_Server_Info *server)
44{
Jeff Laytonba482022013-07-31 13:48:00 -040045 int rc;
Steve French95dc8dd2013-07-04 10:35:21 -050046 unsigned int size;
47
48 if (server->secmech.sdeschmacsha256 != NULL)
49 return 0; /* already allocated */
50
51 server->secmech.hmacsha256 = crypto_alloc_shash("hmac(sha256)", 0, 0);
52 if (IS_ERR(server->secmech.hmacsha256)) {
53 cifs_dbg(VFS, "could not allocate crypto hmacsha256\n");
Jeff Laytonba482022013-07-31 13:48:00 -040054 rc = PTR_ERR(server->secmech.hmacsha256);
55 server->secmech.hmacsha256 = NULL;
56 return rc;
Steve French95dc8dd2013-07-04 10:35:21 -050057 }
58
59 size = sizeof(struct shash_desc) +
60 crypto_shash_descsize(server->secmech.hmacsha256);
61 server->secmech.sdeschmacsha256 = kmalloc(size, GFP_KERNEL);
62 if (!server->secmech.sdeschmacsha256) {
63 crypto_free_shash(server->secmech.hmacsha256);
64 server->secmech.hmacsha256 = NULL;
65 return -ENOMEM;
66 }
67 server->secmech.sdeschmacsha256->shash.tfm = server->secmech.hmacsha256;
68 server->secmech.sdeschmacsha256->shash.flags = 0x0;
69
70 return 0;
71}
72
73static int
74smb3_crypto_shash_allocate(struct TCP_Server_Info *server)
75{
76 unsigned int size;
77 int rc;
78
79 if (server->secmech.sdesccmacaes != NULL)
80 return 0; /* already allocated */
81
82 rc = smb2_crypto_shash_allocate(server);
83 if (rc)
84 return rc;
85
86 server->secmech.cmacaes = crypto_alloc_shash("cmac(aes)", 0, 0);
87 if (IS_ERR(server->secmech.cmacaes)) {
88 cifs_dbg(VFS, "could not allocate crypto cmac-aes");
89 kfree(server->secmech.sdeschmacsha256);
90 server->secmech.sdeschmacsha256 = NULL;
91 crypto_free_shash(server->secmech.hmacsha256);
92 server->secmech.hmacsha256 = NULL;
Jeff Laytonba482022013-07-31 13:48:00 -040093 rc = PTR_ERR(server->secmech.cmacaes);
94 server->secmech.cmacaes = NULL;
95 return rc;
Steve French95dc8dd2013-07-04 10:35:21 -050096 }
97
98 size = sizeof(struct shash_desc) +
99 crypto_shash_descsize(server->secmech.cmacaes);
100 server->secmech.sdesccmacaes = kmalloc(size, GFP_KERNEL);
101 if (!server->secmech.sdesccmacaes) {
102 cifs_dbg(VFS, "%s: Can't alloc cmacaes\n", __func__);
103 kfree(server->secmech.sdeschmacsha256);
104 server->secmech.sdeschmacsha256 = NULL;
105 crypto_free_shash(server->secmech.hmacsha256);
106 crypto_free_shash(server->secmech.cmacaes);
107 server->secmech.hmacsha256 = NULL;
108 server->secmech.cmacaes = NULL;
109 return -ENOMEM;
110 }
111 server->secmech.sdesccmacaes->shash.tfm = server->secmech.cmacaes;
112 server->secmech.sdesccmacaes->shash.flags = 0x0;
113
114 return 0;
115}
116
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500117static struct cifs_ses *
Sachin Prabhud8fd99d2017-03-03 15:41:38 -0800118smb2_find_smb_ses_unlocked(struct TCP_Server_Info *server, __u64 ses_id)
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500119{
120 struct cifs_ses *ses;
121
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500122 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
Sachin Prabhud8fd99d2017-03-03 15:41:38 -0800123 if (ses->Suid != ses_id)
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500124 continue;
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500125 return ses;
126 }
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500127
128 return NULL;
129}
130
Sachin Prabhud8fd99d2017-03-03 15:41:38 -0800131struct cifs_ses *
132smb2_find_smb_ses(struct TCP_Server_Info *server, __u64 ses_id)
133{
134 struct cifs_ses *ses;
135
136 spin_lock(&cifs_tcp_ses_lock);
137 ses = smb2_find_smb_ses_unlocked(server, ses_id);
138 spin_unlock(&cifs_tcp_ses_lock);
139
140 return ses;
141}
142
143static struct cifs_tcon *
144smb2_find_smb_sess_tcon_unlocked(struct cifs_ses *ses, __u32 tid)
145{
146 struct cifs_tcon *tcon;
147
148 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
149 if (tcon->tid != tid)
150 continue;
151 ++tcon->tc_count;
152 return tcon;
153 }
154
155 return NULL;
156}
157
158/*
159 * Obtain tcon corresponding to the tid in the given
160 * cifs_ses
161 */
162
163struct cifs_tcon *
164smb2_find_smb_tcon(struct TCP_Server_Info *server, __u64 ses_id, __u32 tid)
165{
166 struct cifs_ses *ses;
167 struct cifs_tcon *tcon;
168
169 spin_lock(&cifs_tcp_ses_lock);
170 ses = smb2_find_smb_ses_unlocked(server, ses_id);
171 if (!ses) {
172 spin_unlock(&cifs_tcp_ses_lock);
173 return NULL;
174 }
175 tcon = smb2_find_smb_sess_tcon_unlocked(ses, tid);
176 spin_unlock(&cifs_tcp_ses_lock);
177
178 return tcon;
179}
Steve French95dc8dd2013-07-04 10:35:21 -0500180
Steve French38107d42012-12-08 22:08:06 -0600181int
Jeff Layton0b688cf2012-09-18 16:20:34 -0700182smb2_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700183{
Al Viro16c568e2015-11-12 22:46:49 -0500184 int rc;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700185 unsigned char smb2_signature[SMB2_HMACSHA256_SIZE];
186 unsigned char *sigptr = smb2_signature;
Jeff Layton0b688cf2012-09-18 16:20:34 -0700187 struct kvec *iov = rqst->rq_iov;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700188 struct smb2_hdr *smb2_pdu = (struct smb2_hdr *)iov[0].iov_base;
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500189 struct cifs_ses *ses;
190
Sachin Prabhud8fd99d2017-03-03 15:41:38 -0800191 ses = smb2_find_smb_ses(server, smb2_pdu->SessionId);
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500192 if (!ses) {
193 cifs_dbg(VFS, "%s: Could not find session\n", __func__);
194 return 0;
195 }
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700196
197 memset(smb2_signature, 0x0, SMB2_HMACSHA256_SIZE);
198 memset(smb2_pdu->Signature, 0x0, SMB2_SIGNATURE_SIZE);
199
Steve French95dc8dd2013-07-04 10:35:21 -0500200 rc = smb2_crypto_shash_allocate(server);
201 if (rc) {
202 cifs_dbg(VFS, "%s: shah256 alloc failed\n", __func__);
203 return rc;
204 }
205
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700206 rc = crypto_shash_setkey(server->secmech.hmacsha256,
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500207 ses->auth_key.response, SMB2_NTLMV2_SESSKEY_SIZE);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700208 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500209 cifs_dbg(VFS, "%s: Could not update with response\n", __func__);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700210 return rc;
211 }
212
213 rc = crypto_shash_init(&server->secmech.sdeschmacsha256->shash);
214 if (rc) {
Steve French95dc8dd2013-07-04 10:35:21 -0500215 cifs_dbg(VFS, "%s: Could not init sha256", __func__);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700216 return rc;
217 }
218
Al Viro16c568e2015-11-12 22:46:49 -0500219 rc = __cifs_calc_signature(rqst, server, sigptr,
220 &server->secmech.sdeschmacsha256->shash);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700221
Al Viro16c568e2015-11-12 22:46:49 -0500222 if (!rc)
223 memcpy(smb2_pdu->Signature, sigptr, SMB2_SIGNATURE_SIZE);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700224
225 return rc;
226}
227
Steve French373512e2015-12-18 13:05:30 -0600228static int generate_key(struct cifs_ses *ses, struct kvec label,
229 struct kvec context, __u8 *key, unsigned int key_size)
Steve French429b46f2013-06-26 23:45:05 -0500230{
231 unsigned char zero = 0x0;
232 __u8 i[4] = {0, 0, 0, 1};
233 __u8 L[4] = {0, 0, 0, 128};
234 int rc = 0;
235 unsigned char prfhash[SMB2_HMACSHA256_SIZE];
236 unsigned char *hashptr = prfhash;
237
238 memset(prfhash, 0x0, SMB2_HMACSHA256_SIZE);
Steve French373512e2015-12-18 13:05:30 -0600239 memset(key, 0x0, key_size);
Steve French429b46f2013-06-26 23:45:05 -0500240
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500241 rc = smb3_crypto_shash_allocate(ses->server);
Steve French95dc8dd2013-07-04 10:35:21 -0500242 if (rc) {
243 cifs_dbg(VFS, "%s: crypto alloc failed\n", __func__);
244 goto smb3signkey_ret;
245 }
246
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500247 rc = crypto_shash_setkey(ses->server->secmech.hmacsha256,
248 ses->auth_key.response, SMB2_NTLMV2_SESSKEY_SIZE);
Steve French429b46f2013-06-26 23:45:05 -0500249 if (rc) {
250 cifs_dbg(VFS, "%s: Could not set with session key\n", __func__);
251 goto smb3signkey_ret;
252 }
253
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500254 rc = crypto_shash_init(&ses->server->secmech.sdeschmacsha256->shash);
Steve French429b46f2013-06-26 23:45:05 -0500255 if (rc) {
256 cifs_dbg(VFS, "%s: Could not init sign hmac\n", __func__);
257 goto smb3signkey_ret;
258 }
259
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500260 rc = crypto_shash_update(&ses->server->secmech.sdeschmacsha256->shash,
Steve French429b46f2013-06-26 23:45:05 -0500261 i, 4);
262 if (rc) {
263 cifs_dbg(VFS, "%s: Could not update with n\n", __func__);
264 goto smb3signkey_ret;
265 }
266
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500267 rc = crypto_shash_update(&ses->server->secmech.sdeschmacsha256->shash,
Steve French373512e2015-12-18 13:05:30 -0600268 label.iov_base, label.iov_len);
Steve French429b46f2013-06-26 23:45:05 -0500269 if (rc) {
270 cifs_dbg(VFS, "%s: Could not update with label\n", __func__);
271 goto smb3signkey_ret;
272 }
273
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500274 rc = crypto_shash_update(&ses->server->secmech.sdeschmacsha256->shash,
Steve French429b46f2013-06-26 23:45:05 -0500275 &zero, 1);
276 if (rc) {
277 cifs_dbg(VFS, "%s: Could not update with zero\n", __func__);
278 goto smb3signkey_ret;
279 }
280
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500281 rc = crypto_shash_update(&ses->server->secmech.sdeschmacsha256->shash,
Steve French373512e2015-12-18 13:05:30 -0600282 context.iov_base, context.iov_len);
Steve French429b46f2013-06-26 23:45:05 -0500283 if (rc) {
284 cifs_dbg(VFS, "%s: Could not update with context\n", __func__);
285 goto smb3signkey_ret;
286 }
287
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500288 rc = crypto_shash_update(&ses->server->secmech.sdeschmacsha256->shash,
Steve French429b46f2013-06-26 23:45:05 -0500289 L, 4);
290 if (rc) {
291 cifs_dbg(VFS, "%s: Could not update with L\n", __func__);
292 goto smb3signkey_ret;
293 }
294
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500295 rc = crypto_shash_final(&ses->server->secmech.sdeschmacsha256->shash,
Steve French429b46f2013-06-26 23:45:05 -0500296 hashptr);
297 if (rc) {
298 cifs_dbg(VFS, "%s: Could not generate sha256 hash\n", __func__);
299 goto smb3signkey_ret;
300 }
301
Steve French373512e2015-12-18 13:05:30 -0600302 memcpy(key, hashptr, key_size);
Steve French429b46f2013-06-26 23:45:05 -0500303
304smb3signkey_ret:
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500305 return rc;
Steve French429b46f2013-06-26 23:45:05 -0500306}
307
Steve French373512e2015-12-18 13:05:30 -0600308struct derivation {
309 struct kvec label;
310 struct kvec context;
311};
312
313struct derivation_triplet {
314 struct derivation signing;
315 struct derivation encryption;
316 struct derivation decryption;
317};
318
319static int
320generate_smb3signingkey(struct cifs_ses *ses,
321 const struct derivation_triplet *ptriplet)
322{
323 int rc;
324
325 rc = generate_key(ses, ptriplet->signing.label,
326 ptriplet->signing.context, ses->smb3signingkey,
327 SMB3_SIGN_KEY_SIZE);
328 if (rc)
329 return rc;
330
331 rc = generate_key(ses, ptriplet->encryption.label,
332 ptriplet->encryption.context, ses->smb3encryptionkey,
333 SMB3_SIGN_KEY_SIZE);
334 if (rc)
335 return rc;
336
337 return generate_key(ses, ptriplet->decryption.label,
338 ptriplet->decryption.context,
339 ses->smb3decryptionkey, SMB3_SIGN_KEY_SIZE);
340}
341
342int
343generate_smb30signingkey(struct cifs_ses *ses)
344
345{
346 struct derivation_triplet triplet;
347 struct derivation *d;
348
349 d = &triplet.signing;
350 d->label.iov_base = "SMB2AESCMAC";
351 d->label.iov_len = 12;
352 d->context.iov_base = "SmbSign";
353 d->context.iov_len = 8;
354
355 d = &triplet.encryption;
356 d->label.iov_base = "SMB2AESCCM";
357 d->label.iov_len = 11;
358 d->context.iov_base = "ServerIn ";
359 d->context.iov_len = 10;
360
361 d = &triplet.decryption;
362 d->label.iov_base = "SMB2AESCCM";
363 d->label.iov_len = 11;
364 d->context.iov_base = "ServerOut";
365 d->context.iov_len = 10;
366
367 return generate_smb3signingkey(ses, &triplet);
368}
369
370int
371generate_smb311signingkey(struct cifs_ses *ses)
372
373{
374 struct derivation_triplet triplet;
375 struct derivation *d;
376
377 d = &triplet.signing;
378 d->label.iov_base = "SMB2AESCMAC";
379 d->label.iov_len = 12;
380 d->context.iov_base = "SmbSign";
381 d->context.iov_len = 8;
382
383 d = &triplet.encryption;
384 d->label.iov_base = "SMB2AESCCM";
385 d->label.iov_len = 11;
386 d->context.iov_base = "ServerIn ";
387 d->context.iov_len = 10;
388
389 d = &triplet.decryption;
390 d->label.iov_base = "SMB2AESCCM";
391 d->label.iov_len = 11;
392 d->context.iov_base = "ServerOut";
393 d->context.iov_len = 10;
394
395 return generate_smb3signingkey(ses, &triplet);
396}
397
Steve French429b46f2013-06-26 23:45:05 -0500398int
Steve French38107d42012-12-08 22:08:06 -0600399smb3_calc_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server)
400{
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500401 int rc = 0;
Steve French429b46f2013-06-26 23:45:05 -0500402 unsigned char smb3_signature[SMB2_CMACAES_SIZE];
403 unsigned char *sigptr = smb3_signature;
404 struct kvec *iov = rqst->rq_iov;
Steve French429b46f2013-06-26 23:45:05 -0500405 struct smb2_hdr *smb2_pdu = (struct smb2_hdr *)iov[0].iov_base;
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500406 struct cifs_ses *ses;
407
Sachin Prabhud8fd99d2017-03-03 15:41:38 -0800408 ses = smb2_find_smb_ses(server, smb2_pdu->SessionId);
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500409 if (!ses) {
410 cifs_dbg(VFS, "%s: Could not find session\n", __func__);
411 return 0;
412 }
Steve French429b46f2013-06-26 23:45:05 -0500413
414 memset(smb3_signature, 0x0, SMB2_CMACAES_SIZE);
415 memset(smb2_pdu->Signature, 0x0, SMB2_SIGNATURE_SIZE);
416
417 rc = crypto_shash_setkey(server->secmech.cmacaes,
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500418 ses->smb3signingkey, SMB2_CMACAES_SIZE);
419
Steve French429b46f2013-06-26 23:45:05 -0500420 if (rc) {
421 cifs_dbg(VFS, "%s: Could not set key for cmac aes\n", __func__);
422 return rc;
423 }
424
Steve French95dc8dd2013-07-04 10:35:21 -0500425 /*
426 * we already allocate sdesccmacaes when we init smb3 signing key,
427 * so unlike smb2 case we do not have to check here if secmech are
428 * initialized
429 */
Steve French429b46f2013-06-26 23:45:05 -0500430 rc = crypto_shash_init(&server->secmech.sdesccmacaes->shash);
431 if (rc) {
432 cifs_dbg(VFS, "%s: Could not init cmac aes\n", __func__);
433 return rc;
434 }
Al Viro16c568e2015-11-12 22:46:49 -0500435
436 rc = __cifs_calc_signature(rqst, server, sigptr,
437 &server->secmech.sdesccmacaes->shash);
Steve French429b46f2013-06-26 23:45:05 -0500438
Al Viro16c568e2015-11-12 22:46:49 -0500439 if (!rc)
440 memcpy(smb2_pdu->Signature, sigptr, SMB2_SIGNATURE_SIZE);
Steve French429b46f2013-06-26 23:45:05 -0500441
442 return rc;
Steve French38107d42012-12-08 22:08:06 -0600443}
444
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700445/* must be called with server->srv_mutex held */
446static int
Jeff Layton0b688cf2012-09-18 16:20:34 -0700447smb2_sign_rqst(struct smb_rqst *rqst, struct TCP_Server_Info *server)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700448{
449 int rc = 0;
Jeff Layton0b688cf2012-09-18 16:20:34 -0700450 struct smb2_hdr *smb2_pdu = rqst->rq_iov[0].iov_base;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700451
452 if (!(smb2_pdu->Flags & SMB2_FLAGS_SIGNED) ||
453 server->tcpStatus == CifsNeedNegotiate)
454 return rc;
455
456 if (!server->session_estab) {
457 strncpy(smb2_pdu->Signature, "BSRSPYL", 8);
458 return rc;
459 }
460
Steve French38107d42012-12-08 22:08:06 -0600461 rc = server->ops->calc_signature(rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700462
463 return rc;
464}
465
466int
Jeff Layton0b688cf2012-09-18 16:20:34 -0700467smb2_verify_signature(struct smb_rqst *rqst, struct TCP_Server_Info *server)
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700468{
469 unsigned int rc;
470 char server_response_sig[16];
Jeff Layton0b688cf2012-09-18 16:20:34 -0700471 struct smb2_hdr *smb2_pdu = (struct smb2_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700472
473 if ((smb2_pdu->Command == SMB2_NEGOTIATE) ||
Shirish Pargaonkar32811d22013-08-29 08:35:11 -0500474 (smb2_pdu->Command == SMB2_SESSION_SETUP) ||
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700475 (smb2_pdu->Command == SMB2_OPLOCK_BREAK) ||
476 (!server->session_estab))
477 return 0;
478
479 /*
480 * BB what if signatures are supposed to be on for session but
481 * server does not send one? BB
482 */
483
484 /* Do not need to verify session setups with signature "BSRSPYL " */
485 if (memcmp(smb2_pdu->Signature, "BSRSPYL ", 8) == 0)
Joe Perchesf96637b2013-05-04 22:12:25 -0500486 cifs_dbg(FYI, "dummy signature received for smb command 0x%x\n",
487 smb2_pdu->Command);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700488
489 /*
490 * Save off the origiginal signature so we can modify the smb and check
491 * our calculated signature against what the server sent.
492 */
493 memcpy(server_response_sig, smb2_pdu->Signature, SMB2_SIGNATURE_SIZE);
494
495 memset(smb2_pdu->Signature, 0, SMB2_SIGNATURE_SIZE);
496
497 mutex_lock(&server->srv_mutex);
Steve French38107d42012-12-08 22:08:06 -0600498 rc = server->ops->calc_signature(rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700499 mutex_unlock(&server->srv_mutex);
500
501 if (rc)
502 return rc;
503
504 if (memcmp(server_response_sig, smb2_pdu->Signature,
505 SMB2_SIGNATURE_SIZE))
506 return -EACCES;
507 else
508 return 0;
509}
510
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400511/*
512 * Set message id for the request. Should be called after wait_for_free_request
513 * and when srv_mutex is held.
514 */
515static inline void
516smb2_seq_num_into_buf(struct TCP_Server_Info *server, struct smb2_hdr *hdr)
517{
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400518 unsigned int i, num = le16_to_cpu(hdr->CreditCharge);
519
Tim Gardner3d378d32013-11-02 12:50:34 -0500520 hdr->MessageId = get_next_mid64(server);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400521 /* skip message numbers according to CreditCharge field */
522 for (i = 1; i < num; i++)
523 get_next_mid(server);
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400524}
525
526static struct mid_q_entry *
527smb2_mid_entry_alloc(const struct smb2_hdr *smb_buffer,
528 struct TCP_Server_Info *server)
529{
530 struct mid_q_entry *temp;
531
532 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500533 cifs_dbg(VFS, "Null TCP session in smb2_mid_entry_alloc\n");
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400534 return NULL;
535 }
536
537 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
538 if (temp == NULL)
539 return temp;
540 else {
541 memset(temp, 0, sizeof(struct mid_q_entry));
Sachin Prabhu9235d092014-12-09 17:37:00 +0000542 temp->mid = le64_to_cpu(smb_buffer->MessageId);
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400543 temp->pid = current->pid;
544 temp->command = smb_buffer->Command; /* Always LE */
545 temp->when_alloc = jiffies;
546 temp->server = server;
547
548 /*
549 * The default is for the mid to be synchronous, so the
550 * default callback just wakes up the current task.
551 */
552 temp->callback = cifs_wake_up_task;
553 temp->callback_data = current;
554 }
555
556 atomic_inc(&midCount);
557 temp->mid_state = MID_REQUEST_ALLOCATED;
558 return temp;
559}
560
561static int
562smb2_get_mid_entry(struct cifs_ses *ses, struct smb2_hdr *buf,
563 struct mid_q_entry **mid)
564{
565 if (ses->server->tcpStatus == CifsExiting)
566 return -ENOENT;
567
568 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500569 cifs_dbg(FYI, "tcp session dead - return to caller to retry\n");
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400570 return -EAGAIN;
571 }
572
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500573 if (ses->status == CifsNew) {
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400574 if ((buf->Command != SMB2_SESSION_SETUP) &&
575 (buf->Command != SMB2_NEGOTIATE))
576 return -EAGAIN;
577 /* else ok - we are setting up session */
578 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500579
580 if (ses->status == CifsExiting) {
581 if (buf->Command != SMB2_LOGOFF)
582 return -EAGAIN;
583 /* else ok - we are shutting down the session */
584 }
585
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400586 *mid = smb2_mid_entry_alloc(buf, ses->server);
587 if (*mid == NULL)
588 return -ENOMEM;
589 spin_lock(&GlobalMid_Lock);
590 list_add_tail(&(*mid)->qhead, &ses->server->pending_mid_q);
591 spin_unlock(&GlobalMid_Lock);
592 return 0;
593}
594
595int
596smb2_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
597 bool log_error)
598{
599 unsigned int len = get_rfc1002_length(mid->resp_buf);
Jeff Layton0b688cf2012-09-18 16:20:34 -0700600 struct kvec iov;
601 struct smb_rqst rqst = { .rq_iov = &iov,
602 .rq_nvec = 1 };
603
604 iov.iov_base = (char *)mid->resp_buf;
605 iov.iov_len = get_rfc1002_length(mid->resp_buf) + 4;
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400606
607 dump_smb(mid->resp_buf, min_t(u32, 80, len));
608 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400609 if (len > 24 && server->sign) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700610 int rc;
611
Jeff Layton0b688cf2012-09-18 16:20:34 -0700612 rc = smb2_verify_signature(&rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700613 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500614 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
615 rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700616 }
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400617
618 return map_smb2_to_linux_error(mid->resp_buf, log_error);
619}
620
Jeff Laytonfec344e2012-09-18 16:20:35 -0700621struct mid_q_entry *
622smb2_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst)
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400623{
624 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700625 struct smb2_hdr *hdr = (struct smb2_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400626 struct mid_q_entry *mid;
627
628 smb2_seq_num_into_buf(ses->server, hdr);
629
630 rc = smb2_get_mid_entry(ses, hdr, &mid);
631 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700632 return ERR_PTR(rc);
633 rc = smb2_sign_rqst(rqst, ses->server);
634 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700635 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700636 return ERR_PTR(rc);
637 }
638 return mid;
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400639}
640
Jeff Laytonfec344e2012-09-18 16:20:35 -0700641struct mid_q_entry *
642smb2_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovskyc95b8ee2012-07-11 14:45:28 +0400643{
Jeff Laytonfec344e2012-09-18 16:20:35 -0700644 int rc;
645 struct smb2_hdr *hdr = (struct smb2_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovskyc95b8ee2012-07-11 14:45:28 +0400646 struct mid_q_entry *mid;
647
648 smb2_seq_num_into_buf(server, hdr);
649
650 mid = smb2_mid_entry_alloc(hdr, server);
651 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700652 return ERR_PTR(-ENOMEM);
Pavel Shilovskyc95b8ee2012-07-11 14:45:28 +0400653
Jeff Laytonfec344e2012-09-18 16:20:35 -0700654 rc = smb2_sign_rqst(rqst, server);
Pavel Shilovskyc95b8ee2012-07-11 14:45:28 +0400655 if (rc) {
656 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700657 return ERR_PTR(rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700658 }
659
Jeff Laytonfec344e2012-09-18 16:20:35 -0700660 return mid;
Pavel Shilovskyc95b8ee2012-07-11 14:45:28 +0400661}