Add some missing SMB3 and SMB3.02 flags
[deliverable/linux.git] / fs / cifs / smb2pdu.c
CommitLineData
ec2e4523
PS
1/*
2 * fs/cifs/smb2pdu.c
3 *
e4aa25e7 4 * Copyright (C) International Business Machines Corp., 2009, 2012
ec2e4523
PS
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>
09a4707e 34#include <linux/task_io_accounting_ops.h>
ec2e4523 35#include <linux/uaccess.h>
33319141 36#include <linux/pagemap.h>
ec2e4523
PS
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"
09a4707e 47#include "smb2glob.h"
d324f08d 48#include "cifspdu.h"
ec2e4523
PS
49
50/*
51 * The following table defines the expected "StructureSize" of SMB2 requests
52 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
53 *
54 * Note that commands are defined in smb2pdu.h in le16 but the array below is
55 * indexed by command in host byte order.
56 */
57static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
58 /* SMB2_NEGOTIATE */ 36,
59 /* SMB2_SESSION_SETUP */ 25,
60 /* SMB2_LOGOFF */ 4,
61 /* SMB2_TREE_CONNECT */ 9,
62 /* SMB2_TREE_DISCONNECT */ 4,
63 /* SMB2_CREATE */ 57,
64 /* SMB2_CLOSE */ 24,
65 /* SMB2_FLUSH */ 24,
66 /* SMB2_READ */ 49,
67 /* SMB2_WRITE */ 49,
68 /* SMB2_LOCK */ 48,
69 /* SMB2_IOCTL */ 57,
70 /* SMB2_CANCEL */ 4,
71 /* SMB2_ECHO */ 4,
72 /* SMB2_QUERY_DIRECTORY */ 33,
73 /* SMB2_CHANGE_NOTIFY */ 32,
74 /* SMB2_QUERY_INFO */ 41,
75 /* SMB2_SET_INFO */ 33,
76 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
77};
78
79
80static void
81smb2_hdr_assemble(struct smb2_hdr *hdr, __le16 smb2_cmd /* command */ ,
82 const struct cifs_tcon *tcon)
83{
84 struct smb2_pdu *pdu = (struct smb2_pdu *)hdr;
85 char *temp = (char *)hdr;
86 /* lookup word count ie StructureSize from table */
87 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_cmd)];
88
89 /*
90 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
91 * largest operations (Create)
92 */
93 memset(temp, 0, 256);
94
95 /* Note this is only network field converted to big endian */
96 hdr->smb2_buf_length = cpu_to_be32(parmsize + sizeof(struct smb2_hdr)
97 - 4 /* RFC 1001 length field itself not counted */);
98
99 hdr->ProtocolId[0] = 0xFE;
100 hdr->ProtocolId[1] = 'S';
101 hdr->ProtocolId[2] = 'M';
102 hdr->ProtocolId[3] = 'B';
103 hdr->StructureSize = cpu_to_le16(64);
104 hdr->Command = smb2_cmd;
105 hdr->CreditRequest = cpu_to_le16(2); /* BB make this dynamic */
106 hdr->ProcessId = cpu_to_le32((__u16)current->tgid);
107
108 if (!tcon)
109 goto out;
110
111 hdr->TreeId = tcon->tid;
112 /* Uid is not converted */
113 if (tcon->ses)
114 hdr->SessionId = tcon->ses->Suid;
115 /* BB check following DFS flags BB */
116 /* BB do we have to add check for SHI1005_FLAGS_DFS_ROOT too? */
faaf946a
PS
117 if (tcon->share_flags & SHI1005_FLAGS_DFS)
118 hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS;
ec2e4523
PS
119 /* BB how does SMB2 do case sensitive? */
120 /* if (tcon->nocase)
121 hdr->Flags |= SMBFLG_CASELESS; */
38d77c50 122 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign)
3c1bf7e4 123 hdr->Flags |= SMB2_FLAGS_SIGNED;
ec2e4523
PS
124out:
125 pdu->StructureSize2 = cpu_to_le16(parmsize);
126 return;
127}
128
129static int
130smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
131{
132 int rc = 0;
aa24d1e9
PS
133 struct nls_table *nls_codepage;
134 struct cifs_ses *ses;
135 struct TCP_Server_Info *server;
136
137 /*
138 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
139 * check for tcp and smb session status done differently
140 * for those three - in the calling routine.
141 */
142 if (tcon == NULL)
143 return rc;
144
145 if (smb2_command == SMB2_TREE_CONNECT)
146 return rc;
147
148 if (tcon->tidStatus == CifsExiting) {
149 /*
150 * only tree disconnect, open, and write,
151 * (and ulogoff which does not have tcon)
152 * are allowed as we start force umount.
153 */
154 if ((smb2_command != SMB2_WRITE) &&
155 (smb2_command != SMB2_CREATE) &&
156 (smb2_command != SMB2_TREE_DISCONNECT)) {
f96637be
JP
157 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
158 smb2_command);
aa24d1e9
PS
159 return -ENODEV;
160 }
161 }
162 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
163 (!tcon->ses->server))
164 return -EIO;
165
166 ses = tcon->ses;
167 server = ses->server;
168
169 /*
170 * Give demultiplex thread up to 10 seconds to reconnect, should be
171 * greater than cifs socket timeout which is 7 seconds
172 */
173 while (server->tcpStatus == CifsNeedReconnect) {
174 /*
175 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
176 * here since they are implicitly done when session drops.
177 */
178 switch (smb2_command) {
179 /*
180 * BB Should we keep oplock break and add flush to exceptions?
181 */
182 case SMB2_TREE_DISCONNECT:
183 case SMB2_CANCEL:
184 case SMB2_CLOSE:
185 case SMB2_OPLOCK_BREAK:
186 return -EAGAIN;
187 }
188
189 wait_event_interruptible_timeout(server->response_q,
190 (server->tcpStatus != CifsNeedReconnect), 10 * HZ);
191
192 /* are we still trying to reconnect? */
193 if (server->tcpStatus != CifsNeedReconnect)
194 break;
195
196 /*
197 * on "soft" mounts we wait once. Hard mounts keep
198 * retrying until process is killed or server comes
199 * back on-line
200 */
201 if (!tcon->retry) {
f96637be 202 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
aa24d1e9
PS
203 return -EHOSTDOWN;
204 }
205 }
206
207 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
208 return rc;
209
210 nls_codepage = load_nls_default();
211
212 /*
213 * need to prevent multiple threads trying to simultaneously reconnect
214 * the same SMB session
215 */
216 mutex_lock(&tcon->ses->session_mutex);
217 rc = cifs_negotiate_protocol(0, tcon->ses);
218 if (!rc && tcon->ses->need_reconnect)
219 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
220
221 if (rc || !tcon->need_reconnect) {
222 mutex_unlock(&tcon->ses->session_mutex);
223 goto out;
224 }
225
226 cifs_mark_open_files_invalid(tcon);
227 rc = SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nls_codepage);
228 mutex_unlock(&tcon->ses->session_mutex);
f96637be 229 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
aa24d1e9
PS
230 if (rc)
231 goto out;
232 atomic_inc(&tconInfoReconnectCount);
233 /*
234 * BB FIXME add code to check if wsize needs update due to negotiated
235 * smb buffer size shrinking.
236 */
237out:
238 /*
239 * Check if handle based operation so we know whether we can continue
240 * or not without returning to caller to reset file handle.
241 */
242 /*
243 * BB Is flush done by server on drop of tcp session? Should we special
244 * case it and skip above?
245 */
246 switch (smb2_command) {
247 case SMB2_FLUSH:
248 case SMB2_READ:
249 case SMB2_WRITE:
250 case SMB2_LOCK:
251 case SMB2_IOCTL:
252 case SMB2_QUERY_DIRECTORY:
253 case SMB2_CHANGE_NOTIFY:
254 case SMB2_QUERY_INFO:
255 case SMB2_SET_INFO:
256 return -EAGAIN;
257 }
258 unload_nls(nls_codepage);
ec2e4523
PS
259 return rc;
260}
261
262/*
263 * Allocate and return pointer to an SMB request hdr, and set basic
264 * SMB information in the SMB header. If the return code is zero, this
265 * function must have filled in request_buf pointer.
266 */
267static int
268small_smb2_init(__le16 smb2_command, struct cifs_tcon *tcon,
269 void **request_buf)
270{
271 int rc = 0;
272
273 rc = smb2_reconnect(smb2_command, tcon);
274 if (rc)
275 return rc;
276
277 /* BB eventually switch this to SMB2 specific small buf size */
278 *request_buf = cifs_small_buf_get();
279 if (*request_buf == NULL) {
280 /* BB should we add a retry in here if not a writepage? */
281 return -ENOMEM;
282 }
283
284 smb2_hdr_assemble((struct smb2_hdr *) *request_buf, smb2_command, tcon);
285
286 if (tcon != NULL) {
287#ifdef CONFIG_CIFS_STATS2
ec2e4523
PS
288 uint16_t com_code = le16_to_cpu(smb2_command);
289 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
ec2e4523
PS
290#endif
291 cifs_stats_inc(&tcon->num_smbs_sent);
292 }
293
294 return rc;
295}
296
297static void
298free_rsp_buf(int resp_buftype, void *rsp)
299{
300 if (resp_buftype == CIFS_SMALL_BUFFER)
301 cifs_small_buf_release(rsp);
302 else if (resp_buftype == CIFS_LARGE_BUFFER)
303 cifs_buf_release(rsp);
304}
305
ec2e4523
PS
306
307/*
308 *
309 * SMB2 Worker functions follow:
310 *
311 * The general structure of the worker functions is:
312 * 1) Call smb2_init (assembles SMB2 header)
313 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
314 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
315 * 4) Decode SMB2 command specific fields in the fixed length area
316 * 5) Decode variable length data area (if any for this SMB2 command type)
317 * 6) Call free smb buffer
318 * 7) return
319 *
320 */
321
322int
323SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
324{
325 struct smb2_negotiate_req *req;
326 struct smb2_negotiate_rsp *rsp;
327 struct kvec iov[1];
328 int rc = 0;
329 int resp_buftype;
3534b850 330 struct TCP_Server_Info *server = ses->server;
ec2e4523
PS
331 int blob_offset, blob_length;
332 char *security_blob;
333 int flags = CIFS_NEG_OP;
334
f96637be 335 cifs_dbg(FYI, "Negotiate protocol\n");
ec2e4523 336
3534b850
JL
337 if (!server) {
338 WARN(1, "%s: server is NULL!\n", __func__);
339 return -EIO;
ec2e4523
PS
340 }
341
342 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
343 if (rc)
344 return rc;
345
ec2e4523
PS
346 req->hdr.SessionId = 0;
347
e4aa25e7 348 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
ec2e4523 349
e4aa25e7
SF
350 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
351 inc_rfc1001_len(req, 2);
ec2e4523
PS
352
353 /* only one of SMB2 signing flags may be set in SMB2 request */
38d77c50 354 if (ses->sign)
9cd2e62c 355 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
38d77c50 356 else if (global_secflags & CIFSSEC_MAY_SIGN)
9cd2e62c 357 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
38d77c50
JL
358 else
359 req->SecurityMode = 0;
ec2e4523 360
e4aa25e7 361 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
ec2e4523 362
b8c32dbb
PS
363 memcpy(req->ClientGUID, cifs_client_guid, SMB2_CLIENT_GUID_SIZE);
364
ec2e4523
PS
365 iov[0].iov_base = (char *)req;
366 /* 4 for rfc1002 length field */
367 iov[0].iov_len = get_rfc1002_length(req) + 4;
368
369 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags);
370
371 rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base;
372 /*
373 * No tcon so can't do
374 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
375 */
376 if (rc != 0)
377 goto neg_exit;
378
f96637be 379 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
ec2e4523 380
e4aa25e7
SF
381 /* BB we may eventually want to match the negotiated vs. requested
382 dialect, even though we are only requesting one at a time */
383 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
f96637be 384 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
e4aa25e7 385 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
f96637be 386 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
e4aa25e7 387 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
f96637be 388 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
20b6d8b4
SF
389 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
390 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
ec2e4523 391 else {
f96637be
JP
392 cifs_dbg(VFS, "Illegal dialect returned by server %d\n",
393 le16_to_cpu(rsp->DialectRevision));
ec2e4523
PS
394 rc = -EIO;
395 goto neg_exit;
396 }
397 server->dialect = le16_to_cpu(rsp->DialectRevision);
398
e598d1d8
JL
399 /* SMB2 only has an extended negflavor */
400 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
ec2e4523
PS
401 server->maxBuf = le32_to_cpu(rsp->MaxTransactSize);
402 server->max_read = le32_to_cpu(rsp->MaxReadSize);
403 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
404 /* BB Do we need to validate the SecurityMode? */
405 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
406 server->capabilities = le32_to_cpu(rsp->Capabilities);
29e20f9c
PS
407 /* Internal types */
408 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
ec2e4523
PS
409
410 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
411 &rsp->hdr);
412 if (blob_length == 0) {
f96637be 413 cifs_dbg(VFS, "missing security blob on negprot\n");
ec2e4523
PS
414 rc = -EIO;
415 goto neg_exit;
416 }
3c1bf7e4 417
38d77c50 418 rc = cifs_enable_signing(server, ses->sign);
ec2e4523 419#ifdef CONFIG_SMB2_ASN1 /* BB REMOVEME when updated asn1.c ready */
9ddec561
JL
420 if (rc)
421 goto neg_exit;
422
ec2e4523
PS
423 rc = decode_neg_token_init(security_blob, blob_length,
424 &server->sec_type);
425 if (rc == 1)
426 rc = 0;
427 else if (rc == 0) {
428 rc = -EIO;
429 goto neg_exit;
430 }
431#endif
432
433neg_exit:
434 free_rsp_buf(resp_buftype, rsp);
435 return rc;
436}
5478f9ba
PS
437
438int
439SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
440 const struct nls_table *nls_cp)
441{
442 struct smb2_sess_setup_req *req;
443 struct smb2_sess_setup_rsp *rsp = NULL;
444 struct kvec iov[2];
445 int rc = 0;
446 int resp_buftype;
447 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
3534b850 448 struct TCP_Server_Info *server = ses->server;
5478f9ba
PS
449 u16 blob_length = 0;
450 char *security_blob;
451 char *ntlmssp_blob = NULL;
452 bool use_spnego = false; /* else use raw ntlmssp */
453
f96637be 454 cifs_dbg(FYI, "Session Setup\n");
5478f9ba 455
3534b850
JL
456 if (!server) {
457 WARN(1, "%s: server is NULL!\n", __func__);
458 return -EIO;
5478f9ba
PS
459 }
460
461 /*
462 * If memory allocation is successful, caller of this function
463 * frees it.
464 */
465 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
466 if (!ses->ntlmssp)
467 return -ENOMEM;
468
3f618223
JL
469 /* FIXME: allow for other auth types besides NTLMSSP (e.g. krb5) */
470 ses->sectype = RawNTLMSSP;
5478f9ba
PS
471
472ssetup_ntlmssp_authenticate:
473 if (phase == NtLmChallenge)
474 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
475
476 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
477 if (rc)
478 return rc;
479
5478f9ba
PS
480 req->hdr.SessionId = 0; /* First session, not a reauthenticate */
481 req->VcNumber = 0; /* MBZ */
482 /* to enable echos and oplocks */
483 req->hdr.CreditRequest = cpu_to_le16(3);
484
485 /* only one of SMB2 signing flags may be set in SMB2 request */
38d77c50
JL
486 if (server->sign)
487 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
488 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
489 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
490 else
491 req->SecurityMode = 0;
492
5478f9ba
PS
493 req->Capabilities = 0;
494 req->Channel = 0; /* MBZ */
495
496 iov[0].iov_base = (char *)req;
497 /* 4 for rfc1002 length field and 1 for pad */
498 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
499 if (phase == NtLmNegotiate) {
500 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
501 GFP_KERNEL);
502 if (ntlmssp_blob == NULL) {
503 rc = -ENOMEM;
504 goto ssetup_exit;
505 }
506 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
507 if (use_spnego) {
508 /* blob_length = build_spnego_ntlmssp_blob(
509 &security_blob,
510 sizeof(struct _NEGOTIATE_MESSAGE),
511 ntlmssp_blob); */
512 /* BB eventually need to add this */
f96637be 513 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
5478f9ba
PS
514 rc = -EOPNOTSUPP;
515 kfree(ntlmssp_blob);
516 goto ssetup_exit;
517 } else {
518 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
519 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
520 security_blob = ntlmssp_blob;
521 }
522 } else if (phase == NtLmAuthenticate) {
523 req->hdr.SessionId = ses->Suid;
524 ntlmssp_blob = kzalloc(sizeof(struct _NEGOTIATE_MESSAGE) + 500,
525 GFP_KERNEL);
526 if (ntlmssp_blob == NULL) {
5478f9ba
PS
527 rc = -ENOMEM;
528 goto ssetup_exit;
529 }
530 rc = build_ntlmssp_auth_blob(ntlmssp_blob, &blob_length, ses,
531 nls_cp);
532 if (rc) {
f96637be
JP
533 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n",
534 rc);
5478f9ba
PS
535 goto ssetup_exit; /* BB double check error handling */
536 }
537 if (use_spnego) {
538 /* blob_length = build_spnego_ntlmssp_blob(
539 &security_blob,
540 blob_length,
541 ntlmssp_blob); */
f96637be 542 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
5478f9ba
PS
543 rc = -EOPNOTSUPP;
544 kfree(ntlmssp_blob);
545 goto ssetup_exit;
546 } else {
547 security_blob = ntlmssp_blob;
548 }
549 } else {
f96637be 550 cifs_dbg(VFS, "illegal ntlmssp phase\n");
5478f9ba
PS
551 rc = -EIO;
552 goto ssetup_exit;
553 }
554
555 /* Testing shows that buffer offset must be at location of Buffer[0] */
556 req->SecurityBufferOffset =
557 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
558 1 /* pad */ - 4 /* rfc1001 len */);
559 req->SecurityBufferLength = cpu_to_le16(blob_length);
560 iov[1].iov_base = security_blob;
561 iov[1].iov_len = blob_length;
562
563 inc_rfc1001_len(req, blob_length - 1 /* pad */);
564
565 /* BB add code to build os and lm fields */
566
6d8b59d7
SF
567 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype,
568 CIFS_LOG_ERROR | CIFS_NEG_OP);
5478f9ba
PS
569
570 kfree(security_blob);
571 rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
4ca3a99c
PS
572 if (resp_buftype != CIFS_NO_BUFFER &&
573 rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
5478f9ba 574 if (phase != NtLmNegotiate) {
f96637be 575 cifs_dbg(VFS, "Unexpected more processing error\n");
5478f9ba
PS
576 goto ssetup_exit;
577 }
578 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
4ca3a99c 579 le16_to_cpu(rsp->SecurityBufferOffset)) {
f96637be
JP
580 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
581 le16_to_cpu(rsp->SecurityBufferOffset));
5478f9ba
PS
582 rc = -EIO;
583 goto ssetup_exit;
584 }
585
586 /* NTLMSSP Negotiate sent now processing challenge (response) */
587 phase = NtLmChallenge; /* process ntlmssp challenge */
588 rc = 0; /* MORE_PROCESSING is not an error here but expected */
589 ses->Suid = rsp->hdr.SessionId;
590 rc = decode_ntlmssp_challenge(rsp->Buffer,
591 le16_to_cpu(rsp->SecurityBufferLength), ses);
592 }
593
594 /*
595 * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
596 * but at least the raw NTLMSSP case works.
597 */
598 /*
599 * No tcon so can't do
600 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
601 */
602 if (rc != 0)
603 goto ssetup_exit;
604
5478f9ba
PS
605 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
606ssetup_exit:
607 free_rsp_buf(resp_buftype, rsp);
608
609 /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
610 if ((phase == NtLmChallenge) && (rc == 0))
611 goto ssetup_ntlmssp_authenticate;
612 return rc;
613}
614
615int
616SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
617{
618 struct smb2_logoff_req *req; /* response is also trivial struct */
619 int rc = 0;
620 struct TCP_Server_Info *server;
621
f96637be 622 cifs_dbg(FYI, "disconnect session %p\n", ses);
5478f9ba
PS
623
624 if (ses && (ses->server))
625 server = ses->server;
626 else
627 return -EIO;
628
629 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
630 if (rc)
631 return rc;
632
633 /* since no tcon, smb2_init can not do this, so do here */
634 req->hdr.SessionId = ses->Suid;
38d77c50 635 if (server->sign)
3c1bf7e4 636 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
5478f9ba
PS
637
638 rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0);
639 /*
640 * No tcon so can't do
641 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
642 */
643 return rc;
644}
faaf946a
PS
645
646static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
647{
d60622eb 648 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
faaf946a
PS
649}
650
651#define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
652
653int
654SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
655 struct cifs_tcon *tcon, const struct nls_table *cp)
656{
657 struct smb2_tree_connect_req *req;
658 struct smb2_tree_connect_rsp *rsp = NULL;
659 struct kvec iov[2];
660 int rc = 0;
661 int resp_buftype;
662 int unc_path_len;
663 struct TCP_Server_Info *server;
664 __le16 *unc_path = NULL;
665
f96637be 666 cifs_dbg(FYI, "TCON\n");
faaf946a
PS
667
668 if ((ses->server) && tree)
669 server = ses->server;
670 else
671 return -EIO;
672
673 if (tcon && tcon->bad_network_name)
674 return -ENOENT;
675
676 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
677 if (unc_path == NULL)
678 return -ENOMEM;
679
680 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
681 unc_path_len *= 2;
682 if (unc_path_len < 2) {
683 kfree(unc_path);
684 return -EINVAL;
685 }
686
687 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
688 if (rc) {
689 kfree(unc_path);
690 return rc;
691 }
692
693 if (tcon == NULL) {
694 /* since no tcon, smb2_init can not do this, so do here */
695 req->hdr.SessionId = ses->Suid;
696 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
697 req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
698 }
699
700 iov[0].iov_base = (char *)req;
701 /* 4 for rfc1002 length field and 1 for pad */
702 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
703
704 /* Testing shows that buffer offset must be at location of Buffer[0] */
705 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
706 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
707 req->PathLength = cpu_to_le16(unc_path_len - 2);
708 iov[1].iov_base = unc_path;
709 iov[1].iov_len = unc_path_len;
710
711 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
712
713 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
714 rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base;
715
716 if (rc != 0) {
717 if (tcon) {
718 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
719 tcon->need_reconnect = true;
720 }
721 goto tcon_error_exit;
722 }
723
faaf946a
PS
724 if (tcon == NULL) {
725 ses->ipc_tid = rsp->hdr.TreeId;
726 goto tcon_exit;
727 }
728
729 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
f96637be 730 cifs_dbg(FYI, "connection to disk share\n");
faaf946a
PS
731 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
732 tcon->ipc = true;
f96637be 733 cifs_dbg(FYI, "connection to pipe share\n");
faaf946a
PS
734 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
735 tcon->print = true;
f96637be 736 cifs_dbg(FYI, "connection to printer\n");
faaf946a 737 } else {
f96637be 738 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
faaf946a
PS
739 rc = -EOPNOTSUPP;
740 goto tcon_error_exit;
741 }
742
743 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
744 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
745 tcon->tidStatus = CifsGood;
746 tcon->need_reconnect = false;
747 tcon->tid = rsp->hdr.TreeId;
748 strncpy(tcon->treeName, tree, MAX_TREE_SIZE);
749
750 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
751 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
f96637be 752 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
faaf946a
PS
753
754tcon_exit:
755 free_rsp_buf(resp_buftype, rsp);
756 kfree(unc_path);
757 return rc;
758
759tcon_error_exit:
760 if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) {
f96637be 761 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
faaf946a
PS
762 tcon->bad_network_name = true;
763 }
764 goto tcon_exit;
765}
766
767int
768SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
769{
770 struct smb2_tree_disconnect_req *req; /* response is trivial */
771 int rc = 0;
772 struct TCP_Server_Info *server;
773 struct cifs_ses *ses = tcon->ses;
774
f96637be 775 cifs_dbg(FYI, "Tree Disconnect\n");
faaf946a
PS
776
777 if (ses && (ses->server))
778 server = ses->server;
779 else
780 return -EIO;
781
782 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
783 return 0;
784
785 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
786 if (rc)
787 return rc;
788
789 rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0);
790 if (rc)
791 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
792
793 return rc;
794}
2503a0db 795
b8c32dbb
PS
796static struct create_lease *
797create_lease_buf(u8 *lease_key, u8 oplock)
798{
799 struct create_lease *buf;
800
d455b72b 801 buf = kzalloc(sizeof(struct create_lease), GFP_KERNEL);
b8c32dbb
PS
802 if (!buf)
803 return NULL;
804
b8c32dbb
PS
805 buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key));
806 buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8)));
807 if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE)
808 buf->lcontext.LeaseState = SMB2_LEASE_WRITE_CACHING |
809 SMB2_LEASE_READ_CACHING;
810 else if (oplock == SMB2_OPLOCK_LEVEL_II)
811 buf->lcontext.LeaseState = SMB2_LEASE_READ_CACHING;
812 else if (oplock == SMB2_OPLOCK_LEVEL_BATCH)
813 buf->lcontext.LeaseState = SMB2_LEASE_HANDLE_CACHING |
814 SMB2_LEASE_READ_CACHING |
815 SMB2_LEASE_WRITE_CACHING;
816
817 buf->ccontext.DataOffset = cpu_to_le16(offsetof
818 (struct create_lease, lcontext));
819 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct lease_context));
820 buf->ccontext.NameOffset = cpu_to_le16(offsetof
821 (struct create_lease, Name));
822 buf->ccontext.NameLength = cpu_to_le16(4);
823 buf->Name[0] = 'R';
824 buf->Name[1] = 'q';
825 buf->Name[2] = 'L';
826 buf->Name[3] = 's';
827 return buf;
828}
829
830static __u8
831parse_lease_state(struct smb2_create_rsp *rsp)
832{
833 char *data_offset;
834 struct create_lease *lc;
b8c32dbb
PS
835 bool found = false;
836
837 data_offset = (char *)rsp;
838 data_offset += 4 + le32_to_cpu(rsp->CreateContextsOffset);
839 lc = (struct create_lease *)data_offset;
840 do {
841 char *name = le16_to_cpu(lc->ccontext.NameOffset) + (char *)lc;
842 if (le16_to_cpu(lc->ccontext.NameLength) != 4 ||
843 strncmp(name, "RqLs", 4)) {
844 lc = (struct create_lease *)((char *)lc
845 + le32_to_cpu(lc->ccontext.Next));
846 continue;
847 }
848 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS)
849 return SMB2_OPLOCK_LEVEL_NOCHANGE;
850 found = true;
851 break;
852 } while (le32_to_cpu(lc->ccontext.Next) != 0);
853
854 if (!found)
0822f514 855 return 0;
b8c32dbb 856
0822f514 857 return smb2_map_lease_to_oplock(lc->lcontext.LeaseState);
b8c32dbb
PS
858}
859
2503a0db
PS
860int
861SMB2_open(const unsigned int xid, struct cifs_tcon *tcon, __le16 *path,
862 u64 *persistent_fid, u64 *volatile_fid, __u32 desired_access,
f0df737e 863 __u32 create_disposition, __u32 file_attributes, __u32 create_options,
2e44b288 864 __u8 *oplock, struct smb2_file_all_info *buf)
2503a0db
PS
865{
866 struct smb2_create_req *req;
867 struct smb2_create_rsp *rsp;
868 struct TCP_Server_Info *server;
869 struct cifs_ses *ses = tcon->ses;
b8c32dbb 870 struct kvec iov[3];
2503a0db
PS
871 int resp_buftype;
872 int uni_path_len;
b8c32dbb
PS
873 __le16 *copy_path = NULL;
874 int copy_size;
2503a0db
PS
875 int rc = 0;
876 int num_iovecs = 2;
877
f96637be 878 cifs_dbg(FYI, "create/open\n");
2503a0db
PS
879
880 if (ses && (ses->server))
881 server = ses->server;
882 else
883 return -EIO;
884
885 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
886 if (rc)
887 return rc;
888
2503a0db
PS
889 req->ImpersonationLevel = IL_IMPERSONATION;
890 req->DesiredAccess = cpu_to_le32(desired_access);
891 /* File attributes ignored on open (used in create though) */
892 req->FileAttributes = cpu_to_le32(file_attributes);
893 req->ShareAccess = FILE_SHARE_ALL_LE;
894 req->CreateDisposition = cpu_to_le32(create_disposition);
895 req->CreateOptions = cpu_to_le32(create_options);
896 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
897 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req)
b8c32dbb 898 - 8 /* pad */ - 4 /* do not count rfc1001 len field */);
2503a0db
PS
899
900 iov[0].iov_base = (char *)req;
901 /* 4 for rfc1002 length field */
902 iov[0].iov_len = get_rfc1002_length(req) + 4;
903
904 /* MUST set path len (NameLength) to 0 opening root of share */
905 if (uni_path_len >= 4) {
906 req->NameLength = cpu_to_le16(uni_path_len - 2);
907 /* -1 since last byte is buf[0] which is sent below (path) */
908 iov[0].iov_len--;
b8c32dbb
PS
909 if (uni_path_len % 8 != 0) {
910 copy_size = uni_path_len / 8 * 8;
911 if (copy_size < uni_path_len)
912 copy_size += 8;
913
914 copy_path = kzalloc(copy_size, GFP_KERNEL);
915 if (!copy_path)
916 return -ENOMEM;
917 memcpy((char *)copy_path, (const char *)path,
918 uni_path_len);
919 uni_path_len = copy_size;
920 path = copy_path;
921 }
922
2503a0db
PS
923 iov[1].iov_len = uni_path_len;
924 iov[1].iov_base = path;
925 /*
926 * -1 since last byte is buf[0] which was counted in
927 * smb2_buf_len.
928 */
929 inc_rfc1001_len(req, uni_path_len - 1);
930 } else {
b8c32dbb
PS
931 iov[0].iov_len += 7;
932 req->hdr.smb2_buf_length = cpu_to_be32(be32_to_cpu(
933 req->hdr.smb2_buf_length) + 8 - 1);
2503a0db
PS
934 num_iovecs = 1;
935 req->NameLength = 0;
936 }
937
b8c32dbb
PS
938 if (!server->oplocks)
939 *oplock = SMB2_OPLOCK_LEVEL_NONE;
940
941 if (!(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
942 *oplock == SMB2_OPLOCK_LEVEL_NONE)
943 req->RequestedOplockLevel = *oplock;
944 else {
945 iov[num_iovecs].iov_base = create_lease_buf(oplock+1, *oplock);
946 if (iov[num_iovecs].iov_base == NULL) {
947 cifs_small_buf_release(req);
948 kfree(copy_path);
949 return -ENOMEM;
950 }
951 iov[num_iovecs].iov_len = sizeof(struct create_lease);
952 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
953 req->CreateContextsOffset = cpu_to_le32(
954 sizeof(struct smb2_create_req) - 4 - 8 +
955 iov[num_iovecs-1].iov_len);
956 req->CreateContextsLength = cpu_to_le32(
957 sizeof(struct create_lease));
958 inc_rfc1001_len(&req->hdr, sizeof(struct create_lease));
959 num_iovecs++;
960 }
961
2503a0db
PS
962 rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
963 rsp = (struct smb2_create_rsp *)iov[0].iov_base;
964
965 if (rc != 0) {
966 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
967 goto creat_exit;
968 }
969
2503a0db
PS
970 *persistent_fid = rsp->PersistentFileId;
971 *volatile_fid = rsp->VolatileFileId;
f0df737e
PS
972
973 if (buf) {
974 memcpy(buf, &rsp->CreationTime, 32);
975 buf->AllocationSize = rsp->AllocationSize;
976 buf->EndOfFile = rsp->EndofFile;
977 buf->Attributes = rsp->FileAttributes;
978 buf->NumberOfLinks = cpu_to_le32(1);
979 buf->DeletePending = 0;
980 }
2e44b288 981
b8c32dbb
PS
982 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
983 *oplock = parse_lease_state(rsp);
984 else
985 *oplock = rsp->OplockLevel;
2503a0db 986creat_exit:
b8c32dbb 987 kfree(copy_path);
2503a0db
PS
988 free_rsp_buf(resp_buftype, rsp);
989 return rc;
990}
991
992int
993SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
994 u64 persistent_fid, u64 volatile_fid)
995{
996 struct smb2_close_req *req;
997 struct smb2_close_rsp *rsp;
998 struct TCP_Server_Info *server;
999 struct cifs_ses *ses = tcon->ses;
1000 struct kvec iov[1];
1001 int resp_buftype;
1002 int rc = 0;
1003
f96637be 1004 cifs_dbg(FYI, "Close\n");
2503a0db
PS
1005
1006 if (ses && (ses->server))
1007 server = ses->server;
1008 else
1009 return -EIO;
1010
1011 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1012 if (rc)
1013 return rc;
1014
1015 req->PersistentFileId = persistent_fid;
1016 req->VolatileFileId = volatile_fid;
1017
1018 iov[0].iov_base = (char *)req;
1019 /* 4 for rfc1002 length field */
1020 iov[0].iov_len = get_rfc1002_length(req) + 4;
1021
1022 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1023 rsp = (struct smb2_close_rsp *)iov[0].iov_base;
1024
1025 if (rc != 0) {
1026 if (tcon)
1027 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
1028 goto close_exit;
1029 }
1030
2503a0db
PS
1031 /* BB FIXME - decode close response, update inode for caching */
1032
1033close_exit:
1034 free_rsp_buf(resp_buftype, rsp);
1035 return rc;
1036}
be4cb9e3
PS
1037
1038static int
1039validate_buf(unsigned int offset, unsigned int buffer_length,
1040 struct smb2_hdr *hdr, unsigned int min_buf_size)
1041
1042{
1043 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1044 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1045 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1046 char *end_of_buf = begin_of_buf + buffer_length;
1047
1048
1049 if (buffer_length < min_buf_size) {
f96637be
JP
1050 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
1051 buffer_length, min_buf_size);
be4cb9e3
PS
1052 return -EINVAL;
1053 }
1054
1055 /* check if beyond RFC1001 maximum length */
1056 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
f96637be
JP
1057 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
1058 buffer_length, smb_len);
be4cb9e3
PS
1059 return -EINVAL;
1060 }
1061
1062 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
f96637be 1063 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
be4cb9e3
PS
1064 return -EINVAL;
1065 }
1066
1067 return 0;
1068}
1069
1070/*
1071 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1072 * Caller must free buffer.
1073 */
1074static int
1075validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1076 struct smb2_hdr *hdr, unsigned int minbufsize,
1077 char *data)
1078
1079{
1080 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1081 int rc;
1082
1083 if (!data)
1084 return -EINVAL;
1085
1086 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1087 if (rc)
1088 return rc;
1089
1090 memcpy(data, begin_of_buf, buffer_length);
1091
1092 return 0;
1093}
1094
f0df737e
PS
1095static int
1096query_info(const unsigned int xid, struct cifs_tcon *tcon,
1097 u64 persistent_fid, u64 volatile_fid, u8 info_class,
1098 size_t output_len, size_t min_len, void *data)
be4cb9e3
PS
1099{
1100 struct smb2_query_info_req *req;
1101 struct smb2_query_info_rsp *rsp = NULL;
1102 struct kvec iov[2];
1103 int rc = 0;
1104 int resp_buftype;
1105 struct TCP_Server_Info *server;
1106 struct cifs_ses *ses = tcon->ses;
1107
f96637be 1108 cifs_dbg(FYI, "Query Info\n");
be4cb9e3
PS
1109
1110 if (ses && (ses->server))
1111 server = ses->server;
1112 else
1113 return -EIO;
1114
1115 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1116 if (rc)
1117 return rc;
1118
1119 req->InfoType = SMB2_O_INFO_FILE;
f0df737e 1120 req->FileInfoClass = info_class;
be4cb9e3
PS
1121 req->PersistentFileId = persistent_fid;
1122 req->VolatileFileId = volatile_fid;
1123 /* 4 for rfc1002 length field and 1 for Buffer */
1124 req->InputBufferOffset =
1125 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
f0df737e 1126 req->OutputBufferLength = cpu_to_le32(output_len);
be4cb9e3
PS
1127
1128 iov[0].iov_base = (char *)req;
1129 /* 4 for rfc1002 length field */
1130 iov[0].iov_len = get_rfc1002_length(req) + 4;
1131
1132 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
e5d04887
PS
1133 rsp = (struct smb2_query_info_rsp *)iov[0].iov_base;
1134
be4cb9e3
PS
1135 if (rc) {
1136 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1137 goto qinf_exit;
1138 }
1139
be4cb9e3
PS
1140 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1141 le32_to_cpu(rsp->OutputBufferLength),
f0df737e 1142 &rsp->hdr, min_len, data);
be4cb9e3
PS
1143
1144qinf_exit:
1145 free_rsp_buf(resp_buftype, rsp);
1146 return rc;
1147}
9094fad1 1148
f0df737e
PS
1149int
1150SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1151 u64 persistent_fid, u64 volatile_fid,
1152 struct smb2_file_all_info *data)
1153{
1154 return query_info(xid, tcon, persistent_fid, volatile_fid,
1155 FILE_ALL_INFORMATION,
1156 sizeof(struct smb2_file_all_info) + MAX_NAME * 2,
1157 sizeof(struct smb2_file_all_info), data);
1158}
1159
1160int
1161SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1162 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1163{
1164 return query_info(xid, tcon, persistent_fid, volatile_fid,
1165 FILE_INTERNAL_INFORMATION,
1166 sizeof(struct smb2_file_internal_info),
1167 sizeof(struct smb2_file_internal_info), uniqueid);
1168}
1169
9094fad1
PS
1170/*
1171 * This is a no-op for now. We're not really interested in the reply, but
1172 * rather in the fact that the server sent one and that server->lstrp
1173 * gets updated.
1174 *
1175 * FIXME: maybe we should consider checking that the reply matches request?
1176 */
1177static void
1178smb2_echo_callback(struct mid_q_entry *mid)
1179{
1180 struct TCP_Server_Info *server = mid->callback_data;
1181 struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf;
1182 unsigned int credits_received = 1;
1183
1184 if (mid->mid_state == MID_RESPONSE_RECEIVED)
1185 credits_received = le16_to_cpu(smb2->hdr.CreditRequest);
1186
1187 DeleteMidQEntry(mid);
1188 add_credits(server, credits_received, CIFS_ECHO_OP);
1189}
1190
1191int
1192SMB2_echo(struct TCP_Server_Info *server)
1193{
1194 struct smb2_echo_req *req;
1195 int rc = 0;
1196 struct kvec iov;
fec344e3
JL
1197 struct smb_rqst rqst = { .rq_iov = &iov,
1198 .rq_nvec = 1 };
9094fad1 1199
f96637be 1200 cifs_dbg(FYI, "In echo request\n");
9094fad1
PS
1201
1202 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
1203 if (rc)
1204 return rc;
1205
1206 req->hdr.CreditRequest = cpu_to_le16(1);
1207
1208 iov.iov_base = (char *)req;
1209 /* 4 for rfc1002 length field */
1210 iov.iov_len = get_rfc1002_length(req) + 4;
1211
fec344e3 1212 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
9094fad1
PS
1213 CIFS_ECHO_OP);
1214 if (rc)
f96637be 1215 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
9094fad1
PS
1216
1217 cifs_small_buf_release(req);
1218 return rc;
1219}
7a5cfb19
PS
1220
1221int
1222SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1223 u64 volatile_fid)
1224{
1225 struct smb2_flush_req *req;
1226 struct TCP_Server_Info *server;
1227 struct cifs_ses *ses = tcon->ses;
1228 struct kvec iov[1];
1229 int resp_buftype;
1230 int rc = 0;
1231
f96637be 1232 cifs_dbg(FYI, "Flush\n");
7a5cfb19
PS
1233
1234 if (ses && (ses->server))
1235 server = ses->server;
1236 else
1237 return -EIO;
1238
1239 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
1240 if (rc)
1241 return rc;
1242
1243 req->PersistentFileId = persistent_fid;
1244 req->VolatileFileId = volatile_fid;
1245
1246 iov[0].iov_base = (char *)req;
1247 /* 4 for rfc1002 length field */
1248 iov[0].iov_len = get_rfc1002_length(req) + 4;
1249
1250 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1251
1252 if ((rc != 0) && tcon)
1253 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
1254
1255 free_rsp_buf(resp_buftype, iov[0].iov_base);
1256 return rc;
1257}
09a4707e
PS
1258
1259/*
1260 * To form a chain of read requests, any read requests after the first should
1261 * have the end_of_chain boolean set to true.
1262 */
1263static int
1264smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms,
1265 unsigned int remaining_bytes, int request_type)
1266{
1267 int rc = -EACCES;
1268 struct smb2_read_req *req = NULL;
1269
1270 rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
1271 if (rc)
1272 return rc;
1273 if (io_parms->tcon->ses->server == NULL)
1274 return -ECONNABORTED;
1275
1276 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1277
1278 req->PersistentFileId = io_parms->persistent_fid;
1279 req->VolatileFileId = io_parms->volatile_fid;
1280 req->ReadChannelInfoOffset = 0; /* reserved */
1281 req->ReadChannelInfoLength = 0; /* reserved */
1282 req->Channel = 0; /* reserved */
1283 req->MinimumCount = 0;
1284 req->Length = cpu_to_le32(io_parms->length);
1285 req->Offset = cpu_to_le64(io_parms->offset);
1286
1287 if (request_type & CHAINED_REQUEST) {
1288 if (!(request_type & END_OF_CHAIN)) {
1289 /* 4 for rfc1002 length field */
1290 req->hdr.NextCommand =
1291 cpu_to_le32(get_rfc1002_length(req) + 4);
1292 } else /* END_OF_CHAIN */
1293 req->hdr.NextCommand = 0;
1294 if (request_type & RELATED_REQUEST) {
1295 req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
1296 /*
1297 * Related requests use info from previous read request
1298 * in chain.
1299 */
1300 req->hdr.SessionId = 0xFFFFFFFF;
1301 req->hdr.TreeId = 0xFFFFFFFF;
1302 req->PersistentFileId = 0xFFFFFFFF;
1303 req->VolatileFileId = 0xFFFFFFFF;
1304 }
1305 }
1306 if (remaining_bytes > io_parms->length)
1307 req->RemainingBytes = cpu_to_le32(remaining_bytes);
1308 else
1309 req->RemainingBytes = 0;
1310
1311 iov[0].iov_base = (char *)req;
1312 /* 4 for rfc1002 length field */
1313 iov[0].iov_len = get_rfc1002_length(req) + 4;
1314 return rc;
1315}
1316
1317static void
1318smb2_readv_callback(struct mid_q_entry *mid)
1319{
1320 struct cifs_readdata *rdata = mid->callback_data;
1321 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1322 struct TCP_Server_Info *server = tcon->ses->server;
5819575e 1323 struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base;
09a4707e 1324 unsigned int credits_received = 1;
5819575e 1325 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
8321fec4
JL
1326 .rq_nvec = 1,
1327 .rq_pages = rdata->pages,
1328 .rq_npages = rdata->nr_pages,
1329 .rq_pagesz = rdata->pagesz,
1330 .rq_tailsz = rdata->tailsz };
09a4707e 1331
f96637be
JP
1332 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
1333 __func__, mid->mid, mid->mid_state, rdata->result,
1334 rdata->bytes);
09a4707e
PS
1335
1336 switch (mid->mid_state) {
1337 case MID_RESPONSE_RECEIVED:
1338 credits_received = le16_to_cpu(buf->CreditRequest);
1339 /* result already set, check signature */
38d77c50 1340 if (server->sign) {
3c1bf7e4
PS
1341 int rc;
1342
0b688cfc 1343 rc = smb2_verify_signature(&rqst, server);
3c1bf7e4 1344 if (rc)
f96637be
JP
1345 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
1346 rc);
3c1bf7e4 1347 }
09a4707e
PS
1348 /* FIXME: should this be counted toward the initiating task? */
1349 task_io_account_read(rdata->bytes);
1350 cifs_stats_bytes_read(tcon, rdata->bytes);
1351 break;
1352 case MID_REQUEST_SUBMITTED:
1353 case MID_RETRY_NEEDED:
1354 rdata->result = -EAGAIN;
1355 break;
1356 default:
1357 if (rdata->result != -ENODATA)
1358 rdata->result = -EIO;
1359 }
1360
1361 if (rdata->result)
1362 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
1363
1364 queue_work(cifsiod_wq, &rdata->work);
1365 DeleteMidQEntry(mid);
1366 add_credits(server, credits_received, 0);
1367}
1368
1369/* smb2_async_readv - send an async write, and set up mid to handle result */
1370int
1371smb2_async_readv(struct cifs_readdata *rdata)
1372{
1373 int rc;
1374 struct smb2_hdr *buf;
1375 struct cifs_io_parms io_parms;
5819575e 1376 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
fec344e3 1377 .rq_nvec = 1 };
09a4707e 1378
f96637be
JP
1379 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
1380 __func__, rdata->offset, rdata->bytes);
09a4707e
PS
1381
1382 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
1383 io_parms.offset = rdata->offset;
1384 io_parms.length = rdata->bytes;
1385 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
1386 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
1387 io_parms.pid = rdata->pid;
5819575e 1388 rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0);
09a4707e
PS
1389 if (rc)
1390 return rc;
1391
5819575e 1392 buf = (struct smb2_hdr *)rdata->iov.iov_base;
09a4707e 1393 /* 4 for rfc1002 length field */
5819575e 1394 rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4;
09a4707e
PS
1395
1396 kref_get(&rdata->refcount);
fec344e3 1397 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
09a4707e
PS
1398 cifs_readv_receive, smb2_readv_callback,
1399 rdata, 0);
e5d04887 1400 if (rc) {
09a4707e 1401 kref_put(&rdata->refcount, cifs_readdata_release);
e5d04887
PS
1402 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
1403 }
09a4707e
PS
1404
1405 cifs_small_buf_release(buf);
1406 return rc;
1407}
33319141 1408
d8e05039
PS
1409int
1410SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
1411 unsigned int *nbytes, char **buf, int *buf_type)
1412{
1413 int resp_buftype, rc = -EACCES;
1414 struct smb2_read_rsp *rsp = NULL;
1415 struct kvec iov[1];
1416
1417 *nbytes = 0;
1418 rc = smb2_new_read_req(iov, io_parms, 0, 0);
1419 if (rc)
1420 return rc;
1421
1422 rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
1423 &resp_buftype, CIFS_LOG_ERROR);
1424
1425 rsp = (struct smb2_read_rsp *)iov[0].iov_base;
1426
1427 if (rsp->hdr.Status == STATUS_END_OF_FILE) {
1428 free_rsp_buf(resp_buftype, iov[0].iov_base);
1429 return 0;
1430 }
1431
1432 if (rc) {
1433 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
f96637be 1434 cifs_dbg(VFS, "Send error in read = %d\n", rc);
d8e05039
PS
1435 } else {
1436 *nbytes = le32_to_cpu(rsp->DataLength);
1437 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
1438 (*nbytes > io_parms->length)) {
f96637be
JP
1439 cifs_dbg(FYI, "bad length %d for count %d\n",
1440 *nbytes, io_parms->length);
d8e05039
PS
1441 rc = -EIO;
1442 *nbytes = 0;
1443 }
1444 }
1445
1446 if (*buf) {
1447 memcpy(*buf, (char *)rsp->hdr.ProtocolId + rsp->DataOffset,
1448 *nbytes);
1449 free_rsp_buf(resp_buftype, iov[0].iov_base);
1450 } else if (resp_buftype != CIFS_NO_BUFFER) {
1451 *buf = iov[0].iov_base;
1452 if (resp_buftype == CIFS_SMALL_BUFFER)
1453 *buf_type = CIFS_SMALL_BUFFER;
1454 else if (resp_buftype == CIFS_LARGE_BUFFER)
1455 *buf_type = CIFS_LARGE_BUFFER;
1456 }
1457 return rc;
1458}
1459
33319141
PS
1460/*
1461 * Check the mid_state and signature on received buffer (if any), and queue the
1462 * workqueue completion task.
1463 */
1464static void
1465smb2_writev_callback(struct mid_q_entry *mid)
1466{
1467 struct cifs_writedata *wdata = mid->callback_data;
1468 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
1469 unsigned int written;
1470 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
1471 unsigned int credits_received = 1;
1472
1473 switch (mid->mid_state) {
1474 case MID_RESPONSE_RECEIVED:
1475 credits_received = le16_to_cpu(rsp->hdr.CreditRequest);
1476 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
1477 if (wdata->result != 0)
1478 break;
1479
1480 written = le32_to_cpu(rsp->DataLength);
1481 /*
1482 * Mask off high 16 bits when bytes written as returned
1483 * by the server is greater than bytes requested by the
1484 * client. OS/2 servers are known to set incorrect
1485 * CountHigh values.
1486 */
1487 if (written > wdata->bytes)
1488 written &= 0xFFFF;
1489
1490 if (written < wdata->bytes)
1491 wdata->result = -ENOSPC;
1492 else
1493 wdata->bytes = written;
1494 break;
1495 case MID_REQUEST_SUBMITTED:
1496 case MID_RETRY_NEEDED:
1497 wdata->result = -EAGAIN;
1498 break;
1499 default:
1500 wdata->result = -EIO;
1501 break;
1502 }
1503
1504 if (wdata->result)
1505 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
1506
1507 queue_work(cifsiod_wq, &wdata->work);
1508 DeleteMidQEntry(mid);
1509 add_credits(tcon->ses->server, credits_received, 0);
1510}
1511
1512/* smb2_async_writev - send an async write, and set up mid to handle result */
1513int
1514smb2_async_writev(struct cifs_writedata *wdata)
1515{
eddb079d 1516 int rc = -EACCES;
33319141
PS
1517 struct smb2_write_req *req = NULL;
1518 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
eddb079d 1519 struct kvec iov;
fec344e3 1520 struct smb_rqst rqst;
33319141
PS
1521
1522 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
1523 if (rc)
1524 goto async_writev_out;
1525
33319141
PS
1526 req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid);
1527
1528 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
1529 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
1530 req->WriteChannelInfoOffset = 0;
1531 req->WriteChannelInfoLength = 0;
1532 req->Channel = 0;
1533 req->Offset = cpu_to_le64(wdata->offset);
1534 /* 4 for rfc1002 length field */
1535 req->DataOffset = cpu_to_le16(
1536 offsetof(struct smb2_write_req, Buffer) - 4);
1537 req->RemainingBytes = 0;
1538
1539 /* 4 for rfc1002 length field and 1 for Buffer */
eddb079d
JL
1540 iov.iov_len = get_rfc1002_length(req) + 4 - 1;
1541 iov.iov_base = req;
33319141 1542
eddb079d
JL
1543 rqst.rq_iov = &iov;
1544 rqst.rq_nvec = 1;
1545 rqst.rq_pages = wdata->pages;
1546 rqst.rq_npages = wdata->nr_pages;
1547 rqst.rq_pagesz = wdata->pagesz;
1548 rqst.rq_tailsz = wdata->tailsz;
33319141 1549
f96637be
JP
1550 cifs_dbg(FYI, "async write at %llu %u bytes\n",
1551 wdata->offset, wdata->bytes);
33319141
PS
1552
1553 req->Length = cpu_to_le32(wdata->bytes);
1554
1555 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
1556
1557 kref_get(&wdata->refcount);
fec344e3
JL
1558 rc = cifs_call_async(tcon->ses->server, &rqst, NULL,
1559 smb2_writev_callback, wdata, 0);
33319141 1560
e5d04887 1561 if (rc) {
33319141 1562 kref_put(&wdata->refcount, cifs_writedata_release);
e5d04887
PS
1563 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
1564 }
33319141 1565
33319141
PS
1566async_writev_out:
1567 cifs_small_buf_release(req);
33319141
PS
1568 return rc;
1569}
009d3443
PS
1570
1571/*
1572 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
1573 * The length field from io_parms must be at least 1 and indicates a number of
1574 * elements with data to write that begins with position 1 in iov array. All
1575 * data length is specified by count.
1576 */
1577int
1578SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
1579 unsigned int *nbytes, struct kvec *iov, int n_vec)
1580{
1581 int rc = 0;
1582 struct smb2_write_req *req = NULL;
1583 struct smb2_write_rsp *rsp = NULL;
1584 int resp_buftype;
1585 *nbytes = 0;
1586
1587 if (n_vec < 1)
1588 return rc;
1589
1590 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
1591 if (rc)
1592 return rc;
1593
1594 if (io_parms->tcon->ses->server == NULL)
1595 return -ECONNABORTED;
1596
1597 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1598
1599 req->PersistentFileId = io_parms->persistent_fid;
1600 req->VolatileFileId = io_parms->volatile_fid;
1601 req->WriteChannelInfoOffset = 0;
1602 req->WriteChannelInfoLength = 0;
1603 req->Channel = 0;
1604 req->Length = cpu_to_le32(io_parms->length);
1605 req->Offset = cpu_to_le64(io_parms->offset);
1606 /* 4 for rfc1002 length field */
1607 req->DataOffset = cpu_to_le16(
1608 offsetof(struct smb2_write_req, Buffer) - 4);
1609 req->RemainingBytes = 0;
1610
1611 iov[0].iov_base = (char *)req;
1612 /* 4 for rfc1002 length field and 1 for Buffer */
1613 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1614
1615 /* length of entire message including data to be written */
1616 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
1617
1618 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
1619 &resp_buftype, 0);
e5d04887 1620 rsp = (struct smb2_write_rsp *)iov[0].iov_base;
009d3443
PS
1621
1622 if (rc) {
1623 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
f96637be 1624 cifs_dbg(VFS, "Send error in write = %d\n", rc);
e5d04887 1625 } else
009d3443 1626 *nbytes = le32_to_cpu(rsp->DataLength);
e5d04887
PS
1627
1628 free_rsp_buf(resp_buftype, rsp);
009d3443
PS
1629 return rc;
1630}
35143eb5 1631
d324f08d
PS
1632static unsigned int
1633num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
1634{
1635 int len;
1636 unsigned int entrycount = 0;
1637 unsigned int next_offset = 0;
1638 FILE_DIRECTORY_INFO *entryptr;
1639
1640 if (bufstart == NULL)
1641 return 0;
1642
1643 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
1644
1645 while (1) {
1646 entryptr = (FILE_DIRECTORY_INFO *)
1647 ((char *)entryptr + next_offset);
1648
1649 if ((char *)entryptr + size > end_of_buf) {
f96637be 1650 cifs_dbg(VFS, "malformed search entry would overflow\n");
d324f08d
PS
1651 break;
1652 }
1653
1654 len = le32_to_cpu(entryptr->FileNameLength);
1655 if ((char *)entryptr + len + size > end_of_buf) {
f96637be
JP
1656 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
1657 end_of_buf);
d324f08d
PS
1658 break;
1659 }
1660
1661 *lastentry = (char *)entryptr;
1662 entrycount++;
1663
1664 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
1665 if (!next_offset)
1666 break;
1667 }
1668
1669 return entrycount;
1670}
1671
1672/*
1673 * Readdir/FindFirst
1674 */
1675int
1676SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
1677 u64 persistent_fid, u64 volatile_fid, int index,
1678 struct cifs_search_info *srch_inf)
1679{
1680 struct smb2_query_directory_req *req;
1681 struct smb2_query_directory_rsp *rsp = NULL;
1682 struct kvec iov[2];
1683 int rc = 0;
1684 int len;
1685 int resp_buftype;
1686 unsigned char *bufptr;
1687 struct TCP_Server_Info *server;
1688 struct cifs_ses *ses = tcon->ses;
1689 __le16 asteriks = cpu_to_le16('*');
1690 char *end_of_smb;
1691 unsigned int output_size = CIFSMaxBufSize;
1692 size_t info_buf_size;
1693
1694 if (ses && (ses->server))
1695 server = ses->server;
1696 else
1697 return -EIO;
1698
1699 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
1700 if (rc)
1701 return rc;
1702
1703 switch (srch_inf->info_level) {
1704 case SMB_FIND_FILE_DIRECTORY_INFO:
1705 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
1706 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
1707 break;
1708 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
1709 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
1710 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
1711 break;
1712 default:
f96637be
JP
1713 cifs_dbg(VFS, "info level %u isn't supported\n",
1714 srch_inf->info_level);
d324f08d
PS
1715 rc = -EINVAL;
1716 goto qdir_exit;
1717 }
1718
1719 req->FileIndex = cpu_to_le32(index);
1720 req->PersistentFileId = persistent_fid;
1721 req->VolatileFileId = volatile_fid;
1722
1723 len = 0x2;
1724 bufptr = req->Buffer;
1725 memcpy(bufptr, &asteriks, len);
1726
1727 req->FileNameOffset =
1728 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
1729 req->FileNameLength = cpu_to_le16(len);
1730 /*
1731 * BB could be 30 bytes or so longer if we used SMB2 specific
1732 * buffer lengths, but this is safe and close enough.
1733 */
1734 output_size = min_t(unsigned int, output_size, server->maxBuf);
1735 output_size = min_t(unsigned int, output_size, 2 << 15);
1736 req->OutputBufferLength = cpu_to_le32(output_size);
1737
1738 iov[0].iov_base = (char *)req;
1739 /* 4 for RFC1001 length and 1 for Buffer */
1740 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1741
1742 iov[1].iov_base = (char *)(req->Buffer);
1743 iov[1].iov_len = len;
1744
1745 inc_rfc1001_len(req, len - 1 /* Buffer */);
1746
1747 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
e5d04887
PS
1748 rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base;
1749
d324f08d
PS
1750 if (rc) {
1751 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
1752 goto qdir_exit;
1753 }
d324f08d
PS
1754
1755 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
1756 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
1757 info_buf_size);
1758 if (rc)
1759 goto qdir_exit;
1760
1761 srch_inf->unicode = true;
1762
1763 if (srch_inf->ntwrk_buf_start) {
1764 if (srch_inf->smallBuf)
1765 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
1766 else
1767 cifs_buf_release(srch_inf->ntwrk_buf_start);
1768 }
1769 srch_inf->ntwrk_buf_start = (char *)rsp;
1770 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
1771 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
1772 /* 4 for rfc1002 length field */
1773 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
1774 srch_inf->entries_in_buffer =
1775 num_entries(srch_inf->srch_entries_start, end_of_smb,
1776 &srch_inf->last_entry, info_buf_size);
1777 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
f96637be
JP
1778 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
1779 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
1780 srch_inf->srch_entries_start, srch_inf->last_entry);
d324f08d
PS
1781 if (resp_buftype == CIFS_LARGE_BUFFER)
1782 srch_inf->smallBuf = false;
1783 else if (resp_buftype == CIFS_SMALL_BUFFER)
1784 srch_inf->smallBuf = true;
1785 else
f96637be 1786 cifs_dbg(VFS, "illegal search buffer type\n");
d324f08d
PS
1787
1788 if (rsp->hdr.Status == STATUS_NO_MORE_FILES)
1789 srch_inf->endOfSearch = 1;
1790 else
1791 srch_inf->endOfSearch = 0;
1792
1793 return rc;
1794
1795qdir_exit:
1796 free_rsp_buf(resp_buftype, rsp);
1797 return rc;
1798}
1799
35143eb5
PS
1800static int
1801send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
c839ff24 1802 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
35143eb5
PS
1803 unsigned int num, void **data, unsigned int *size)
1804{
1805 struct smb2_set_info_req *req;
1806 struct smb2_set_info_rsp *rsp = NULL;
1807 struct kvec *iov;
1808 int rc = 0;
1809 int resp_buftype;
1810 unsigned int i;
1811 struct TCP_Server_Info *server;
1812 struct cifs_ses *ses = tcon->ses;
1813
1814 if (ses && (ses->server))
1815 server = ses->server;
1816 else
1817 return -EIO;
1818
1819 if (!num)
1820 return -EINVAL;
1821
1822 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
1823 if (!iov)
1824 return -ENOMEM;
1825
1826 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
1827 if (rc) {
1828 kfree(iov);
1829 return rc;
1830 }
1831
c839ff24
PS
1832 req->hdr.ProcessId = cpu_to_le32(pid);
1833
35143eb5
PS
1834 req->InfoType = SMB2_O_INFO_FILE;
1835 req->FileInfoClass = info_class;
1836 req->PersistentFileId = persistent_fid;
1837 req->VolatileFileId = volatile_fid;
1838
1839 /* 4 for RFC1001 length and 1 for Buffer */
1840 req->BufferOffset =
1841 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
1842 req->BufferLength = cpu_to_le32(*size);
1843
1844 inc_rfc1001_len(req, *size - 1 /* Buffer */);
1845
1846 memcpy(req->Buffer, *data, *size);
1847
1848 iov[0].iov_base = (char *)req;
1849 /* 4 for RFC1001 length */
1850 iov[0].iov_len = get_rfc1002_length(req) + 4;
1851
1852 for (i = 1; i < num; i++) {
1853 inc_rfc1001_len(req, size[i]);
1854 le32_add_cpu(&req->BufferLength, size[i]);
1855 iov[i].iov_base = (char *)data[i];
1856 iov[i].iov_len = size[i];
1857 }
1858
1859 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
1860 rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;
1861
1862 if (rc != 0) {
1863 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
1864 goto out;
1865 }
35143eb5
PS
1866out:
1867 free_rsp_buf(resp_buftype, rsp);
1868 kfree(iov);
1869 return rc;
1870}
1871
1872int
1873SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
1874 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
1875{
1876 struct smb2_file_rename_info info;
1877 void **data;
1878 unsigned int size[2];
1879 int rc;
1880 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
1881
1882 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
1883 if (!data)
1884 return -ENOMEM;
1885
1886 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
1887 /* 0 = fail if target already exists */
1888 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
1889 info.FileNameLength = cpu_to_le32(len);
1890
1891 data[0] = &info;
1892 size[0] = sizeof(struct smb2_file_rename_info);
1893
1894 data[1] = target_file;
1895 size[1] = len + 2 /* null */;
1896
1897 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
c839ff24
PS
1898 current->tgid, FILE_RENAME_INFORMATION, 2, data,
1899 size);
35143eb5
PS
1900 kfree(data);
1901 return rc;
1902}
568798cc
PS
1903
1904int
1905SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
1906 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
1907{
1908 struct smb2_file_link_info info;
1909 void **data;
1910 unsigned int size[2];
1911 int rc;
1912 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
1913
1914 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
1915 if (!data)
1916 return -ENOMEM;
1917
1918 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
1919 /* 0 = fail if link already exists */
1920 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
1921 info.FileNameLength = cpu_to_le32(len);
1922
1923 data[0] = &info;
1924 size[0] = sizeof(struct smb2_file_link_info);
1925
1926 data[1] = target_file;
1927 size[1] = len + 2 /* null */;
1928
1929 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
c839ff24 1930 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
568798cc
PS
1931 kfree(data);
1932 return rc;
1933}
c839ff24
PS
1934
1935int
1936SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1937 u64 volatile_fid, u32 pid, __le64 *eof)
1938{
1939 struct smb2_file_eof_info info;
1940 void *data;
1941 unsigned int size;
1942
1943 info.EndOfFile = *eof;
1944
1945 data = &info;
1946 size = sizeof(struct smb2_file_eof_info);
1947
1948 return send_set_info(xid, tcon, persistent_fid, volatile_fid, pid,
1949 FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
1950}
1feeaac7
PS
1951
1952int
1953SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
1954 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
1955{
1956 unsigned int size;
1957 size = sizeof(FILE_BASIC_INFO);
1958 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
1959 current->tgid, FILE_BASIC_INFORMATION, 1,
1960 (void **)&buf, &size);
1961}
983c88a4
PS
1962
1963int
1964SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
1965 const u64 persistent_fid, const u64 volatile_fid,
1966 __u8 oplock_level)
1967{
1968 int rc;
1969 struct smb2_oplock_break *req = NULL;
1970
f96637be 1971 cifs_dbg(FYI, "SMB2_oplock_break\n");
983c88a4
PS
1972 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
1973
1974 if (rc)
1975 return rc;
1976
1977 req->VolatileFid = volatile_fid;
1978 req->PersistentFid = persistent_fid;
1979 req->OplockLevel = oplock_level;
1980 req->hdr.CreditRequest = cpu_to_le16(1);
1981
1982 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
1983 /* SMB2 buffer freed by function above */
1984
1985 if (rc) {
1986 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
f96637be 1987 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
983c88a4
PS
1988 }
1989
1990 return rc;
1991}
6fc05c25
PS
1992
1993static void
1994copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
1995 struct kstatfs *kst)
1996{
1997 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
1998 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
1999 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2000 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2001 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2002 return;
2003}
2004
2005static int
2006build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2007 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2008{
2009 int rc;
2010 struct smb2_query_info_req *req;
2011
f96637be 2012 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
6fc05c25
PS
2013
2014 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2015 return -EIO;
2016
2017 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2018 if (rc)
2019 return rc;
2020
2021 req->InfoType = SMB2_O_INFO_FILESYSTEM;
2022 req->FileInfoClass = level;
2023 req->PersistentFileId = persistent_fid;
2024 req->VolatileFileId = volatile_fid;
2025 /* 4 for rfc1002 length field and 1 for pad */
2026 req->InputBufferOffset =
2027 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2028 req->OutputBufferLength = cpu_to_le32(
2029 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2030
2031 iov->iov_base = (char *)req;
2032 /* 4 for rfc1002 length field */
2033 iov->iov_len = get_rfc1002_length(req) + 4;
2034 return 0;
2035}
2036
2037int
2038SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
2039 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
2040{
2041 struct smb2_query_info_rsp *rsp = NULL;
2042 struct kvec iov;
2043 int rc = 0;
2044 int resp_buftype;
2045 struct cifs_ses *ses = tcon->ses;
2046 struct smb2_fs_full_size_info *info = NULL;
2047
2048 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
2049 sizeof(struct smb2_fs_full_size_info),
2050 persistent_fid, volatile_fid);
2051 if (rc)
2052 return rc;
2053
2054 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2055 if (rc) {
2056 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2057 goto qinf_exit;
2058 }
2059 rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2060
2061 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
2062 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
2063 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2064 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2065 sizeof(struct smb2_fs_full_size_info));
2066 if (!rc)
2067 copy_fs_info_to_kstatfs(info, fsdata);
2068
2069qinf_exit:
2070 free_rsp_buf(resp_buftype, iov.iov_base);
2071 return rc;
2072}
f7ba7fe6
PS
2073
2074int
2075smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2076 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2077 const __u32 num_lock, struct smb2_lock_element *buf)
2078{
2079 int rc = 0;
2080 struct smb2_lock_req *req = NULL;
2081 struct kvec iov[2];
2082 int resp_buf_type;
2083 unsigned int count;
2084
f96637be 2085 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
f7ba7fe6
PS
2086
2087 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
2088 if (rc)
2089 return rc;
2090
2091 req->hdr.ProcessId = cpu_to_le32(pid);
2092 req->LockCount = cpu_to_le16(num_lock);
2093
2094 req->PersistentFileId = persist_fid;
2095 req->VolatileFileId = volatile_fid;
2096
2097 count = num_lock * sizeof(struct smb2_lock_element);
2098 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
2099
2100 iov[0].iov_base = (char *)req;
2101 /* 4 for rfc1002 length field and count for all locks */
2102 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
2103 iov[1].iov_base = (char *)buf;
2104 iov[1].iov_len = count;
2105
2106 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2107 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2108 if (rc) {
f96637be 2109 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
f7ba7fe6
PS
2110 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
2111 }
2112
2113 return rc;
2114}
2115
2116int
2117SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
2118 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2119 const __u64 length, const __u64 offset, const __u32 lock_flags,
2120 const bool wait)
2121{
2122 struct smb2_lock_element lock;
2123
2124 lock.Offset = cpu_to_le64(offset);
2125 lock.Length = cpu_to_le64(length);
2126 lock.Flags = cpu_to_le32(lock_flags);
2127 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
2128 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
2129
2130 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
2131}
0822f514
PS
2132
2133int
2134SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
2135 __u8 *lease_key, const __le32 lease_state)
2136{
2137 int rc;
2138 struct smb2_lease_ack *req = NULL;
2139
f96637be 2140 cifs_dbg(FYI, "SMB2_lease_break\n");
0822f514
PS
2141 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2142
2143 if (rc)
2144 return rc;
2145
2146 req->hdr.CreditRequest = cpu_to_le16(1);
2147 req->StructureSize = cpu_to_le16(36);
2148 inc_rfc1001_len(req, 12);
2149
2150 memcpy(req->LeaseKey, lease_key, 16);
2151 req->LeaseState = lease_state;
2152
2153 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2154 /* SMB2 buffer freed by function above */
2155
2156 if (rc) {
2157 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
f96637be 2158 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
0822f514
PS
2159 }
2160
2161 return rc;
2162}
This page took 0.219094 seconds and 5 git commands to generate.