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