blob: 1609699e7bec3a6ae4b1912df4af9dbe77de3059 [file] [log] [blame]
Pavel Shilovskyec2e4522011-12-27 16:12:43 +04001/*
2 * fs/cifs/smb2pdu.c
3 *
Steve Frenche4aa25e2012-10-01 12:26:22 -05004 * Copyright (C) International Business Machines Corp., 2009, 2012
Pavel Shilovskyec2e4522011-12-27 16:12:43 +04005 * 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>
Pavel Shilovsky09a47072012-09-18 16:20:29 -070034#include <linux/task_io_accounting_ops.h>
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040035#include <linux/uaccess.h>
Pavel Shilovsky33319142012-09-18 16:20:29 -070036#include <linux/pagemap.h>
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040037#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"
Pavel Shilovsky09a47072012-09-18 16:20:29 -070047#include "smb2glob.h"
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -070048#include "cifspdu.h"
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040049
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? */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400117 if (tcon->share_flags & SHI1005_FLAGS_DFS)
118 hdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400119 /* BB how does SMB2 do case sensitive? */
120 /* if (tcon->nocase)
121 hdr->Flags |= SMBFLG_CASELESS; */
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700122 if (tcon->ses && tcon->ses->server &&
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400123 (tcon->ses->server->sec_mode & SECMODE_SIGN_REQUIRED))
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700124 hdr->Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400125out:
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;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400134 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)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500158 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
159 smb2_command);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400160 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) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500203 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400204 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);
Joe Perchesf96637b2013-05-04 22:12:25 -0500230 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400231 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);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400260 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
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400289 uint16_t com_code = le16_to_cpu(smb2_command);
290 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400291#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
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400307
308/*
309 *
310 * SMB2 Worker functions follow:
311 *
312 * The general structure of the worker functions is:
313 * 1) Call smb2_init (assembles SMB2 header)
314 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
315 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
316 * 4) Decode SMB2 command specific fields in the fixed length area
317 * 5) Decode variable length data area (if any for this SMB2 command type)
318 * 6) Call free smb buffer
319 * 7) return
320 *
321 */
322
323int
324SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
325{
326 struct smb2_negotiate_req *req;
327 struct smb2_negotiate_rsp *rsp;
328 struct kvec iov[1];
329 int rc = 0;
330 int resp_buftype;
Jeff Layton3534b852013-05-24 07:41:01 -0400331 struct TCP_Server_Info *server = ses->server;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400332 unsigned int sec_flags;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400333 u16 temp = 0;
334 int blob_offset, blob_length;
335 char *security_blob;
336 int flags = CIFS_NEG_OP;
337
Joe Perchesf96637b2013-05-04 22:12:25 -0500338 cifs_dbg(FYI, "Negotiate protocol\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400339
Jeff Layton3534b852013-05-24 07:41:01 -0400340 if (!server) {
341 WARN(1, "%s: server is NULL!\n", __func__);
342 return -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400343 }
344
345 rc = small_smb2_init(SMB2_NEGOTIATE, NULL, (void **) &req);
346 if (rc)
347 return rc;
348
349 /* if any of auth flags (ie not sign or seal) are overriden use them */
350 if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL)))
351 sec_flags = ses->overrideSecFlg; /* BB FIXME fix sign flags?*/
352 else /* if override flags set only sign/seal OR them with global auth */
353 sec_flags = global_secflags | ses->overrideSecFlg;
354
Joe Perchesf96637b2013-05-04 22:12:25 -0500355 cifs_dbg(FYI, "sec_flags 0x%x\n", sec_flags);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400356
357 req->hdr.SessionId = 0;
358
Steve Frenche4aa25e2012-10-01 12:26:22 -0500359 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400360
Steve Frenche4aa25e2012-10-01 12:26:22 -0500361 req->DialectCount = cpu_to_le16(1); /* One vers= at a time for now */
362 inc_rfc1001_len(req, 2);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400363
364 /* only one of SMB2 signing flags may be set in SMB2 request */
365 if ((sec_flags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN)
366 temp = SMB2_NEGOTIATE_SIGNING_REQUIRED;
367 else if (sec_flags & CIFSSEC_MAY_SIGN) /* MAY_SIGN is a single flag */
368 temp = SMB2_NEGOTIATE_SIGNING_ENABLED;
369
370 req->SecurityMode = cpu_to_le16(temp);
371
Steve Frenche4aa25e2012-10-01 12:26:22 -0500372 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400373
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700374 memcpy(req->ClientGUID, cifs_client_guid, SMB2_CLIENT_GUID_SIZE);
375
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400376 iov[0].iov_base = (char *)req;
377 /* 4 for rfc1002 length field */
378 iov[0].iov_len = get_rfc1002_length(req) + 4;
379
380 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, flags);
381
382 rsp = (struct smb2_negotiate_rsp *)iov[0].iov_base;
383 /*
384 * No tcon so can't do
385 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
386 */
387 if (rc != 0)
388 goto neg_exit;
389
Joe Perchesf96637b2013-05-04 22:12:25 -0500390 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400391
Steve Frenche4aa25e2012-10-01 12:26:22 -0500392 /* BB we may eventually want to match the negotiated vs. requested
393 dialect, even though we are only requesting one at a time */
394 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500395 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500396 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500397 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500398 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500399 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400400 else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500401 cifs_dbg(VFS, "Illegal dialect returned by server %d\n",
402 le16_to_cpu(rsp->DialectRevision));
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400403 rc = -EIO;
404 goto neg_exit;
405 }
406 server->dialect = le16_to_cpu(rsp->DialectRevision);
407
Jeff Laytone598d1d82013-05-26 07:00:59 -0400408 /* SMB2 only has an extended negflavor */
409 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400410 server->maxBuf = le32_to_cpu(rsp->MaxTransactSize);
411 server->max_read = le32_to_cpu(rsp->MaxReadSize);
412 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
413 /* BB Do we need to validate the SecurityMode? */
414 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
415 server->capabilities = le32_to_cpu(rsp->Capabilities);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400416 /* Internal types */
417 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400418
419 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
420 &rsp->hdr);
421 if (blob_length == 0) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500422 cifs_dbg(VFS, "missing security blob on negprot\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400423 rc = -EIO;
424 goto neg_exit;
425 }
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700426
Joe Perchesf96637b2013-05-04 22:12:25 -0500427 cifs_dbg(FYI, "sec_flags 0x%x\n", sec_flags);
Jeff Layton9ddec562013-05-26 07:00:58 -0400428 rc = cifs_enable_signing(server, sec_flags);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400429#ifdef CONFIG_SMB2_ASN1 /* BB REMOVEME when updated asn1.c ready */
Jeff Layton9ddec562013-05-26 07:00:58 -0400430 if (rc)
431 goto neg_exit;
432
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400433 rc = decode_neg_token_init(security_blob, blob_length,
434 &server->sec_type);
435 if (rc == 1)
436 rc = 0;
437 else if (rc == 0) {
438 rc = -EIO;
439 goto neg_exit;
440 }
441#endif
442
443neg_exit:
444 free_rsp_buf(resp_buftype, rsp);
445 return rc;
446}
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400447
448int
449SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
450 const struct nls_table *nls_cp)
451{
452 struct smb2_sess_setup_req *req;
453 struct smb2_sess_setup_rsp *rsp = NULL;
454 struct kvec iov[2];
455 int rc = 0;
456 int resp_buftype;
457 __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */
Jeff Layton3534b852013-05-24 07:41:01 -0400458 struct TCP_Server_Info *server = ses->server;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400459 unsigned int sec_flags;
460 u8 temp = 0;
461 u16 blob_length = 0;
462 char *security_blob;
463 char *ntlmssp_blob = NULL;
464 bool use_spnego = false; /* else use raw ntlmssp */
465
Joe Perchesf96637b2013-05-04 22:12:25 -0500466 cifs_dbg(FYI, "Session Setup\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400467
Jeff Layton3534b852013-05-24 07:41:01 -0400468 if (!server) {
469 WARN(1, "%s: server is NULL!\n", __func__);
470 return -EIO;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400471 }
472
473 /*
474 * If memory allocation is successful, caller of this function
475 * frees it.
476 */
477 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
478 if (!ses->ntlmssp)
479 return -ENOMEM;
480
481 ses->server->secType = RawNTLMSSP;
482
483ssetup_ntlmssp_authenticate:
484 if (phase == NtLmChallenge)
485 phase = NtLmAuthenticate; /* if ntlmssp, now final phase */
486
487 rc = small_smb2_init(SMB2_SESSION_SETUP, NULL, (void **) &req);
488 if (rc)
489 return rc;
490
491 /* if any of auth flags (ie not sign or seal) are overriden use them */
492 if (ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL)))
493 sec_flags = ses->overrideSecFlg; /* BB FIXME fix sign flags?*/
494 else /* if override flags set only sign/seal OR them with global auth */
495 sec_flags = global_secflags | ses->overrideSecFlg;
496
Joe Perchesf96637b2013-05-04 22:12:25 -0500497 cifs_dbg(FYI, "sec_flags 0x%x\n", sec_flags);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400498
499 req->hdr.SessionId = 0; /* First session, not a reauthenticate */
500 req->VcNumber = 0; /* MBZ */
501 /* to enable echos and oplocks */
502 req->hdr.CreditRequest = cpu_to_le16(3);
503
504 /* only one of SMB2 signing flags may be set in SMB2 request */
505 if ((sec_flags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN)
506 temp = SMB2_NEGOTIATE_SIGNING_REQUIRED;
507 else if (ses->server->sec_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED)
508 temp = SMB2_NEGOTIATE_SIGNING_REQUIRED;
509 else if (sec_flags & CIFSSEC_MAY_SIGN) /* MAY_SIGN is a single flag */
510 temp = SMB2_NEGOTIATE_SIGNING_ENABLED;
511
512 req->SecurityMode = temp;
513 req->Capabilities = 0;
514 req->Channel = 0; /* MBZ */
515
516 iov[0].iov_base = (char *)req;
517 /* 4 for rfc1002 length field and 1 for pad */
518 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
519 if (phase == NtLmNegotiate) {
520 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
521 GFP_KERNEL);
522 if (ntlmssp_blob == NULL) {
523 rc = -ENOMEM;
524 goto ssetup_exit;
525 }
526 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
527 if (use_spnego) {
528 /* blob_length = build_spnego_ntlmssp_blob(
529 &security_blob,
530 sizeof(struct _NEGOTIATE_MESSAGE),
531 ntlmssp_blob); */
532 /* BB eventually need to add this */
Joe Perchesf96637b2013-05-04 22:12:25 -0500533 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400534 rc = -EOPNOTSUPP;
535 kfree(ntlmssp_blob);
536 goto ssetup_exit;
537 } else {
538 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
539 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
540 security_blob = ntlmssp_blob;
541 }
542 } else if (phase == NtLmAuthenticate) {
543 req->hdr.SessionId = ses->Suid;
544 ntlmssp_blob = kzalloc(sizeof(struct _NEGOTIATE_MESSAGE) + 500,
545 GFP_KERNEL);
546 if (ntlmssp_blob == NULL) {
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400547 rc = -ENOMEM;
548 goto ssetup_exit;
549 }
550 rc = build_ntlmssp_auth_blob(ntlmssp_blob, &blob_length, ses,
551 nls_cp);
552 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500553 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n",
554 rc);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400555 goto ssetup_exit; /* BB double check error handling */
556 }
557 if (use_spnego) {
558 /* blob_length = build_spnego_ntlmssp_blob(
559 &security_blob,
560 blob_length,
561 ntlmssp_blob); */
Joe Perchesf96637b2013-05-04 22:12:25 -0500562 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400563 rc = -EOPNOTSUPP;
564 kfree(ntlmssp_blob);
565 goto ssetup_exit;
566 } else {
567 security_blob = ntlmssp_blob;
568 }
569 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500570 cifs_dbg(VFS, "illegal ntlmssp phase\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400571 rc = -EIO;
572 goto ssetup_exit;
573 }
574
575 /* Testing shows that buffer offset must be at location of Buffer[0] */
576 req->SecurityBufferOffset =
577 cpu_to_le16(sizeof(struct smb2_sess_setup_req) -
578 1 /* pad */ - 4 /* rfc1001 len */);
579 req->SecurityBufferLength = cpu_to_le16(blob_length);
580 iov[1].iov_base = security_blob;
581 iov[1].iov_len = blob_length;
582
583 inc_rfc1001_len(req, blob_length - 1 /* pad */);
584
585 /* BB add code to build os and lm fields */
586
Steve French6d8b59d2012-12-08 22:36:29 -0600587 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype,
588 CIFS_LOG_ERROR | CIFS_NEG_OP);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400589
590 kfree(security_blob);
591 rsp = (struct smb2_sess_setup_rsp *)iov[0].iov_base;
Pavel Shilovsky4ca3a992012-09-25 11:00:09 +0400592 if (resp_buftype != CIFS_NO_BUFFER &&
593 rsp->hdr.Status == STATUS_MORE_PROCESSING_REQUIRED) {
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400594 if (phase != NtLmNegotiate) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500595 cifs_dbg(VFS, "Unexpected more processing error\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400596 goto ssetup_exit;
597 }
598 if (offsetof(struct smb2_sess_setup_rsp, Buffer) - 4 !=
Pavel Shilovsky4ca3a992012-09-25 11:00:09 +0400599 le16_to_cpu(rsp->SecurityBufferOffset)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500600 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
601 le16_to_cpu(rsp->SecurityBufferOffset));
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400602 rc = -EIO;
603 goto ssetup_exit;
604 }
605
606 /* NTLMSSP Negotiate sent now processing challenge (response) */
607 phase = NtLmChallenge; /* process ntlmssp challenge */
608 rc = 0; /* MORE_PROCESSING is not an error here but expected */
609 ses->Suid = rsp->hdr.SessionId;
610 rc = decode_ntlmssp_challenge(rsp->Buffer,
611 le16_to_cpu(rsp->SecurityBufferLength), ses);
612 }
613
614 /*
615 * BB eventually add code for SPNEGO decoding of NtlmChallenge blob,
616 * but at least the raw NTLMSSP case works.
617 */
618 /*
619 * No tcon so can't do
620 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
621 */
622 if (rc != 0)
623 goto ssetup_exit;
624
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400625 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
626ssetup_exit:
627 free_rsp_buf(resp_buftype, rsp);
628
629 /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */
630 if ((phase == NtLmChallenge) && (rc == 0))
631 goto ssetup_ntlmssp_authenticate;
632 return rc;
633}
634
635int
636SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
637{
638 struct smb2_logoff_req *req; /* response is also trivial struct */
639 int rc = 0;
640 struct TCP_Server_Info *server;
641
Joe Perchesf96637b2013-05-04 22:12:25 -0500642 cifs_dbg(FYI, "disconnect session %p\n", ses);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400643
644 if (ses && (ses->server))
645 server = ses->server;
646 else
647 return -EIO;
648
649 rc = small_smb2_init(SMB2_LOGOFF, NULL, (void **) &req);
650 if (rc)
651 return rc;
652
653 /* since no tcon, smb2_init can not do this, so do here */
654 req->hdr.SessionId = ses->Suid;
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700655 if (server->sec_mode & SECMODE_SIGN_REQUIRED)
656 req->hdr.Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400657
658 rc = SendReceiveNoRsp(xid, ses, (char *) &req->hdr, 0);
659 /*
660 * No tcon so can't do
661 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
662 */
663 return rc;
664}
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400665
666static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
667{
Pavel Shilovskyd60622e2012-05-28 15:19:39 +0400668 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400669}
670
671#define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
672
673int
674SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
675 struct cifs_tcon *tcon, const struct nls_table *cp)
676{
677 struct smb2_tree_connect_req *req;
678 struct smb2_tree_connect_rsp *rsp = NULL;
679 struct kvec iov[2];
680 int rc = 0;
681 int resp_buftype;
682 int unc_path_len;
683 struct TCP_Server_Info *server;
684 __le16 *unc_path = NULL;
685
Joe Perchesf96637b2013-05-04 22:12:25 -0500686 cifs_dbg(FYI, "TCON\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400687
688 if ((ses->server) && tree)
689 server = ses->server;
690 else
691 return -EIO;
692
693 if (tcon && tcon->bad_network_name)
694 return -ENOENT;
695
696 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
697 if (unc_path == NULL)
698 return -ENOMEM;
699
700 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
701 unc_path_len *= 2;
702 if (unc_path_len < 2) {
703 kfree(unc_path);
704 return -EINVAL;
705 }
706
707 rc = small_smb2_init(SMB2_TREE_CONNECT, tcon, (void **) &req);
708 if (rc) {
709 kfree(unc_path);
710 return rc;
711 }
712
713 if (tcon == NULL) {
714 /* since no tcon, smb2_init can not do this, so do here */
715 req->hdr.SessionId = ses->Suid;
716 /* if (ses->server->sec_mode & SECMODE_SIGN_REQUIRED)
717 req->hdr.Flags |= SMB2_FLAGS_SIGNED; */
718 }
719
720 iov[0].iov_base = (char *)req;
721 /* 4 for rfc1002 length field and 1 for pad */
722 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
723
724 /* Testing shows that buffer offset must be at location of Buffer[0] */
725 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
726 - 1 /* pad */ - 4 /* do not count rfc1001 len field */);
727 req->PathLength = cpu_to_le16(unc_path_len - 2);
728 iov[1].iov_base = unc_path;
729 iov[1].iov_len = unc_path_len;
730
731 inc_rfc1001_len(req, unc_path_len - 1 /* pad */);
732
733 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
734 rsp = (struct smb2_tree_connect_rsp *)iov[0].iov_base;
735
736 if (rc != 0) {
737 if (tcon) {
738 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
739 tcon->need_reconnect = true;
740 }
741 goto tcon_error_exit;
742 }
743
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400744 if (tcon == NULL) {
745 ses->ipc_tid = rsp->hdr.TreeId;
746 goto tcon_exit;
747 }
748
749 if (rsp->ShareType & SMB2_SHARE_TYPE_DISK)
Joe Perchesf96637b2013-05-04 22:12:25 -0500750 cifs_dbg(FYI, "connection to disk share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400751 else if (rsp->ShareType & SMB2_SHARE_TYPE_PIPE) {
752 tcon->ipc = true;
Joe Perchesf96637b2013-05-04 22:12:25 -0500753 cifs_dbg(FYI, "connection to pipe share\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400754 } else if (rsp->ShareType & SMB2_SHARE_TYPE_PRINT) {
755 tcon->print = true;
Joe Perchesf96637b2013-05-04 22:12:25 -0500756 cifs_dbg(FYI, "connection to printer\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400757 } else {
Joe Perchesf96637b2013-05-04 22:12:25 -0500758 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400759 rc = -EOPNOTSUPP;
760 goto tcon_error_exit;
761 }
762
763 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
764 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
765 tcon->tidStatus = CifsGood;
766 tcon->need_reconnect = false;
767 tcon->tid = rsp->hdr.TreeId;
768 strncpy(tcon->treeName, tree, MAX_TREE_SIZE);
769
770 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
771 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
Joe Perchesf96637b2013-05-04 22:12:25 -0500772 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400773
774tcon_exit:
775 free_rsp_buf(resp_buftype, rsp);
776 kfree(unc_path);
777 return rc;
778
779tcon_error_exit:
780 if (rsp->hdr.Status == STATUS_BAD_NETWORK_NAME) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500781 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400782 tcon->bad_network_name = true;
783 }
784 goto tcon_exit;
785}
786
787int
788SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
789{
790 struct smb2_tree_disconnect_req *req; /* response is trivial */
791 int rc = 0;
792 struct TCP_Server_Info *server;
793 struct cifs_ses *ses = tcon->ses;
794
Joe Perchesf96637b2013-05-04 22:12:25 -0500795 cifs_dbg(FYI, "Tree Disconnect\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +0400796
797 if (ses && (ses->server))
798 server = ses->server;
799 else
800 return -EIO;
801
802 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
803 return 0;
804
805 rc = small_smb2_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req);
806 if (rc)
807 return rc;
808
809 rc = SendReceiveNoRsp(xid, ses, (char *)&req->hdr, 0);
810 if (rc)
811 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
812
813 return rc;
814}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400815
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700816static struct create_lease *
817create_lease_buf(u8 *lease_key, u8 oplock)
818{
819 struct create_lease *buf;
820
Dia Vasiled455b722013-03-10 14:29:04 +0200821 buf = kzalloc(sizeof(struct create_lease), GFP_KERNEL);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700822 if (!buf)
823 return NULL;
824
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700825 buf->lcontext.LeaseKeyLow = cpu_to_le64(*((u64 *)lease_key));
826 buf->lcontext.LeaseKeyHigh = cpu_to_le64(*((u64 *)(lease_key + 8)));
827 if (oplock == SMB2_OPLOCK_LEVEL_EXCLUSIVE)
828 buf->lcontext.LeaseState = SMB2_LEASE_WRITE_CACHING |
829 SMB2_LEASE_READ_CACHING;
830 else if (oplock == SMB2_OPLOCK_LEVEL_II)
831 buf->lcontext.LeaseState = SMB2_LEASE_READ_CACHING;
832 else if (oplock == SMB2_OPLOCK_LEVEL_BATCH)
833 buf->lcontext.LeaseState = SMB2_LEASE_HANDLE_CACHING |
834 SMB2_LEASE_READ_CACHING |
835 SMB2_LEASE_WRITE_CACHING;
836
837 buf->ccontext.DataOffset = cpu_to_le16(offsetof
838 (struct create_lease, lcontext));
839 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct lease_context));
840 buf->ccontext.NameOffset = cpu_to_le16(offsetof
841 (struct create_lease, Name));
842 buf->ccontext.NameLength = cpu_to_le16(4);
843 buf->Name[0] = 'R';
844 buf->Name[1] = 'q';
845 buf->Name[2] = 'L';
846 buf->Name[3] = 's';
847 return buf;
848}
849
850static __u8
851parse_lease_state(struct smb2_create_rsp *rsp)
852{
853 char *data_offset;
854 struct create_lease *lc;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700855 bool found = false;
856
857 data_offset = (char *)rsp;
858 data_offset += 4 + le32_to_cpu(rsp->CreateContextsOffset);
859 lc = (struct create_lease *)data_offset;
860 do {
861 char *name = le16_to_cpu(lc->ccontext.NameOffset) + (char *)lc;
862 if (le16_to_cpu(lc->ccontext.NameLength) != 4 ||
863 strncmp(name, "RqLs", 4)) {
864 lc = (struct create_lease *)((char *)lc
865 + le32_to_cpu(lc->ccontext.Next));
866 continue;
867 }
868 if (lc->lcontext.LeaseFlags & SMB2_LEASE_FLAG_BREAK_IN_PROGRESS)
869 return SMB2_OPLOCK_LEVEL_NOCHANGE;
870 found = true;
871 break;
872 } while (le32_to_cpu(lc->ccontext.Next) != 0);
873
874 if (!found)
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700875 return 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700876
Pavel Shilovsky0822f512012-09-19 06:22:45 -0700877 return smb2_map_lease_to_oplock(lc->lcontext.LeaseState);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700878}
879
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400880int
881SMB2_open(const unsigned int xid, struct cifs_tcon *tcon, __le16 *path,
882 u64 *persistent_fid, u64 *volatile_fid, __u32 desired_access,
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700883 __u32 create_disposition, __u32 file_attributes, __u32 create_options,
Pavel Shilovsky2e44b282012-09-18 16:20:33 -0700884 __u8 *oplock, struct smb2_file_all_info *buf)
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400885{
886 struct smb2_create_req *req;
887 struct smb2_create_rsp *rsp;
888 struct TCP_Server_Info *server;
889 struct cifs_ses *ses = tcon->ses;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700890 struct kvec iov[3];
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400891 int resp_buftype;
892 int uni_path_len;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700893 __le16 *copy_path = NULL;
894 int copy_size;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400895 int rc = 0;
896 int num_iovecs = 2;
897
Joe Perchesf96637b2013-05-04 22:12:25 -0500898 cifs_dbg(FYI, "create/open\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400899
900 if (ses && (ses->server))
901 server = ses->server;
902 else
903 return -EIO;
904
905 rc = small_smb2_init(SMB2_CREATE, tcon, (void **) &req);
906 if (rc)
907 return rc;
908
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400909 req->ImpersonationLevel = IL_IMPERSONATION;
910 req->DesiredAccess = cpu_to_le32(desired_access);
911 /* File attributes ignored on open (used in create though) */
912 req->FileAttributes = cpu_to_le32(file_attributes);
913 req->ShareAccess = FILE_SHARE_ALL_LE;
914 req->CreateDisposition = cpu_to_le32(create_disposition);
915 req->CreateOptions = cpu_to_le32(create_options);
916 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
917 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700918 - 8 /* pad */ - 4 /* do not count rfc1001 len field */);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400919
920 iov[0].iov_base = (char *)req;
921 /* 4 for rfc1002 length field */
922 iov[0].iov_len = get_rfc1002_length(req) + 4;
923
924 /* MUST set path len (NameLength) to 0 opening root of share */
925 if (uni_path_len >= 4) {
926 req->NameLength = cpu_to_le16(uni_path_len - 2);
927 /* -1 since last byte is buf[0] which is sent below (path) */
928 iov[0].iov_len--;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700929 if (uni_path_len % 8 != 0) {
930 copy_size = uni_path_len / 8 * 8;
931 if (copy_size < uni_path_len)
932 copy_size += 8;
933
934 copy_path = kzalloc(copy_size, GFP_KERNEL);
935 if (!copy_path)
936 return -ENOMEM;
937 memcpy((char *)copy_path, (const char *)path,
938 uni_path_len);
939 uni_path_len = copy_size;
940 path = copy_path;
941 }
942
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400943 iov[1].iov_len = uni_path_len;
944 iov[1].iov_base = path;
945 /*
946 * -1 since last byte is buf[0] which was counted in
947 * smb2_buf_len.
948 */
949 inc_rfc1001_len(req, uni_path_len - 1);
950 } else {
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700951 iov[0].iov_len += 7;
952 req->hdr.smb2_buf_length = cpu_to_be32(be32_to_cpu(
953 req->hdr.smb2_buf_length) + 8 - 1);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400954 num_iovecs = 1;
955 req->NameLength = 0;
956 }
957
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700958 if (!server->oplocks)
959 *oplock = SMB2_OPLOCK_LEVEL_NONE;
960
961 if (!(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
962 *oplock == SMB2_OPLOCK_LEVEL_NONE)
963 req->RequestedOplockLevel = *oplock;
964 else {
965 iov[num_iovecs].iov_base = create_lease_buf(oplock+1, *oplock);
966 if (iov[num_iovecs].iov_base == NULL) {
967 cifs_small_buf_release(req);
968 kfree(copy_path);
969 return -ENOMEM;
970 }
971 iov[num_iovecs].iov_len = sizeof(struct create_lease);
972 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
973 req->CreateContextsOffset = cpu_to_le32(
974 sizeof(struct smb2_create_req) - 4 - 8 +
975 iov[num_iovecs-1].iov_len);
976 req->CreateContextsLength = cpu_to_le32(
977 sizeof(struct create_lease));
978 inc_rfc1001_len(&req->hdr, sizeof(struct create_lease));
979 num_iovecs++;
980 }
981
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400982 rc = SendReceive2(xid, ses, iov, num_iovecs, &resp_buftype, 0);
983 rsp = (struct smb2_create_rsp *)iov[0].iov_base;
984
985 if (rc != 0) {
986 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
987 goto creat_exit;
988 }
989
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +0400990 *persistent_fid = rsp->PersistentFileId;
991 *volatile_fid = rsp->VolatileFileId;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -0700992
993 if (buf) {
994 memcpy(buf, &rsp->CreationTime, 32);
995 buf->AllocationSize = rsp->AllocationSize;
996 buf->EndOfFile = rsp->EndofFile;
997 buf->Attributes = rsp->FileAttributes;
998 buf->NumberOfLinks = cpu_to_le32(1);
999 buf->DeletePending = 0;
1000 }
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07001001
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001002 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
1003 *oplock = parse_lease_state(rsp);
1004 else
1005 *oplock = rsp->OplockLevel;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001006creat_exit:
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001007 kfree(copy_path);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001008 free_rsp_buf(resp_buftype, rsp);
1009 return rc;
1010}
1011
1012int
1013SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
1014 u64 persistent_fid, u64 volatile_fid)
1015{
1016 struct smb2_close_req *req;
1017 struct smb2_close_rsp *rsp;
1018 struct TCP_Server_Info *server;
1019 struct cifs_ses *ses = tcon->ses;
1020 struct kvec iov[1];
1021 int resp_buftype;
1022 int rc = 0;
1023
Joe Perchesf96637b2013-05-04 22:12:25 -05001024 cifs_dbg(FYI, "Close\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001025
1026 if (ses && (ses->server))
1027 server = ses->server;
1028 else
1029 return -EIO;
1030
1031 rc = small_smb2_init(SMB2_CLOSE, tcon, (void **) &req);
1032 if (rc)
1033 return rc;
1034
1035 req->PersistentFileId = persistent_fid;
1036 req->VolatileFileId = volatile_fid;
1037
1038 iov[0].iov_base = (char *)req;
1039 /* 4 for rfc1002 length field */
1040 iov[0].iov_len = get_rfc1002_length(req) + 4;
1041
1042 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1043 rsp = (struct smb2_close_rsp *)iov[0].iov_base;
1044
1045 if (rc != 0) {
1046 if (tcon)
1047 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
1048 goto close_exit;
1049 }
1050
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001051 /* BB FIXME - decode close response, update inode for caching */
1052
1053close_exit:
1054 free_rsp_buf(resp_buftype, rsp);
1055 return rc;
1056}
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001057
1058static int
1059validate_buf(unsigned int offset, unsigned int buffer_length,
1060 struct smb2_hdr *hdr, unsigned int min_buf_size)
1061
1062{
1063 unsigned int smb_len = be32_to_cpu(hdr->smb2_buf_length);
1064 char *end_of_smb = smb_len + 4 /* RFC1001 length field */ + (char *)hdr;
1065 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1066 char *end_of_buf = begin_of_buf + buffer_length;
1067
1068
1069 if (buffer_length < min_buf_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001070 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
1071 buffer_length, min_buf_size);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001072 return -EINVAL;
1073 }
1074
1075 /* check if beyond RFC1001 maximum length */
1076 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001077 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
1078 buffer_length, smb_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001079 return -EINVAL;
1080 }
1081
1082 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001083 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001084 return -EINVAL;
1085 }
1086
1087 return 0;
1088}
1089
1090/*
1091 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
1092 * Caller must free buffer.
1093 */
1094static int
1095validate_and_copy_buf(unsigned int offset, unsigned int buffer_length,
1096 struct smb2_hdr *hdr, unsigned int minbufsize,
1097 char *data)
1098
1099{
1100 char *begin_of_buf = 4 /* RFC1001 len field */ + offset + (char *)hdr;
1101 int rc;
1102
1103 if (!data)
1104 return -EINVAL;
1105
1106 rc = validate_buf(offset, buffer_length, hdr, minbufsize);
1107 if (rc)
1108 return rc;
1109
1110 memcpy(data, begin_of_buf, buffer_length);
1111
1112 return 0;
1113}
1114
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001115static int
1116query_info(const unsigned int xid, struct cifs_tcon *tcon,
1117 u64 persistent_fid, u64 volatile_fid, u8 info_class,
1118 size_t output_len, size_t min_len, void *data)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001119{
1120 struct smb2_query_info_req *req;
1121 struct smb2_query_info_rsp *rsp = NULL;
1122 struct kvec iov[2];
1123 int rc = 0;
1124 int resp_buftype;
1125 struct TCP_Server_Info *server;
1126 struct cifs_ses *ses = tcon->ses;
1127
Joe Perchesf96637b2013-05-04 22:12:25 -05001128 cifs_dbg(FYI, "Query Info\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001129
1130 if (ses && (ses->server))
1131 server = ses->server;
1132 else
1133 return -EIO;
1134
1135 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
1136 if (rc)
1137 return rc;
1138
1139 req->InfoType = SMB2_O_INFO_FILE;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001140 req->FileInfoClass = info_class;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001141 req->PersistentFileId = persistent_fid;
1142 req->VolatileFileId = volatile_fid;
1143 /* 4 for rfc1002 length field and 1 for Buffer */
1144 req->InputBufferOffset =
1145 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001146 req->OutputBufferLength = cpu_to_le32(output_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001147
1148 iov[0].iov_base = (char *)req;
1149 /* 4 for rfc1002 length field */
1150 iov[0].iov_len = get_rfc1002_length(req) + 4;
1151
1152 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001153 rsp = (struct smb2_query_info_rsp *)iov[0].iov_base;
1154
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001155 if (rc) {
1156 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
1157 goto qinf_exit;
1158 }
1159
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001160 rc = validate_and_copy_buf(le16_to_cpu(rsp->OutputBufferOffset),
1161 le32_to_cpu(rsp->OutputBufferLength),
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001162 &rsp->hdr, min_len, data);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04001163
1164qinf_exit:
1165 free_rsp_buf(resp_buftype, rsp);
1166 return rc;
1167}
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001168
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07001169int
1170SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
1171 u64 persistent_fid, u64 volatile_fid,
1172 struct smb2_file_all_info *data)
1173{
1174 return query_info(xid, tcon, persistent_fid, volatile_fid,
1175 FILE_ALL_INFORMATION,
1176 sizeof(struct smb2_file_all_info) + MAX_NAME * 2,
1177 sizeof(struct smb2_file_all_info), data);
1178}
1179
1180int
1181SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
1182 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
1183{
1184 return query_info(xid, tcon, persistent_fid, volatile_fid,
1185 FILE_INTERNAL_INFORMATION,
1186 sizeof(struct smb2_file_internal_info),
1187 sizeof(struct smb2_file_internal_info), uniqueid);
1188}
1189
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001190/*
1191 * This is a no-op for now. We're not really interested in the reply, but
1192 * rather in the fact that the server sent one and that server->lstrp
1193 * gets updated.
1194 *
1195 * FIXME: maybe we should consider checking that the reply matches request?
1196 */
1197static void
1198smb2_echo_callback(struct mid_q_entry *mid)
1199{
1200 struct TCP_Server_Info *server = mid->callback_data;
1201 struct smb2_echo_rsp *smb2 = (struct smb2_echo_rsp *)mid->resp_buf;
1202 unsigned int credits_received = 1;
1203
1204 if (mid->mid_state == MID_RESPONSE_RECEIVED)
1205 credits_received = le16_to_cpu(smb2->hdr.CreditRequest);
1206
1207 DeleteMidQEntry(mid);
1208 add_credits(server, credits_received, CIFS_ECHO_OP);
1209}
1210
1211int
1212SMB2_echo(struct TCP_Server_Info *server)
1213{
1214 struct smb2_echo_req *req;
1215 int rc = 0;
1216 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07001217 struct smb_rqst rqst = { .rq_iov = &iov,
1218 .rq_nvec = 1 };
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001219
Joe Perchesf96637b2013-05-04 22:12:25 -05001220 cifs_dbg(FYI, "In echo request\n");
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001221
1222 rc = small_smb2_init(SMB2_ECHO, NULL, (void **)&req);
1223 if (rc)
1224 return rc;
1225
1226 req->hdr.CreditRequest = cpu_to_le16(1);
1227
1228 iov.iov_base = (char *)req;
1229 /* 4 for rfc1002 length field */
1230 iov.iov_len = get_rfc1002_length(req) + 4;
1231
Jeff Laytonfec344e2012-09-18 16:20:35 -07001232 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, server,
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001233 CIFS_ECHO_OP);
1234 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001235 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04001236
1237 cifs_small_buf_release(req);
1238 return rc;
1239}
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001240
1241int
1242SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1243 u64 volatile_fid)
1244{
1245 struct smb2_flush_req *req;
1246 struct TCP_Server_Info *server;
1247 struct cifs_ses *ses = tcon->ses;
1248 struct kvec iov[1];
1249 int resp_buftype;
1250 int rc = 0;
1251
Joe Perchesf96637b2013-05-04 22:12:25 -05001252 cifs_dbg(FYI, "Flush\n");
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07001253
1254 if (ses && (ses->server))
1255 server = ses->server;
1256 else
1257 return -EIO;
1258
1259 rc = small_smb2_init(SMB2_FLUSH, tcon, (void **) &req);
1260 if (rc)
1261 return rc;
1262
1263 req->PersistentFileId = persistent_fid;
1264 req->VolatileFileId = volatile_fid;
1265
1266 iov[0].iov_base = (char *)req;
1267 /* 4 for rfc1002 length field */
1268 iov[0].iov_len = get_rfc1002_length(req) + 4;
1269
1270 rc = SendReceive2(xid, ses, iov, 1, &resp_buftype, 0);
1271
1272 if ((rc != 0) && tcon)
1273 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
1274
1275 free_rsp_buf(resp_buftype, iov[0].iov_base);
1276 return rc;
1277}
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001278
1279/*
1280 * To form a chain of read requests, any read requests after the first should
1281 * have the end_of_chain boolean set to true.
1282 */
1283static int
1284smb2_new_read_req(struct kvec *iov, struct cifs_io_parms *io_parms,
1285 unsigned int remaining_bytes, int request_type)
1286{
1287 int rc = -EACCES;
1288 struct smb2_read_req *req = NULL;
1289
1290 rc = small_smb2_init(SMB2_READ, io_parms->tcon, (void **) &req);
1291 if (rc)
1292 return rc;
1293 if (io_parms->tcon->ses->server == NULL)
1294 return -ECONNABORTED;
1295
1296 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1297
1298 req->PersistentFileId = io_parms->persistent_fid;
1299 req->VolatileFileId = io_parms->volatile_fid;
1300 req->ReadChannelInfoOffset = 0; /* reserved */
1301 req->ReadChannelInfoLength = 0; /* reserved */
1302 req->Channel = 0; /* reserved */
1303 req->MinimumCount = 0;
1304 req->Length = cpu_to_le32(io_parms->length);
1305 req->Offset = cpu_to_le64(io_parms->offset);
1306
1307 if (request_type & CHAINED_REQUEST) {
1308 if (!(request_type & END_OF_CHAIN)) {
1309 /* 4 for rfc1002 length field */
1310 req->hdr.NextCommand =
1311 cpu_to_le32(get_rfc1002_length(req) + 4);
1312 } else /* END_OF_CHAIN */
1313 req->hdr.NextCommand = 0;
1314 if (request_type & RELATED_REQUEST) {
1315 req->hdr.Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
1316 /*
1317 * Related requests use info from previous read request
1318 * in chain.
1319 */
1320 req->hdr.SessionId = 0xFFFFFFFF;
1321 req->hdr.TreeId = 0xFFFFFFFF;
1322 req->PersistentFileId = 0xFFFFFFFF;
1323 req->VolatileFileId = 0xFFFFFFFF;
1324 }
1325 }
1326 if (remaining_bytes > io_parms->length)
1327 req->RemainingBytes = cpu_to_le32(remaining_bytes);
1328 else
1329 req->RemainingBytes = 0;
1330
1331 iov[0].iov_base = (char *)req;
1332 /* 4 for rfc1002 length field */
1333 iov[0].iov_len = get_rfc1002_length(req) + 4;
1334 return rc;
1335}
1336
1337static void
1338smb2_readv_callback(struct mid_q_entry *mid)
1339{
1340 struct cifs_readdata *rdata = mid->callback_data;
1341 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
1342 struct TCP_Server_Info *server = tcon->ses->server;
Jeff Layton58195752012-09-19 06:22:34 -07001343 struct smb2_hdr *buf = (struct smb2_hdr *)rdata->iov.iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001344 unsigned int credits_received = 1;
Jeff Layton58195752012-09-19 06:22:34 -07001345 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Layton8321fec2012-09-19 06:22:32 -07001346 .rq_nvec = 1,
1347 .rq_pages = rdata->pages,
1348 .rq_npages = rdata->nr_pages,
1349 .rq_pagesz = rdata->pagesz,
1350 .rq_tailsz = rdata->tailsz };
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001351
Joe Perchesf96637b2013-05-04 22:12:25 -05001352 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
1353 __func__, mid->mid, mid->mid_state, rdata->result,
1354 rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001355
1356 switch (mid->mid_state) {
1357 case MID_RESPONSE_RECEIVED:
1358 credits_received = le16_to_cpu(buf->CreditRequest);
1359 /* result already set, check signature */
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001360 if (server->sec_mode &
1361 (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
1362 int rc;
1363
Jeff Layton0b688cf2012-09-18 16:20:34 -07001364 rc = smb2_verify_signature(&rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001365 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05001366 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
1367 rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001368 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001369 /* FIXME: should this be counted toward the initiating task? */
1370 task_io_account_read(rdata->bytes);
1371 cifs_stats_bytes_read(tcon, rdata->bytes);
1372 break;
1373 case MID_REQUEST_SUBMITTED:
1374 case MID_RETRY_NEEDED:
1375 rdata->result = -EAGAIN;
1376 break;
1377 default:
1378 if (rdata->result != -ENODATA)
1379 rdata->result = -EIO;
1380 }
1381
1382 if (rdata->result)
1383 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
1384
1385 queue_work(cifsiod_wq, &rdata->work);
1386 DeleteMidQEntry(mid);
1387 add_credits(server, credits_received, 0);
1388}
1389
1390/* smb2_async_readv - send an async write, and set up mid to handle result */
1391int
1392smb2_async_readv(struct cifs_readdata *rdata)
1393{
1394 int rc;
1395 struct smb2_hdr *buf;
1396 struct cifs_io_parms io_parms;
Jeff Layton58195752012-09-19 06:22:34 -07001397 struct smb_rqst rqst = { .rq_iov = &rdata->iov,
Jeff Laytonfec344e2012-09-18 16:20:35 -07001398 .rq_nvec = 1 };
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001399
Joe Perchesf96637b2013-05-04 22:12:25 -05001400 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
1401 __func__, rdata->offset, rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001402
1403 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
1404 io_parms.offset = rdata->offset;
1405 io_parms.length = rdata->bytes;
1406 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
1407 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
1408 io_parms.pid = rdata->pid;
Jeff Layton58195752012-09-19 06:22:34 -07001409 rc = smb2_new_read_req(&rdata->iov, &io_parms, 0, 0);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001410 if (rc)
1411 return rc;
1412
Jeff Layton58195752012-09-19 06:22:34 -07001413 buf = (struct smb2_hdr *)rdata->iov.iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001414 /* 4 for rfc1002 length field */
Jeff Layton58195752012-09-19 06:22:34 -07001415 rdata->iov.iov_len = get_rfc1002_length(rdata->iov.iov_base) + 4;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001416
1417 kref_get(&rdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001418 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001419 cifs_readv_receive, smb2_readv_callback,
1420 rdata, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001421 if (rc) {
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001422 kref_put(&rdata->refcount, cifs_readdata_release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001423 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
1424 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07001425
1426 cifs_small_buf_release(buf);
1427 return rc;
1428}
Pavel Shilovsky33319142012-09-18 16:20:29 -07001429
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07001430int
1431SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
1432 unsigned int *nbytes, char **buf, int *buf_type)
1433{
1434 int resp_buftype, rc = -EACCES;
1435 struct smb2_read_rsp *rsp = NULL;
1436 struct kvec iov[1];
1437
1438 *nbytes = 0;
1439 rc = smb2_new_read_req(iov, io_parms, 0, 0);
1440 if (rc)
1441 return rc;
1442
1443 rc = SendReceive2(xid, io_parms->tcon->ses, iov, 1,
1444 &resp_buftype, CIFS_LOG_ERROR);
1445
1446 rsp = (struct smb2_read_rsp *)iov[0].iov_base;
1447
1448 if (rsp->hdr.Status == STATUS_END_OF_FILE) {
1449 free_rsp_buf(resp_buftype, iov[0].iov_base);
1450 return 0;
1451 }
1452
1453 if (rc) {
1454 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05001455 cifs_dbg(VFS, "Send error in read = %d\n", rc);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07001456 } else {
1457 *nbytes = le32_to_cpu(rsp->DataLength);
1458 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
1459 (*nbytes > io_parms->length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001460 cifs_dbg(FYI, "bad length %d for count %d\n",
1461 *nbytes, io_parms->length);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07001462 rc = -EIO;
1463 *nbytes = 0;
1464 }
1465 }
1466
1467 if (*buf) {
1468 memcpy(*buf, (char *)rsp->hdr.ProtocolId + rsp->DataOffset,
1469 *nbytes);
1470 free_rsp_buf(resp_buftype, iov[0].iov_base);
1471 } else if (resp_buftype != CIFS_NO_BUFFER) {
1472 *buf = iov[0].iov_base;
1473 if (resp_buftype == CIFS_SMALL_BUFFER)
1474 *buf_type = CIFS_SMALL_BUFFER;
1475 else if (resp_buftype == CIFS_LARGE_BUFFER)
1476 *buf_type = CIFS_LARGE_BUFFER;
1477 }
1478 return rc;
1479}
1480
Pavel Shilovsky33319142012-09-18 16:20:29 -07001481/*
1482 * Check the mid_state and signature on received buffer (if any), and queue the
1483 * workqueue completion task.
1484 */
1485static void
1486smb2_writev_callback(struct mid_q_entry *mid)
1487{
1488 struct cifs_writedata *wdata = mid->callback_data;
1489 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
1490 unsigned int written;
1491 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
1492 unsigned int credits_received = 1;
1493
1494 switch (mid->mid_state) {
1495 case MID_RESPONSE_RECEIVED:
1496 credits_received = le16_to_cpu(rsp->hdr.CreditRequest);
1497 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
1498 if (wdata->result != 0)
1499 break;
1500
1501 written = le32_to_cpu(rsp->DataLength);
1502 /*
1503 * Mask off high 16 bits when bytes written as returned
1504 * by the server is greater than bytes requested by the
1505 * client. OS/2 servers are known to set incorrect
1506 * CountHigh values.
1507 */
1508 if (written > wdata->bytes)
1509 written &= 0xFFFF;
1510
1511 if (written < wdata->bytes)
1512 wdata->result = -ENOSPC;
1513 else
1514 wdata->bytes = written;
1515 break;
1516 case MID_REQUEST_SUBMITTED:
1517 case MID_RETRY_NEEDED:
1518 wdata->result = -EAGAIN;
1519 break;
1520 default:
1521 wdata->result = -EIO;
1522 break;
1523 }
1524
1525 if (wdata->result)
1526 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
1527
1528 queue_work(cifsiod_wq, &wdata->work);
1529 DeleteMidQEntry(mid);
1530 add_credits(tcon->ses->server, credits_received, 0);
1531}
1532
1533/* smb2_async_writev - send an async write, and set up mid to handle result */
1534int
1535smb2_async_writev(struct cifs_writedata *wdata)
1536{
Jeff Laytoneddb0792012-09-18 16:20:35 -07001537 int rc = -EACCES;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001538 struct smb2_write_req *req = NULL;
1539 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Jeff Laytoneddb0792012-09-18 16:20:35 -07001540 struct kvec iov;
Jeff Laytonfec344e2012-09-18 16:20:35 -07001541 struct smb_rqst rqst;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001542
1543 rc = small_smb2_init(SMB2_WRITE, tcon, (void **) &req);
1544 if (rc)
1545 goto async_writev_out;
1546
Pavel Shilovsky33319142012-09-18 16:20:29 -07001547 req->hdr.ProcessId = cpu_to_le32(wdata->cfile->pid);
1548
1549 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
1550 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
1551 req->WriteChannelInfoOffset = 0;
1552 req->WriteChannelInfoLength = 0;
1553 req->Channel = 0;
1554 req->Offset = cpu_to_le64(wdata->offset);
1555 /* 4 for rfc1002 length field */
1556 req->DataOffset = cpu_to_le16(
1557 offsetof(struct smb2_write_req, Buffer) - 4);
1558 req->RemainingBytes = 0;
1559
1560 /* 4 for rfc1002 length field and 1 for Buffer */
Jeff Laytoneddb0792012-09-18 16:20:35 -07001561 iov.iov_len = get_rfc1002_length(req) + 4 - 1;
1562 iov.iov_base = req;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001563
Jeff Laytoneddb0792012-09-18 16:20:35 -07001564 rqst.rq_iov = &iov;
1565 rqst.rq_nvec = 1;
1566 rqst.rq_pages = wdata->pages;
1567 rqst.rq_npages = wdata->nr_pages;
1568 rqst.rq_pagesz = wdata->pagesz;
1569 rqst.rq_tailsz = wdata->tailsz;
Pavel Shilovsky33319142012-09-18 16:20:29 -07001570
Joe Perchesf96637b2013-05-04 22:12:25 -05001571 cifs_dbg(FYI, "async write at %llu %u bytes\n",
1572 wdata->offset, wdata->bytes);
Pavel Shilovsky33319142012-09-18 16:20:29 -07001573
1574 req->Length = cpu_to_le32(wdata->bytes);
1575
1576 inc_rfc1001_len(&req->hdr, wdata->bytes - 1 /* Buffer */);
1577
1578 kref_get(&wdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001579 rc = cifs_call_async(tcon->ses->server, &rqst, NULL,
1580 smb2_writev_callback, wdata, 0);
Pavel Shilovsky33319142012-09-18 16:20:29 -07001581
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001582 if (rc) {
Pavel Shilovsky33319142012-09-18 16:20:29 -07001583 kref_put(&wdata->refcount, cifs_writedata_release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001584 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
1585 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07001586
Pavel Shilovsky33319142012-09-18 16:20:29 -07001587async_writev_out:
1588 cifs_small_buf_release(req);
Pavel Shilovsky33319142012-09-18 16:20:29 -07001589 return rc;
1590}
Pavel Shilovsky009d3442012-09-18 16:20:30 -07001591
1592/*
1593 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
1594 * The length field from io_parms must be at least 1 and indicates a number of
1595 * elements with data to write that begins with position 1 in iov array. All
1596 * data length is specified by count.
1597 */
1598int
1599SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
1600 unsigned int *nbytes, struct kvec *iov, int n_vec)
1601{
1602 int rc = 0;
1603 struct smb2_write_req *req = NULL;
1604 struct smb2_write_rsp *rsp = NULL;
1605 int resp_buftype;
1606 *nbytes = 0;
1607
1608 if (n_vec < 1)
1609 return rc;
1610
1611 rc = small_smb2_init(SMB2_WRITE, io_parms->tcon, (void **) &req);
1612 if (rc)
1613 return rc;
1614
1615 if (io_parms->tcon->ses->server == NULL)
1616 return -ECONNABORTED;
1617
1618 req->hdr.ProcessId = cpu_to_le32(io_parms->pid);
1619
1620 req->PersistentFileId = io_parms->persistent_fid;
1621 req->VolatileFileId = io_parms->volatile_fid;
1622 req->WriteChannelInfoOffset = 0;
1623 req->WriteChannelInfoLength = 0;
1624 req->Channel = 0;
1625 req->Length = cpu_to_le32(io_parms->length);
1626 req->Offset = cpu_to_le64(io_parms->offset);
1627 /* 4 for rfc1002 length field */
1628 req->DataOffset = cpu_to_le16(
1629 offsetof(struct smb2_write_req, Buffer) - 4);
1630 req->RemainingBytes = 0;
1631
1632 iov[0].iov_base = (char *)req;
1633 /* 4 for rfc1002 length field and 1 for Buffer */
1634 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1635
1636 /* length of entire message including data to be written */
1637 inc_rfc1001_len(req, io_parms->length - 1 /* Buffer */);
1638
1639 rc = SendReceive2(xid, io_parms->tcon->ses, iov, n_vec + 1,
1640 &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001641 rsp = (struct smb2_write_rsp *)iov[0].iov_base;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07001642
1643 if (rc) {
1644 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05001645 cifs_dbg(VFS, "Send error in write = %d\n", rc);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001646 } else
Pavel Shilovsky009d3442012-09-18 16:20:30 -07001647 *nbytes = le32_to_cpu(rsp->DataLength);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001648
1649 free_rsp_buf(resp_buftype, rsp);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07001650 return rc;
1651}
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001652
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001653static unsigned int
1654num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
1655{
1656 int len;
1657 unsigned int entrycount = 0;
1658 unsigned int next_offset = 0;
1659 FILE_DIRECTORY_INFO *entryptr;
1660
1661 if (bufstart == NULL)
1662 return 0;
1663
1664 entryptr = (FILE_DIRECTORY_INFO *)bufstart;
1665
1666 while (1) {
1667 entryptr = (FILE_DIRECTORY_INFO *)
1668 ((char *)entryptr + next_offset);
1669
1670 if ((char *)entryptr + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001671 cifs_dbg(VFS, "malformed search entry would overflow\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001672 break;
1673 }
1674
1675 len = le32_to_cpu(entryptr->FileNameLength);
1676 if ((char *)entryptr + len + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001677 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
1678 end_of_buf);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001679 break;
1680 }
1681
1682 *lastentry = (char *)entryptr;
1683 entrycount++;
1684
1685 next_offset = le32_to_cpu(entryptr->NextEntryOffset);
1686 if (!next_offset)
1687 break;
1688 }
1689
1690 return entrycount;
1691}
1692
1693/*
1694 * Readdir/FindFirst
1695 */
1696int
1697SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
1698 u64 persistent_fid, u64 volatile_fid, int index,
1699 struct cifs_search_info *srch_inf)
1700{
1701 struct smb2_query_directory_req *req;
1702 struct smb2_query_directory_rsp *rsp = NULL;
1703 struct kvec iov[2];
1704 int rc = 0;
1705 int len;
1706 int resp_buftype;
1707 unsigned char *bufptr;
1708 struct TCP_Server_Info *server;
1709 struct cifs_ses *ses = tcon->ses;
1710 __le16 asteriks = cpu_to_le16('*');
1711 char *end_of_smb;
1712 unsigned int output_size = CIFSMaxBufSize;
1713 size_t info_buf_size;
1714
1715 if (ses && (ses->server))
1716 server = ses->server;
1717 else
1718 return -EIO;
1719
1720 rc = small_smb2_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req);
1721 if (rc)
1722 return rc;
1723
1724 switch (srch_inf->info_level) {
1725 case SMB_FIND_FILE_DIRECTORY_INFO:
1726 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
1727 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
1728 break;
1729 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
1730 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
1731 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
1732 break;
1733 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001734 cifs_dbg(VFS, "info level %u isn't supported\n",
1735 srch_inf->info_level);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001736 rc = -EINVAL;
1737 goto qdir_exit;
1738 }
1739
1740 req->FileIndex = cpu_to_le32(index);
1741 req->PersistentFileId = persistent_fid;
1742 req->VolatileFileId = volatile_fid;
1743
1744 len = 0x2;
1745 bufptr = req->Buffer;
1746 memcpy(bufptr, &asteriks, len);
1747
1748 req->FileNameOffset =
1749 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1 - 4);
1750 req->FileNameLength = cpu_to_le16(len);
1751 /*
1752 * BB could be 30 bytes or so longer if we used SMB2 specific
1753 * buffer lengths, but this is safe and close enough.
1754 */
1755 output_size = min_t(unsigned int, output_size, server->maxBuf);
1756 output_size = min_t(unsigned int, output_size, 2 << 15);
1757 req->OutputBufferLength = cpu_to_le32(output_size);
1758
1759 iov[0].iov_base = (char *)req;
1760 /* 4 for RFC1001 length and 1 for Buffer */
1761 iov[0].iov_len = get_rfc1002_length(req) + 4 - 1;
1762
1763 iov[1].iov_base = (char *)(req->Buffer);
1764 iov[1].iov_len = len;
1765
1766 inc_rfc1001_len(req, len - 1 /* Buffer */);
1767
1768 rc = SendReceive2(xid, ses, iov, 2, &resp_buftype, 0);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04001769 rsp = (struct smb2_query_directory_rsp *)iov[0].iov_base;
1770
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001771 if (rc) {
1772 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
1773 goto qdir_exit;
1774 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001775
1776 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
1777 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
1778 info_buf_size);
1779 if (rc)
1780 goto qdir_exit;
1781
1782 srch_inf->unicode = true;
1783
1784 if (srch_inf->ntwrk_buf_start) {
1785 if (srch_inf->smallBuf)
1786 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
1787 else
1788 cifs_buf_release(srch_inf->ntwrk_buf_start);
1789 }
1790 srch_inf->ntwrk_buf_start = (char *)rsp;
1791 srch_inf->srch_entries_start = srch_inf->last_entry = 4 /* rfclen */ +
1792 (char *)&rsp->hdr + le16_to_cpu(rsp->OutputBufferOffset);
1793 /* 4 for rfc1002 length field */
1794 end_of_smb = get_rfc1002_length(rsp) + 4 + (char *)&rsp->hdr;
1795 srch_inf->entries_in_buffer =
1796 num_entries(srch_inf->srch_entries_start, end_of_smb,
1797 &srch_inf->last_entry, info_buf_size);
1798 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
Joe Perchesf96637b2013-05-04 22:12:25 -05001799 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
1800 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
1801 srch_inf->srch_entries_start, srch_inf->last_entry);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001802 if (resp_buftype == CIFS_LARGE_BUFFER)
1803 srch_inf->smallBuf = false;
1804 else if (resp_buftype == CIFS_SMALL_BUFFER)
1805 srch_inf->smallBuf = true;
1806 else
Joe Perchesf96637b2013-05-04 22:12:25 -05001807 cifs_dbg(VFS, "illegal search buffer type\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07001808
1809 if (rsp->hdr.Status == STATUS_NO_MORE_FILES)
1810 srch_inf->endOfSearch = 1;
1811 else
1812 srch_inf->endOfSearch = 0;
1813
1814 return rc;
1815
1816qdir_exit:
1817 free_rsp_buf(resp_buftype, rsp);
1818 return rc;
1819}
1820
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001821static int
1822send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07001823 u64 persistent_fid, u64 volatile_fid, u32 pid, int info_class,
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001824 unsigned int num, void **data, unsigned int *size)
1825{
1826 struct smb2_set_info_req *req;
1827 struct smb2_set_info_rsp *rsp = NULL;
1828 struct kvec *iov;
1829 int rc = 0;
1830 int resp_buftype;
1831 unsigned int i;
1832 struct TCP_Server_Info *server;
1833 struct cifs_ses *ses = tcon->ses;
1834
1835 if (ses && (ses->server))
1836 server = ses->server;
1837 else
1838 return -EIO;
1839
1840 if (!num)
1841 return -EINVAL;
1842
1843 iov = kmalloc(sizeof(struct kvec) * num, GFP_KERNEL);
1844 if (!iov)
1845 return -ENOMEM;
1846
1847 rc = small_smb2_init(SMB2_SET_INFO, tcon, (void **) &req);
1848 if (rc) {
1849 kfree(iov);
1850 return rc;
1851 }
1852
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07001853 req->hdr.ProcessId = cpu_to_le32(pid);
1854
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001855 req->InfoType = SMB2_O_INFO_FILE;
1856 req->FileInfoClass = info_class;
1857 req->PersistentFileId = persistent_fid;
1858 req->VolatileFileId = volatile_fid;
1859
1860 /* 4 for RFC1001 length and 1 for Buffer */
1861 req->BufferOffset =
1862 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1 - 4);
1863 req->BufferLength = cpu_to_le32(*size);
1864
1865 inc_rfc1001_len(req, *size - 1 /* Buffer */);
1866
1867 memcpy(req->Buffer, *data, *size);
1868
1869 iov[0].iov_base = (char *)req;
1870 /* 4 for RFC1001 length */
1871 iov[0].iov_len = get_rfc1002_length(req) + 4;
1872
1873 for (i = 1; i < num; i++) {
1874 inc_rfc1001_len(req, size[i]);
1875 le32_add_cpu(&req->BufferLength, size[i]);
1876 iov[i].iov_base = (char *)data[i];
1877 iov[i].iov_len = size[i];
1878 }
1879
1880 rc = SendReceive2(xid, ses, iov, num, &resp_buftype, 0);
1881 rsp = (struct smb2_set_info_rsp *)iov[0].iov_base;
1882
1883 if (rc != 0) {
1884 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
1885 goto out;
1886 }
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001887out:
1888 free_rsp_buf(resp_buftype, rsp);
1889 kfree(iov);
1890 return rc;
1891}
1892
1893int
1894SMB2_rename(const unsigned int xid, struct cifs_tcon *tcon,
1895 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
1896{
1897 struct smb2_file_rename_info info;
1898 void **data;
1899 unsigned int size[2];
1900 int rc;
1901 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
1902
1903 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
1904 if (!data)
1905 return -ENOMEM;
1906
1907 info.ReplaceIfExists = 1; /* 1 = replace existing target with new */
1908 /* 0 = fail if target already exists */
1909 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
1910 info.FileNameLength = cpu_to_le32(len);
1911
1912 data[0] = &info;
1913 size[0] = sizeof(struct smb2_file_rename_info);
1914
1915 data[1] = target_file;
1916 size[1] = len + 2 /* null */;
1917
1918 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07001919 current->tgid, FILE_RENAME_INFORMATION, 2, data,
1920 size);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07001921 kfree(data);
1922 return rc;
1923}
Pavel Shilovsky568798c2012-09-18 16:20:31 -07001924
1925int
1926SMB2_set_hardlink(const unsigned int xid, struct cifs_tcon *tcon,
1927 u64 persistent_fid, u64 volatile_fid, __le16 *target_file)
1928{
1929 struct smb2_file_link_info info;
1930 void **data;
1931 unsigned int size[2];
1932 int rc;
1933 int len = (2 * UniStrnlen((wchar_t *)target_file, PATH_MAX));
1934
1935 data = kmalloc(sizeof(void *) * 2, GFP_KERNEL);
1936 if (!data)
1937 return -ENOMEM;
1938
1939 info.ReplaceIfExists = 0; /* 1 = replace existing link with new */
1940 /* 0 = fail if link already exists */
1941 info.RootDirectory = 0; /* MBZ for network ops (why does spec say?) */
1942 info.FileNameLength = cpu_to_le32(len);
1943
1944 data[0] = &info;
1945 size[0] = sizeof(struct smb2_file_link_info);
1946
1947 data[1] = target_file;
1948 size[1] = len + 2 /* null */;
1949
1950 rc = send_set_info(xid, tcon, persistent_fid, volatile_fid,
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07001951 current->tgid, FILE_LINK_INFORMATION, 2, data, size);
Pavel Shilovsky568798c2012-09-18 16:20:31 -07001952 kfree(data);
1953 return rc;
1954}
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07001955
1956int
1957SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
1958 u64 volatile_fid, u32 pid, __le64 *eof)
1959{
1960 struct smb2_file_eof_info info;
1961 void *data;
1962 unsigned int size;
1963
1964 info.EndOfFile = *eof;
1965
1966 data = &info;
1967 size = sizeof(struct smb2_file_eof_info);
1968
1969 return send_set_info(xid, tcon, persistent_fid, volatile_fid, pid,
1970 FILE_END_OF_FILE_INFORMATION, 1, &data, &size);
1971}
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -07001972
1973int
1974SMB2_set_info(const unsigned int xid, struct cifs_tcon *tcon,
1975 u64 persistent_fid, u64 volatile_fid, FILE_BASIC_INFO *buf)
1976{
1977 unsigned int size;
1978 size = sizeof(FILE_BASIC_INFO);
1979 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
1980 current->tgid, FILE_BASIC_INFORMATION, 1,
1981 (void **)&buf, &size);
1982}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07001983
1984int
1985SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
1986 const u64 persistent_fid, const u64 volatile_fid,
1987 __u8 oplock_level)
1988{
1989 int rc;
1990 struct smb2_oplock_break *req = NULL;
1991
Joe Perchesf96637b2013-05-04 22:12:25 -05001992 cifs_dbg(FYI, "SMB2_oplock_break\n");
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07001993 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
1994
1995 if (rc)
1996 return rc;
1997
1998 req->VolatileFid = volatile_fid;
1999 req->PersistentFid = persistent_fid;
2000 req->OplockLevel = oplock_level;
2001 req->hdr.CreditRequest = cpu_to_le16(1);
2002
2003 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2004 /* SMB2 buffer freed by function above */
2005
2006 if (rc) {
2007 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002008 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07002009 }
2010
2011 return rc;
2012}
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002013
2014static void
2015copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
2016 struct kstatfs *kst)
2017{
2018 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
2019 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
2020 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
2021 kst->f_bfree = le64_to_cpu(pfs_inf->ActualAvailableAllocationUnits);
2022 kst->f_bavail = le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
2023 return;
2024}
2025
2026static int
2027build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
2028 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
2029{
2030 int rc;
2031 struct smb2_query_info_req *req;
2032
Joe Perchesf96637b2013-05-04 22:12:25 -05002033 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07002034
2035 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
2036 return -EIO;
2037
2038 rc = small_smb2_init(SMB2_QUERY_INFO, tcon, (void **) &req);
2039 if (rc)
2040 return rc;
2041
2042 req->InfoType = SMB2_O_INFO_FILESYSTEM;
2043 req->FileInfoClass = level;
2044 req->PersistentFileId = persistent_fid;
2045 req->VolatileFileId = volatile_fid;
2046 /* 4 for rfc1002 length field and 1 for pad */
2047 req->InputBufferOffset =
2048 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1 - 4);
2049 req->OutputBufferLength = cpu_to_le32(
2050 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1 - 4);
2051
2052 iov->iov_base = (char *)req;
2053 /* 4 for rfc1002 length field */
2054 iov->iov_len = get_rfc1002_length(req) + 4;
2055 return 0;
2056}
2057
2058int
2059SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
2060 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
2061{
2062 struct smb2_query_info_rsp *rsp = NULL;
2063 struct kvec iov;
2064 int rc = 0;
2065 int resp_buftype;
2066 struct cifs_ses *ses = tcon->ses;
2067 struct smb2_fs_full_size_info *info = NULL;
2068
2069 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
2070 sizeof(struct smb2_fs_full_size_info),
2071 persistent_fid, volatile_fid);
2072 if (rc)
2073 return rc;
2074
2075 rc = SendReceive2(xid, ses, &iov, 1, &resp_buftype, 0);
2076 if (rc) {
2077 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
2078 goto qinf_exit;
2079 }
2080 rsp = (struct smb2_query_info_rsp *)iov.iov_base;
2081
2082 info = (struct smb2_fs_full_size_info *)(4 /* RFC1001 len */ +
2083 le16_to_cpu(rsp->OutputBufferOffset) + (char *)&rsp->hdr);
2084 rc = validate_buf(le16_to_cpu(rsp->OutputBufferOffset),
2085 le32_to_cpu(rsp->OutputBufferLength), &rsp->hdr,
2086 sizeof(struct smb2_fs_full_size_info));
2087 if (!rc)
2088 copy_fs_info_to_kstatfs(info, fsdata);
2089
2090qinf_exit:
2091 free_rsp_buf(resp_buftype, iov.iov_base);
2092 return rc;
2093}
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002094
2095int
2096smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
2097 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2098 const __u32 num_lock, struct smb2_lock_element *buf)
2099{
2100 int rc = 0;
2101 struct smb2_lock_req *req = NULL;
2102 struct kvec iov[2];
2103 int resp_buf_type;
2104 unsigned int count;
2105
Joe Perchesf96637b2013-05-04 22:12:25 -05002106 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002107
2108 rc = small_smb2_init(SMB2_LOCK, tcon, (void **) &req);
2109 if (rc)
2110 return rc;
2111
2112 req->hdr.ProcessId = cpu_to_le32(pid);
2113 req->LockCount = cpu_to_le16(num_lock);
2114
2115 req->PersistentFileId = persist_fid;
2116 req->VolatileFileId = volatile_fid;
2117
2118 count = num_lock * sizeof(struct smb2_lock_element);
2119 inc_rfc1001_len(req, count - sizeof(struct smb2_lock_element));
2120
2121 iov[0].iov_base = (char *)req;
2122 /* 4 for rfc1002 length field and count for all locks */
2123 iov[0].iov_len = get_rfc1002_length(req) + 4 - count;
2124 iov[1].iov_base = (char *)buf;
2125 iov[1].iov_len = count;
2126
2127 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
2128 rc = SendReceive2(xid, tcon->ses, iov, 2, &resp_buf_type, CIFS_NO_RESP);
2129 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002130 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07002131 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
2132 }
2133
2134 return rc;
2135}
2136
2137int
2138SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
2139 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
2140 const __u64 length, const __u64 offset, const __u32 lock_flags,
2141 const bool wait)
2142{
2143 struct smb2_lock_element lock;
2144
2145 lock.Offset = cpu_to_le64(offset);
2146 lock.Length = cpu_to_le64(length);
2147 lock.Flags = cpu_to_le32(lock_flags);
2148 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
2149 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
2150
2151 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
2152}
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002153
2154int
2155SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
2156 __u8 *lease_key, const __le32 lease_state)
2157{
2158 int rc;
2159 struct smb2_lease_ack *req = NULL;
2160
Joe Perchesf96637b2013-05-04 22:12:25 -05002161 cifs_dbg(FYI, "SMB2_lease_break\n");
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002162 rc = small_smb2_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req);
2163
2164 if (rc)
2165 return rc;
2166
2167 req->hdr.CreditRequest = cpu_to_le16(1);
2168 req->StructureSize = cpu_to_le16(36);
2169 inc_rfc1001_len(req, 12);
2170
2171 memcpy(req->LeaseKey, lease_key, 16);
2172 req->LeaseState = lease_state;
2173
2174 rc = SendReceiveNoRsp(xid, tcon->ses, (char *) req, CIFS_OBREAK_OP);
2175 /* SMB2 buffer freed by function above */
2176
2177 if (rc) {
2178 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05002179 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07002180 }
2181
2182 return rc;
2183}