]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - fs/cifs/smb2pdu.c
CIFS: Send RFC1001 length in a separate iov
[mirror_ubuntu-zesty-kernel.git] / fs / cifs / smb2pdu.c
1 /*
2 * fs/cifs/smb2pdu.c
3 *
4 * Copyright (C) International Business Machines Corp., 2009, 2013
5 * Etersoft, 2012
6 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Pavel Shilovsky (pshilovsky@samba.org) 2012
8 *
9 * Contains the routines for constructing the SMB2 PDUs themselves
10 *
11 * This library is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published
13 * by the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
19 * the GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26 /* SMB2 PDU handling routines here - except for leftovers (eg session setup) */
27 /* Note that there are handle based routines which must be */
28 /* treated slightly differently for reconnection purposes since we never */
29 /* want to reuse a stale file handle and only the caller knows the file info */
30
31 #include <linux/fs.h>
32 #include <linux/kernel.h>
33 #include <linux/vfs.h>
34 #include <linux/task_io_accounting_ops.h>
35 #include <linux/uaccess.h>
36 #include <linux/pagemap.h>
37 #include <linux/xattr.h>
38 #include "smb2pdu.h"
39 #include "cifsglob.h"
40 #include "cifsacl.h"
41 #include "cifsproto.h"
42 #include "smb2proto.h"
43 #include "cifs_unicode.h"
44 #include "cifs_debug.h"
45 #include "ntlmssp.h"
46 #include "smb2status.h"
47 #include "smb2glob.h"
48 #include "cifspdu.h"
49 #include "cifs_spnego.h"
50
51 /*
52 * The following table defines the expected "StructureSize" of SMB2 requests
53 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
54 *
55 * Note that commands are defined in smb2pdu.h in le16 but the array below is
56 * indexed by command in host byte order.
57 */
58 static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
59 /* SMB2_NEGOTIATE */ 36,
60 /* SMB2_SESSION_SETUP */ 25,
61 /* SMB2_LOGOFF */ 4,
62 /* SMB2_TREE_CONNECT */ 9,
63 /* SMB2_TREE_DISCONNECT */ 4,
64 /* SMB2_CREATE */ 57,
65 /* SMB2_CLOSE */ 24,
66 /* SMB2_FLUSH */ 24,
67 /* SMB2_READ */ 49,
68 /* SMB2_WRITE */ 49,
69 /* SMB2_LOCK */ 48,
70 /* SMB2_IOCTL */ 57,
71 /* SMB2_CANCEL */ 4,
72 /* SMB2_ECHO */ 4,
73 /* SMB2_QUERY_DIRECTORY */ 33,
74 /* SMB2_CHANGE_NOTIFY */ 32,
75 /* SMB2_QUERY_INFO */ 41,
76 /* SMB2_SET_INFO */ 33,
77 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
78 };
79
80
81 static void
82 smb2_hdr_assemble(struct smb2_hdr *hdr, __le16 smb2_cmd /* command */ ,
83 const struct cifs_tcon *tcon)
84 {
85 struct smb2_pdu *pdu = (struct smb2_pdu *)hdr;
86 struct smb2_sync_hdr *shdr = get_sync_hdr(hdr);
87 char *temp = (char *)hdr;
88 /* lookup word count ie StructureSize from table */
89 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_cmd)];
90
91 /*
92 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
93 * largest operations (Create)
94 */
95 memset(temp, 0, 256);
96
97 /* Note this is only network field converted to big endian */
98 hdr->smb2_buf_length =
99 cpu_to_be32(parmsize + sizeof(struct smb2_sync_hdr));
100
101 shdr->ProtocolId = SMB2_PROTO_NUMBER;
102 shdr->StructureSize = cpu_to_le16(64);
103 shdr->Command = smb2_cmd;
104 if (tcon && tcon->ses && tcon->ses->server) {
105 struct TCP_Server_Info *server = tcon->ses->server;
106
107 spin_lock(&server->req_lock);
108 /* Request up to 2 credits but don't go over the limit. */
109 if (server->credits >= server->max_credits)
110 shdr->CreditRequest = cpu_to_le16(0);
111 else
112 shdr->CreditRequest = cpu_to_le16(
113 min_t(int, server->max_credits -
114 server->credits, 2));
115 spin_unlock(&server->req_lock);
116 } else {
117 shdr->CreditRequest = cpu_to_le16(2);
118 }
119 shdr->ProcessId = cpu_to_le32((__u16)current->tgid);
120
121 if (!tcon)
122 goto out;
123
124 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
125 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
126 if ((tcon->ses) && (tcon->ses->server) &&
127 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
128 shdr->CreditCharge = cpu_to_le16(1);
129 /* else CreditCharge MBZ */
130
131 shdr->TreeId = tcon->tid;
132 /* Uid is not converted */
133 if (tcon->ses)
134 shdr->SessionId = tcon->ses->Suid;
135
136 /*
137 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
138 * to pass the path on the Open SMB prefixed by \\server\share.
139 * Not sure when we would need to do the augmented path (if ever) and
140 * setting this flag breaks the SMB2 open operation since it is
141 * illegal to send an empty path name (without \\server\share prefix)
142 * when the DFS flag is set in the SMB open header. We could
143 * consider setting the flag on all operations other than open
144 * but it is safer to net set it for now.
145 */
146 /* if (tcon->share_flags & SHI1005_FLAGS_DFS)
147 shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
148
149 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign)
150 shdr->Flags |= SMB2_FLAGS_SIGNED;
151 out:
152 pdu->StructureSize2 = cpu_to_le16(parmsize);
153 return;
154 }
155
156 static int
157 smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
158 {
159 int rc = 0;
160 struct nls_table *nls_codepage;
161 struct cifs_ses *ses;
162 struct TCP_Server_Info *server;
163
164 /*
165 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
166 * check for tcp and smb session status done differently
167 * for those three - in the calling routine.
168 */
169 if (tcon == NULL)
170 return rc;
171
172 if (smb2_command == SMB2_TREE_CONNECT)
173 return rc;
174
175 if (tcon->tidStatus == CifsExiting) {
176 /*
177 * only tree disconnect, open, and write,
178 * (and ulogoff which does not have tcon)
179 * are allowed as we start force umount.
180 */
181 if ((smb2_command != SMB2_WRITE) &&
182 (smb2_command != SMB2_CREATE) &&
183 (smb2_command != SMB2_TREE_DISCONNECT)) {
184 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
185 smb2_command);
186 return -ENODEV;
187 }
188 }
189 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
190 (!tcon->ses->server))
191 return -EIO;
192
193 ses = tcon->ses;
194 server = ses->server;
195
196 /*
197 * Give demultiplex thread up to 10 seconds to reconnect, should be
198 * greater than cifs socket timeout which is 7 seconds
199 */
200 while (server->tcpStatus == CifsNeedReconnect) {
201 /*
202 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
203 * here since they are implicitly done when session drops.
204 */
205 switch (smb2_command) {
206 /*
207 * BB Should we keep oplock break and add flush to exceptions?
208 */
209 case SMB2_TREE_DISCONNECT:
210 case SMB2_CANCEL:
211 case SMB2_CLOSE:
212 case SMB2_OPLOCK_BREAK:
213 return -EAGAIN;
214 }
215
216 wait_event_interruptible_timeout(server->response_q,
217 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
218
219 /* are we still trying to reconnect? */
220 if (server->tcpStatus != CifsNeedReconnect)
221 break;
222
223 /*
224 * on "soft" mounts we wait once. Hard mounts keep
225 * retrying until process is killed or server comes
226 * back on-line
227 */
228 if (!tcon->retry) {
229 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
230 return -EHOSTDOWN;
231 }
232 }
233
234 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
235 return rc;
236
237 nls_codepage = load_nls_default();
238
239 /*
240 * need to prevent multiple threads trying to simultaneously reconnect
241 * the same SMB session
242 */
243 mutex_lock(&tcon->ses->session_mutex);
244 rc = cifs_negotiate_protocol(0, tcon->ses);
245 if (!rc && tcon->ses->need_reconnect)
246 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
247
248 if (rc || !tcon->need_reconnect) {
249 mutex_unlock(&tcon->ses->session_mutex);
250 goto out;
251 }
252
253 cifs_mark_open_files_invalid(tcon);
254 if (tcon->use_persistent)
255 tcon->need_reopen_files = true;
256
257 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
258 mutex_unlock(&tcon->ses->session_mutex);
259
260 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
261 if (rc)
262 goto out;
263
264 if (smb2_command != SMB2_INTERNAL_CMD)
265 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
266
267 atomic_inc(&tconInfoReconnectCount);
268 out:
269 /*
270 * Check if handle based operation so we know whether we can continue
271 * or not without returning to caller to reset file handle.
272 */
273 /*
274 * BB Is flush done by server on drop of tcp session? Should we special
275 * case it and skip above?
276 */
277 switch (smb2_command) {
278 case SMB2_FLUSH:
279 case SMB2_READ:
280 case SMB2_WRITE:
281 case SMB2_LOCK:
282 case SMB2_IOCTL:
283 case SMB2_QUERY_DIRECTORY:
284 case SMB2_CHANGE_NOTIFY:
285 case SMB2_QUERY_INFO:
286 case SMB2_SET_INFO:
287 rc = -EAGAIN;
288 }
289 unload_nls(nls_codepage);
290 return rc;
291 }
292
293 /*
294 * Allocate and return pointer to an SMB request hdr, and set basic
295 * SMB information in the SMB header. If the return code is zero, this
296 * function must have filled in request_buf pointer.
297 */
298 static int
299 small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
300 void **request_buf)
301 {
302 int rc = 0;
303
304 rc = smb2_reconnect(smb2_command, tcon);
305 if (rc)
306 return rc;
307
308 /* BB eventually switch this to SMB2 specific small buf size */
309 *request_buf = cifs_small_buf_get();
310 if (*request_buf == NULL) {
311 /* BB should we add a retry in here if not a writepage? */
312 return -ENOMEM;
313 }
314
315 smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon);
316
317 if (tcon != NULL) {
318 #ifdef CONFIG_CIFS_STATS2
319 uint16_t com_code = le16_to_cpu(smb2_command);
320 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
321 #endif
322 cifs_stats_inc(&tcon->num_smbs_sent);
323 }
324
325 return rc;
326 }
327
328 #ifdef CONFIG_CIFS_SMB311
329 /* offset is sizeof smb2_negotiate_req - 4 but rounded up to 8 bytes */
330 #define OFFSET_OF_NEG_CONTEXT 0x68 /* sizeof(struct smb2_negotiate_req) - 4 */
331
332
333 #define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
334 #define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
335
336 static void
337 build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
338 {
339 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
340 pneg_ctxt->DataLength = cpu_to_le16(38);
341 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
342 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
343 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
344 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
345 }
346
347 static void
348 build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
349 {
350 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
351 pneg_ctxt->DataLength = cpu_to_le16(6);
352 pneg_ctxt->CipherCount = cpu_to_le16(2);
353 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;
354 pneg_ctxt->Ciphers[1] = SMB2_ENCRYPTION_AES128_CCM;
355 }
356
357 static void
358 assemble_neg_contexts(struct smb2_negotiate_req *req)
359 {
360
361 /* +4 is to account for the RFC1001 len field */
362 char *pneg_ctxt = (char *)req + OFFSET_OF_NEG_CONTEXT + 4;
363
364 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
365 /* Add 2 to size to round to 8 byte boundary */
366 pneg_ctxt += 2 + sizeof(struct smb2_preauth_neg_context);
367 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
368 req->NegotiateContextOffset = cpu_to_le32(OFFSET_OF_NEG_CONTEXT);
369 req->NegotiateContextCount = cpu_to_le16(2);
370 inc_rfc1001_len(req, 4 + sizeof(struct smb2_preauth_neg_context) + 2
371 + sizeof(struct smb2_encryption_neg_context)); /* calculate hash */
372 }
373 #else
374 static void assemble_neg_contexts(struct smb2_negotiate_req *req)
375 {
376 return;
377 }
378 #endif /* SMB311 */
379
380
381 /*
382 *
383 * SMB2 Worker functions follow:
384 *
385 * The general structure of the worker functions is:
386 * 1) Call smb2_init (assembles SMB2 header)
387 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
388 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
389 * 4) Decode SMB2 command specific fields in the fixed length area
390 * 5) Decode variable length data area (if any for this SMB2 command type)
391 * 6) Call free smb buffer
392 * 7) return
393 *
394 */
395
396 int
397 SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
398 {
399 struct smb2_negotiate_req *req;
400 struct smb2_negotiate_rsp *rsp;
401 struct kvec iov[1];
402 struct kvec rsp_iov;
403 int rc = 0;
404 int resp_buftype;
405 struct TCP_Server_Info *server = ses->server;
406 int blob_offset, blob_length;
407 char *security_blob;
408 int flags = CIFS_NEG_OP;
409
410 cifs_dbg(FYI, "Negotiate protocol\n");
411
412 if (!server) {
413 WARN(1, "%s: server is NULL!\n", __func__);
414 return -EIO;
415 }
416
417 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
418 if (rc)
419 return rc;
420
421 req->hdr.sync_hdr.SessionId = 0;
422
423 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
424
425 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
426 inc_rfc1001_len(req, 2);
427
428 /* only one of SMB2 signing flags may be set in SMB2 request */
429 if (ses->sign)
430 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
431 else if (global_secflags & CIFSSEC_MAY_SIGN)
432 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
433 else
434 req->SecurityMode = 0;
435
436 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
437
438 /* ClientGUID must be zero for SMB2.02 dialect */
439 if (ses->server->vals->protocol_id == SMB20_PROT_ID)
440 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
441 else {
442 memcpy(req->ClientGUID, server->client_guid,
443 SMB2_CLIENT_GUID_SIZE);
444 if (ses->server->vals->protocol_id == SMB311_PROT_ID)
445 assemble_neg_contexts(req);
446 }
447 iov[0].iov_base = (char *)req;
448 /* 4 for rfc1002 length field */
449 iov[0].iov_len = get_rfc1002_length(req) + 4;
450
451 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags, &rsp_iov);
452 cifs_small_buf_release(req);
453 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
454 /*
455 * No tcon so can't do
456 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
457 */
458 if (rc != 0)
459 goto neg_exit;
460
461 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
462
463 /* BB we may eventually want to match the negotiated vs. requested
464 dialect, even though we are only requesting one at a time */
465 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
466 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
467 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
468 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
469 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
470 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
471 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
472 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
473 #ifdef CONFIG_CIFS_SMB311
474 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
475 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
476 #endif /* SMB311 */
477 else {
478 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
479 le16_to_cpu(rsp->DialectRevision));
480 rc = -EIO;
481 goto neg_exit;
482 }
483 server->dialect = le16_to_cpu(rsp->DialectRevision);
484
485 /* SMB2 only has an extended negflavor */
486 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
487 /* set it to the maximum buffer size value we can send with 1 credit */
488 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
489 SMB2_MAX_BUFFER_SIZE);
490 server->max_read = le32_to_cpu(rsp->MaxReadSize);
491 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
492 /* BB Do we need to validate the SecurityMode? */
493 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
494 server->capabilities = le32_to_cpu(rsp->Capabilities);
495 /* Internal types */
496 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
497
498 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
499 &rsp->hdr);
500 /*
501 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
502 * for us will be
503 * ses->sectype = RawNTLMSSP;
504 * but for time being this is our only auth choice so doesn't matter.
505 * We just found a server which sets blob length to zero expecting raw.
506 */
507 if (blob_length == 0)
508 cifs_dbg(FYI, "missing security blob on negprot\n");
509
510 rc = cifs_enable_signing(server, ses->sign);
511 if (rc)
512 goto neg_exit;
513 if (blob_length) {
514 rc = decode_negTokenInit(security_blob, blob_length, server);
515 if (rc == 1)
516 rc = 0;
517 else if (rc == 0)
518 rc = -EIO;
519 }
520 neg_exit:
521 free_rsp_buf(resp_buftype, rsp);
522 return rc;
523 }
524
525 int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
526 {
527 int rc = 0;
528 struct validate_negotiate_info_req vneg_inbuf;
529 struct validate_negotiate_info_rsp *pneg_rsp;
530 u32 rsplen;
531
532 cifs_dbg(FYI, "validate negotiate\n");
533
534 /*
535 * validation ioctl must be signed, so no point sending this if we
536 * can not sign it. We could eventually change this to selectively
537 * sign just this, the first and only signed request on a connection.
538 * This is good enough for now since a user who wants better security
539 * would also enable signing on the mount. Having validation of
540 * negotiate info for signed connections helps reduce attack vectors
541 */
542 if (tcon->ses->server->sign == false)
543 return 0; /* validation requires signing */
544
545 vneg_inbuf.Capabilities =
546 cpu_to_le32(tcon->ses->server->vals->req_capabilities);
547 memcpy(vneg_inbuf.Guid, tcon->ses->server->client_guid,
548 SMB2_CLIENT_GUID_SIZE);
549
550 if (tcon->ses->sign)
551 vneg_inbuf.SecurityMode =
552 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
553 else if (global_secflags & CIFSSEC_MAY_SIGN)
554 vneg_inbuf.SecurityMode =
555 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
556 else
557 vneg_inbuf.SecurityMode = 0;
558
559 vneg_inbuf.DialectCount = cpu_to_le16(1);
560 vneg_inbuf.Dialects[0] =
561 cpu_to_le16(tcon->ses->server->vals->protocol_id);
562
563 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
564 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
565 (char *)&vneg_inbuf, sizeof(struct validate_negotiate_info_req),
566 (char **)&pneg_rsp, &rsplen);
567
568 if (rc != 0) {
569 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
570 return -EIO;
571 }
572
573 if (rsplen != sizeof(struct validate_negotiate_info_rsp)) {
574 cifs_dbg(VFS, "invalid size of protocol negotiate response\n");
575 return -EIO;
576 }
577
578 /* check validate negotiate info response matches what we got earlier */
579 if (pneg_rsp->Dialect !=
580 cpu_to_le16(tcon->ses->server->vals->protocol_id))
581 goto vneg_out;
582
583 if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
584 goto vneg_out;
585
586 /* do not validate server guid because not saved at negprot time yet */
587
588 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
589 SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
590 goto vneg_out;
591
592 /* validate negotiate successful */
593 cifs_dbg(FYI, "validate negotiate info successful\n");
594 return 0;
595
596 vneg_out:
597 cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
598 return -EIO;
599 }
600
601 struct SMB2_sess_data {
602 unsigned int xid;
603 struct cifs_ses *ses;
604 struct nls_table *nls_cp;
605 void (*func)(struct SMB2_sess_data *);
606 int result;
607 u64 previous_session;
608
609 /* we will send the SMB in three pieces:
610 * a fixed length beginning part, an optional
611 * SPNEGO blob (which can be zero length), and a
612 * last part which will include the strings
613 * and rest of bcc area. This allows us to avoid
614 * a large buffer 17K allocation
615 */
616 int buf0_type;
617 struct kvec iov[2];
618 };
619
620 static int
621 SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
622 {
623 int rc;
624 struct cifs_ses *ses = sess_data->ses;
625 struct smb2_sess_setup_req *req;
626 struct TCP_Server_Info *server = ses->server;
627
628 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
629 if (rc)
630 return rc;
631
632 /* First session, not a reauthenticate */
633 req->hdr.sync_hdr.SessionId = 0;
634
635 /* if reconnect, we need to send previous sess id, otherwise it is 0 */
636 req->PreviousSessionId = sess_data->previous_session;
637
638 req->Flags = 0; /* MBZ */
639 /* to enable echos and oplocks */
640 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(3);
641
642 /* only one of SMB2 signing flags may be set in SMB2 request */
643 if (server->sign)
644 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
645 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
646 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
647 else
648 req->SecurityMode = 0;
649
650 req->Capabilities = 0;
651 req->Channel = 0; /* MBZ */
652
653 sess_data->iov[0].iov_base = (char *)req;
654 /* 4 for rfc1002 length field and 1 for pad */
655 sess_data->iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
656 /*
657 * This variable will be used to clear the buffer
658 * allocated above in case of any error in the calling function.
659 */
660 sess_data->buf0_type = CIFS_SMALL_BUFFER;
661
662 return 0;
663 }
664
665 static void
666 SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
667 {
668 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
669 sess_data->buf0_type = CIFS_NO_BUFFER;
670 }
671
672 static int
673 SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
674 {
675 int rc;
676 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
677 struct kvec rsp_iov = { NULL, 0 };
678
679 /* Testing shows that buffer offset must be at location of Buffer[0] */
680 req->SecurityBufferOffset =
681 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
682 1 /* pad */ - 4 /* rfc1001 len */);
683 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
684
685 inc_rfc1001_len(req, sess_data->iov[1].iov_len - 1 /* pad */);
686
687 /* BB add code to build os and lm fields */
688
689 rc = SendReceive2(sess_data->xid, sess_data->ses,
690 sess_data->iov, 2,
691 &sess_data->buf0_type,
692 CIFS_LOG_ERROR | CIFS_NEG_OP, &rsp_iov);
693 cifs_small_buf_release(sess_data->iov[0].iov_base);
694 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
695
696 return rc;
697 }
698
699 static int
700 SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
701 {
702 int rc = 0;
703 struct cifs_ses *ses = sess_data->ses;
704
705 mutex_lock(&ses->server->srv_mutex);
706 if (ses->server->sign && ses->server->ops->generate_signingkey) {
707 rc = ses->server->ops->generate_signingkey(ses);
708 kfree(ses->auth_key.response);
709 ses->auth_key.response = NULL;
710 if (rc) {
711 cifs_dbg(FYI,
712 "SMB3 session key generation failed\n");
713 mutex_unlock(&ses->server->srv_mutex);
714 goto keygen_exit;
715 }
716 }
717 if (!ses->server->session_estab) {
718 ses->server->sequence_number = 0x2;
719 ses->server->session_estab = true;
720 }
721 mutex_unlock(&ses->server->srv_mutex);
722
723 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
724 spin_lock(&GlobalMid_Lock);
725 ses->status = CifsGood;
726 ses->need_reconnect = false;
727 spin_unlock(&GlobalMid_Lock);
728
729 keygen_exit:
730 if (!ses->server->sign) {
731 kfree(ses->auth_key.response);
732 ses->auth_key.response = NULL;
733 }
734 return rc;
735 }
736
737 #ifdef CONFIG_CIFS_UPCALL
738 static void
739 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
740 {
741 int rc;
742 struct cifs_ses *ses = sess_data->ses;
743 struct cifs_spnego_msg *msg;
744 struct key *spnego_key = NULL;
745 struct smb2_sess_setup_rsp *rsp = NULL;
746
747 rc = SMB2_sess_alloc_buffer(sess_data);
748 if (rc)
749 goto out;
750
751 spnego_key = cifs_get_spnego_key(ses);
752 if (IS_ERR(spnego_key)) {
753 rc = PTR_ERR(spnego_key);
754 spnego_key = NULL;
755 goto out;
756 }
757
758 msg = spnego_key->payload.data[0];
759 /*
760 * check version field to make sure that cifs.upcall is
761 * sending us a response in an expected form
762 */
763 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
764 cifs_dbg(VFS,
765 "bad cifs.upcall version. Expected %d got %d",
766 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
767 rc = -EKEYREJECTED;
768 goto out_put_spnego_key;
769 }
770
771 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
772 GFP_KERNEL);
773 if (!ses->auth_key.response) {
774 cifs_dbg(VFS,
775 "Kerberos can't allocate (%u bytes) memory",
776 msg->sesskey_len);
777 rc = -ENOMEM;
778 goto out_put_spnego_key;
779 }
780 ses->auth_key.len = msg->sesskey_len;
781
782 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
783 sess_data->iov[1].iov_len = msg->secblob_len;
784
785 rc = SMB2_sess_sendreceive(sess_data);
786 if (rc)
787 goto out_put_spnego_key;
788
789 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
790 ses->Suid = rsp->hdr.sync_hdr.SessionId;
791
792 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
793 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
794 cifs_dbg(VFS, "SMB3 encryption not supported yet\n");
795
796 rc = SMB2_sess_establish_session(sess_data);
797 out_put_spnego_key:
798 key_invalidate(spnego_key);
799 key_put(spnego_key);
800 out:
801 sess_data->result = rc;
802 sess_data->func = NULL;
803 SMB2_sess_free_buffer(sess_data);
804 }
805 #else
806 static void
807 SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
808 {
809 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
810 sess_data->result = -EOPNOTSUPP;
811 sess_data->func = NULL;
812 }
813 #endif
814
815 static void
816 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
817
818 static void
819 SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
820 {
821 int rc;
822 struct cifs_ses *ses = sess_data->ses;
823 struct smb2_sess_setup_rsp *rsp = NULL;
824 char *ntlmssp_blob = NULL;
825 bool use_spnego = false; /* else use raw ntlmssp */
826 u16 blob_length = 0;
827
828 /*
829 * If memory allocation is successful, caller of this function
830 * frees it.
831 */
832 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
833 if (!ses->ntlmssp) {
834 rc = -ENOMEM;
835 goto out_err;
836 }
837 ses->ntlmssp->sesskey_per_smbsess = true;
838
839 rc = SMB2_sess_alloc_buffer(sess_data);
840 if (rc)
841 goto out_err;
842
843 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
844 GFP_KERNEL);
845 if (ntlmssp_blob == NULL) {
846 rc = -ENOMEM;
847 goto out;
848 }
849
850 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
851 if (use_spnego) {
852 /* BB eventually need to add this */
853 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
854 rc = -EOPNOTSUPP;
855 goto out;
856 } else {
857 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
858 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
859 }
860 sess_data->iov[1].iov_base = ntlmssp_blob;
861 sess_data->iov[1].iov_len = blob_length;
862
863 rc = SMB2_sess_sendreceive(sess_data);
864 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
865
866 /* If true, rc here is expected and not an error */
867 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
868 rsp->hdr.sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
869 rc = 0;
870
871 if (rc)
872 goto out;
873
874 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
875 le16_to_cpu(rsp->SecurityBufferOffset)) {
876 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
877 le16_to_cpu(rsp->SecurityBufferOffset));
878 rc = -EIO;
879 goto out;
880 }
881 rc = decode_ntlmssp_challenge(rsp->Buffer,
882 le16_to_cpu(rsp->SecurityBufferLength), ses);
883 if (rc)
884 goto out;
885
886 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
887
888
889 ses->Suid = rsp->hdr.sync_hdr.SessionId;
890 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
891 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
892 cifs_dbg(VFS, "SMB3 encryption not supported yet\n");
893
894 out:
895 kfree(ntlmssp_blob);
896 SMB2_sess_free_buffer(sess_data);
897 if (!rc) {
898 sess_data->result = 0;
899 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
900 return;
901 }
902 out_err:
903 kfree(ses->ntlmssp);
904 ses->ntlmssp = NULL;
905 sess_data->result = rc;
906 sess_data->func = NULL;
907 }
908
909 static void
910 SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
911 {
912 int rc;
913 struct cifs_ses *ses = sess_data->ses;
914 struct smb2_sess_setup_req *req;
915 struct smb2_sess_setup_rsp *rsp = NULL;
916 unsigned char *ntlmssp_blob = NULL;
917 bool use_spnego = false; /* else use raw ntlmssp */
918 u16 blob_length = 0;
919
920 rc = SMB2_sess_alloc_buffer(sess_data);
921 if (rc)
922 goto out;
923
924 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
925 req->hdr.sync_hdr.SessionId = ses->Suid;
926
927 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses,
928 sess_data->nls_cp);
929 if (rc) {
930 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
931 goto out;
932 }
933
934 if (use_spnego) {
935 /* BB eventually need to add this */
936 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
937 rc = -EOPNOTSUPP;
938 goto out;
939 }
940 sess_data->iov[1].iov_base = ntlmssp_blob;
941 sess_data->iov[1].iov_len = blob_length;
942
943 rc = SMB2_sess_sendreceive(sess_data);
944 if (rc)
945 goto out;
946
947 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
948
949 ses->Suid = rsp->hdr.sync_hdr.SessionId;
950 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
951 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
952 cifs_dbg(VFS, "SMB3 encryption not supported yet\n");
953
954 rc = SMB2_sess_establish_session(sess_data);
955 out:
956 kfree(ntlmssp_blob);
957 SMB2_sess_free_buffer(sess_data);
958 kfree(ses->ntlmssp);
959 ses->ntlmssp = NULL;
960 sess_data->result = rc;
961 sess_data->func = NULL;
962 }
963
964 static int
965 SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data)
966 {
967 if (ses->sectype != Kerberos && ses->sectype != RawNTLMSSP)
968 ses->sectype = RawNTLMSSP;
969
970 switch (ses->sectype) {
971 case Kerberos:
972 sess_data->func = SMB2_auth_kerberos;
973 break;
974 case RawNTLMSSP:
975 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
976 break;
977 default:
978 cifs_dbg(VFS, "secType %d not supported!\n", ses->sectype);
979 return -EOPNOTSUPP;
980 }
981
982 return 0;
983 }
984
985 int
986 SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
987 const struct nls_table *nls_cp)
988 {
989 int rc = 0;
990 struct TCP_Server_Info *server = ses->server;
991 struct SMB2_sess_data *sess_data;
992
993 cifs_dbg(FYI, "Session Setup\n");
994
995 if (!server) {
996 WARN(1, "%s: server is NULL!\n", __func__);
997 return -EIO;
998 }
999
1000 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1001 if (!sess_data)
1002 return -ENOMEM;
1003
1004 rc = SMB2_select_sec(ses, sess_data);
1005 if (rc)
1006 goto out;
1007 sess_data->xid = xid;
1008 sess_data->ses = ses;
1009 sess_data->buf0_type = CIFS_NO_BUFFER;
1010 sess_data->nls_cp = (struct nls_table *) nls_cp;
1011
1012 while (sess_data->func)
1013 sess_data->func(sess_data);
1014
1015 rc = sess_data->result;
1016 out:
1017 kfree(sess_data);
1018 return rc;
1019 }
1020
1021 int
1022 SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1023 {
1024 struct smb2_logoff_req *req; /* response is also trivial struct */
1025 int rc = 0;
1026 struct TCP_Server_Info *server;
1027
1028 cifs_dbg(FYI, "disconnect session %p\n", ses);
1029
1030 if (ses && (ses->server))
1031 server = ses->server;
1032 else
1033 return -EIO;
1034
1035 /* no need to send SMB logoff if uid already closed due to reconnect */
1036 if (ses->need_reconnect)
1037 goto smb2_session_already_dead;
1038
1039 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
1040 if (rc)
1041 return rc;
1042
1043 /* since no tcon, smb2_init can not do this, so do here */
1044 req->hdr.sync_hdr.SessionId = ses->Suid;
1045 if (server->sign)
1046 req->hdr.sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
1047
1048 rc = SendReceiveNoRsp(xid, ses, (char *) req, 0);
1049 cifs_small_buf_release(req);
1050 /*
1051 * No tcon so can't do
1052 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1053 */
1054
1055 smb2_session_already_dead:
1056 return rc;
1057 }
1058
1059 static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1060 {
1061 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
1062 }
1063
1064 #define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1065
1066 /* These are similar values to what Windows uses */
1067 static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1068 {
1069 tcon->max_chunks = 256;
1070 tcon->max_bytes_chunk = 1048576;
1071 tcon->max_bytes_copy = 16777216;
1072 }
1073
1074 int
1075 SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1076 struct cifs_tcon *tcon, const struct nls_table *cp)
1077 {
1078 struct smb2_tree_connect_req *req;
1079 struct smb2_tree_connect_rsp *rsp = NULL;
1080 struct kvec iov[2];
1081 struct kvec rsp_iov;
1082 int rc = 0;
1083 int resp_buftype;
1084 int unc_path_len;
1085 struct TCP_Server_Info *server;
1086 __le16 *unc_path = NULL;
1087
1088 cifs_dbg(FYI, "TCON\n");
1089
1090 if ((ses->server) && tree)
1091 server = ses->server;
1092 else
1093 return -EIO;
1094
1095 if (tcon && tcon->bad_network_name)
1096 return -ENOENT;
1097
1098 if ((tcon && tcon->seal) &&
1099 ((ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION) == 0)) {
1100 cifs_dbg(VFS, "encryption requested but no server support");
1101 return -EOPNOTSUPP;
1102 }
1103
1104 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1105 if (unc_path == NULL)
1106 return -ENOMEM;
1107
1108 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1109 unc_path_len *= 2;
1110 if (unc_path_len < 2) {
1111 kfree(unc_path);
1112 return -EINVAL;
1113 }
1114
1115 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
1116 if (rc) {
1117 kfree(unc_path);
1118 return rc;
1119 }
1120
1121 if (tcon == NULL) {
1122 /* since no tcon, smb2_init can not do this, so do here */
1123 req->hdr.sync_hdr.SessionId = ses->Suid;
1124 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
1125 req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
1126 }
1127
1128 iov[0].iov_base = (char *)req;
1129 /* 4 for rfc1002 length field and 1 for pad */
1130 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1131
1132 /* Testing shows that buffer offset must be at location of Buffer[0] */
1133 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
1134 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
1135 req->PathLength = cpu_to_le16(unc_path_len - 2);
1136 iov[1].iov_base = unc_path;
1137 iov[1].iov_len = unc_path_len;
1138
1139 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
1140
1141 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0, &rsp_iov);
1142 cifs_small_buf_release(req);
1143 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
1144
1145 if (rc != 0) {
1146 if (tcon) {
1147 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1148 tcon->need_reconnect = true;
1149 }
1150 goto tcon_error_exit;
1151 }
1152
1153 if (tcon == NULL) {
1154 ses->ipc_tid = rsp->hdr.sync_hdr.TreeId;
1155 goto tcon_exit;
1156 }
1157
1158 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
1159 cifs_dbg(FYI, "connection to disk share\n");
1160 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
1161 tcon->ipc = true;
1162 cifs_dbg(FYI, "connection to pipe share\n");
1163 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
1164 tcon->print = true;
1165 cifs_dbg(FYI, "connection to printer\n");
1166 } else {
1167 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
1168 rc = -EOPNOTSUPP;
1169 goto tcon_error_exit;
1170 }
1171
1172 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
1173 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
1174 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1175 tcon->tidStatus = CifsGood;
1176 tcon->need_reconnect = false;
1177 tcon->tid = rsp->hdr.sync_hdr.TreeId;
1178 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
1179
1180 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1181 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
1182 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
1183 init_copy_chunk_defaults(tcon);
1184 if (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA)
1185 cifs_dbg(VFS, "Encrypted shares not supported");
1186 if (tcon->ses->server->ops->validate_negotiate)
1187 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
1188 tcon_exit:
1189 free_rsp_buf(resp_buftype, rsp);
1190 kfree(unc_path);
1191 return rc;
1192
1193 tcon_error_exit:
1194 if (rsp->hdr.sync_hdr.Status == STATUS_BAD_NETWORK_NAME) {
1195 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
1196 if (tcon)
1197 tcon->bad_network_name = true;
1198 }
1199 goto tcon_exit;
1200 }
1201
1202 int
1203 SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1204 {
1205 struct smb2_tree_disconnect_req *req; /* response is trivial */
1206 int rc = 0;
1207 struct TCP_Server_Info *server;
1208 struct cifs_ses *ses = tcon->ses;
1209
1210 cifs_dbg(FYI, "Tree Disconnect\n");
1211
1212 if (ses && (ses->server))
1213 server = ses->server;
1214 else
1215 return -EIO;
1216
1217 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1218 return 0;
1219
1220 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
1221 if (rc)
1222 return rc;
1223
1224 rc = SendReceiveNoRsp(xid, ses, (char *)req, 0);
1225 cifs_small_buf_release(req);
1226 if (rc)
1227 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1228
1229 return rc;
1230 }
1231
1232
1233 static struct create_durable *
1234 create_durable_buf(void)
1235 {
1236 struct create_durable *buf;
1237
1238 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1239 if (!buf)
1240 return NULL;
1241
1242 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1243 (struct create_durable, Data));
1244 buf->ccontext.DataLength = cpu_to_le32(16);
1245 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1246 (struct create_durable, Name));
1247 buf->ccontext.NameLength = cpu_to_le16(4);
1248 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
1249 buf->Name[0] = 'D';
1250 buf->Name[1] = 'H';
1251 buf->Name[2] = 'n';
1252 buf->Name[3] = 'Q';
1253 return buf;
1254 }
1255
1256 static struct create_durable *
1257 create_reconnect_durable_buf(struct cifs_fid *fid)
1258 {
1259 struct create_durable *buf;
1260
1261 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1262 if (!buf)
1263 return NULL;
1264
1265 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1266 (struct create_durable, Data));
1267 buf->ccontext.DataLength = cpu_to_le32(16);
1268 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1269 (struct create_durable, Name));
1270 buf->ccontext.NameLength = cpu_to_le16(4);
1271 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1272 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
1273 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
1274 buf->Name[0] = 'D';
1275 buf->Name[1] = 'H';
1276 buf->Name[2] = 'n';
1277 buf->Name[3] = 'C';
1278 return buf;
1279 }
1280
1281 static __u8
1282 parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
1283 unsigned int *epoch)
1284 {
1285 char *data_offset;
1286 struct create_context *cc;
1287 unsigned int next;
1288 unsigned int remaining;
1289 char *name;
1290
1291 data_offset = (char *)rsp + 4 + le32_to_cpu(rsp->CreateContextsOffset);
1292 remaining = le32_to_cpu(rsp->CreateContextsLength);
1293 cc = (struct create_context *)data_offset;
1294 while (remaining >= sizeof(struct create_context)) {
1295 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
1296 if (le16_to_cpu(cc->NameLength) == 4 &&
1297 strncmp(name, "RqLs", 4) == 0)
1298 return server->ops->parse_lease_buf(cc, epoch);
1299
1300 next = le32_to_cpu(cc->Next);
1301 if (!next)
1302 break;
1303 remaining -= next;
1304 cc = (struct create_context *)((char *)cc + next);
1305 }
1306
1307 return 0;
1308 }
1309
1310 static int
1311 add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
1312 unsigned int *num_iovec, __u8 *oplock)
1313 {
1314 struct smb2_create_req *req = iov[0].iov_base;
1315 unsigned int num = *num_iovec;
1316
1317 iov[num].iov_base = server->ops->create_lease_buf(oplock+1, *oplock);
1318 if (iov[num].iov_base == NULL)
1319 return -ENOMEM;
1320 iov[num].iov_len = server->vals->create_lease_size;
1321 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1322 if (!req->CreateContextsOffset)
1323 req->CreateContextsOffset = cpu_to_le32(
1324 sizeof(struct smb2_create_req) - 4 +
1325 iov[num - 1].iov_len);
1326 le32_add_cpu(&req->CreateContextsLength,
1327 server->vals->create_lease_size);
1328 inc_rfc1001_len(&req->hdr, server->vals->create_lease_size);
1329 *num_iovec = num + 1;
1330 return 0;
1331 }
1332
1333 static struct create_durable_v2 *
1334 create_durable_v2_buf(struct cifs_fid *pfid)
1335 {
1336 struct create_durable_v2 *buf;
1337
1338 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1339 if (!buf)
1340 return NULL;
1341
1342 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1343 (struct create_durable_v2, dcontext));
1344 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1345 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1346 (struct create_durable_v2, Name));
1347 buf->ccontext.NameLength = cpu_to_le16(4);
1348
1349 buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
1350 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1351 generate_random_uuid(buf->dcontext.CreateGuid);
1352 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1353
1354 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1355 buf->Name[0] = 'D';
1356 buf->Name[1] = 'H';
1357 buf->Name[2] = '2';
1358 buf->Name[3] = 'Q';
1359 return buf;
1360 }
1361
1362 static struct create_durable_handle_reconnect_v2 *
1363 create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1364 {
1365 struct create_durable_handle_reconnect_v2 *buf;
1366
1367 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
1368 GFP_KERNEL);
1369 if (!buf)
1370 return NULL;
1371
1372 buf->ccontext.DataOffset =
1373 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1374 dcontext));
1375 buf->ccontext.DataLength =
1376 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
1377 buf->ccontext.NameOffset =
1378 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1379 Name));
1380 buf->ccontext.NameLength = cpu_to_le16(4);
1381
1382 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
1383 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
1384 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1385 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
1386
1387 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
1388 buf->Name[0] = 'D';
1389 buf->Name[1] = 'H';
1390 buf->Name[2] = '2';
1391 buf->Name[3] = 'C';
1392 return buf;
1393 }
1394
1395 static int
1396 add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
1397 struct cifs_open_parms *oparms)
1398 {
1399 struct smb2_create_req *req = iov[0].iov_base;
1400 unsigned int num = *num_iovec;
1401
1402 iov[num].iov_base = create_durable_v2_buf(oparms->fid);
1403 if (iov[num].iov_base == NULL)
1404 return -ENOMEM;
1405 iov[num].iov_len = sizeof(struct create_durable_v2);
1406 if (!req->CreateContextsOffset)
1407 req->CreateContextsOffset =
1408 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1409 iov[1].iov_len);
1410 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
1411 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable_v2));
1412 *num_iovec = num + 1;
1413 return 0;
1414 }
1415
1416 static int
1417 add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
1418 struct cifs_open_parms *oparms)
1419 {
1420 struct smb2_create_req *req = iov[0].iov_base;
1421 unsigned int num = *num_iovec;
1422
1423 /* indicate that we don't need to relock the file */
1424 oparms->reconnect = false;
1425
1426 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
1427 if (iov[num].iov_base == NULL)
1428 return -ENOMEM;
1429 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
1430 if (!req->CreateContextsOffset)
1431 req->CreateContextsOffset =
1432 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1433 iov[1].iov_len);
1434 le32_add_cpu(&req->CreateContextsLength,
1435 sizeof(struct create_durable_handle_reconnect_v2));
1436 inc_rfc1001_len(&req->hdr,
1437 sizeof(struct create_durable_handle_reconnect_v2));
1438 *num_iovec = num + 1;
1439 return 0;
1440 }
1441
1442 static int
1443 add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1444 struct cifs_open_parms *oparms, bool use_persistent)
1445 {
1446 struct smb2_create_req *req = iov[0].iov_base;
1447 unsigned int num = *num_iovec;
1448
1449 if (use_persistent) {
1450 if (oparms->reconnect)
1451 return add_durable_reconnect_v2_context(iov, num_iovec,
1452 oparms);
1453 else
1454 return add_durable_v2_context(iov, num_iovec, oparms);
1455 }
1456
1457 if (oparms->reconnect) {
1458 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1459 /* indicate that we don't need to relock the file */
1460 oparms->reconnect = false;
1461 } else
1462 iov[num].iov_base = create_durable_buf();
1463 if (iov[num].iov_base == NULL)
1464 return -ENOMEM;
1465 iov[num].iov_len = sizeof(struct create_durable);
1466 if (!req->CreateContextsOffset)
1467 req->CreateContextsOffset =
1468 cpu_to_le32(sizeof(struct smb2_create_req) - 4 +
1469 iov[1].iov_len);
1470 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
1471 inc_rfc1001_len(&req->hdr, sizeof(struct create_durable));
1472 *num_iovec = num + 1;
1473 return 0;
1474 }
1475
1476 int
1477 SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
1478 __u8 *oplock, struct smb2_file_all_info *buf,
1479 struct smb2_err_rsp **err_buf)
1480 {
1481 struct smb2_create_req *req;
1482 struct smb2_create_rsp *rsp;
1483 struct TCP_Server_Info *server;
1484 struct cifs_tcon *tcon = oparms->tcon;
1485 struct cifs_ses *ses = tcon->ses;
1486 struct kvec iov[4];
1487 struct kvec rsp_iov;
1488 int resp_buftype;
1489 int uni_path_len;
1490 __le16 *copy_path = NULL;
1491 int copy_size;
1492 int rc = 0;
1493 unsigned int n_iov = 2;
1494 __u32 file_attributes = 0;
1495 char *dhc_buf = NULL, *lc_buf = NULL;
1496
1497 cifs_dbg(FYI, "create/open\n");
1498
1499 if (ses && (ses->server))
1500 server = ses->server;
1501 else
1502 return -EIO;
1503
1504 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
1505 if (rc)
1506 return rc;
1507
1508 if (oparms->create_options & CREATE_OPTION_READONLY)
1509 file_attributes |= ATTR_READONLY;
1510 if (oparms->create_options & CREATE_OPTION_SPECIAL)
1511 file_attributes |= ATTR_SYSTEM;
1512
1513 req->ImpersonationLevel = IL_IMPERSONATION;
1514 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
1515 /* File attributes ignored on open (used in create though) */
1516 req->FileAttributes = cpu_to_le32(file_attributes);
1517 req->ShareAccess = FILE_SHARE_ALL_LE;
1518 req->CreateDisposition = cpu_to_le32(oparms->disposition);
1519 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
1520 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
1521 /* do not count rfc1001 len field */
1522 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req) - 4);
1523
1524 iov[0].iov_base = (char *)req;
1525 /* 4 for rfc1002 length field */
1526 iov[0].iov_len = get_rfc1002_length(req) + 4;
1527
1528 /* MUST set path len (NameLength) to 0 opening root of share */
1529 req->NameLength = cpu_to_le16(uni_path_len - 2);
1530 /* -1 since last byte is buf[0] which is sent below (path) */
1531 iov[0].iov_len--;
1532 if (uni_path_len % 8 != 0) {
1533 copy_size = uni_path_len / 8 * 8;
1534 if (copy_size < uni_path_len)
1535 copy_size += 8;
1536
1537 copy_path = kzalloc(copy_size, GFP_KERNEL);
1538 if (!copy_path)
1539 return -ENOMEM;
1540 memcpy((char *)copy_path, (const char *)path,
1541 uni_path_len);
1542 uni_path_len = copy_size;
1543 path = copy_path;
1544 }
1545
1546 iov[1].iov_len = uni_path_len;
1547 iov[1].iov_base = path;
1548 /* -1 since last byte is buf[0] which was counted in smb2_buf_len */
1549 inc_rfc1001_len(req, uni_path_len - 1);
1550
1551 if (!server->oplocks)
1552 *oplock = SMB2_OPLOCK_LEVEL_NONE;
1553
1554 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
1555 *oplock == SMB2_OPLOCK_LEVEL_NONE)
1556 req->RequestedOplockLevel = *oplock;
1557 else {
1558 rc = add_lease_context(server, iov, &n_iov, oplock);
1559 if (rc) {
1560 cifs_small_buf_release(req);
1561 kfree(copy_path);
1562 return rc;
1563 }
1564 lc_buf = iov[n_iov-1].iov_base;
1565 }
1566
1567 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
1568 /* need to set Next field of lease context if we request it */
1569 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
1570 struct create_context *ccontext =
1571 (struct create_context *)iov[n_iov-1].iov_base;
1572 ccontext->Next =
1573 cpu_to_le32(server->vals->create_lease_size);
1574 }
1575
1576 rc = add_durable_context(iov, &n_iov, oparms,
1577 tcon->use_persistent);
1578 if (rc) {
1579 cifs_small_buf_release(req);
1580 kfree(copy_path);
1581 kfree(lc_buf);
1582 return rc;
1583 }
1584 dhc_buf = iov[n_iov-1].iov_base;
1585 }
1586
1587 rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, 0, &rsp_iov);
1588 cifs_small_buf_release(req);
1589 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
1590
1591 if (rc != 0) {
1592 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
1593 if (err_buf)
1594 *err_buf = kmemdup(rsp, get_rfc1002_length(rsp) + 4,
1595 GFP_KERNEL);
1596 goto creat_exit;
1597 }
1598
1599 oparms->fid->persistent_fid = rsp->PersistentFileId;
1600 oparms->fid->volatile_fid = rsp->VolatileFileId;
1601
1602 if (buf) {
1603 memcpy(buf, &rsp->CreationTime, 32);
1604 buf->AllocationSize = rsp->AllocationSize;
1605 buf->EndOfFile = rsp->EndofFile;
1606 buf->Attributes = rsp->FileAttributes;
1607 buf->NumberOfLinks = cpu_to_le32(1);
1608 buf->DeletePending = 0;
1609 }
1610
1611 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
1612 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch);
1613 else
1614 *oplock = rsp->OplockLevel;
1615 creat_exit:
1616 kfree(copy_path);
1617 kfree(lc_buf);
1618 kfree(dhc_buf);
1619 free_rsp_buf(resp_buftype, rsp);
1620 return rc;
1621 }
1622
1623 /*
1624 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
1625 */
1626 int
1627 SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1628 u64 volatile_fid, u32 opcode, bool is_fsctl, char *in_data,
1629 u32 indatalen, char **out_data, u32 *plen /* returned data len */)
1630 {
1631 struct smb2_ioctl_req *req;
1632 struct smb2_ioctl_rsp *rsp;
1633 struct smb2_sync_hdr *shdr;
1634 struct TCP_Server_Info *server;
1635 struct cifs_ses *ses;
1636 struct kvec iov[2];
1637 struct kvec rsp_iov;
1638 int resp_buftype;
1639 int n_iov;
1640 int rc = 0;
1641
1642 cifs_dbg(FYI, "SMB2 IOCTL\n");
1643
1644 if (out_data != NULL)
1645 *out_data = NULL;
1646
1647 /* zero out returned data len, in case of error */
1648 if (plen)
1649 *plen = 0;
1650
1651 if (tcon)
1652 ses = tcon->ses;
1653 else
1654 return -EIO;
1655
1656 if (ses && (ses->server))
1657 server = ses->server;
1658 else
1659 return -EIO;
1660
1661 rc = small_smb2_init(SMB2_IOCTL, tcon, (void **) &req);
1662 if (rc)
1663 return rc;
1664
1665 req->CtlCode = cpu_to_le32(opcode);
1666 req->PersistentFileId = persistent_fid;
1667 req->VolatileFileId = volatile_fid;
1668
1669 if (indatalen) {
1670 req->InputCount = cpu_to_le32(indatalen);
1671 /* do not set InputOffset if no input data */
1672 req->InputOffset =
1673 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer) - 4);
1674 iov[1].iov_base = in_data;
1675 iov[1].iov_len = indatalen;
1676 n_iov = 2;
1677 } else
1678 n_iov = 1;
1679
1680 req->OutputOffset = 0;
1681 req->OutputCount = 0; /* MBZ */
1682
1683 /*
1684 * Could increase MaxOutputResponse, but that would require more
1685 * than one credit. Windows typically sets this smaller, but for some
1686 * ioctls it may be useful to allow server to send more. No point
1687 * limiting what the server can send as long as fits in one credit
1688 */
1689 req->MaxOutputResponse = cpu_to_le32(0xFF00); /* < 64K uses 1 credit */
1690
1691 if (is_fsctl)
1692 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
1693 else
1694 req->Flags = 0;
1695
1696 iov[0].iov_base = (char *)req;
1697
1698 /*
1699 * If no input data, the size of ioctl struct in
1700 * protocol spec still includes a 1 byte data buffer,
1701 * but if input data passed to ioctl, we do not
1702 * want to double count this, so we do not send
1703 * the dummy one byte of data in iovec[0] if sending
1704 * input data (in iovec[1]). We also must add 4 bytes
1705 * in first iovec to allow for rfc1002 length field.
1706 */
1707
1708 if (indatalen) {
1709 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1710 inc_rfc1001_len(req, indatalen - 1);
1711 } else
1712 iov[0].iov_len = get_rfc1002_length(req) + 4;
1713
1714
1715 rc = SendReceive2(xid, ses, iov, n_iov, &resp_buftype, 0, &rsp_iov);
1716 cifs_small_buf_release(req);
1717 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
1718
1719 if ((rc != 0) && (rc != -EINVAL)) {
1720 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
1721 goto ioctl_exit;
1722 } else if (rc == -EINVAL) {
1723 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
1724 (opcode != FSCTL_SRV_COPYCHUNK)) {
1725 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
1726 goto ioctl_exit;
1727 }
1728 }
1729
1730 /* check if caller wants to look at return data or just return rc */
1731 if ((plen == NULL) || (out_data == NULL))
1732 goto ioctl_exit;
1733
1734 *plen = le32_to_cpu(rsp->OutputCount);
1735
1736 /* We check for obvious errors in the output buffer length and offset */
1737 if (*plen == 0)
1738 goto ioctl_exit; /* server returned no data */
1739 else if (*plen > 0xFF00) {
1740 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
1741 *plen = 0;
1742 rc = -EIO;
1743 goto ioctl_exit;
1744 }
1745
1746 if (get_rfc1002_length(rsp) < le32_to_cpu(rsp->OutputOffset) + *plen) {
1747 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
1748 le32_to_cpu(rsp->OutputOffset));
1749 *plen = 0;
1750 rc = -EIO;
1751 goto ioctl_exit;
1752 }
1753
1754 *out_data = kmalloc(*plen, GFP_KERNEL);
1755 if (*out_data == NULL) {
1756 rc = -ENOMEM;
1757 goto ioctl_exit;
1758 }
1759
1760 shdr = get_sync_hdr(rsp);
1761 memcpy(*out_data, (char *)shdr + le32_to_cpu(rsp->OutputOffset), *plen);
1762 ioctl_exit:
1763 free_rsp_buf(resp_buftype, rsp);
1764 return rc;
1765 }
1766
1767 /*
1768 * Individual callers to ioctl worker function follow
1769 */
1770
1771 int
1772 SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
1773 u64 persistent_fid, u64 volatile_fid)
1774 {
1775 int rc;
1776 struct compress_ioctl fsctl_input;
1777 char *ret_data = NULL;
1778
1779 fsctl_input.CompressionState =
1780 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
1781
1782 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
1783 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
1784 (char *)&fsctl_input /* data input */,
1785 2 /* in data len */, &ret_data /* out data */, NULL);
1786
1787 cifs_dbg(FYI, "set compression rc %d\n", rc);
1788
1789 return rc;
1790 }
1791
1792 int
1793 SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1794 u64 persistent_fid, u64 volatile_fid)
1795 {
1796 struct smb2_close_req *req;
1797 struct smb2_close_rsp *rsp;
1798 struct TCP_Server_Info *server;
1799 struct cifs_ses *ses = tcon->ses;
1800 struct kvec iov[1];
1801 struct kvec rsp_iov;
1802 int resp_buftype;
1803 int rc = 0;
1804
1805 cifs_dbg(FYI, "Close\n");
1806
1807 if (ses && (ses->server))
1808 server = ses->server;
1809 else
1810 return -EIO;
1811
1812 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1813 if (rc)
1814 return rc;
1815
1816 req->PersistentFileId = persistent_fid;
1817 req->VolatileFileId = volatile_fid;
1818
1819 iov[0].iov_base = (char *)req;
1820 /* 4 for rfc1002 length field */
1821 iov[0].iov_len = get_rfc1002_length(req) + 4;
1822
1823 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0, &rsp_iov);
1824 cifs_small_buf_release(req);
1825 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
1826
1827 if (rc != 0) {
1828 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
1829 goto close_exit;
1830 }
1831
1832 /* BB FIXME - decode close response, update inode for caching */
1833
1834 close_exit:
1835 free_rsp_buf(resp_buftype, rsp);
1836 return rc;
1837 }
1838
1839 static int
1840 validate_buf(unsigned int offset, unsigned int buffer_length,
1841 struct smb2_hdr *hdr, unsigned int min_buf_size)
1842
1843 {
1844 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1845 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1846 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1847 char *end_of_buf = begin_of_buf + buffer_length;
1848
1849
1850 if (buffer_length < min_buf_size) {
1851 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
1852 buffer_length, min_buf_size);
1853 return -EINVAL;
1854 }
1855
1856 /* check if beyond RFC1001 maximum length */
1857 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
1858 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
1859 buffer_length, smb_len);
1860 return -EINVAL;
1861 }
1862
1863 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
1864 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
1865 return -EINVAL;
1866 }
1867
1868 return 0;
1869 }
1870
1871 /*
1872 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1873 * Caller must free buffer.
1874 */
1875 static int
1876 validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1877 struct smb2_hdr *hdr, unsigned int minbufsize,
1878 char *data)
1879
1880 {
1881 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1882 int rc;
1883
1884 if (!data)
1885 return -EINVAL;
1886
1887 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1888 if (rc)
1889 return rc;
1890
1891 memcpy(data, begin_of_buf, buffer_length);
1892
1893 return 0;
1894 }
1895
1896 static int
1897 query_info(const unsigned int xid, struct cifs_tcon *tcon,
1898 u64 persistent_fid, u64 volatile_fid, u8 info_class,
1899 size_t output_len, size_t min_len, void *data)
1900 {
1901 struct smb2_query_info_req *req;
1902 struct smb2_query_info_rsp *rsp = NULL;
1903 struct kvec iov[2];
1904 struct kvec rsp_iov;
1905 int rc = 0;
1906 int resp_buftype;
1907 struct TCP_Server_Info *server;
1908 struct cifs_ses *ses = tcon->ses;
1909
1910 cifs_dbg(FYI, "Query Info\n");
1911
1912 if (ses && (ses->server))
1913 server = ses->server;
1914 else
1915 return -EIO;
1916
1917 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1918 if (rc)
1919 return rc;
1920
1921 req->InfoType = SMB2_O_INFO_FILE;
1922 req->FileInfoClass = info_class;
1923 req->PersistentFileId = persistent_fid;
1924 req->VolatileFileId = volatile_fid;
1925 /* 4 for rfc1002 length field and 1 for Buffer */
1926 req->InputBufferOffset =
1927 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
1928 req->OutputBufferLength = cpu_to_le32(output_len);
1929
1930 iov[0].iov_base = (char *)req;
1931 /* 4 for rfc1002 length field */
1932 iov[0].iov_len = get_rfc1002_length(req) + 4;
1933
1934 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0, &rsp_iov);
1935 cifs_small_buf_release(req);
1936 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
1937
1938 if (rc) {
1939 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1940 goto qinf_exit;
1941 }
1942
1943 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1944 le32_to_cpu(rsp->OutputBufferLength),
1945 &rsp->hdr, min_len, data);
1946
1947 qinf_exit:
1948 free_rsp_buf(resp_buftype, rsp);
1949 return rc;
1950 }
1951
1952 int
1953 SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1954 u64 persistent_fid, u64 volatile_fid,
1955 struct smb2_file_all_info *data)
1956 {
1957 return query_info(xid, tcon, persistent_fid, volatile_fid,
1958 FILE_ALL_INFORMATION,
1959 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
1960 sizeof(struct smb2_file_all_info), data);
1961 }
1962
1963 int
1964 SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1965 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1966 {
1967 return query_info(xid, tcon, persistent_fid, volatile_fid,
1968 FILE_INTERNAL_INFORMATION,
1969 sizeof(struct smb2_file_internal_info),
1970 sizeof(struct smb2_file_internal_info), uniqueid);
1971 }
1972
1973 /*
1974 * This is a no-op for now. We're not really interested in the reply, but
1975 * rather in the fact that the server sent one and that server->lstrp
1976 * gets updated.
1977 *
1978 * FIXME: maybe we should consider checking that the reply matches request?
1979 */
1980 static void
1981 smb2_echo_callback(struct mid_q_entry *mid)
1982 {
1983 struct TCP_Server_Info *server = mid->callback_data;
1984 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
1985 unsigned int credits_received = 1;
1986
1987 if (mid->mid_state == MID_RESPONSE_RECEIVED)
1988 credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest);
1989
1990 mutex_lock(&server->srv_mutex);
1991 DeleteMidQEntry(mid);
1992 mutex_unlock(&server->srv_mutex);
1993 add_credits(server, credits_received, CIFS_ECHO_OP);
1994 }
1995
1996 void smb2_reconnect_server(struct work_struct *work)
1997 {
1998 struct TCP_Server_Info *server = container_of(work,
1999 struct TCP_Server_Info, reconnect.work);
2000 struct cifs_ses *ses;
2001 struct cifs_tcon *tcon, *tcon2;
2002 struct list_head tmp_list;
2003 int tcon_exist = false;
2004
2005 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
2006 mutex_lock(&server->reconnect_mutex);
2007
2008 INIT_LIST_HEAD(&tmp_list);
2009 cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n");
2010
2011 spin_lock(&cifs_tcp_ses_lock);
2012 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
2013 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
2014 if (tcon->need_reconnect || tcon->need_reopen_files) {
2015 tcon->tc_count++;
2016 list_add_tail(&tcon->rlist, &tmp_list);
2017 tcon_exist = true;
2018 }
2019 }
2020 }
2021 /*
2022 * Get the reference to server struct to be sure that the last call of
2023 * cifs_put_tcon() in the loop below won't release the server pointer.
2024 */
2025 if (tcon_exist)
2026 server->srv_count++;
2027
2028 spin_unlock(&cifs_tcp_ses_lock);
2029
2030 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
2031 if (!smb2_reconnect(SMB2_INTERNAL_CMD, tcon))
2032 cifs_reopen_persistent_handles(tcon);
2033 list_del_init(&tcon->rlist);
2034 cifs_put_tcon(tcon);
2035 }
2036
2037 cifs_dbg(FYI, "Reconnecting tcons finished\n");
2038 mutex_unlock(&server->reconnect_mutex);
2039
2040 /* now we can safely release srv struct */
2041 if (tcon_exist)
2042 cifs_put_tcp_session(server, 1);
2043 }
2044
2045 int
2046 SMB2_echo(struct TCP_Server_Info *server)
2047 {
2048 struct smb2_echo_req *req;
2049 int rc = 0;
2050 struct kvec iov[2];
2051 struct smb_rqst rqst = { .rq_iov = iov,
2052 .rq_nvec = 2 };
2053
2054 cifs_dbg(FYI, "In echo request\n");
2055
2056 if (server->tcpStatus == CifsNeedNegotiate) {
2057 /* No need to send echo on newly established connections */
2058 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
2059 return rc;
2060 }
2061
2062 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
2063 if (rc)
2064 return rc;
2065
2066 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
2067
2068 /* 4 for rfc1002 length field */
2069 iov[0].iov_len = 4;
2070 iov[0].iov_base = (char *)req;
2071 iov[1].iov_len = get_rfc1002_length(req);
2072 iov[1].iov_base = (char *)req + 4;
2073
2074 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
2075 CIFS_ECHO_OP);
2076 if (rc)
2077 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
2078
2079 cifs_small_buf_release(req);
2080 return rc;
2081 }
2082
2083 int
2084 SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2085 u64 volatile_fid)
2086 {
2087 struct smb2_flush_req *req;
2088 struct TCP_Server_Info *server;
2089 struct cifs_ses *ses = tcon->ses;
2090 struct kvec iov[1];
2091 struct kvec rsp_iov;
2092 int resp_buftype;
2093 int rc = 0;
2094
2095 cifs_dbg(FYI, "Flush\n");
2096
2097 if (ses && (ses->server))
2098 server = ses->server;
2099 else
2100 return -EIO;
2101
2102 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
2103 if (rc)
2104 return rc;
2105
2106 req->PersistentFileId = persistent_fid;
2107 req->VolatileFileId = volatile_fid;
2108
2109 iov[0].iov_base = (char *)req;
2110 /* 4 for rfc1002 length field */
2111 iov[0].iov_len = get_rfc1002_length(req) + 4;
2112
2113 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0, &rsp_iov);
2114 cifs_small_buf_release(req);
2115
2116 if (rc != 0)
2117 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
2118
2119 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
2120 return rc;
2121 }
2122
2123 /*
2124 * To form a chain of read requests, any read requests after the first should
2125 * have the end_of_chain boolean set to true.
2126 */
2127 static int
2128 smb2_new_read_req(void **buf, unsigned int *total_len,
2129 struct cifs_io_parms *io_parms, unsigned int remaining_bytes,
2130 int request_type)
2131 {
2132 int rc = -EACCES;
2133 struct smb2_read_req *req = NULL;
2134 struct smb2_sync_hdr *shdr;
2135
2136 rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
2137 if (rc)
2138 return rc;
2139 if (io_parms->tcon->ses->server == NULL)
2140 return -ECONNABORTED;
2141
2142 shdr = get_sync_hdr(req);
2143 shdr->ProcessId = cpu_to_le32(io_parms->pid);
2144
2145 req->PersistentFileId = io_parms->persistent_fid;
2146 req->VolatileFileId = io_parms->volatile_fid;
2147 req->ReadChannelInfoOffset = 0; /* reserved */
2148 req->ReadChannelInfoLength = 0; /* reserved */
2149 req->Channel = 0; /* reserved */
2150 req->MinimumCount = 0;
2151 req->Length = cpu_to_le32(io_parms->length);
2152 req->Offset = cpu_to_le64(io_parms->offset);
2153
2154 if (request_type & CHAINED_REQUEST) {
2155 if (!(request_type & END_OF_CHAIN)) {
2156 /* 4 for rfc1002 length field */
2157 shdr->NextCommand =
2158 cpu_to_le32(get_rfc1002_length(req) + 4);
2159 } else /* END_OF_CHAIN */
2160 shdr->NextCommand = 0;
2161 if (request_type & RELATED_REQUEST) {
2162 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
2163 /*
2164 * Related requests use info from previous read request
2165 * in chain.
2166 */
2167 shdr->SessionId = 0xFFFFFFFF;
2168 shdr->TreeId = 0xFFFFFFFF;
2169 req->PersistentFileId = 0xFFFFFFFF;
2170 req->VolatileFileId = 0xFFFFFFFF;
2171 }
2172 }
2173 if (remaining_bytes > io_parms->length)
2174 req->RemainingBytes = cpu_to_le32(remaining_bytes);
2175 else
2176 req->RemainingBytes = 0;
2177
2178 *buf = req;
2179 /* 4 for rfc1002 length field */
2180 *total_len = get_rfc1002_length(req) + 4;
2181 return rc;
2182 }
2183
2184 static void
2185 smb2_readv_callback(struct mid_q_entry *mid)
2186 {
2187 struct cifs_readdata *rdata = mid->callback_data;
2188 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
2189 struct TCP_Server_Info *server = tcon->ses->server;
2190 struct smb2_sync_hdr *shdr =
2191 (struct smb2_sync_hdr *)rdata->iov[1].iov_base;
2192 unsigned int credits_received = 1;
2193 struct smb_rqst rqst = { .rq_iov = rdata->iov,
2194 .rq_nvec = 2,
2195 .rq_pages = rdata->pages,
2196 .rq_npages = rdata->nr_pages,
2197 .rq_pagesz = rdata->pagesz,
2198 .rq_tailsz = rdata->tailsz };
2199
2200 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
2201 __func__, mid->mid, mid->mid_state, rdata->result,
2202 rdata->bytes);
2203
2204 switch (mid->mid_state) {
2205 case MID_RESPONSE_RECEIVED:
2206 credits_received = le16_to_cpu(shdr->CreditRequest);
2207 /* result already set, check signature */
2208 if (server->sign) {
2209 int rc;
2210
2211 rc = smb2_verify_signature(&rqst, server);
2212 if (rc)
2213 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
2214 rc);
2215 }
2216 /* FIXME: should this be counted toward the initiating task? */
2217 task_io_account_read(rdata->got_bytes);
2218 cifs_stats_bytes_read(tcon, rdata->got_bytes);
2219 break;
2220 case MID_REQUEST_SUBMITTED:
2221 case MID_RETRY_NEEDED:
2222 rdata->result = -EAGAIN;
2223 if (server->sign && rdata->got_bytes)
2224 /* reset bytes number since we can not check a sign */
2225 rdata->got_bytes = 0;
2226 /* FIXME: should this be counted toward the initiating task? */
2227 task_io_account_read(rdata->got_bytes);
2228 cifs_stats_bytes_read(tcon, rdata->got_bytes);
2229 break;
2230 default:
2231 if (rdata->result != -ENODATA)
2232 rdata->result = -EIO;
2233 }
2234
2235 if (rdata->result)
2236 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
2237
2238 queue_work(cifsiod_wq, &rdata->work);
2239 mutex_lock(&server->srv_mutex);
2240 DeleteMidQEntry(mid);
2241 mutex_unlock(&server->srv_mutex);
2242 add_credits(server, credits_received, 0);
2243 }
2244
2245 /* smb2_async_readv - send an async read, and set up mid to handle result */
2246 int
2247 smb2_async_readv(struct cifs_readdata *rdata)
2248 {
2249 int rc, flags = 0;
2250 char *buf;
2251 struct smb2_sync_hdr *shdr;
2252 struct cifs_io_parms io_parms;
2253 struct smb_rqst rqst = { .rq_iov = rdata->iov,
2254 .rq_nvec = 2 };
2255 struct TCP_Server_Info *server;
2256 unsigned int total_len;
2257
2258 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
2259 __func__, rdata->offset, rdata->bytes);
2260
2261 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
2262 io_parms.offset = rdata->offset;
2263 io_parms.length = rdata->bytes;
2264 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
2265 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
2266 io_parms.pid = rdata->pid;
2267
2268 server = io_parms.tcon->ses->server;
2269
2270 rc = smb2_new_read_req((void **) &buf, &total_len, &io_parms, 0, 0);
2271 if (rc) {
2272 if (rc == -EAGAIN && rdata->credits) {
2273 /* credits was reset by reconnect */
2274 rdata->credits = 0;
2275 /* reduce in_flight value since we won't send the req */
2276 spin_lock(&server->req_lock);
2277 server->in_flight--;
2278 spin_unlock(&server->req_lock);
2279 }
2280 return rc;
2281 }
2282
2283 shdr = get_sync_hdr(buf);
2284 /* 4 for rfc1002 length field */
2285 rdata->iov[0].iov_len = 4;
2286 rdata->iov[0].iov_base = buf;
2287 rdata->iov[1].iov_len = total_len - 4;
2288 rdata->iov[1].iov_base = buf + 4;
2289
2290 if (rdata->credits) {
2291 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
2292 SMB2_MAX_BUFFER_SIZE));
2293 shdr->CreditRequest = shdr->CreditCharge;
2294 spin_lock(&server->req_lock);
2295 server->credits += rdata->credits -
2296 le16_to_cpu(shdr->CreditCharge);
2297 spin_unlock(&server->req_lock);
2298 wake_up(&server->request_q);
2299 flags = CIFS_HAS_CREDITS;
2300 }
2301
2302 kref_get(&rdata->refcount);
2303 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
2304 cifs_readv_receive, smb2_readv_callback,
2305 rdata, flags);
2306 if (rc) {
2307 kref_put(&rdata->refcount, cifs_readdata_release);
2308 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
2309 }
2310
2311 cifs_small_buf_release(buf);
2312 return rc;
2313 }
2314
2315 int
2316 SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
2317 unsigned int *nbytes, char **buf, int *buf_type)
2318 {
2319 int resp_buftype, rc = -EACCES;
2320 struct smb2_read_rsp *rsp = NULL;
2321 struct smb2_sync_hdr *shdr;
2322 struct kvec iov[1];
2323 struct kvec rsp_iov;
2324 unsigned int total_len;
2325 char *req;
2326
2327 *nbytes = 0;
2328 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, 0, 0);
2329 if (rc)
2330 return rc;
2331
2332 iov[0].iov_base = buf;
2333 iov[0].iov_len = total_len;
2334
2335 rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
2336 &resp_buftype, CIFS_LOG_ERROR, &rsp_iov);
2337 cifs_small_buf_release(iov[0].iov_base);
2338
2339 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
2340 shdr = get_sync_hdr(rsp);
2341
2342 if (shdr->Status == STATUS_END_OF_FILE) {
2343 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
2344 return 0;
2345 }
2346
2347 if (rc) {
2348 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
2349 cifs_dbg(VFS, "Send error in read = %d\n", rc);
2350 } else {
2351 *nbytes = le32_to_cpu(rsp->DataLength);
2352 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
2353 (*nbytes > io_parms->length)) {
2354 cifs_dbg(FYI, "bad length %d for count %d\n",
2355 *nbytes, io_parms->length);
2356 rc = -EIO;
2357 *nbytes = 0;
2358 }
2359 }
2360
2361 if (*buf) {
2362 memcpy(*buf, (char *)shdr + rsp->DataOffset, *nbytes);
2363 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
2364 } else if (resp_buftype != CIFS_NO_BUFFER) {
2365 *buf = rsp_iov.iov_base;
2366 if (resp_buftype == CIFS_SMALL_BUFFER)
2367 *buf_type = CIFS_SMALL_BUFFER;
2368 else if (resp_buftype == CIFS_LARGE_BUFFER)
2369 *buf_type = CIFS_LARGE_BUFFER;
2370 }
2371 return rc;
2372 }
2373
2374 /*
2375 * Check the mid_state and signature on received buffer (if any), and queue the
2376 * workqueue completion task.
2377 */
2378 static void
2379 smb2_writev_callback(struct mid_q_entry *mid)
2380 {
2381 struct cifs_writedata *wdata = mid->callback_data;
2382 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2383 struct TCP_Server_Info *server = tcon->ses->server;
2384 unsigned int written;
2385 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
2386 unsigned int credits_received = 1;
2387
2388 switch (mid->mid_state) {
2389 case MID_RESPONSE_RECEIVED:
2390 credits_received = le16_to_cpu(rsp->hdr.sync_hdr.CreditRequest);
2391 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
2392 if (wdata->result != 0)
2393 break;
2394
2395 written = le32_to_cpu(rsp->DataLength);
2396 /*
2397 * Mask off high 16 bits when bytes written as returned
2398 * by the server is greater than bytes requested by the
2399 * client. OS/2 servers are known to set incorrect
2400 * CountHigh values.
2401 */
2402 if (written > wdata->bytes)
2403 written &= 0xFFFF;
2404
2405 if (written < wdata->bytes)
2406 wdata->result = -ENOSPC;
2407 else
2408 wdata->bytes = written;
2409 break;
2410 case MID_REQUEST_SUBMITTED:
2411 case MID_RETRY_NEEDED:
2412 wdata->result = -EAGAIN;
2413 break;
2414 default:
2415 wdata->result = -EIO;
2416 break;
2417 }
2418
2419 if (wdata->result)
2420 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2421
2422 queue_work(cifsiod_wq, &wdata->work);
2423 mutex_lock(&server->srv_mutex);
2424 DeleteMidQEntry(mid);
2425 mutex_unlock(&server->srv_mutex);
2426 add_credits(tcon->ses->server, credits_received, 0);
2427 }
2428
2429 /* smb2_async_writev - send an async write, and set up mid to handle result */
2430 int
2431 smb2_async_writev(struct cifs_writedata *wdata,
2432 void (*release)(struct kref *kref))
2433 {
2434 int rc = -EACCES, flags = 0;
2435 struct smb2_write_req *req = NULL;
2436 struct smb2_sync_hdr *shdr;
2437 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
2438 struct TCP_Server_Info *server = tcon->ses->server;
2439 struct kvec iov[2];
2440 struct smb_rqst rqst = { };
2441
2442 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
2443 if (rc) {
2444 if (rc == -EAGAIN && wdata->credits) {
2445 /* credits was reset by reconnect */
2446 wdata->credits = 0;
2447 /* reduce in_flight value since we won't send the req */
2448 spin_lock(&server->req_lock);
2449 server->in_flight--;
2450 spin_unlock(&server->req_lock);
2451 }
2452 goto async_writev_out;
2453 }
2454
2455 shdr = get_sync_hdr(req);
2456 shdr->ProcessId = cpu_to_le32(wdata->cfile->pid);
2457
2458 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
2459 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
2460 req->WriteChannelInfoOffset = 0;
2461 req->WriteChannelInfoLength = 0;
2462 req->Channel = 0;
2463 req->Offset = cpu_to_le64(wdata->offset);
2464 /* 4 for rfc1002 length field */
2465 req->DataOffset = cpu_to_le16(
2466 offsetof(struct smb2_write_req, Buffer) - 4);
2467 req->RemainingBytes = 0;
2468
2469 /* 4 for rfc1002 length field and 1 for Buffer */
2470 iov[0].iov_len = 4;
2471 iov[0].iov_base = req;
2472 iov[1].iov_len = get_rfc1002_length(req) - 1;
2473 iov[1].iov_base = (char *)req + 4;
2474
2475 rqst.rq_iov = iov;
2476 rqst.rq_nvec = 2;
2477 rqst.rq_pages = wdata->pages;
2478 rqst.rq_npages = wdata->nr_pages;
2479 rqst.rq_pagesz = wdata->pagesz;
2480 rqst.rq_tailsz = wdata->tailsz;
2481
2482 cifs_dbg(FYI, "async write at %llu %u bytes\n",
2483 wdata->offset, wdata->bytes);
2484
2485 req->Length = cpu_to_le32(wdata->bytes);
2486
2487 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
2488
2489 if (wdata->credits) {
2490 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
2491 SMB2_MAX_BUFFER_SIZE));
2492 shdr->CreditRequest = shdr->CreditCharge;
2493 spin_lock(&server->req_lock);
2494 server->credits += wdata->credits -
2495 le16_to_cpu(shdr->CreditCharge);
2496 spin_unlock(&server->req_lock);
2497 wake_up(&server->request_q);
2498 flags = CIFS_HAS_CREDITS;
2499 }
2500
2501 kref_get(&wdata->refcount);
2502 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, wdata,
2503 flags);
2504
2505 if (rc) {
2506 kref_put(&wdata->refcount, release);
2507 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
2508 }
2509
2510 async_writev_out:
2511 cifs_small_buf_release(req);
2512 return rc;
2513 }
2514
2515 /*
2516 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
2517 * The length field from io_parms must be at least 1 and indicates a number of
2518 * elements with data to write that begins with position 1 in iov array. All
2519 * data length is specified by count.
2520 */
2521 int
2522 SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
2523 unsigned int *nbytes, struct kvec *iov, int n_vec)
2524 {
2525 int rc = 0;
2526 struct smb2_write_req *req = NULL;
2527 struct smb2_write_rsp *rsp = NULL;
2528 int resp_buftype;
2529 struct kvec rsp_iov;
2530
2531 *nbytes = 0;
2532
2533 if (n_vec < 1)
2534 return rc;
2535
2536 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
2537 if (rc)
2538 return rc;
2539
2540 if (io_parms->tcon->ses->server == NULL)
2541 return -ECONNABORTED;
2542
2543 req->hdr.sync_hdr.ProcessId = cpu_to_le32(io_parms->pid);
2544
2545 req->PersistentFileId = io_parms->persistent_fid;
2546 req->VolatileFileId = io_parms->volatile_fid;
2547 req->WriteChannelInfoOffset = 0;
2548 req->WriteChannelInfoLength = 0;
2549 req->Channel = 0;
2550 req->Length = cpu_to_le32(io_parms->length);
2551 req->Offset = cpu_to_le64(io_parms->offset);
2552 /* 4 for rfc1002 length field */
2553 req->DataOffset = cpu_to_le16(
2554 offsetof(struct smb2_write_req, Buffer) - 4);
2555 req->RemainingBytes = 0;
2556
2557 iov[0].iov_base = (char *)req;
2558 /* 4 for rfc1002 length field and 1 for Buffer */
2559 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2560
2561 /* length of entire message including data to be written */
2562 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
2563
2564 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
2565 &resp_buftype, 0, &rsp_iov);
2566 cifs_small_buf_release(req);
2567 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
2568
2569 if (rc) {
2570 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
2571 cifs_dbg(VFS, "Send error in write = %d\n", rc);
2572 } else
2573 *nbytes = le32_to_cpu(rsp->DataLength);
2574
2575 free_rsp_buf(resp_buftype, rsp);
2576 return rc;
2577 }
2578
2579 static unsigned int
2580 num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
2581 {
2582 int len;
2583 unsigned int entrycount = 0;
2584 unsigned int next_offset = 0;
2585 FILE_DIRECTORY_INFO *entryptr;
2586
2587 if (bufstart == NULL)
2588 return 0;
2589
2590 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
2591
2592 while (1) {
2593 entryptr = (FILE_DIRECTORY_INFO *)
2594 ((char *)entryptr + next_offset);
2595
2596 if ((char *)entryptr + size > end_of_buf) {
2597 cifs_dbg(VFS, "malformed search entry would overflow\n");
2598 break;
2599 }
2600
2601 len = le32_to_cpu(entryptr->FileNameLength);
2602 if ((char *)entryptr + len + size > end_of_buf) {
2603 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
2604 end_of_buf);
2605 break;
2606 }
2607
2608 *lastentry = (char *)entryptr;
2609 entrycount++;
2610
2611 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
2612 if (!next_offset)
2613 break;
2614 }
2615
2616 return entrycount;
2617 }
2618
2619 /*
2620 * Readdir/FindFirst
2621 */
2622 int
2623 SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
2624 u64 persistent_fid, u64 volatile_fid, int index,
2625 struct cifs_search_info *srch_inf)
2626 {
2627 struct smb2_query_directory_req *req;
2628 struct smb2_query_directory_rsp *rsp = NULL;
2629 struct kvec iov[2];
2630 struct kvec rsp_iov;
2631 int rc = 0;
2632 int len;
2633 int resp_buftype = CIFS_NO_BUFFER;
2634 unsigned char *bufptr;
2635 struct TCP_Server_Info *server;
2636 struct cifs_ses *ses = tcon->ses;
2637 __le16 asteriks = cpu_to_le16('*');
2638 char *end_of_smb;
2639 unsigned int output_size = CIFSMaxBufSize;
2640 size_t info_buf_size;
2641
2642 if (ses && (ses->server))
2643 server = ses->server;
2644 else
2645 return -EIO;
2646
2647 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
2648 if (rc)
2649 return rc;
2650
2651 switch (srch_inf->info_level) {
2652 case SMB_FIND_FILE_DIRECTORY_INFO:
2653 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
2654 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
2655 break;
2656 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
2657 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
2658 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
2659 break;
2660 default:
2661 cifs_dbg(VFS, "info level %u isn't supported\n",
2662 srch_inf->info_level);
2663 rc = -EINVAL;
2664 goto qdir_exit;
2665 }
2666
2667 req->FileIndex = cpu_to_le32(index);
2668 req->PersistentFileId = persistent_fid;
2669 req->VolatileFileId = volatile_fid;
2670
2671 len = 0x2;
2672 bufptr = req->Buffer;
2673 memcpy(bufptr, &asteriks, len);
2674
2675 req->FileNameOffset =
2676 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
2677 req->FileNameLength = cpu_to_le16(len);
2678 /*
2679 * BB could be 30 bytes or so longer if we used SMB2 specific
2680 * buffer lengths, but this is safe and close enough.
2681 */
2682 output_size = min_t(unsigned int, output_size, server->maxBuf);
2683 output_size = min_t(unsigned int, output_size, 2 << 15);
2684 req->OutputBufferLength = cpu_to_le32(output_size);
2685
2686 iov[0].iov_base = (char *)req;
2687 /* 4 for RFC1001 length and 1 for Buffer */
2688 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
2689
2690 iov[1].iov_base = (char *)(req->Buffer);
2691 iov[1].iov_len = len;
2692
2693 inc_rfc1001_len(req, len - 1 /* Buffer */);
2694
2695 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0, &rsp_iov);
2696 cifs_small_buf_release(req);
2697 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
2698
2699 if (rc) {
2700 if (rc == -ENODATA &&
2701 rsp->hdr.sync_hdr.Status == STATUS_NO_MORE_FILES) {
2702 srch_inf->endOfSearch = true;
2703 rc = 0;
2704 }
2705 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
2706 goto qdir_exit;
2707 }
2708
2709 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2710 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2711 info_buf_size);
2712 if (rc)
2713 goto qdir_exit;
2714
2715 srch_inf->unicode = true;
2716
2717 if (srch_inf->ntwrk_buf_start) {
2718 if (srch_inf->smallBuf)
2719 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
2720 else
2721 cifs_buf_release(srch_inf->ntwrk_buf_start);
2722 }
2723 srch_inf->ntwrk_buf_start = (char *)rsp;
2724 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
2725 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
2726 /* 4 for rfc1002 length field */
2727 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
2728 srch_inf->entries_in_buffer =
2729 num_entries(srch_inf->srch_entries_start, end_of_smb,
2730 &srch_inf->last_entry, info_buf_size);
2731 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
2732 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
2733 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
2734 srch_inf->srch_entries_start, srch_inf->last_entry);
2735 if (resp_buftype == CIFS_LARGE_BUFFER)
2736 srch_inf->smallBuf = false;
2737 else if (resp_buftype == CIFS_SMALL_BUFFER)
2738 srch_inf->smallBuf = true;
2739 else
2740 cifs_dbg(VFS, "illegal search buffer type\n");
2741
2742 return rc;
2743
2744 qdir_exit:
2745 free_rsp_buf(resp_buftype, rsp);
2746 return rc;
2747 }
2748
2749 static int
2750 send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2751 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
2752 unsigned int num, void **data, unsigned int *size)
2753 {
2754 struct smb2_set_info_req *req;
2755 struct smb2_set_info_rsp *rsp = NULL;
2756 struct kvec *iov;
2757 struct kvec rsp_iov;
2758 int rc = 0;
2759 int resp_buftype;
2760 unsigned int i;
2761 struct TCP_Server_Info *server;
2762 struct cifs_ses *ses = tcon->ses;
2763
2764 if (ses && (ses->server))
2765 server = ses->server;
2766 else
2767 return -EIO;
2768
2769 if (!num)
2770 return -EINVAL;
2771
2772 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
2773 if (!iov)
2774 return -ENOMEM;
2775
2776 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
2777 if (rc) {
2778 kfree(iov);
2779 return rc;
2780 }
2781
2782 req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid);
2783
2784 req->InfoType = SMB2_O_INFO_FILE;
2785 req->FileInfoClass = info_class;
2786 req->PersistentFileId = persistent_fid;
2787 req->VolatileFileId = volatile_fid;
2788
2789 /* 4 for RFC1001 length and 1 for Buffer */
2790 req->BufferOffset =
2791 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
2792 req->BufferLength = cpu_to_le32(*size);
2793
2794 inc_rfc1001_len(req, *size - 1 /* Buffer */);
2795
2796 memcpy(req->Buffer, *data, *size);
2797
2798 iov[0].iov_base = (char *)req;
2799 /* 4 for RFC1001 length */
2800 iov[0].iov_len = get_rfc1002_length(req) + 4;
2801
2802 for (i = 1; i < num; i++) {
2803 inc_rfc1001_len(req, size[i]);
2804 le32_add_cpu(&req->BufferLength, size[i]);
2805 iov[i].iov_base = (char *)data[i];
2806 iov[i].iov_len = size[i];
2807 }
2808
2809 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0, &rsp_iov);
2810 cifs_small_buf_release(req);
2811 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
2812
2813 if (rc != 0)
2814 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
2815
2816 free_rsp_buf(resp_buftype, rsp);
2817 kfree(iov);
2818 return rc;
2819 }
2820
2821 int
2822 SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
2823 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2824 {
2825 struct smb2_file_rename_info info;
2826 void **data;
2827 unsigned int size[2];
2828 int rc;
2829 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2830
2831 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2832 if (!data)
2833 return -ENOMEM;
2834
2835 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
2836 /* 0 = fail if target already exists */
2837 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
2838 info.FileNameLength = cpu_to_le32(len);
2839
2840 data[0] = &info;
2841 size[0] = sizeof(struct smb2_file_rename_info);
2842
2843 data[1] = target_file;
2844 size[1] = len + 2 /* null */;
2845
2846 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
2847 current->tgid, FILE_RENAME_INFORMATION, 2, data,
2848 size);
2849 kfree(data);
2850 return rc;
2851 }
2852
2853 int
2854 SMB2_rmdir(const unsigned int xid, struct cifs_tcon *tcon,
2855 u64 persistent_fid, u64 volatile_fid)
2856 {
2857 __u8 delete_pending = 1;
2858 void *data;
2859 unsigned int size;
2860
2861 data = &delete_pending;
2862 size = 1; /* sizeof __u8 */
2863
2864 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2865 current->tgid, FILE_DISPOSITION_INFORMATION, 1, &data,
2866 &size);
2867 }
2868
2869 int
2870 SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
2871 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
2872 {
2873 struct smb2_file_link_info info;
2874 void **data;
2875 unsigned int size[2];
2876 int rc;
2877 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
2878
2879 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
2880 if (!data)
2881 return -ENOMEM;
2882
2883 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
2884 /* 0 = fail if link already exists */
2885 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
2886 info.FileNameLength = cpu_to_le32(len);
2887
2888 data[0] = &info;
2889 size[0] = sizeof(struct smb2_file_link_info);
2890
2891 data[1] = target_file;
2892 size[1] = len + 2 /* null */;
2893
2894 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
2895 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
2896 kfree(data);
2897 return rc;
2898 }
2899
2900 int
2901 SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
2902 u64 volatile_fid, u32 pid, __le64 *eof, bool is_falloc)
2903 {
2904 struct smb2_file_eof_info info;
2905 void *data;
2906 unsigned int size;
2907
2908 info.EndOfFile = *eof;
2909
2910 data = &info;
2911 size = sizeof(struct smb2_file_eof_info);
2912
2913 if (is_falloc)
2914 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2915 pid, FILE_ALLOCATION_INFORMATION, 1, &data, &size);
2916 else
2917 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2918 pid, FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
2919 }
2920
2921 int
2922 SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
2923 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
2924 {
2925 unsigned int size;
2926 size = sizeof(FILE_BASIC_INFO);
2927 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
2928 current->tgid, FILE_BASIC_INFORMATION, 1,
2929 (void **)&buf, &size);
2930 }
2931
2932 int
2933 SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
2934 const u64 persistent_fid, const u64 volatile_fid,
2935 __u8 oplock_level)
2936 {
2937 int rc;
2938 struct smb2_oplock_break *req = NULL;
2939
2940 cifs_dbg(FYI, "SMB2_oplock_break\n");
2941 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2942
2943 if (rc)
2944 return rc;
2945
2946 req->VolatileFid = volatile_fid;
2947 req->PersistentFid = persistent_fid;
2948 req->OplockLevel = oplock_level;
2949 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
2950
2951 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2952 cifs_small_buf_release(req);
2953
2954 if (rc) {
2955 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
2956 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
2957 }
2958
2959 return rc;
2960 }
2961
2962 static void
2963 copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
2964 struct kstatfs *kst)
2965 {
2966 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
2967 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
2968 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2969 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2970 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2971 return;
2972 }
2973
2974 static int
2975 build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2976 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2977 {
2978 int rc;
2979 struct smb2_query_info_req *req;
2980
2981 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
2982
2983 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2984 return -EIO;
2985
2986 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2987 if (rc)
2988 return rc;
2989
2990 req->InfoType = SMB2_O_INFO_FILESYSTEM;
2991 req->FileInfoClass = level;
2992 req->PersistentFileId = persistent_fid;
2993 req->VolatileFileId = volatile_fid;
2994 /* 4 for rfc1002 length field and 1 for pad */
2995 req->InputBufferOffset =
2996 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2997 req->OutputBufferLength = cpu_to_le32(
2998 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2999
3000 iov->iov_base = (char *)req;
3001 /* 4 for rfc1002 length field */
3002 iov->iov_len = get_rfc1002_length(req) + 4;
3003 return 0;
3004 }
3005
3006 int
3007 SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
3008 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
3009 {
3010 struct smb2_query_info_rsp *rsp = NULL;
3011 struct kvec iov;
3012 struct kvec rsp_iov;
3013 int rc = 0;
3014 int resp_buftype;
3015 struct cifs_ses *ses = tcon->ses;
3016 struct smb2_fs_full_size_info *info = NULL;
3017
3018 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
3019 sizeof(struct smb2_fs_full_size_info),
3020 persistent_fid, volatile_fid);
3021 if (rc)
3022 return rc;
3023
3024 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0, &rsp_iov);
3025 cifs_small_buf_release(iov.iov_base);
3026 if (rc) {
3027 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3028 goto qfsinf_exit;
3029 }
3030 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3031
3032 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
3033 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
3034 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
3035 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
3036 sizeof(struct smb2_fs_full_size_info));
3037 if (!rc)
3038 copy_fs_info_to_kstatfs(info, fsdata);
3039
3040 qfsinf_exit:
3041 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3042 return rc;
3043 }
3044
3045 int
3046 SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
3047 u64 persistent_fid, u64 volatile_fid, int level)
3048 {
3049 struct smb2_query_info_rsp *rsp = NULL;
3050 struct kvec iov;
3051 struct kvec rsp_iov;
3052 int rc = 0;
3053 int resp_buftype, max_len, min_len;
3054 struct cifs_ses *ses = tcon->ses;
3055 unsigned int rsp_len, offset;
3056
3057 if (level == FS_DEVICE_INFORMATION) {
3058 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
3059 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
3060 } else if (level == FS_ATTRIBUTE_INFORMATION) {
3061 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
3062 min_len = MIN_FS_ATTR_INFO_SIZE;
3063 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
3064 max_len = sizeof(struct smb3_fs_ss_info);
3065 min_len = sizeof(struct smb3_fs_ss_info);
3066 } else {
3067 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
3068 return -EINVAL;
3069 }
3070
3071 rc = build_qfs_info_req(&iov, tcon, level, max_len,
3072 persistent_fid, volatile_fid);
3073 if (rc)
3074 return rc;
3075
3076 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0, &rsp_iov);
3077 cifs_small_buf_release(iov.iov_base);
3078 if (rc) {
3079 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
3080 goto qfsattr_exit;
3081 }
3082 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
3083
3084 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
3085 offset = le16_to_cpu(rsp->OutputBufferOffset);
3086 rc = validate_buf(offset, rsp_len, &rsp->hdr, min_len);
3087 if (rc)
3088 goto qfsattr_exit;
3089
3090 if (level == FS_ATTRIBUTE_INFORMATION)
3091 memcpy(&tcon->fsAttrInfo, 4 /* RFC1001 len */ + offset
3092 + (char *)&rsp->hdr, min_t(unsigned int,
3093 rsp_len, max_len));
3094 else if (level == FS_DEVICE_INFORMATION)
3095 memcpy(&tcon->fsDevInfo, 4 /* RFC1001 len */ + offset
3096 + (char *)&rsp->hdr, sizeof(FILE_SYSTEM_DEVICE_INFO));
3097 else if (level == FS_SECTOR_SIZE_INFORMATION) {
3098 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
3099 (4 /* RFC1001 len */ + offset + (char *)&rsp->hdr);
3100 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
3101 tcon->perf_sector_size =
3102 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
3103 }
3104
3105 qfsattr_exit:
3106 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3107 return rc;
3108 }
3109
3110 int
3111 smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
3112 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
3113 const __u32 num_lock, struct smb2_lock_element *buf)
3114 {
3115 int rc = 0;
3116 struct smb2_lock_req *req = NULL;
3117 struct kvec iov[2];
3118 struct kvec rsp_iov;
3119 int resp_buf_type;
3120 unsigned int count;
3121
3122 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
3123
3124 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
3125 if (rc)
3126 return rc;
3127
3128 req->hdr.sync_hdr.ProcessId = cpu_to_le32(pid);
3129 req->LockCount = cpu_to_le16(num_lock);
3130
3131 req->PersistentFileId = persist_fid;
3132 req->VolatileFileId = volatile_fid;
3133
3134 count = num_lock * sizeof(struct smb2_lock_element);
3135 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
3136
3137 iov[0].iov_base = (char *)req;
3138 /* 4 for rfc1002 length field and count for all locks */
3139 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
3140 iov[1].iov_base = (char *)buf;
3141 iov[1].iov_len = count;
3142
3143 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
3144 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP,
3145 &rsp_iov);
3146 cifs_small_buf_release(req);
3147 if (rc) {
3148 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
3149 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
3150 }
3151
3152 return rc;
3153 }
3154
3155 int
3156 SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
3157 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
3158 const __u64 length, const __u64 offset, const __u32 lock_flags,
3159 const bool wait)
3160 {
3161 struct smb2_lock_element lock;
3162
3163 lock.Offset = cpu_to_le64(offset);
3164 lock.Length = cpu_to_le64(length);
3165 lock.Flags = cpu_to_le32(lock_flags);
3166 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
3167 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
3168
3169 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
3170 }
3171
3172 int
3173 SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
3174 __u8 *lease_key, const __le32 lease_state)
3175 {
3176 int rc;
3177 struct smb2_lease_ack *req = NULL;
3178
3179 cifs_dbg(FYI, "SMB2_lease_break\n");
3180 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
3181
3182 if (rc)
3183 return rc;
3184
3185 req->hdr.sync_hdr.CreditRequest = cpu_to_le16(1);
3186 req->StructureSize = cpu_to_le16(36);
3187 inc_rfc1001_len(req, 12);
3188
3189 memcpy(req->LeaseKey, lease_key, 16);
3190 req->LeaseState = lease_state;
3191
3192 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
3193 cifs_small_buf_release(req);
3194
3195 if (rc) {
3196 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
3197 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
3198 }
3199
3200 return rc;
3201 }