blob: e57f6aa1d63864131d8559ef77a0eb6f503013a8 [file] [log] [blame]
Pavel Shilovskyec2e4522011-12-27 16:12:43 +04001/*
2 * fs/cifs/smb2pdu.c
3 *
Steve French2b80d042013-06-23 18:43:37 -05004 * Copyright (C) International Business Machines Corp., 2009, 2013
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>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020036#include <linux/uuid.h>
Pavel Shilovsky33319142012-09-18 16:20:29 -070037#include <linux/pagemap.h>
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040038#include <linux/xattr.h>
39#include "smb2pdu.h"
40#include "cifsglob.h"
41#include "cifsacl.h"
42#include "cifsproto.h"
43#include "smb2proto.h"
44#include "cifs_unicode.h"
45#include "cifs_debug.h"
46#include "ntlmssp.h"
47#include "smb2status.h"
Pavel Shilovsky09a47072012-09-18 16:20:29 -070048#include "smb2glob.h"
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -070049#include "cifspdu.h"
Steve Frenchceb1b0b2015-09-24 00:52:37 -050050#include "cifs_spnego.h"
Long Lidb223a52017-11-22 17:38:45 -070051#include "smbdirect.h"
Steve Frencheccb4422018-05-17 21:16:55 -050052#include "trace.h"
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -020053#ifdef CONFIG_CIFS_DFS_UPCALL
54#include "dfs_cache.h"
55#endif
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040056
57/*
58 * The following table defines the expected "StructureSize" of SMB2 requests
59 * in order by SMB2 command. This is similar to "wct" in SMB/CIFS requests.
60 *
61 * Note that commands are defined in smb2pdu.h in le16 but the array below is
62 * indexed by command in host byte order.
63 */
64static const int smb2_req_struct_sizes[NUMBER_OF_SMB2_COMMANDS] = {
65 /* SMB2_NEGOTIATE */ 36,
66 /* SMB2_SESSION_SETUP */ 25,
67 /* SMB2_LOGOFF */ 4,
68 /* SMB2_TREE_CONNECT */ 9,
69 /* SMB2_TREE_DISCONNECT */ 4,
70 /* SMB2_CREATE */ 57,
71 /* SMB2_CLOSE */ 24,
72 /* SMB2_FLUSH */ 24,
73 /* SMB2_READ */ 49,
74 /* SMB2_WRITE */ 49,
75 /* SMB2_LOCK */ 48,
76 /* SMB2_IOCTL */ 57,
77 /* SMB2_CANCEL */ 4,
78 /* SMB2_ECHO */ 4,
79 /* SMB2_QUERY_DIRECTORY */ 33,
80 /* SMB2_CHANGE_NOTIFY */ 32,
81 /* SMB2_QUERY_INFO */ 41,
82 /* SMB2_SET_INFO */ 33,
83 /* SMB2_OPLOCK_BREAK */ 24 /* BB this is 36 for LEASE_BREAK variant */
84};
85
Ronnie Sahlberg730928c2018-08-08 15:07:49 +100086int smb3_encryption_required(const struct cifs_tcon *tcon)
Pavel Shilovsky7fb89862016-10-31 13:49:30 -070087{
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -080088 if (!tcon)
89 return 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -070090 if ((tcon->ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA) ||
91 (tcon->share_flags & SHI1005_FLAGS_ENCRYPT_DATA))
92 return 1;
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -080093 if (tcon->seal &&
94 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
95 return 1;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -070096 return 0;
97}
Pavel Shilovskyec2e4522011-12-27 16:12:43 +040098
99static void
Pavel Shilovskycb200bd2016-10-24 16:59:57 -0700100smb2_hdr_assemble(struct smb2_sync_hdr *shdr, __le16 smb2_cmd,
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400101 const struct cifs_tcon *tcon)
102{
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700103 shdr->ProtocolId = SMB2_PROTO_NUMBER;
104 shdr->StructureSize = cpu_to_le16(64);
105 shdr->Command = smb2_cmd;
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100106 if (tcon && tcon->ses && tcon->ses->server) {
107 struct TCP_Server_Info *server = tcon->ses->server;
108
109 spin_lock(&server->req_lock);
110 /* Request up to 2 credits but don't go over the limit. */
Steve French141891f2016-09-23 00:44:16 -0500111 if (server->credits >= server->max_credits)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700112 shdr->CreditRequest = cpu_to_le16(0);
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100113 else
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700114 shdr->CreditRequest = cpu_to_le16(
Steve French141891f2016-09-23 00:44:16 -0500115 min_t(int, server->max_credits -
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100116 server->credits, 2));
117 spin_unlock(&server->req_lock);
118 } else {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700119 shdr->CreditRequest = cpu_to_le16(2);
Ross Lagerwall7d414f32016-09-20 13:37:13 +0100120 }
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700121 shdr->ProcessId = cpu_to_le32((__u16)current->tgid);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400122
123 if (!tcon)
124 goto out;
125
Steve French2b80d042013-06-23 18:43:37 -0500126 /* GLOBAL_CAP_LARGE_MTU will only be set if dialect > SMB2.02 */
127 /* See sections 2.2.4 and 3.2.4.1.5 of MS-SMB2 */
Steve French1dc92c42015-05-20 09:32:21 -0500128 if ((tcon->ses) && (tcon->ses->server) &&
Steve French84ceeb92013-06-26 17:52:17 -0500129 (tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_LARGE_MTU))
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700130 shdr->CreditCharge = cpu_to_le16(1);
Steve French2b80d042013-06-23 18:43:37 -0500131 /* else CreditCharge MBZ */
132
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700133 shdr->TreeId = tcon->tid;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400134 /* Uid is not converted */
135 if (tcon->ses)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700136 shdr->SessionId = tcon->ses->Suid;
Steve Frenchf87ab882013-06-26 19:14:55 -0500137
138 /*
139 * If we would set SMB2_FLAGS_DFS_OPERATIONS on open we also would have
140 * to pass the path on the Open SMB prefixed by \\server\share.
141 * Not sure when we would need to do the augmented path (if ever) and
142 * setting this flag breaks the SMB2 open operation since it is
143 * illegal to send an empty path name (without \\server\share prefix)
144 * when the DFS flag is set in the SMB open header. We could
145 * consider setting the flag on all operations other than open
146 * but it is safer to net set it for now.
147 */
148/* if (tcon->share_flags & SHI1005_FLAGS_DFS)
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700149 shdr->Flags |= SMB2_FLAGS_DFS_OPERATIONS; */
Steve Frenchf87ab882013-06-26 19:14:55 -0500150
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700151 if (tcon->ses && tcon->ses->server && tcon->ses->server->sign &&
Steve French5a77e752018-05-09 17:43:08 -0500152 !smb3_encryption_required(tcon))
Pavel Shilovsky31473fc2016-10-24 15:33:04 -0700153 shdr->Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400154out:
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400155 return;
156}
157
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200158#ifdef CONFIG_CIFS_DFS_UPCALL
159static int __smb2_reconnect(const struct nls_table *nlsc,
160 struct cifs_tcon *tcon)
161{
162 int rc;
163 struct dfs_cache_tgt_list tl;
164 struct dfs_cache_tgt_iterator *it = NULL;
165 char tree[MAX_TREE_SIZE + 1];
166 const char *tcp_host;
167 size_t tcp_host_len;
168 const char *dfs_host;
169 size_t dfs_host_len;
170
171 if (tcon->ipc) {
172 snprintf(tree, sizeof(tree), "\\\\%s\\IPC$",
173 tcon->ses->server->hostname);
174 return SMB2_tcon(0, tcon->ses, tree, tcon, nlsc);
175 }
176
177 if (!tcon->dfs_path)
178 return SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nlsc);
179
180 rc = dfs_cache_noreq_find(tcon->dfs_path + 1, NULL, &tl);
181 if (rc)
182 return rc;
183
184 extract_unc_hostname(tcon->ses->server->hostname, &tcp_host,
185 &tcp_host_len);
186
187 for (it = dfs_cache_get_tgt_iterator(&tl); it;
188 it = dfs_cache_get_next_tgt(&tl, it)) {
189 const char *tgt = dfs_cache_get_tgt_name(it);
190
191 extract_unc_hostname(tgt, &dfs_host, &dfs_host_len);
192
193 if (dfs_host_len != tcp_host_len
194 || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) {
195 cifs_dbg(FYI, "%s: skipping %.*s, doesn't match %.*s",
196 __func__,
197 (int)dfs_host_len, dfs_host,
198 (int)tcp_host_len, tcp_host);
199 continue;
200 }
201
202 snprintf(tree, sizeof(tree), "\\%s", tgt);
203
204 rc = SMB2_tcon(0, tcon->ses, tree, tcon, nlsc);
205 if (!rc)
206 break;
207 if (rc == -EREMOTE)
208 break;
209 }
210
211 if (!rc) {
212 if (it)
213 rc = dfs_cache_noreq_update_tgthint(tcon->dfs_path + 1,
214 it);
215 else
216 rc = -ENOENT;
217 }
218 dfs_cache_free_tgts(&tl);
219 return rc;
220}
221#else
222static inline int __smb2_reconnect(const struct nls_table *nlsc,
223 struct cifs_tcon *tcon)
224{
225 return SMB2_tcon(0, tcon->ses, tcon->treeName, tcon, nlsc);
226}
227#endif
228
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400229static int
230smb2_reconnect(__le16 smb2_command, struct cifs_tcon *tcon)
231{
Paulo Alcantara7ffbe652018-07-05 13:46:34 -0300232 int rc;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400233 struct nls_table *nls_codepage;
234 struct cifs_ses *ses;
235 struct TCP_Server_Info *server;
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200236 int retries;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400237
238 /*
239 * SMB2s NegProt, SessSetup, Logoff do not have tcon yet so
240 * check for tcp and smb session status done differently
241 * for those three - in the calling routine.
242 */
243 if (tcon == NULL)
Paulo Alcantara7ffbe652018-07-05 13:46:34 -0300244 return 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400245
246 if (smb2_command == SMB2_TREE_CONNECT)
Paulo Alcantara7ffbe652018-07-05 13:46:34 -0300247 return 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400248
249 if (tcon->tidStatus == CifsExiting) {
250 /*
251 * only tree disconnect, open, and write,
252 * (and ulogoff which does not have tcon)
253 * are allowed as we start force umount.
254 */
255 if ((smb2_command != SMB2_WRITE) &&
256 (smb2_command != SMB2_CREATE) &&
257 (smb2_command != SMB2_TREE_DISCONNECT)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500258 cifs_dbg(FYI, "can not send cmd %d while umounting\n",
259 smb2_command);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400260 return -ENODEV;
261 }
262 }
263 if ((!tcon->ses) || (tcon->ses->status == CifsExiting) ||
264 (!tcon->ses->server))
265 return -EIO;
266
267 ses = tcon->ses;
268 server = ses->server;
269
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200270 retries = server->nr_targets;
271
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400272 /*
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200273 * Give demultiplex thread up to 10 seconds to each target available for
274 * reconnect -- should be greater than cifs socket timeout which is 7
275 * seconds.
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400276 */
277 while (server->tcpStatus == CifsNeedReconnect) {
278 /*
279 * Return to caller for TREE_DISCONNECT and LOGOFF and CLOSE
280 * here since they are implicitly done when session drops.
281 */
282 switch (smb2_command) {
283 /*
284 * BB Should we keep oplock break and add flush to exceptions?
285 */
286 case SMB2_TREE_DISCONNECT:
287 case SMB2_CANCEL:
288 case SMB2_CLOSE:
289 case SMB2_OPLOCK_BREAK:
290 return -EAGAIN;
291 }
292
Paulo Alcantara7ffbe652018-07-05 13:46:34 -0300293 rc = wait_event_interruptible_timeout(server->response_q,
294 (server->tcpStatus != CifsNeedReconnect),
295 10 * HZ);
296 if (rc < 0) {
297 cifs_dbg(FYI, "%s: aborting reconnect due to a received"
298 " signal by the process\n", __func__);
299 return -ERESTARTSYS;
300 }
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400301
302 /* are we still trying to reconnect? */
303 if (server->tcpStatus != CifsNeedReconnect)
304 break;
305
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200306 if (--retries)
307 continue;
308
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400309 /*
310 * on "soft" mounts we wait once. Hard mounts keep
311 * retrying until process is killed or server comes
312 * back on-line
313 */
314 if (!tcon->retry) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500315 cifs_dbg(FYI, "gave up waiting on reconnect in smb_init\n");
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400316 return -EHOSTDOWN;
317 }
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200318 retries = server->nr_targets;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400319 }
320
321 if (!tcon->ses->need_reconnect && !tcon->need_reconnect)
Paulo Alcantara7ffbe652018-07-05 13:46:34 -0300322 return 0;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400323
324 nls_codepage = load_nls_default();
325
326 /*
327 * need to prevent multiple threads trying to simultaneously reconnect
328 * the same SMB session
329 */
330 mutex_lock(&tcon->ses->session_mutex);
Samuel Cabrero76e75272017-07-11 12:44:39 +0200331
332 /*
333 * Recheck after acquire mutex. If another thread is negotiating
334 * and the server never sends an answer the socket will be closed
335 * and tcpStatus set to reconnect.
336 */
337 if (server->tcpStatus == CifsNeedReconnect) {
338 rc = -EHOSTDOWN;
339 mutex_unlock(&tcon->ses->session_mutex);
340 goto out;
341 }
342
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400343 rc = cifs_negotiate_protocol(0, tcon->ses);
344 if (!rc && tcon->ses->need_reconnect)
345 rc = cifs_setup_session(0, tcon->ses, nls_codepage);
346
347 if (rc || !tcon->need_reconnect) {
348 mutex_unlock(&tcon->ses->session_mutex);
349 goto out;
350 }
351
352 cifs_mark_open_files_invalid(tcon);
Pavel Shilovsky96a988f2016-11-29 11:31:23 -0800353 if (tcon->use_persistent)
354 tcon->need_reopen_files = true;
Steve French52ace1e2016-09-22 19:23:56 -0500355
Paulo Alcantaraa3a53b72018-11-14 17:20:31 -0200356 rc = __smb2_reconnect(nls_codepage, tcon);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400357 mutex_unlock(&tcon->ses->session_mutex);
Steve French52ace1e2016-09-22 19:23:56 -0500358
Joe Perchesf96637b2013-05-04 22:12:25 -0500359 cifs_dbg(FYI, "reconnect tcon rc = %d\n", rc);
Steve Frenchc318e6c2018-04-04 14:08:52 -0500360 if (rc) {
361 /* If sess reconnected but tcon didn't, something strange ... */
362 printk_once(KERN_WARNING "reconnect tcon failed rc = %d\n", rc);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400363 goto out;
Steve Frenchc318e6c2018-04-04 14:08:52 -0500364 }
Pavel Shilovsky96a988f2016-11-29 11:31:23 -0800365
366 if (smb2_command != SMB2_INTERNAL_CMD)
367 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
368
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400369 atomic_inc(&tconInfoReconnectCount);
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400370out:
371 /*
372 * Check if handle based operation so we know whether we can continue
373 * or not without returning to caller to reset file handle.
374 */
375 /*
376 * BB Is flush done by server on drop of tcp session? Should we special
377 * case it and skip above?
378 */
379 switch (smb2_command) {
380 case SMB2_FLUSH:
381 case SMB2_READ:
382 case SMB2_WRITE:
383 case SMB2_LOCK:
384 case SMB2_IOCTL:
385 case SMB2_QUERY_DIRECTORY:
386 case SMB2_CHANGE_NOTIFY:
387 case SMB2_QUERY_INFO:
388 case SMB2_SET_INFO:
Pavel Shilovsky4772c792016-11-29 11:30:58 -0800389 rc = -EAGAIN;
Pavel Shilovskyaa24d1e2011-12-27 16:23:34 +0400390 }
391 unload_nls(nls_codepage);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400392 return rc;
393}
394
Pavel Shilovskycb200bd2016-10-24 16:59:57 -0700395static void
396fill_small_buf(__le16 smb2_command, struct cifs_tcon *tcon, void *buf,
397 unsigned int *total_len)
398{
399 struct smb2_sync_pdu *spdu = (struct smb2_sync_pdu *)buf;
400 /* lookup word count ie StructureSize from table */
401 __u16 parmsize = smb2_req_struct_sizes[le16_to_cpu(smb2_command)];
402
403 /*
404 * smaller than SMALL_BUFFER_SIZE but bigger than fixed area of
405 * largest operations (Create)
406 */
407 memset(buf, 0, 256);
408
409 smb2_hdr_assemble(&spdu->sync_hdr, smb2_command, tcon);
410 spdu->StructureSize2 = cpu_to_le16(parmsize);
411
412 *total_len = parmsize + sizeof(struct smb2_sync_hdr);
413}
414
Ronnie Sahlberg305428a2017-11-21 11:04:42 +1100415/*
416 * Allocate and return pointer to an SMB request hdr, and set basic
417 * SMB information in the SMB header. If the return code is zero, this
418 * function must have filled in request_buf pointer.
419 */
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800420static int
421smb2_plain_req_init(__le16 smb2_command, struct cifs_tcon *tcon,
422 void **request_buf, unsigned int *total_len)
423{
424 int rc;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800425
426 rc = smb2_reconnect(smb2_command, tcon);
427 if (rc)
428 return rc;
429
430 /* BB eventually switch this to SMB2 specific small buf size */
Stefano Briviof46ecbd2018-07-05 11:46:42 +0200431 if (smb2_command == SMB2_SET_INFO)
432 *request_buf = cifs_buf_get();
433 else
434 *request_buf = cifs_small_buf_get();
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800435 if (*request_buf == NULL) {
436 /* BB should we add a retry in here if not a writepage? */
437 return -ENOMEM;
438 }
439
Ronnie Sahlberg305428a2017-11-21 11:04:42 +1100440 fill_small_buf(smb2_command, tcon,
441 (struct smb2_sync_hdr *)(*request_buf),
442 total_len);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400443
444 if (tcon != NULL) {
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400445 uint16_t com_code = le16_to_cpu(smb2_command);
446 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_sent[com_code]);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400447 cifs_stats_inc(&tcon->num_smbs_sent);
448 }
449
450 return rc;
451}
452
Steve French0fdfef92018-06-28 19:30:23 -0500453
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500454#define SMB2_PREAUTH_INTEGRITY_CAPABILITIES cpu_to_le16(1)
455#define SMB2_ENCRYPTION_CAPABILITIES cpu_to_le16(2)
Steve Frenchfcef0db2018-05-19 20:45:27 -0500456#define SMB2_POSIX_EXTENSIONS_AVAILABLE cpu_to_le16(0x100)
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500457
458static void
459build_preauth_ctxt(struct smb2_preauth_neg_context *pneg_ctxt)
460{
461 pneg_ctxt->ContextType = SMB2_PREAUTH_INTEGRITY_CAPABILITIES;
462 pneg_ctxt->DataLength = cpu_to_le16(38);
463 pneg_ctxt->HashAlgorithmCount = cpu_to_le16(1);
464 pneg_ctxt->SaltLength = cpu_to_le16(SMB311_SALT_SIZE);
465 get_random_bytes(pneg_ctxt->Salt, SMB311_SALT_SIZE);
466 pneg_ctxt->HashAlgorithms = SMB2_PREAUTH_INTEGRITY_SHA512;
467}
468
469static void
470build_encrypt_ctxt(struct smb2_encryption_neg_context *pneg_ctxt)
471{
472 pneg_ctxt->ContextType = SMB2_ENCRYPTION_CAPABILITIES;
Steve French23657ad2018-04-22 15:14:58 -0500473 pneg_ctxt->DataLength = cpu_to_le16(4); /* Cipher Count + le16 cipher */
474 pneg_ctxt->CipherCount = cpu_to_le16(1);
475/* pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_GCM;*/ /* not supported yet */
476 pneg_ctxt->Ciphers[0] = SMB2_ENCRYPTION_AES128_CCM;
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500477}
478
479static void
Steve Frenchfcef0db2018-05-19 20:45:27 -0500480build_posix_ctxt(struct smb2_posix_neg_context *pneg_ctxt)
481{
482 pneg_ctxt->ContextType = SMB2_POSIX_EXTENSIONS_AVAILABLE;
483 pneg_ctxt->DataLength = cpu_to_le16(POSIX_CTXT_DATA_LEN);
484}
485
486static void
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100487assemble_neg_contexts(struct smb2_negotiate_req *req,
488 unsigned int *total_len)
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500489{
Steve Frenchd5c70762019-01-03 02:37:21 -0600490 char *pneg_ctxt = (char *)req;
Steve Frenchfcef0db2018-05-19 20:45:27 -0500491 unsigned int ctxt_len;
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500492
Steve Frenchd5c70762019-01-03 02:37:21 -0600493 if (*total_len > 200) {
494 /* In case length corrupted don't want to overrun smb buffer */
495 cifs_dbg(VFS, "Bad frame length assembling neg contexts\n");
496 return;
497 }
498
499 /*
500 * round up total_len of fixed part of SMB3 negotiate request to 8
501 * byte boundary before adding negotiate contexts
502 */
503 *total_len = roundup(*total_len, 8);
504
505 pneg_ctxt = (*total_len) + (char *)req;
506 req->NegotiateContextOffset = cpu_to_le32(*total_len);
507
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500508 build_preauth_ctxt((struct smb2_preauth_neg_context *)pneg_ctxt);
Steve Frenchfcef0db2018-05-19 20:45:27 -0500509 ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_preauth_neg_context), 8) * 8;
510 *total_len += ctxt_len;
511 pneg_ctxt += ctxt_len;
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100512
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500513 build_encrypt_ctxt((struct smb2_encryption_neg_context *)pneg_ctxt);
Steve Frenchfcef0db2018-05-19 20:45:27 -0500514 ctxt_len = DIV_ROUND_UP(sizeof(struct smb2_encryption_neg_context), 8) * 8;
515 *total_len += ctxt_len;
516 pneg_ctxt += ctxt_len;
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100517
Steve Frenchfcef0db2018-05-19 20:45:27 -0500518 build_posix_ctxt((struct smb2_posix_neg_context *)pneg_ctxt);
519 *total_len += sizeof(struct smb2_posix_neg_context);
520
Steve Frenchfcef0db2018-05-19 20:45:27 -0500521 req->NegotiateContextCount = cpu_to_le16(3);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500522}
Steve French5100d8a2018-04-09 10:47:14 -0500523
524static void decode_preauth_context(struct smb2_preauth_neg_context *ctxt)
525{
526 unsigned int len = le16_to_cpu(ctxt->DataLength);
527
528 /* If invalid preauth context warn but use what we requested, SHA-512 */
529 if (len < MIN_PREAUTH_CTXT_DATA_LEN) {
530 printk_once(KERN_WARNING "server sent bad preauth context\n");
531 return;
532 }
533 if (le16_to_cpu(ctxt->HashAlgorithmCount) != 1)
534 printk_once(KERN_WARNING "illegal SMB3 hash algorithm count\n");
535 if (ctxt->HashAlgorithms != SMB2_PREAUTH_INTEGRITY_SHA512)
536 printk_once(KERN_WARNING "unknown SMB3 hash algorithm\n");
537}
538
539static int decode_encrypt_ctx(struct TCP_Server_Info *server,
540 struct smb2_encryption_neg_context *ctxt)
541{
542 unsigned int len = le16_to_cpu(ctxt->DataLength);
543
544 cifs_dbg(FYI, "decode SMB3.11 encryption neg context of len %d\n", len);
545 if (len < MIN_ENCRYPT_CTXT_DATA_LEN) {
546 printk_once(KERN_WARNING "server sent bad crypto ctxt len\n");
547 return -EINVAL;
548 }
549
550 if (le16_to_cpu(ctxt->CipherCount) != 1) {
551 printk_once(KERN_WARNING "illegal SMB3.11 cipher count\n");
552 return -EINVAL;
553 }
554 cifs_dbg(FYI, "SMB311 cipher type:%d\n", le16_to_cpu(ctxt->Ciphers[0]));
555 if ((ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_CCM) &&
556 (ctxt->Ciphers[0] != SMB2_ENCRYPTION_AES128_GCM)) {
557 printk_once(KERN_WARNING "invalid SMB3.11 cipher returned\n");
558 return -EINVAL;
559 }
560 server->cipher_type = ctxt->Ciphers[0];
Steve French23657ad2018-04-22 15:14:58 -0500561 server->capabilities |= SMB2_GLOBAL_CAP_ENCRYPTION;
Steve French5100d8a2018-04-09 10:47:14 -0500562 return 0;
563}
564
565static int smb311_decode_neg_context(struct smb2_negotiate_rsp *rsp,
Ronnie Sahlberg977b6172018-06-01 10:53:02 +1000566 struct TCP_Server_Info *server,
567 unsigned int len_of_smb)
Steve French5100d8a2018-04-09 10:47:14 -0500568{
569 struct smb2_neg_context *pctx;
570 unsigned int offset = le32_to_cpu(rsp->NegotiateContextOffset);
571 unsigned int ctxt_cnt = le16_to_cpu(rsp->NegotiateContextCount);
Steve French5100d8a2018-04-09 10:47:14 -0500572 unsigned int len_of_ctxts, i;
573 int rc = 0;
574
575 cifs_dbg(FYI, "decoding %d negotiate contexts\n", ctxt_cnt);
576 if (len_of_smb <= offset) {
577 cifs_dbg(VFS, "Invalid response: negotiate context offset\n");
578 return -EINVAL;
579 }
580
581 len_of_ctxts = len_of_smb - offset;
582
583 for (i = 0; i < ctxt_cnt; i++) {
584 int clen;
585 /* check that offset is not beyond end of SMB */
586 if (len_of_ctxts == 0)
587 break;
588
589 if (len_of_ctxts < sizeof(struct smb2_neg_context))
590 break;
591
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +1000592 pctx = (struct smb2_neg_context *)(offset + (char *)rsp);
Steve French5100d8a2018-04-09 10:47:14 -0500593 clen = le16_to_cpu(pctx->DataLength);
594 if (clen > len_of_ctxts)
595 break;
596
597 if (pctx->ContextType == SMB2_PREAUTH_INTEGRITY_CAPABILITIES)
598 decode_preauth_context(
599 (struct smb2_preauth_neg_context *)pctx);
600 else if (pctx->ContextType == SMB2_ENCRYPTION_CAPABILITIES)
601 rc = decode_encrypt_ctx(server,
602 (struct smb2_encryption_neg_context *)pctx);
Steve Frenchfcef0db2018-05-19 20:45:27 -0500603 else if (pctx->ContextType == SMB2_POSIX_EXTENSIONS_AVAILABLE)
604 server->posix_ext_supported = true;
Steve French5100d8a2018-04-09 10:47:14 -0500605 else
606 cifs_dbg(VFS, "unknown negcontext of type %d ignored\n",
607 le16_to_cpu(pctx->ContextType));
608
609 if (rc)
610 break;
611 /* offsets must be 8 byte aligned */
612 clen = (clen + 7) & ~0x7;
613 offset += clen + sizeof(struct smb2_neg_context);
614 len_of_ctxts -= clen;
615 }
616 return rc;
617}
618
Steve Frenchce558b02018-05-31 19:16:54 -0500619static struct create_posix *
620create_posix_buf(umode_t mode)
621{
622 struct create_posix *buf;
623
624 buf = kzalloc(sizeof(struct create_posix),
625 GFP_KERNEL);
626 if (!buf)
627 return NULL;
628
629 buf->ccontext.DataOffset =
630 cpu_to_le16(offsetof(struct create_posix, Mode));
631 buf->ccontext.DataLength = cpu_to_le32(4);
632 buf->ccontext.NameOffset =
633 cpu_to_le16(offsetof(struct create_posix, Name));
634 buf->ccontext.NameLength = cpu_to_le16(16);
635
636 /* SMB2_CREATE_TAG_POSIX is "0x93AD25509CB411E7B42383DE968BCD7C" */
637 buf->Name[0] = 0x93;
638 buf->Name[1] = 0xAD;
639 buf->Name[2] = 0x25;
640 buf->Name[3] = 0x50;
641 buf->Name[4] = 0x9C;
642 buf->Name[5] = 0xB4;
643 buf->Name[6] = 0x11;
644 buf->Name[7] = 0xE7;
645 buf->Name[8] = 0xB4;
646 buf->Name[9] = 0x23;
647 buf->Name[10] = 0x83;
648 buf->Name[11] = 0xDE;
649 buf->Name[12] = 0x96;
650 buf->Name[13] = 0x8B;
651 buf->Name[14] = 0xCD;
652 buf->Name[15] = 0x7C;
653 buf->Mode = cpu_to_le32(mode);
654 cifs_dbg(FYI, "mode on posix create 0%o", mode);
655 return buf;
656}
657
658static int
659add_posix_context(struct kvec *iov, unsigned int *num_iovec, umode_t mode)
660{
661 struct smb2_create_req *req = iov[0].iov_base;
662 unsigned int num = *num_iovec;
663
664 iov[num].iov_base = create_posix_buf(mode);
665 if (iov[num].iov_base == NULL)
666 return -ENOMEM;
667 iov[num].iov_len = sizeof(struct create_posix);
668 if (!req->CreateContextsOffset)
669 req->CreateContextsOffset = cpu_to_le32(
670 sizeof(struct smb2_create_req) +
671 iov[num - 1].iov_len);
672 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_posix));
673 *num_iovec = num + 1;
674 return 0;
675}
676
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500677
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400678/*
679 *
680 * SMB2 Worker functions follow:
681 *
682 * The general structure of the worker functions is:
683 * 1) Call smb2_init (assembles SMB2 header)
684 * 2) Initialize SMB2 command specific fields in fixed length area of SMB
685 * 3) Call smb_sendrcv2 (sends request on socket and waits for response)
686 * 4) Decode SMB2 command specific fields in the fixed length area
687 * 5) Decode variable length data area (if any for this SMB2 command type)
688 * 6) Call free smb buffer
689 * 7) return
690 *
691 */
692
693int
694SMB2_negotiate(const unsigned int xid, struct cifs_ses *ses)
695{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +1000696 struct smb_rqst rqst;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400697 struct smb2_negotiate_req *req;
698 struct smb2_negotiate_rsp *rsp;
699 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700700 struct kvec rsp_iov;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400701 int rc = 0;
702 int resp_buftype;
Jeff Layton3534b852013-05-24 07:41:01 -0400703 struct TCP_Server_Info *server = ses->server;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400704 int blob_offset, blob_length;
705 char *security_blob;
706 int flags = CIFS_NEG_OP;
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100707 unsigned int total_len;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400708
Joe Perchesf96637b2013-05-04 22:12:25 -0500709 cifs_dbg(FYI, "Negotiate protocol\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400710
Jeff Layton3534b852013-05-24 07:41:01 -0400711 if (!server) {
712 WARN(1, "%s: server is NULL!\n", __func__);
713 return -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400714 }
715
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100716 rc = smb2_plain_req_init(SMB2_NEGOTIATE, NULL, (void **) &req, &total_len);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400717 if (rc)
718 return rc;
719
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100720 req->sync_hdr.SessionId = 0;
Steve French0fdfef92018-06-28 19:30:23 -0500721
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100722 memset(server->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
723 memset(ses->preauth_sha_hash, 0, SMB2_PREAUTH_HASH_SIZE);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400724
Steve French9764c022017-09-17 10:41:35 -0500725 if (strcmp(ses->server->vals->version_string,
726 SMB3ANY_VERSION_STRING) == 0) {
727 req->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
728 req->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
729 req->DialectCount = cpu_to_le16(2);
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100730 total_len += 4;
Steve French9764c022017-09-17 10:41:35 -0500731 } else if (strcmp(ses->server->vals->version_string,
732 SMBDEFAULT_VERSION_STRING) == 0) {
733 req->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
734 req->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
735 req->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
Steve Frenchd5c70762019-01-03 02:37:21 -0600736 req->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
737 req->DialectCount = cpu_to_le16(4);
738 total_len += 8;
Steve French9764c022017-09-17 10:41:35 -0500739 } else {
740 /* otherwise send specific dialect */
741 req->Dialects[0] = cpu_to_le16(ses->server->vals->protocol_id);
742 req->DialectCount = cpu_to_le16(1);
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100743 total_len += 2;
Steve French9764c022017-09-17 10:41:35 -0500744 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400745
746 /* only one of SMB2 signing flags may be set in SMB2 request */
Jeff Layton38d77c52013-05-26 07:01:00 -0400747 if (ses->sign)
Steve French9cd2e622013-06-12 19:59:03 -0500748 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400749 else if (global_secflags & CIFSSEC_MAY_SIGN)
Steve French9cd2e622013-06-12 19:59:03 -0500750 req->SecurityMode = cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
Jeff Layton38d77c52013-05-26 07:01:00 -0400751 else
752 req->SecurityMode = 0;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400753
Steve Frenche4aa25e2012-10-01 12:26:22 -0500754 req->Capabilities = cpu_to_le32(ses->server->vals->req_capabilities);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400755
Steve French3c5f9be12014-05-13 13:37:45 -0700756 /* ClientGUID must be zero for SMB2.02 dialect */
757 if (ses->server->vals->protocol_id == SMB20_PROT_ID)
758 memset(req->ClientGUID, 0, SMB2_CLIENT_GUID_SIZE);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500759 else {
Steve French3c5f9be12014-05-13 13:37:45 -0700760 memcpy(req->ClientGUID, server->client_guid,
761 SMB2_CLIENT_GUID_SIZE);
Steve Frenchd5c70762019-01-03 02:37:21 -0600762 if ((ses->server->vals->protocol_id == SMB311_PROT_ID) ||
763 (strcmp(ses->server->vals->version_string,
764 SMBDEFAULT_VERSION_STRING) == 0))
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100765 assemble_neg_contexts(req, &total_len);
Steve Frenchebb3a9d2015-06-18 04:49:47 -0500766 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400767 iov[0].iov_base = (char *)req;
Ronnie Sahlberg13cacea2017-11-20 11:24:30 +1100768 iov[0].iov_len = total_len;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400769
Ronnie Sahlberg40eff452018-06-12 08:00:59 +1000770 memset(&rqst, 0, sizeof(struct smb_rqst));
771 rqst.rq_iov = iov;
772 rqst.rq_nvec = 1;
773
774 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700775 cifs_small_buf_release(req);
776 rsp = (struct smb2_negotiate_rsp *)rsp_iov.iov_base;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400777 /*
778 * No tcon so can't do
779 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
780 */
Steve French7e682f72017-08-31 21:34:24 -0500781 if (rc == -EOPNOTSUPP) {
782 cifs_dbg(VFS, "Dialect not supported by server. Consider "
Steve French9764c022017-09-17 10:41:35 -0500783 "specifying vers=1.0 or vers=2.0 on mount for accessing"
Steve French7e682f72017-08-31 21:34:24 -0500784 " older servers\n");
785 goto neg_exit;
786 } else if (rc != 0)
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400787 goto neg_exit;
788
Steve French9764c022017-09-17 10:41:35 -0500789 if (strcmp(ses->server->vals->version_string,
790 SMB3ANY_VERSION_STRING) == 0) {
791 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
792 cifs_dbg(VFS,
793 "SMB2 dialect returned but not requested\n");
794 return -EIO;
795 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
796 cifs_dbg(VFS,
797 "SMB2.1 dialect returned but not requested\n");
798 return -EIO;
799 }
800 } else if (strcmp(ses->server->vals->version_string,
801 SMBDEFAULT_VERSION_STRING) == 0) {
802 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID)) {
803 cifs_dbg(VFS,
804 "SMB2 dialect returned but not requested\n");
805 return -EIO;
806 } else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID)) {
807 /* ops set to 3.0 by default for default so update */
808 ses->server->ops = &smb21_operations;
Steve Frenchd5c70762019-01-03 02:37:21 -0600809 } else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
810 ses->server->ops = &smb311_operations;
Steve French590d08d2017-09-19 11:43:47 -0500811 } else if (le16_to_cpu(rsp->DialectRevision) !=
812 ses->server->vals->protocol_id) {
Steve French9764c022017-09-17 10:41:35 -0500813 /* if requested single dialect ensure returned dialect matched */
814 cifs_dbg(VFS, "Illegal 0x%x dialect returned: not requested\n",
Steve French590d08d2017-09-19 11:43:47 -0500815 le16_to_cpu(rsp->DialectRevision));
Steve French9764c022017-09-17 10:41:35 -0500816 return -EIO;
817 }
818
Joe Perchesf96637b2013-05-04 22:12:25 -0500819 cifs_dbg(FYI, "mode 0x%x\n", rsp->SecurityMode);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400820
Steve Frenche4aa25e2012-10-01 12:26:22 -0500821 if (rsp->DialectRevision == cpu_to_le16(SMB20_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500822 cifs_dbg(FYI, "negotiated smb2.0 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500823 else if (rsp->DialectRevision == cpu_to_le16(SMB21_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500824 cifs_dbg(FYI, "negotiated smb2.1 dialect\n");
Steve Frenche4aa25e2012-10-01 12:26:22 -0500825 else if (rsp->DialectRevision == cpu_to_le16(SMB30_PROT_ID))
Joe Perchesf96637b2013-05-04 22:12:25 -0500826 cifs_dbg(FYI, "negotiated smb3.0 dialect\n");
Steve French20b6d8b2013-06-12 22:48:41 -0500827 else if (rsp->DialectRevision == cpu_to_le16(SMB302_PROT_ID))
828 cifs_dbg(FYI, "negotiated smb3.02 dialect\n");
Steve French5f7fbf72014-12-17 22:52:58 -0600829 else if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID))
830 cifs_dbg(FYI, "negotiated smb3.1.1 dialect\n");
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400831 else {
Steve Frenchf799d622015-06-18 05:07:52 -0500832 cifs_dbg(VFS, "Illegal dialect returned by server 0x%x\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500833 le16_to_cpu(rsp->DialectRevision));
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400834 rc = -EIO;
835 goto neg_exit;
836 }
837 server->dialect = le16_to_cpu(rsp->DialectRevision);
838
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100839 /*
840 * Keep a copy of the hash after negprot. This hash will be
841 * the starting hash value for all sessions made from this
842 * server.
843 */
844 memcpy(server->preauth_sha_hash, ses->preauth_sha_hash,
845 SMB2_PREAUTH_HASH_SIZE);
Steve French0fdfef92018-06-28 19:30:23 -0500846
Jeff Laytone598d1d82013-05-26 07:00:59 -0400847 /* SMB2 only has an extended negflavor */
848 server->negflavor = CIFS_NEGFLAVOR_EXTENDED;
Pavel Shilovsky2365c4e2014-02-14 13:31:02 +0400849 /* set it to the maximum buffer size value we can send with 1 credit */
850 server->maxBuf = min_t(unsigned int, le32_to_cpu(rsp->MaxTransactSize),
851 SMB2_MAX_BUFFER_SIZE);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400852 server->max_read = le32_to_cpu(rsp->MaxReadSize);
853 server->max_write = le32_to_cpu(rsp->MaxWriteSize);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400854 server->sec_mode = le16_to_cpu(rsp->SecurityMode);
Steve French07108d02018-04-01 20:15:55 -0500855 if ((server->sec_mode & SMB2_SEC_MODE_FLAGS_ALL) != server->sec_mode)
856 cifs_dbg(FYI, "Server returned unexpected security mode 0x%x\n",
857 server->sec_mode);
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400858 server->capabilities = le32_to_cpu(rsp->Capabilities);
Pavel Shilovsky29e20f92012-07-13 13:58:14 +0400859 /* Internal types */
860 server->capabilities |= SMB2_NT_FIND | SMB2_LARGE_FILES;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400861
862 security_blob = smb2_get_data_area_len(&blob_offset, &blob_length,
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +1000863 (struct smb2_sync_hdr *)rsp);
Steve French5d875cc2013-06-25 15:33:41 -0500864 /*
865 * See MS-SMB2 section 2.2.4: if no blob, client picks default which
866 * for us will be
867 * ses->sectype = RawNTLMSSP;
868 * but for time being this is our only auth choice so doesn't matter.
869 * We just found a server which sets blob length to zero expecting raw.
870 */
Pavel Shilovsky67dbea22017-04-12 13:32:07 -0700871 if (blob_length == 0) {
Steve French5d875cc2013-06-25 15:33:41 -0500872 cifs_dbg(FYI, "missing security blob on negprot\n");
Pavel Shilovsky67dbea22017-04-12 13:32:07 -0700873 server->sec_ntlmssp = true;
874 }
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700875
Jeff Layton38d77c52013-05-26 07:01:00 -0400876 rc = cifs_enable_signing(server, ses->sign);
Jeff Layton9ddec562013-05-26 07:00:58 -0400877 if (rc)
878 goto neg_exit;
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500879 if (blob_length) {
Steve Frenchebdd2072014-10-20 12:48:23 -0500880 rc = decode_negTokenInit(security_blob, blob_length, server);
Steve Frenchceb1b0b2015-09-24 00:52:37 -0500881 if (rc == 1)
882 rc = 0;
883 else if (rc == 0)
884 rc = -EIO;
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400885 }
Steve French5100d8a2018-04-09 10:47:14 -0500886
Steve French5100d8a2018-04-09 10:47:14 -0500887 if (rsp->DialectRevision == cpu_to_le16(SMB311_PROT_ID)) {
888 if (rsp->NegotiateContextCount)
Ronnie Sahlberg977b6172018-06-01 10:53:02 +1000889 rc = smb311_decode_neg_context(rsp, server,
890 rsp_iov.iov_len);
Steve French5100d8a2018-04-09 10:47:14 -0500891 else
892 cifs_dbg(VFS, "Missing expected negotiate contexts\n");
893 }
Pavel Shilovskyec2e4522011-12-27 16:12:43 +0400894neg_exit:
895 free_rsp_buf(resp_buftype, rsp);
896 return rc;
897}
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +0400898
Steve Frenchff1c0382013-11-19 23:44:46 -0600899int smb3_validate_negotiate(const unsigned int xid, struct cifs_tcon *tcon)
900{
Long Li2796d302018-04-25 11:30:04 -0700901 int rc;
902 struct validate_negotiate_info_req *pneg_inbuf;
David Disseldorpfe83bebc2017-10-20 14:49:37 +0200903 struct validate_negotiate_info_rsp *pneg_rsp = NULL;
Steve Frenchff1c0382013-11-19 23:44:46 -0600904 u32 rsplen;
Steve French9764c022017-09-17 10:41:35 -0500905 u32 inbuflen; /* max of 4 dialects */
Steve Frenchff1c0382013-11-19 23:44:46 -0600906
907 cifs_dbg(FYI, "validate negotiate\n");
908
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100909 /* In SMB3.11 preauth integrity supersedes validate negotiate */
910 if (tcon->ses->server->dialect == SMB311_PROT_ID)
911 return 0;
912
Steve Frenchff1c0382013-11-19 23:44:46 -0600913 /*
914 * validation ioctl must be signed, so no point sending this if we
Steve French0603c962017-09-20 19:57:18 -0500915 * can not sign it (ie are not known user). Even if signing is not
916 * required (enabled but not negotiated), in those cases we selectively
Steve Frenchff1c0382013-11-19 23:44:46 -0600917 * sign just this, the first and only signed request on a connection.
Steve French0603c962017-09-20 19:57:18 -0500918 * Having validation of negotiate info helps reduce attack vectors.
Steve Frenchff1c0382013-11-19 23:44:46 -0600919 */
Steve French0603c962017-09-20 19:57:18 -0500920 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST)
Steve Frenchff1c0382013-11-19 23:44:46 -0600921 return 0; /* validation requires signing */
922
Steve French0603c962017-09-20 19:57:18 -0500923 if (tcon->ses->user_name == NULL) {
924 cifs_dbg(FYI, "Can't validate negotiate: null user mount\n");
925 return 0; /* validation requires signing */
926 }
927
928 if (tcon->ses->session_flags & SMB2_SESSION_FLAG_IS_NULL)
929 cifs_dbg(VFS, "Unexpected null user (anonymous) auth flag sent by server\n");
930
Long Li2796d302018-04-25 11:30:04 -0700931 pneg_inbuf = kmalloc(sizeof(*pneg_inbuf), GFP_NOFS);
932 if (!pneg_inbuf)
933 return -ENOMEM;
934
935 pneg_inbuf->Capabilities =
Steve Frenchff1c0382013-11-19 23:44:46 -0600936 cpu_to_le32(tcon->ses->server->vals->req_capabilities);
Long Li2796d302018-04-25 11:30:04 -0700937 memcpy(pneg_inbuf->Guid, tcon->ses->server->client_guid,
Sachin Prabhu39552ea2014-05-13 00:48:12 +0100938 SMB2_CLIENT_GUID_SIZE);
Steve Frenchff1c0382013-11-19 23:44:46 -0600939
940 if (tcon->ses->sign)
Long Li2796d302018-04-25 11:30:04 -0700941 pneg_inbuf->SecurityMode =
Steve Frenchff1c0382013-11-19 23:44:46 -0600942 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_REQUIRED);
943 else if (global_secflags & CIFSSEC_MAY_SIGN)
Long Li2796d302018-04-25 11:30:04 -0700944 pneg_inbuf->SecurityMode =
Steve Frenchff1c0382013-11-19 23:44:46 -0600945 cpu_to_le16(SMB2_NEGOTIATE_SIGNING_ENABLED);
946 else
Long Li2796d302018-04-25 11:30:04 -0700947 pneg_inbuf->SecurityMode = 0;
Steve Frenchff1c0382013-11-19 23:44:46 -0600948
Steve French9764c022017-09-17 10:41:35 -0500949
950 if (strcmp(tcon->ses->server->vals->version_string,
951 SMB3ANY_VERSION_STRING) == 0) {
Long Li2796d302018-04-25 11:30:04 -0700952 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB30_PROT_ID);
953 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB302_PROT_ID);
954 pneg_inbuf->DialectCount = cpu_to_le16(2);
Steve French9764c022017-09-17 10:41:35 -0500955 /* structure is big enough for 3 dialects, sending only 2 */
Long Li2796d302018-04-25 11:30:04 -0700956 inbuflen = sizeof(*pneg_inbuf) -
Steve Frenchd5c70762019-01-03 02:37:21 -0600957 (2 * sizeof(pneg_inbuf->Dialects[0]));
Steve French9764c022017-09-17 10:41:35 -0500958 } else if (strcmp(tcon->ses->server->vals->version_string,
959 SMBDEFAULT_VERSION_STRING) == 0) {
Long Li2796d302018-04-25 11:30:04 -0700960 pneg_inbuf->Dialects[0] = cpu_to_le16(SMB21_PROT_ID);
961 pneg_inbuf->Dialects[1] = cpu_to_le16(SMB30_PROT_ID);
962 pneg_inbuf->Dialects[2] = cpu_to_le16(SMB302_PROT_ID);
Steve Frenchd5c70762019-01-03 02:37:21 -0600963 pneg_inbuf->Dialects[3] = cpu_to_le16(SMB311_PROT_ID);
964 pneg_inbuf->DialectCount = cpu_to_le16(4);
Steve French9764c022017-09-17 10:41:35 -0500965 /* structure is big enough for 3 dialects */
Long Li2796d302018-04-25 11:30:04 -0700966 inbuflen = sizeof(*pneg_inbuf);
Steve French9764c022017-09-17 10:41:35 -0500967 } else {
968 /* otherwise specific dialect was requested */
Long Li2796d302018-04-25 11:30:04 -0700969 pneg_inbuf->Dialects[0] =
Steve French9764c022017-09-17 10:41:35 -0500970 cpu_to_le16(tcon->ses->server->vals->protocol_id);
Long Li2796d302018-04-25 11:30:04 -0700971 pneg_inbuf->DialectCount = cpu_to_le16(1);
Steve French9764c022017-09-17 10:41:35 -0500972 /* structure is big enough for 3 dialects, sending only 1 */
Long Li2796d302018-04-25 11:30:04 -0700973 inbuflen = sizeof(*pneg_inbuf) -
974 sizeof(pneg_inbuf->Dialects[0]) * 2;
Steve French9764c022017-09-17 10:41:35 -0500975 }
Steve Frenchff1c0382013-11-19 23:44:46 -0600976
977 rc = SMB2_ioctl(xid, tcon, NO_FILE_ID, NO_FILE_ID,
978 FSCTL_VALIDATE_NEGOTIATE_INFO, true /* is_fsctl */,
Long Li2796d302018-04-25 11:30:04 -0700979 (char *)pneg_inbuf, inbuflen, (char **)&pneg_rsp, &rsplen);
Steve Frenchff1c0382013-11-19 23:44:46 -0600980
981 if (rc != 0) {
982 cifs_dbg(VFS, "validate protocol negotiate failed: %d\n", rc);
Long Li2796d302018-04-25 11:30:04 -0700983 rc = -EIO;
984 goto out_free_inbuf;
Steve Frenchff1c0382013-11-19 23:44:46 -0600985 }
986
Long Li2796d302018-04-25 11:30:04 -0700987 rc = -EIO;
988 if (rsplen != sizeof(*pneg_rsp)) {
Steve French7db0a6e2017-05-03 21:12:20 -0500989 cifs_dbg(VFS, "invalid protocol negotiate response size: %d\n",
990 rsplen);
991
992 /* relax check since Mac returns max bufsize allowed on ioctl */
Long Li2796d302018-04-25 11:30:04 -0700993 if (rsplen > CIFSMaxBufSize || rsplen < sizeof(*pneg_rsp))
994 goto out_free_rsp;
Steve Frenchff1c0382013-11-19 23:44:46 -0600995 }
996
997 /* check validate negotiate info response matches what we got earlier */
Daniel N Pettersson9aca7e42018-01-11 16:00:12 +0100998 if (pneg_rsp->Dialect != cpu_to_le16(tcon->ses->server->dialect))
Steve Frenchff1c0382013-11-19 23:44:46 -0600999 goto vneg_out;
1000
1001 if (pneg_rsp->SecurityMode != cpu_to_le16(tcon->ses->server->sec_mode))
1002 goto vneg_out;
1003
1004 /* do not validate server guid because not saved at negprot time yet */
1005
1006 if ((le32_to_cpu(pneg_rsp->Capabilities) | SMB2_NT_FIND |
1007 SMB2_LARGE_FILES) != tcon->ses->server->capabilities)
1008 goto vneg_out;
1009
1010 /* validate negotiate successful */
Long Li2796d302018-04-25 11:30:04 -07001011 rc = 0;
Steve Frenchff1c0382013-11-19 23:44:46 -06001012 cifs_dbg(FYI, "validate negotiate info successful\n");
Long Li2796d302018-04-25 11:30:04 -07001013 goto out_free_rsp;
Steve Frenchff1c0382013-11-19 23:44:46 -06001014
1015vneg_out:
1016 cifs_dbg(VFS, "protocol revalidation - security settings mismatch\n");
Long Li2796d302018-04-25 11:30:04 -07001017out_free_rsp:
David Disseldorpfe83bebc2017-10-20 14:49:37 +02001018 kfree(pneg_rsp);
Long Li2796d302018-04-25 11:30:04 -07001019out_free_inbuf:
1020 kfree(pneg_inbuf);
1021 return rc;
Steve Frenchff1c0382013-11-19 23:44:46 -06001022}
1023
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301024enum securityEnum
1025smb2_select_sectype(struct TCP_Server_Info *server, enum securityEnum requested)
1026{
1027 switch (requested) {
1028 case Kerberos:
1029 case RawNTLMSSP:
1030 return requested;
1031 case NTLMv2:
1032 return RawNTLMSSP;
1033 case Unspecified:
1034 if (server->sec_ntlmssp &&
1035 (global_secflags & CIFSSEC_MAY_NTLMSSP))
1036 return RawNTLMSSP;
1037 if ((server->sec_kerberos || server->sec_mskerberos) &&
1038 (global_secflags & CIFSSEC_MAY_KRB5))
1039 return Kerberos;
1040 /* Fallthrough */
1041 default:
1042 return Unspecified;
1043 }
1044}
1045
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001046struct SMB2_sess_data {
1047 unsigned int xid;
1048 struct cifs_ses *ses;
1049 struct nls_table *nls_cp;
1050 void (*func)(struct SMB2_sess_data *);
1051 int result;
1052 u64 previous_session;
1053
1054 /* we will send the SMB in three pieces:
1055 * a fixed length beginning part, an optional
1056 * SPNEGO blob (which can be zero length), and a
1057 * last part which will include the strings
1058 * and rest of bcc area. This allows us to avoid
1059 * a large buffer 17K allocation
1060 */
1061 int buf0_type;
1062 struct kvec iov[2];
1063};
1064
1065static int
1066SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data)
1067{
1068 int rc;
1069 struct cifs_ses *ses = sess_data->ses;
1070 struct smb2_sess_setup_req *req;
1071 struct TCP_Server_Info *server = ses->server;
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001072 unsigned int total_len;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001073
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001074 rc = smb2_plain_req_init(SMB2_SESSION_SETUP, NULL, (void **) &req,
1075 &total_len);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001076 if (rc)
1077 return rc;
1078
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07001079 /* First session, not a reauthenticate */
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001080 req->sync_hdr.SessionId = 0;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001081
1082 /* if reconnect, we need to send previous sess id, otherwise it is 0 */
1083 req->PreviousSessionId = sess_data->previous_session;
1084
1085 req->Flags = 0; /* MBZ */
Steve Frenchd4090142018-06-13 17:05:58 -05001086
1087 /* enough to enable echos and oplocks and one max size write */
1088 req->sync_hdr.CreditRequest = cpu_to_le16(130);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001089
1090 /* only one of SMB2 signing flags may be set in SMB2 request */
1091 if (server->sign)
1092 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_REQUIRED;
1093 else if (global_secflags & CIFSSEC_MAY_SIGN) /* one flag unlike MUST_ */
1094 req->SecurityMode = SMB2_NEGOTIATE_SIGNING_ENABLED;
1095 else
1096 req->SecurityMode = 0;
1097
1098 req->Capabilities = 0;
1099 req->Channel = 0; /* MBZ */
1100
1101 sess_data->iov[0].iov_base = (char *)req;
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001102 /* 1 for pad */
1103 sess_data->iov[0].iov_len = total_len - 1;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001104 /*
1105 * This variable will be used to clear the buffer
1106 * allocated above in case of any error in the calling function.
1107 */
1108 sess_data->buf0_type = CIFS_SMALL_BUFFER;
1109
1110 return 0;
1111}
1112
1113static void
1114SMB2_sess_free_buffer(struct SMB2_sess_data *sess_data)
1115{
1116 free_rsp_buf(sess_data->buf0_type, sess_data->iov[0].iov_base);
1117 sess_data->buf0_type = CIFS_NO_BUFFER;
1118}
1119
1120static int
1121SMB2_sess_sendreceive(struct SMB2_sess_data *sess_data)
1122{
1123 int rc;
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001124 struct smb_rqst rqst;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001125 struct smb2_sess_setup_req *req = sess_data->iov[0].iov_base;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001126 struct kvec rsp_iov = { NULL, 0 };
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001127
1128 /* Testing shows that buffer offset must be at location of Buffer[0] */
1129 req->SecurityBufferOffset =
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001130 cpu_to_le16(sizeof(struct smb2_sess_setup_req) - 1 /* pad */);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001131 req->SecurityBufferLength = cpu_to_le16(sess_data->iov[1].iov_len);
1132
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001133 memset(&rqst, 0, sizeof(struct smb_rqst));
1134 rqst.rq_iov = sess_data->iov;
1135 rqst.rq_nvec = 2;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001136
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001137 /* BB add code to build os and lm fields */
1138 rc = cifs_send_recv(sess_data->xid, sess_data->ses,
1139 &rqst,
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001140 &sess_data->buf0_type,
1141 CIFS_LOG_ERROR | CIFS_NEG_OP, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001142 cifs_small_buf_release(sess_data->iov[0].iov_base);
1143 memcpy(&sess_data->iov[0], &rsp_iov, sizeof(struct kvec));
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001144
1145 return rc;
1146}
1147
1148static int
1149SMB2_sess_establish_session(struct SMB2_sess_data *sess_data)
1150{
1151 int rc = 0;
1152 struct cifs_ses *ses = sess_data->ses;
1153
1154 mutex_lock(&ses->server->srv_mutex);
Pavel Shilovskycabfb362016-11-07 18:20:50 -08001155 if (ses->server->ops->generate_signingkey) {
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001156 rc = ses->server->ops->generate_signingkey(ses);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001157 if (rc) {
1158 cifs_dbg(FYI,
1159 "SMB3 session key generation failed\n");
1160 mutex_unlock(&ses->server->srv_mutex);
Pavel Shilovskycabfb362016-11-07 18:20:50 -08001161 return rc;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001162 }
1163 }
1164 if (!ses->server->session_estab) {
1165 ses->server->sequence_number = 0x2;
1166 ses->server->session_estab = true;
1167 }
1168 mutex_unlock(&ses->server->srv_mutex);
1169
1170 cifs_dbg(FYI, "SMB2/3 session established successfully\n");
1171 spin_lock(&GlobalMid_Lock);
1172 ses->status = CifsGood;
1173 ses->need_reconnect = false;
1174 spin_unlock(&GlobalMid_Lock);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001175 return rc;
1176}
1177
1178#ifdef CONFIG_CIFS_UPCALL
1179static void
1180SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1181{
1182 int rc;
1183 struct cifs_ses *ses = sess_data->ses;
1184 struct cifs_spnego_msg *msg;
1185 struct key *spnego_key = NULL;
1186 struct smb2_sess_setup_rsp *rsp = NULL;
1187
1188 rc = SMB2_sess_alloc_buffer(sess_data);
1189 if (rc)
1190 goto out;
1191
1192 spnego_key = cifs_get_spnego_key(ses);
1193 if (IS_ERR(spnego_key)) {
1194 rc = PTR_ERR(spnego_key);
1195 spnego_key = NULL;
1196 goto out;
1197 }
1198
1199 msg = spnego_key->payload.data[0];
1200 /*
1201 * check version field to make sure that cifs.upcall is
1202 * sending us a response in an expected form
1203 */
1204 if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) {
1205 cifs_dbg(VFS,
1206 "bad cifs.upcall version. Expected %d got %d",
1207 CIFS_SPNEGO_UPCALL_VERSION, msg->version);
1208 rc = -EKEYREJECTED;
1209 goto out_put_spnego_key;
1210 }
1211
1212 ses->auth_key.response = kmemdup(msg->data, msg->sesskey_len,
1213 GFP_KERNEL);
1214 if (!ses->auth_key.response) {
1215 cifs_dbg(VFS,
1216 "Kerberos can't allocate (%u bytes) memory",
1217 msg->sesskey_len);
1218 rc = -ENOMEM;
1219 goto out_put_spnego_key;
1220 }
1221 ses->auth_key.len = msg->sesskey_len;
1222
1223 sess_data->iov[1].iov_base = msg->data + msg->sesskey_len;
1224 sess_data->iov[1].iov_len = msg->secblob_len;
1225
1226 rc = SMB2_sess_sendreceive(sess_data);
1227 if (rc)
1228 goto out_put_spnego_key;
1229
1230 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001231 ses->Suid = rsp->sync_hdr.SessionId;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001232
1233 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001234
1235 rc = SMB2_sess_establish_session(sess_data);
1236out_put_spnego_key:
1237 key_invalidate(spnego_key);
1238 key_put(spnego_key);
1239out:
1240 sess_data->result = rc;
1241 sess_data->func = NULL;
1242 SMB2_sess_free_buffer(sess_data);
1243}
1244#else
1245static void
1246SMB2_auth_kerberos(struct SMB2_sess_data *sess_data)
1247{
1248 cifs_dbg(VFS, "Kerberos negotiated but upcall support disabled!\n");
1249 sess_data->result = -EOPNOTSUPP;
1250 sess_data->func = NULL;
1251}
1252#endif
1253
Sachin Prabhu166cea42016-10-07 19:11:22 +01001254static void
1255SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data);
1256
1257static void
1258SMB2_sess_auth_rawntlmssp_negotiate(struct SMB2_sess_data *sess_data)
1259{
1260 int rc;
1261 struct cifs_ses *ses = sess_data->ses;
1262 struct smb2_sess_setup_rsp *rsp = NULL;
1263 char *ntlmssp_blob = NULL;
1264 bool use_spnego = false; /* else use raw ntlmssp */
1265 u16 blob_length = 0;
1266
1267 /*
1268 * If memory allocation is successful, caller of this function
1269 * frees it.
1270 */
1271 ses->ntlmssp = kmalloc(sizeof(struct ntlmssp_auth), GFP_KERNEL);
1272 if (!ses->ntlmssp) {
1273 rc = -ENOMEM;
1274 goto out_err;
1275 }
1276 ses->ntlmssp->sesskey_per_smbsess = true;
1277
1278 rc = SMB2_sess_alloc_buffer(sess_data);
1279 if (rc)
1280 goto out_err;
1281
1282 ntlmssp_blob = kmalloc(sizeof(struct _NEGOTIATE_MESSAGE),
1283 GFP_KERNEL);
1284 if (ntlmssp_blob == NULL) {
1285 rc = -ENOMEM;
1286 goto out;
1287 }
1288
1289 build_ntlmssp_negotiate_blob(ntlmssp_blob, ses);
1290 if (use_spnego) {
1291 /* BB eventually need to add this */
1292 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1293 rc = -EOPNOTSUPP;
1294 goto out;
1295 } else {
1296 blob_length = sizeof(struct _NEGOTIATE_MESSAGE);
1297 /* with raw NTLMSSP we don't encapsulate in SPNEGO */
1298 }
1299 sess_data->iov[1].iov_base = ntlmssp_blob;
1300 sess_data->iov[1].iov_len = blob_length;
1301
1302 rc = SMB2_sess_sendreceive(sess_data);
1303 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1304
1305 /* If true, rc here is expected and not an error */
1306 if (sess_data->buf0_type != CIFS_NO_BUFFER &&
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001307 rsp->sync_hdr.Status == STATUS_MORE_PROCESSING_REQUIRED)
Sachin Prabhu166cea42016-10-07 19:11:22 +01001308 rc = 0;
1309
1310 if (rc)
1311 goto out;
1312
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10001313 if (offsetof(struct smb2_sess_setup_rsp, Buffer) !=
Sachin Prabhu166cea42016-10-07 19:11:22 +01001314 le16_to_cpu(rsp->SecurityBufferOffset)) {
1315 cifs_dbg(VFS, "Invalid security buffer offset %d\n",
1316 le16_to_cpu(rsp->SecurityBufferOffset));
1317 rc = -EIO;
1318 goto out;
1319 }
1320 rc = decode_ntlmssp_challenge(rsp->Buffer,
1321 le16_to_cpu(rsp->SecurityBufferLength), ses);
1322 if (rc)
1323 goto out;
1324
1325 cifs_dbg(FYI, "rawntlmssp session setup challenge phase\n");
1326
1327
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001328 ses->Suid = rsp->sync_hdr.SessionId;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001329 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Sachin Prabhu166cea42016-10-07 19:11:22 +01001330
1331out:
1332 kfree(ntlmssp_blob);
1333 SMB2_sess_free_buffer(sess_data);
1334 if (!rc) {
1335 sess_data->result = 0;
1336 sess_data->func = SMB2_sess_auth_rawntlmssp_authenticate;
1337 return;
1338 }
1339out_err:
1340 kfree(ses->ntlmssp);
1341 ses->ntlmssp = NULL;
1342 sess_data->result = rc;
1343 sess_data->func = NULL;
1344}
1345
1346static void
1347SMB2_sess_auth_rawntlmssp_authenticate(struct SMB2_sess_data *sess_data)
1348{
1349 int rc;
1350 struct cifs_ses *ses = sess_data->ses;
1351 struct smb2_sess_setup_req *req;
1352 struct smb2_sess_setup_rsp *rsp = NULL;
1353 unsigned char *ntlmssp_blob = NULL;
1354 bool use_spnego = false; /* else use raw ntlmssp */
1355 u16 blob_length = 0;
1356
1357 rc = SMB2_sess_alloc_buffer(sess_data);
1358 if (rc)
1359 goto out;
1360
1361 req = (struct smb2_sess_setup_req *) sess_data->iov[0].iov_base;
Ronnie Sahlberg88ea5cb2017-11-20 11:24:36 +11001362 req->sync_hdr.SessionId = ses->Suid;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001363
1364 rc = build_ntlmssp_auth_blob(&ntlmssp_blob, &blob_length, ses,
1365 sess_data->nls_cp);
1366 if (rc) {
1367 cifs_dbg(FYI, "build_ntlmssp_auth_blob failed %d\n", rc);
1368 goto out;
1369 }
1370
1371 if (use_spnego) {
1372 /* BB eventually need to add this */
1373 cifs_dbg(VFS, "spnego not supported for SMB2 yet\n");
1374 rc = -EOPNOTSUPP;
1375 goto out;
1376 }
1377 sess_data->iov[1].iov_base = ntlmssp_blob;
1378 sess_data->iov[1].iov_len = blob_length;
1379
1380 rc = SMB2_sess_sendreceive(sess_data);
1381 if (rc)
1382 goto out;
1383
1384 rsp = (struct smb2_sess_setup_rsp *)sess_data->iov[0].iov_base;
1385
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001386 ses->Suid = rsp->sync_hdr.SessionId;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001387 ses->session_flags = le16_to_cpu(rsp->SessionFlags);
Sachin Prabhu166cea42016-10-07 19:11:22 +01001388
1389 rc = SMB2_sess_establish_session(sess_data);
1390out:
1391 kfree(ntlmssp_blob);
1392 SMB2_sess_free_buffer(sess_data);
1393 kfree(ses->ntlmssp);
1394 ses->ntlmssp = NULL;
1395 sess_data->result = rc;
1396 sess_data->func = NULL;
1397}
1398
1399static int
1400SMB2_select_sec(struct cifs_ses *ses, struct SMB2_sess_data *sess_data)
1401{
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301402 int type;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001403
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301404 type = smb2_select_sectype(ses->server, ses->sectype);
1405 cifs_dbg(FYI, "sess setup type %d\n", type);
1406 if (type == Unspecified) {
1407 cifs_dbg(VFS,
1408 "Unable to select appropriate authentication method!");
1409 return -EINVAL;
1410 }
1411
1412 switch (type) {
Sachin Prabhu166cea42016-10-07 19:11:22 +01001413 case Kerberos:
1414 sess_data->func = SMB2_auth_kerberos;
1415 break;
1416 case RawNTLMSSP:
1417 sess_data->func = SMB2_sess_auth_rawntlmssp_negotiate;
1418 break;
1419 default:
Sachin Prabhuef65aae2017-01-18 15:35:57 +05301420 cifs_dbg(VFS, "secType %d not supported!\n", type);
Sachin Prabhu166cea42016-10-07 19:11:22 +01001421 return -EOPNOTSUPP;
1422 }
1423
1424 return 0;
1425}
1426
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001427int
1428SMB2_sess_setup(const unsigned int xid, struct cifs_ses *ses,
1429 const struct nls_table *nls_cp)
1430{
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001431 int rc = 0;
Jeff Layton3534b852013-05-24 07:41:01 -04001432 struct TCP_Server_Info *server = ses->server;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001433 struct SMB2_sess_data *sess_data;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001434
Joe Perchesf96637b2013-05-04 22:12:25 -05001435 cifs_dbg(FYI, "Session Setup\n");
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001436
Jeff Layton3534b852013-05-24 07:41:01 -04001437 if (!server) {
1438 WARN(1, "%s: server is NULL!\n", __func__);
1439 return -EIO;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001440 }
1441
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001442 sess_data = kzalloc(sizeof(struct SMB2_sess_data), GFP_KERNEL);
1443 if (!sess_data)
1444 return -ENOMEM;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001445
1446 rc = SMB2_select_sec(ses, sess_data);
1447 if (rc)
1448 goto out;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001449 sess_data->xid = xid;
1450 sess_data->ses = ses;
1451 sess_data->buf0_type = CIFS_NO_BUFFER;
1452 sess_data->nls_cp = (struct nls_table *) nls_cp;
Steve Frenchb2adf22f2018-05-31 15:19:25 -05001453 sess_data->previous_session = ses->Suid;
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001454
Aurelien Aptel8bd68c62018-02-16 19:19:29 +01001455 /*
1456 * Initialize the session hash with the server one.
1457 */
1458 memcpy(ses->preauth_sha_hash, ses->server->preauth_sha_hash,
1459 SMB2_PREAUTH_HASH_SIZE);
Aurelien Aptel8bd68c62018-02-16 19:19:29 +01001460
Sachin Prabhu166cea42016-10-07 19:11:22 +01001461 while (sess_data->func)
1462 sess_data->func(sess_data);
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001463
Steve Frenchc721c382017-09-19 18:40:03 -05001464 if ((ses->session_flags & SMB2_SESSION_FLAG_IS_GUEST) && (ses->sign))
1465 cifs_dbg(VFS, "signing requested but authenticated as guest\n");
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001466 rc = sess_data->result;
Sachin Prabhu166cea42016-10-07 19:11:22 +01001467out:
Sachin Prabhu3baf1a72016-10-07 19:11:21 +01001468 kfree(sess_data);
1469 return rc;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001470}
1471
1472int
1473SMB2_logoff(const unsigned int xid, struct cifs_ses *ses)
1474{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001475 struct smb_rqst rqst;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001476 struct smb2_logoff_req *req; /* response is also trivial struct */
1477 int rc = 0;
1478 struct TCP_Server_Info *server;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001479 int flags = 0;
Ronnie Sahlberg45305ed2017-11-09 12:14:17 +11001480 unsigned int total_len;
1481 struct kvec iov[1];
1482 struct kvec rsp_iov;
1483 int resp_buf_type;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001484
Joe Perchesf96637b2013-05-04 22:12:25 -05001485 cifs_dbg(FYI, "disconnect session %p\n", ses);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001486
1487 if (ses && (ses->server))
1488 server = ses->server;
1489 else
1490 return -EIO;
1491
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -05001492 /* no need to send SMB logoff if uid already closed due to reconnect */
1493 if (ses->need_reconnect)
1494 goto smb2_session_already_dead;
1495
Ronnie Sahlberg45305ed2017-11-09 12:14:17 +11001496 rc = smb2_plain_req_init(SMB2_LOGOFF, NULL, (void **) &req, &total_len);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001497 if (rc)
1498 return rc;
1499
1500 /* since no tcon, smb2_init can not do this, so do here */
Ronnie Sahlberg45305ed2017-11-09 12:14:17 +11001501 req->sync_hdr.SessionId = ses->Suid;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001502
1503 if (ses->session_flags & SMB2_SESSION_FLAG_ENCRYPT_DATA)
1504 flags |= CIFS_TRANSFORM_REQ;
1505 else if (server->sign)
Ronnie Sahlberg45305ed2017-11-09 12:14:17 +11001506 req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001507
Ronnie Sahlberg45305ed2017-11-09 12:14:17 +11001508 flags |= CIFS_NO_RESP;
1509
1510 iov[0].iov_base = (char *)req;
1511 iov[0].iov_len = total_len;
1512
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001513 memset(&rqst, 0, sizeof(struct smb_rqst));
1514 rqst.rq_iov = iov;
1515 rqst.rq_nvec = 1;
1516
1517 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001518 cifs_small_buf_release(req);
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001519 /*
1520 * No tcon so can't do
1521 * cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_fail[SMB2...]);
1522 */
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -05001523
1524smb2_session_already_dead:
Pavel Shilovsky5478f9b2011-12-27 16:22:00 +04001525 return rc;
1526}
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001527
1528static inline void cifs_stats_fail_inc(struct cifs_tcon *tcon, uint16_t code)
1529{
Pavel Shilovskyd60622e2012-05-28 15:19:39 +04001530 cifs_stats_inc(&tcon->stats.smb2_stats.smb2_com_failed[code]);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001531}
1532
1533#define MAX_SHARENAME_LENGTH (255 /* server */ + 80 /* share */ + 1 /* NULL */)
1534
Steve Frenchde9f68df2013-11-15 11:26:24 -06001535/* These are similar values to what Windows uses */
1536static inline void init_copy_chunk_defaults(struct cifs_tcon *tcon)
1537{
1538 tcon->max_chunks = 256;
1539 tcon->max_bytes_chunk = 1048576;
1540 tcon->max_bytes_copy = 16777216;
1541}
1542
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001543int
1544SMB2_tcon(const unsigned int xid, struct cifs_ses *ses, const char *tree,
1545 struct cifs_tcon *tcon, const struct nls_table *cp)
1546{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001547 struct smb_rqst rqst;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001548 struct smb2_tree_connect_req *req;
1549 struct smb2_tree_connect_rsp *rsp = NULL;
1550 struct kvec iov[2];
Aurélien Apteldb3b5472017-10-11 13:23:36 +02001551 struct kvec rsp_iov = { NULL, 0 };
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001552 int rc = 0;
1553 int resp_buftype;
1554 int unc_path_len;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001555 __le16 *unc_path = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001556 int flags = 0;
Ronnie Sahlberg661bb9432017-11-09 12:14:23 +11001557 unsigned int total_len;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001558
Joe Perchesf96637b2013-05-04 22:12:25 -05001559 cifs_dbg(FYI, "TCON\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001560
Christos Gkekas68a6afa2017-07-09 11:45:04 +01001561 if (!(ses->server) || !tree)
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001562 return -EIO;
1563
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001564 unc_path = kmalloc(MAX_SHARENAME_LENGTH * 2, GFP_KERNEL);
1565 if (unc_path == NULL)
1566 return -ENOMEM;
1567
1568 unc_path_len = cifs_strtoUTF16(unc_path, tree, strlen(tree), cp) + 1;
1569 unc_path_len *= 2;
1570 if (unc_path_len < 2) {
1571 kfree(unc_path);
1572 return -EINVAL;
1573 }
1574
Jan-Marek Glogowski806a28e2017-02-20 12:25:58 +01001575 /* SMB2 TREE_CONNECT request must be called with TreeId == 0 */
Aurelien Aptelb327a712018-01-24 13:46:10 +01001576 tcon->tid = 0;
Steve Frenchfae80442018-10-19 17:14:32 -05001577 atomic_set(&tcon->num_remote_opens, 0);
Ronnie Sahlberg661bb9432017-11-09 12:14:23 +11001578 rc = smb2_plain_req_init(SMB2_TREE_CONNECT, tcon, (void **) &req,
1579 &total_len);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001580 if (rc) {
1581 kfree(unc_path);
1582 return rc;
1583 }
1584
Steve French5a77e752018-05-09 17:43:08 -05001585 if (smb3_encryption_required(tcon))
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001586 flags |= CIFS_TRANSFORM_REQ;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001587
1588 iov[0].iov_base = (char *)req;
Ronnie Sahlberg661bb9432017-11-09 12:14:23 +11001589 /* 1 for pad */
1590 iov[0].iov_len = total_len - 1;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001591
1592 /* Testing shows that buffer offset must be at location of Buffer[0] */
1593 req->PathOffset = cpu_to_le16(sizeof(struct smb2_tree_connect_req)
Ronnie Sahlberg661bb9432017-11-09 12:14:23 +11001594 - 1 /* pad */);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001595 req->PathLength = cpu_to_le16(unc_path_len - 2);
1596 iov[1].iov_base = unc_path;
1597 iov[1].iov_len = unc_path_len;
1598
Steve French6188f282018-03-13 02:29:36 -05001599 /* 3.11 tcon req must be signed if not encrypted. See MS-SMB2 3.2.4.1.1 */
1600 if ((ses->server->dialect == SMB311_PROT_ID) &&
Steve French5a77e752018-05-09 17:43:08 -05001601 !smb3_encryption_required(tcon))
Steve French6188f282018-03-13 02:29:36 -05001602 req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
1603
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001604 memset(&rqst, 0, sizeof(struct smb_rqst));
1605 rqst.rq_iov = iov;
1606 rqst.rq_nvec = 2;
1607
1608 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001609 cifs_small_buf_release(req);
1610 rsp = (struct smb2_tree_connect_rsp *)rsp_iov.iov_base;
Steve Frenchf8af49d2018-10-28 00:47:11 -05001611 trace_smb3_tcon(xid, tcon->tid, ses->Suid, tree, rc);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001612 if (rc != 0) {
1613 if (tcon) {
1614 cifs_stats_fail_inc(tcon, SMB2_TREE_CONNECT_HE);
1615 tcon->need_reconnect = true;
1616 }
1617 goto tcon_error_exit;
1618 }
1619
Christophe JAILLETcd123002017-05-12 17:59:32 +02001620 switch (rsp->ShareType) {
1621 case SMB2_SHARE_TYPE_DISK:
Joe Perchesf96637b2013-05-04 22:12:25 -05001622 cifs_dbg(FYI, "connection to disk share\n");
Christophe JAILLETcd123002017-05-12 17:59:32 +02001623 break;
1624 case SMB2_SHARE_TYPE_PIPE:
Aurelien Aptelb327a712018-01-24 13:46:10 +01001625 tcon->pipe = true;
Joe Perchesf96637b2013-05-04 22:12:25 -05001626 cifs_dbg(FYI, "connection to pipe share\n");
Christophe JAILLETcd123002017-05-12 17:59:32 +02001627 break;
1628 case SMB2_SHARE_TYPE_PRINT:
Aurelien Aptelb327a712018-01-24 13:46:10 +01001629 tcon->print = true;
Joe Perchesf96637b2013-05-04 22:12:25 -05001630 cifs_dbg(FYI, "connection to printer\n");
Christophe JAILLETcd123002017-05-12 17:59:32 +02001631 break;
1632 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05001633 cifs_dbg(VFS, "unknown share type %d\n", rsp->ShareType);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001634 rc = -EOPNOTSUPP;
1635 goto tcon_error_exit;
1636 }
1637
1638 tcon->share_flags = le32_to_cpu(rsp->ShareFlags);
Steve French769ee6a2013-06-19 14:15:30 -05001639 tcon->capabilities = rsp->Capabilities; /* we keep caps little endian */
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001640 tcon->maximal_access = le32_to_cpu(rsp->MaximalAccess);
1641 tcon->tidStatus = CifsGood;
1642 tcon->need_reconnect = false;
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001643 tcon->tid = rsp->sync_hdr.TreeId;
Zhao Hongjiang46b51d02013-06-24 01:57:47 -05001644 strlcpy(tcon->treeName, tree, sizeof(tcon->treeName));
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001645
1646 if ((rsp->Capabilities & SMB2_SHARE_CAP_DFS) &&
1647 ((tcon->share_flags & SHI1005_FLAGS_DFS) == 0))
Joe Perchesf96637b2013-05-04 22:12:25 -05001648 cifs_dbg(VFS, "DFS capability contradicts DFS flag\n");
Pavel Shilovskyae6f8dd2016-11-17 13:59:23 -08001649
1650 if (tcon->seal &&
1651 !(tcon->ses->server->capabilities & SMB2_GLOBAL_CAP_ENCRYPTION))
1652 cifs_dbg(VFS, "Encryption is requested but not supported\n");
1653
Steve Frenchde9f68df2013-11-15 11:26:24 -06001654 init_copy_chunk_defaults(tcon);
Steve Frenchff1c0382013-11-19 23:44:46 -06001655 if (tcon->ses->server->ops->validate_negotiate)
1656 rc = tcon->ses->server->ops->validate_negotiate(xid, tcon);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001657tcon_exit:
Steve Frenchf8af49d2018-10-28 00:47:11 -05001658
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001659 free_rsp_buf(resp_buftype, rsp);
1660 kfree(unc_path);
1661 return rc;
1662
1663tcon_error_exit:
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10001664 if (rsp && rsp->sync_hdr.Status == STATUS_BAD_NETWORK_NAME) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001665 cifs_dbg(VFS, "BAD_NETWORK_NAME: %s\n", tree);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001666 }
1667 goto tcon_exit;
1668}
1669
1670int
1671SMB2_tdis(const unsigned int xid, struct cifs_tcon *tcon)
1672{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001673 struct smb_rqst rqst;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001674 struct smb2_tree_disconnect_req *req; /* response is trivial */
1675 int rc = 0;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001676 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001677 int flags = 0;
Ronnie Sahlberg4eecf4c2017-11-09 12:14:18 +11001678 unsigned int total_len;
1679 struct kvec iov[1];
1680 struct kvec rsp_iov;
1681 int resp_buf_type;
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001682
Joe Perchesf96637b2013-05-04 22:12:25 -05001683 cifs_dbg(FYI, "Tree Disconnect\n");
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001684
Christos Gkekas68a6afa2017-07-09 11:45:04 +01001685 if (!ses || !(ses->server))
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001686 return -EIO;
1687
1688 if ((tcon->need_reconnect) || (tcon->ses->need_reconnect))
1689 return 0;
1690
Ronnie Sahlberg4eecf4c2017-11-09 12:14:18 +11001691 rc = smb2_plain_req_init(SMB2_TREE_DISCONNECT, tcon, (void **) &req,
1692 &total_len);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001693 if (rc)
1694 return rc;
1695
Steve French5a77e752018-05-09 17:43:08 -05001696 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07001697 flags |= CIFS_TRANSFORM_REQ;
1698
Ronnie Sahlberg4eecf4c2017-11-09 12:14:18 +11001699 flags |= CIFS_NO_RESP;
1700
1701 iov[0].iov_base = (char *)req;
1702 iov[0].iov_len = total_len;
1703
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10001704 memset(&rqst, 0, sizeof(struct smb_rqst));
1705 rqst.rq_iov = iov;
1706 rqst.rq_nvec = 1;
1707
1708 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07001709 cifs_small_buf_release(req);
Pavel Shilovskyfaaf9462011-12-27 16:04:00 +04001710 if (rc)
1711 cifs_stats_fail_inc(tcon, SMB2_TREE_DISCONNECT_HE);
1712
1713 return rc;
1714}
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04001715
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001716
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001717static struct create_durable *
1718create_durable_buf(void)
1719{
1720 struct create_durable *buf;
1721
1722 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1723 if (!buf)
1724 return NULL;
1725
1726 buf->ccontext.DataOffset = cpu_to_le16(offsetof
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001727 (struct create_durable, Data));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001728 buf->ccontext.DataLength = cpu_to_le32(16);
1729 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1730 (struct create_durable, Name));
1731 buf->ccontext.NameLength = cpu_to_le16(4);
Steve French12197a72014-05-14 05:29:40 -07001732 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DHnQ" */
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001733 buf->Name[0] = 'D';
1734 buf->Name[1] = 'H';
1735 buf->Name[2] = 'n';
1736 buf->Name[3] = 'Q';
1737 return buf;
1738}
1739
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001740static struct create_durable *
1741create_reconnect_durable_buf(struct cifs_fid *fid)
1742{
1743 struct create_durable *buf;
1744
1745 buf = kzalloc(sizeof(struct create_durable), GFP_KERNEL);
1746 if (!buf)
1747 return NULL;
1748
1749 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1750 (struct create_durable, Data));
1751 buf->ccontext.DataLength = cpu_to_le32(16);
1752 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1753 (struct create_durable, Name));
1754 buf->ccontext.NameLength = cpu_to_le16(4);
1755 buf->Data.Fid.PersistentFileId = fid->persistent_fid;
1756 buf->Data.Fid.VolatileFileId = fid->volatile_fid;
Steve French12197a72014-05-14 05:29:40 -07001757 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT is "DHnC" */
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001758 buf->Name[0] = 'D';
1759 buf->Name[1] = 'H';
1760 buf->Name[2] = 'n';
1761 buf->Name[3] = 'C';
1762 return buf;
1763}
1764
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001765static __u8
Pavel Shilovsky42873b02013-09-05 21:30:16 +04001766parse_lease_state(struct TCP_Server_Info *server, struct smb2_create_rsp *rsp,
Ronnie Sahlberg96164ab2018-04-26 08:10:18 -06001767 unsigned int *epoch, char *lease_key)
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001768{
1769 char *data_offset;
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001770 struct create_context *cc;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001771 unsigned int next;
1772 unsigned int remaining;
Pavel Shilovskyfd554392013-07-09 19:44:56 +04001773 char *name;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001774
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10001775 data_offset = (char *)rsp + le32_to_cpu(rsp->CreateContextsOffset);
Justin Maggarddeb7def2016-02-09 15:52:08 -08001776 remaining = le32_to_cpu(rsp->CreateContextsLength);
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001777 cc = (struct create_context *)data_offset;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001778 while (remaining >= sizeof(struct create_context)) {
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001779 name = le16_to_cpu(cc->NameOffset) + (char *)cc;
Justin Maggarddeb7def2016-02-09 15:52:08 -08001780 if (le16_to_cpu(cc->NameLength) == 4 &&
1781 strncmp(name, "RqLs", 4) == 0)
Ronnie Sahlberg96164ab2018-04-26 08:10:18 -06001782 return server->ops->parse_lease_buf(cc, epoch,
1783 lease_key);
Justin Maggarddeb7def2016-02-09 15:52:08 -08001784
1785 next = le32_to_cpu(cc->Next);
1786 if (!next)
1787 break;
1788 remaining -= next;
1789 cc = (struct create_context *)((char *)cc + next);
1790 }
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001791
Pavel Shilovskyb5c7cde2013-09-05 20:16:45 +04001792 return 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07001793}
1794
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001795static int
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001796add_lease_context(struct TCP_Server_Info *server, struct kvec *iov,
Stefano Brivio729c0c92018-07-05 15:10:02 +02001797 unsigned int *num_iovec, u8 *lease_key, __u8 *oplock)
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001798{
1799 struct smb2_create_req *req = iov[0].iov_base;
1800 unsigned int num = *num_iovec;
1801
Stefano Brivio729c0c92018-07-05 15:10:02 +02001802 iov[num].iov_base = server->ops->create_lease_buf(lease_key, *oplock);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001803 if (iov[num].iov_base == NULL)
1804 return -ENOMEM;
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001805 iov[num].iov_len = server->vals->create_lease_size;
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001806 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_LEASE;
1807 if (!req->CreateContextsOffset)
1808 req->CreateContextsOffset = cpu_to_le32(
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11001809 sizeof(struct smb2_create_req) +
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001810 iov[num - 1].iov_len);
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04001811 le32_add_cpu(&req->CreateContextsLength,
1812 server->vals->create_lease_size);
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04001813 *num_iovec = num + 1;
1814 return 0;
1815}
1816
Steve Frenchb56eae42015-11-03 09:26:27 -06001817static struct create_durable_v2 *
1818create_durable_v2_buf(struct cifs_fid *pfid)
1819{
1820 struct create_durable_v2 *buf;
1821
1822 buf = kzalloc(sizeof(struct create_durable_v2), GFP_KERNEL);
1823 if (!buf)
1824 return NULL;
1825
1826 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1827 (struct create_durable_v2, dcontext));
1828 buf->ccontext.DataLength = cpu_to_le32(sizeof(struct durable_context_v2));
1829 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1830 (struct create_durable_v2, Name));
1831 buf->ccontext.NameLength = cpu_to_le16(4);
1832
1833 buf->dcontext.Timeout = 0; /* Should this be configurable by workload */
1834 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
Steve Frenchfa70b872016-09-22 00:39:34 -05001835 generate_random_uuid(buf->dcontext.CreateGuid);
Steve Frenchb56eae42015-11-03 09:26:27 -06001836 memcpy(pfid->create_guid, buf->dcontext.CreateGuid, 16);
1837
1838 /* SMB2_CREATE_DURABLE_HANDLE_REQUEST is "DH2Q" */
1839 buf->Name[0] = 'D';
1840 buf->Name[1] = 'H';
1841 buf->Name[2] = '2';
1842 buf->Name[3] = 'Q';
1843 return buf;
1844}
1845
1846static struct create_durable_handle_reconnect_v2 *
1847create_reconnect_durable_v2_buf(struct cifs_fid *fid)
1848{
1849 struct create_durable_handle_reconnect_v2 *buf;
1850
1851 buf = kzalloc(sizeof(struct create_durable_handle_reconnect_v2),
1852 GFP_KERNEL);
1853 if (!buf)
1854 return NULL;
1855
1856 buf->ccontext.DataOffset =
1857 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1858 dcontext));
1859 buf->ccontext.DataLength =
1860 cpu_to_le32(sizeof(struct durable_reconnect_context_v2));
1861 buf->ccontext.NameOffset =
1862 cpu_to_le16(offsetof(struct create_durable_handle_reconnect_v2,
1863 Name));
1864 buf->ccontext.NameLength = cpu_to_le16(4);
1865
1866 buf->dcontext.Fid.PersistentFileId = fid->persistent_fid;
1867 buf->dcontext.Fid.VolatileFileId = fid->volatile_fid;
1868 buf->dcontext.Flags = cpu_to_le32(SMB2_DHANDLE_FLAG_PERSISTENT);
1869 memcpy(buf->dcontext.CreateGuid, fid->create_guid, 16);
1870
1871 /* SMB2_CREATE_DURABLE_HANDLE_RECONNECT_V2 is "DH2C" */
1872 buf->Name[0] = 'D';
1873 buf->Name[1] = 'H';
1874 buf->Name[2] = '2';
1875 buf->Name[3] = 'C';
1876 return buf;
1877}
1878
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001879static int
Steve Frenchb56eae42015-11-03 09:26:27 -06001880add_durable_v2_context(struct kvec *iov, unsigned int *num_iovec,
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001881 struct cifs_open_parms *oparms)
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001882{
1883 struct smb2_create_req *req = iov[0].iov_base;
1884 unsigned int num = *num_iovec;
1885
Steve Frenchb56eae42015-11-03 09:26:27 -06001886 iov[num].iov_base = create_durable_v2_buf(oparms->fid);
1887 if (iov[num].iov_base == NULL)
1888 return -ENOMEM;
1889 iov[num].iov_len = sizeof(struct create_durable_v2);
1890 if (!req->CreateContextsOffset)
1891 req->CreateContextsOffset =
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11001892 cpu_to_le32(sizeof(struct smb2_create_req) +
Steve Frenchb56eae42015-11-03 09:26:27 -06001893 iov[1].iov_len);
1894 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable_v2));
Steve Frenchb56eae42015-11-03 09:26:27 -06001895 *num_iovec = num + 1;
1896 return 0;
1897}
1898
1899static int
1900add_durable_reconnect_v2_context(struct kvec *iov, unsigned int *num_iovec,
1901 struct cifs_open_parms *oparms)
1902{
1903 struct smb2_create_req *req = iov[0].iov_base;
1904 unsigned int num = *num_iovec;
1905
1906 /* indicate that we don't need to relock the file */
1907 oparms->reconnect = false;
1908
1909 iov[num].iov_base = create_reconnect_durable_v2_buf(oparms->fid);
1910 if (iov[num].iov_base == NULL)
1911 return -ENOMEM;
1912 iov[num].iov_len = sizeof(struct create_durable_handle_reconnect_v2);
1913 if (!req->CreateContextsOffset)
1914 req->CreateContextsOffset =
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11001915 cpu_to_le32(sizeof(struct smb2_create_req) +
Steve Frenchb56eae42015-11-03 09:26:27 -06001916 iov[1].iov_len);
1917 le32_add_cpu(&req->CreateContextsLength,
1918 sizeof(struct create_durable_handle_reconnect_v2));
Steve Frenchb56eae42015-11-03 09:26:27 -06001919 *num_iovec = num + 1;
1920 return 0;
1921}
1922
1923static int
1924add_durable_context(struct kvec *iov, unsigned int *num_iovec,
1925 struct cifs_open_parms *oparms, bool use_persistent)
1926{
1927 struct smb2_create_req *req = iov[0].iov_base;
1928 unsigned int num = *num_iovec;
1929
1930 if (use_persistent) {
1931 if (oparms->reconnect)
1932 return add_durable_reconnect_v2_context(iov, num_iovec,
1933 oparms);
1934 else
1935 return add_durable_v2_context(iov, num_iovec, oparms);
1936 }
1937
Pavel Shilovsky9cbc0b72013-07-09 18:40:58 +04001938 if (oparms->reconnect) {
1939 iov[num].iov_base = create_reconnect_durable_buf(oparms->fid);
1940 /* indicate that we don't need to relock the file */
1941 oparms->reconnect = false;
1942 } else
1943 iov[num].iov_base = create_durable_buf();
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001944 if (iov[num].iov_base == NULL)
1945 return -ENOMEM;
1946 iov[num].iov_len = sizeof(struct create_durable);
1947 if (!req->CreateContextsOffset)
1948 req->CreateContextsOffset =
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11001949 cpu_to_le32(sizeof(struct smb2_create_req) +
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001950 iov[1].iov_len);
Wei Yongjun31f92e92013-08-26 14:34:46 +08001951 le32_add_cpu(&req->CreateContextsLength, sizeof(struct create_durable));
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04001952 *num_iovec = num + 1;
1953 return 0;
1954}
1955
Steve Frenchcdeaf9d2018-08-10 02:25:06 -05001956/* See MS-SMB2 2.2.13.2.7 */
1957static struct crt_twarp_ctxt *
1958create_twarp_buf(__u64 timewarp)
1959{
1960 struct crt_twarp_ctxt *buf;
1961
1962 buf = kzalloc(sizeof(struct crt_twarp_ctxt), GFP_KERNEL);
1963 if (!buf)
1964 return NULL;
1965
1966 buf->ccontext.DataOffset = cpu_to_le16(offsetof
1967 (struct crt_twarp_ctxt, Timestamp));
1968 buf->ccontext.DataLength = cpu_to_le32(8);
1969 buf->ccontext.NameOffset = cpu_to_le16(offsetof
1970 (struct crt_twarp_ctxt, Name));
1971 buf->ccontext.NameLength = cpu_to_le16(4);
1972 /* SMB2_CREATE_TIMEWARP_TOKEN is "TWrp" */
1973 buf->Name[0] = 'T';
1974 buf->Name[1] = 'W';
1975 buf->Name[2] = 'r';
1976 buf->Name[3] = 'p';
1977 buf->Timestamp = cpu_to_le64(timewarp);
1978 return buf;
1979}
1980
1981/* See MS-SMB2 2.2.13.2.7 */
1982static int
1983add_twarp_context(struct kvec *iov, unsigned int *num_iovec, __u64 timewarp)
1984{
1985 struct smb2_create_req *req = iov[0].iov_base;
1986 unsigned int num = *num_iovec;
1987
1988 iov[num].iov_base = create_twarp_buf(timewarp);
1989 if (iov[num].iov_base == NULL)
1990 return -ENOMEM;
1991 iov[num].iov_len = sizeof(struct crt_twarp_ctxt);
1992 if (!req->CreateContextsOffset)
1993 req->CreateContextsOffset = cpu_to_le32(
1994 sizeof(struct smb2_create_req) +
1995 iov[num - 1].iov_len);
1996 le32_add_cpu(&req->CreateContextsLength, sizeof(struct crt_twarp_ctxt));
1997 *num_iovec = num + 1;
1998 return 0;
1999}
2000
Aurelien Aptelf0712922017-02-22 14:47:17 +01002001static int
2002alloc_path_with_tree_prefix(__le16 **out_path, int *out_size, int *out_len,
2003 const char *treename, const __le16 *path)
2004{
2005 int treename_len, path_len;
2006 struct nls_table *cp;
2007 const __le16 sep[] = {cpu_to_le16('\\'), cpu_to_le16(0x0000)};
2008
2009 /*
2010 * skip leading "\\"
2011 */
2012 treename_len = strlen(treename);
2013 if (treename_len < 2 || !(treename[0] == '\\' && treename[1] == '\\'))
2014 return -EINVAL;
2015
2016 treename += 2;
2017 treename_len -= 2;
2018
2019 path_len = UniStrnlen((wchar_t *)path, PATH_MAX);
2020
2021 /*
2022 * make room for one path separator between the treename and
2023 * path
2024 */
2025 *out_len = treename_len + 1 + path_len;
2026
2027 /*
2028 * final path needs to be null-terminated UTF16 with a
2029 * size aligned to 8
2030 */
2031
2032 *out_size = roundup((*out_len+1)*2, 8);
2033 *out_path = kzalloc(*out_size, GFP_KERNEL);
2034 if (!*out_path)
2035 return -ENOMEM;
2036
2037 cp = load_nls_default();
2038 cifs_strtoUTF16(*out_path, treename, treename_len, cp);
2039 UniStrcat(*out_path, sep);
2040 UniStrcat(*out_path, path);
2041 unload_nls(cp);
2042
2043 return 0;
2044}
2045
Steve Frenchbea851b2018-06-14 21:56:32 -05002046int smb311_posix_mkdir(const unsigned int xid, struct inode *inode,
2047 umode_t mode, struct cifs_tcon *tcon,
2048 const char *full_path,
2049 struct cifs_sb_info *cifs_sb)
2050{
2051 struct smb_rqst rqst;
2052 struct smb2_create_req *req;
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002053 struct smb2_create_rsp *rsp = NULL;
Steve Frenchbea851b2018-06-14 21:56:32 -05002054 struct cifs_ses *ses = tcon->ses;
2055 struct kvec iov[3]; /* make sure at least one for each open context */
2056 struct kvec rsp_iov = {NULL, 0};
2057 int resp_buftype;
2058 int uni_path_len;
2059 __le16 *copy_path = NULL;
2060 int copy_size;
2061 int rc = 0;
2062 unsigned int n_iov = 2;
2063 __u32 file_attributes = 0;
2064 char *pc_buf = NULL;
2065 int flags = 0;
2066 unsigned int total_len;
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002067 __le16 *utf16_path = NULL;
Steve Frenchbea851b2018-06-14 21:56:32 -05002068
2069 cifs_dbg(FYI, "mkdir\n");
2070
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002071 /* resource #1: path allocation */
2072 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb);
2073 if (!utf16_path)
2074 return -ENOMEM;
2075
YueHaibing29cbfa12018-12-18 02:51:51 +00002076 if (!ses || !(ses->server)) {
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002077 rc = -EIO;
2078 goto err_free_path;
2079 }
Steve Frenchbea851b2018-06-14 21:56:32 -05002080
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002081 /* resource #2: request */
Steve Frenchbea851b2018-06-14 21:56:32 -05002082 rc = smb2_plain_req_init(SMB2_CREATE, tcon, (void **) &req, &total_len);
Steve Frenchbea851b2018-06-14 21:56:32 -05002083 if (rc)
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002084 goto err_free_path;
2085
Steve Frenchbea851b2018-06-14 21:56:32 -05002086
2087 if (smb3_encryption_required(tcon))
2088 flags |= CIFS_TRANSFORM_REQ;
2089
Steve Frenchbea851b2018-06-14 21:56:32 -05002090 req->ImpersonationLevel = IL_IMPERSONATION;
2091 req->DesiredAccess = cpu_to_le32(FILE_WRITE_ATTRIBUTES);
2092 /* File attributes ignored on open (used in create though) */
2093 req->FileAttributes = cpu_to_le32(file_attributes);
2094 req->ShareAccess = FILE_SHARE_ALL_LE;
2095 req->CreateDisposition = cpu_to_le32(FILE_CREATE);
2096 req->CreateOptions = cpu_to_le32(CREATE_NOT_FILE);
2097
2098 iov[0].iov_base = (char *)req;
2099 /* -1 since last byte is buf[0] which is sent below (path) */
2100 iov[0].iov_len = total_len - 1;
2101
2102 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
2103
2104 /* [MS-SMB2] 2.2.13 NameOffset:
2105 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2106 * the SMB2 header, the file name includes a prefix that will
2107 * be processed during DFS name normalization as specified in
2108 * section 3.3.5.9. Otherwise, the file name is relative to
2109 * the share that is identified by the TreeId in the SMB2
2110 * header.
2111 */
2112 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2113 int name_len;
2114
2115 req->sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
2116 rc = alloc_path_with_tree_prefix(&copy_path, &copy_size,
2117 &name_len,
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002118 tcon->treeName, utf16_path);
2119 if (rc)
2120 goto err_free_req;
2121
Steve Frenchbea851b2018-06-14 21:56:32 -05002122 req->NameLength = cpu_to_le16(name_len * 2);
2123 uni_path_len = copy_size;
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002124 /* free before overwriting resource */
2125 kfree(utf16_path);
2126 utf16_path = copy_path;
Steve Frenchbea851b2018-06-14 21:56:32 -05002127 } else {
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002128 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2;
Steve Frenchbea851b2018-06-14 21:56:32 -05002129 /* MUST set path len (NameLength) to 0 opening root of share */
2130 req->NameLength = cpu_to_le16(uni_path_len - 2);
2131 if (uni_path_len % 8 != 0) {
2132 copy_size = roundup(uni_path_len, 8);
2133 copy_path = kzalloc(copy_size, GFP_KERNEL);
2134 if (!copy_path) {
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002135 rc = -ENOMEM;
2136 goto err_free_req;
Steve Frenchbea851b2018-06-14 21:56:32 -05002137 }
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002138 memcpy((char *)copy_path, (const char *)utf16_path,
Steve Frenchbea851b2018-06-14 21:56:32 -05002139 uni_path_len);
2140 uni_path_len = copy_size;
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002141 /* free before overwriting resource */
2142 kfree(utf16_path);
2143 utf16_path = copy_path;
Steve Frenchbea851b2018-06-14 21:56:32 -05002144 }
2145 }
2146
2147 iov[1].iov_len = uni_path_len;
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002148 iov[1].iov_base = utf16_path;
Steve Frenchbea851b2018-06-14 21:56:32 -05002149 req->RequestedOplockLevel = SMB2_OPLOCK_LEVEL_NONE;
2150
2151 if (tcon->posix_extensions) {
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002152 /* resource #3: posix buf */
Steve Frenchbea851b2018-06-14 21:56:32 -05002153 rc = add_posix_context(iov, &n_iov, mode);
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002154 if (rc)
2155 goto err_free_req;
Steve Frenchbea851b2018-06-14 21:56:32 -05002156 pc_buf = iov[n_iov-1].iov_base;
2157 }
2158
2159
2160 memset(&rqst, 0, sizeof(struct smb_rqst));
2161 rqst.rq_iov = iov;
2162 rqst.rq_nvec = n_iov;
2163
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002164 /* resource #4: response buffer */
2165 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
2166 if (rc) {
Steve Frenchbea851b2018-06-14 21:56:32 -05002167 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
2168 trace_smb3_posix_mkdir_err(xid, tcon->tid, ses->Suid,
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002169 CREATE_NOT_FILE,
2170 FILE_WRITE_ATTRIBUTES, rc);
2171 goto err_free_rsp_buf;
2172 }
2173
2174 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
2175 trace_smb3_posix_mkdir_done(xid, rsp->PersistentFileId, tcon->tid,
2176 ses->Suid, CREATE_NOT_FILE,
2177 FILE_WRITE_ATTRIBUTES);
Steve Frenchbea851b2018-06-14 21:56:32 -05002178
2179 SMB2_close(xid, tcon, rsp->PersistentFileId, rsp->VolatileFileId);
2180
2181 /* Eventually save off posix specific response info and timestaps */
2182
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002183err_free_rsp_buf:
Steve Frenchbea851b2018-06-14 21:56:32 -05002184 free_rsp_buf(resp_buftype, rsp);
Aurelien Aptel256b4c32018-06-19 15:18:48 -07002185 kfree(pc_buf);
2186err_free_req:
2187 cifs_small_buf_release(req);
2188err_free_path:
2189 kfree(utf16_path);
Steve Frenchbea851b2018-06-14 21:56:32 -05002190 return rc;
Steve Frenchbea851b2018-06-14 21:56:32 -05002191}
Steve Frenchbea851b2018-06-14 21:56:32 -05002192
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002193int
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002194SMB2_open_init(struct cifs_tcon *tcon, struct smb_rqst *rqst, __u8 *oplock,
2195 struct cifs_open_parms *oparms, __le16 *path)
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002196{
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002197 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002198 struct smb2_create_req *req;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002199 unsigned int n_iov = 2;
Pavel Shilovskyca819832013-07-05 12:21:26 +04002200 __u32 file_attributes = 0;
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002201 int copy_size;
2202 int uni_path_len;
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11002203 unsigned int total_len;
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002204 struct kvec *iov = rqst->rq_iov;
2205 __le16 *copy_path;
2206 int rc;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002207
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11002208 rc = smb2_plain_req_init(SMB2_CREATE, tcon, (void **) &req, &total_len);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002209 if (rc)
2210 return rc;
2211
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002212 iov[0].iov_base = (char *)req;
2213 /* -1 since last byte is buf[0] which is sent below (path) */
2214 iov[0].iov_len = total_len - 1;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002215
Pavel Shilovsky064f6042013-07-09 18:20:30 +04002216 if (oparms->create_options & CREATE_OPTION_READONLY)
Pavel Shilovskyca819832013-07-05 12:21:26 +04002217 file_attributes |= ATTR_READONLY;
Steve Frenchdb8b6312014-09-22 05:13:55 -05002218 if (oparms->create_options & CREATE_OPTION_SPECIAL)
2219 file_attributes |= ATTR_SYSTEM;
Pavel Shilovskyca819832013-07-05 12:21:26 +04002220
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002221 req->ImpersonationLevel = IL_IMPERSONATION;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04002222 req->DesiredAccess = cpu_to_le32(oparms->desired_access);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002223 /* File attributes ignored on open (used in create though) */
2224 req->FileAttributes = cpu_to_le32(file_attributes);
2225 req->ShareAccess = FILE_SHARE_ALL_LE;
Pavel Shilovsky064f6042013-07-09 18:20:30 +04002226 req->CreateDisposition = cpu_to_le32(oparms->disposition);
2227 req->CreateOptions = cpu_to_le32(oparms->create_options & CREATE_OPTIONS_MASK);
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11002228 req->NameOffset = cpu_to_le16(sizeof(struct smb2_create_req));
Aurelien Aptelf0712922017-02-22 14:47:17 +01002229
2230 /* [MS-SMB2] 2.2.13 NameOffset:
2231 * If SMB2_FLAGS_DFS_OPERATIONS is set in the Flags field of
2232 * the SMB2 header, the file name includes a prefix that will
2233 * be processed during DFS name normalization as specified in
2234 * section 3.3.5.9. Otherwise, the file name is relative to
2235 * the share that is identified by the TreeId in the SMB2
2236 * header.
2237 */
2238 if (tcon->share_flags & SHI1005_FLAGS_DFS) {
2239 int name_len;
2240
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11002241 req->sync_hdr.Flags |= SMB2_FLAGS_DFS_OPERATIONS;
Aurelien Aptelf0712922017-02-22 14:47:17 +01002242 rc = alloc_path_with_tree_prefix(&copy_path, &copy_size,
2243 &name_len,
2244 tcon->treeName, path);
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002245 if (rc)
Aurelien Aptelf0712922017-02-22 14:47:17 +01002246 return rc;
2247 req->NameLength = cpu_to_le16(name_len * 2);
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04002248 uni_path_len = copy_size;
2249 path = copy_path;
Aurelien Aptelf0712922017-02-22 14:47:17 +01002250 } else {
2251 uni_path_len = (2 * UniStrnlen((wchar_t *)path, PATH_MAX)) + 2;
2252 /* MUST set path len (NameLength) to 0 opening root of share */
2253 req->NameLength = cpu_to_le16(uni_path_len - 2);
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002254 copy_size = uni_path_len;
2255 if (copy_size % 8 != 0)
2256 copy_size = roundup(copy_size, 8);
2257 copy_path = kzalloc(copy_size, GFP_KERNEL);
2258 if (!copy_path)
2259 return -ENOMEM;
2260 memcpy((char *)copy_path, (const char *)path,
2261 uni_path_len);
2262 uni_path_len = copy_size;
2263 path = copy_path;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002264 }
2265
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04002266 iov[1].iov_len = uni_path_len;
2267 iov[1].iov_base = path;
Pavel Shilovsky59aa3712013-07-04 19:41:24 +04002268
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07002269 if (!server->oplocks)
2270 *oplock = SMB2_OPLOCK_LEVEL_NONE;
2271
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04002272 if (!(server->capabilities & SMB2_GLOBAL_CAP_LEASING) ||
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07002273 *oplock == SMB2_OPLOCK_LEVEL_NONE)
2274 req->RequestedOplockLevel = *oplock;
Steve Frenchf8015682018-08-31 15:12:10 -05002275 else if (!(server->capabilities & SMB2_GLOBAL_CAP_DIRECTORY_LEASING) &&
2276 (oparms->create_options & CREATE_NOT_FILE))
2277 req->RequestedOplockLevel = *oplock; /* no srv lease support */
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07002278 else {
Stefano Brivio729c0c92018-07-05 15:10:02 +02002279 rc = add_lease_context(server, iov, &n_iov,
2280 oparms->fid->lease_key, oplock);
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002281 if (rc)
Pavel Shilovskyd22cbfe2013-07-04 19:10:00 +04002282 return rc;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07002283 }
2284
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04002285 if (*oplock == SMB2_OPLOCK_LEVEL_BATCH) {
2286 /* need to set Next field of lease context if we request it */
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04002287 if (server->capabilities & SMB2_GLOBAL_CAP_LEASING) {
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04002288 struct create_context *ccontext =
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002289 (struct create_context *)iov[n_iov-1].iov_base;
Steve French1c469432013-07-10 12:50:57 -05002290 ccontext->Next =
Pavel Shilovskya41a28b2013-09-04 13:07:41 +04002291 cpu_to_le32(server->vals->create_lease_size);
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04002292 }
Steve Frenchb56eae42015-11-03 09:26:27 -06002293
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002294 rc = add_durable_context(iov, &n_iov, oparms,
Steve Frenchb56eae42015-11-03 09:26:27 -06002295 tcon->use_persistent);
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002296 if (rc)
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04002297 return rc;
Pavel Shilovsky63eb3de2013-07-04 18:41:09 +04002298 }
2299
Steve Frenchce558b02018-05-31 19:16:54 -05002300 if (tcon->posix_extensions) {
2301 if (n_iov > 2) {
2302 struct create_context *ccontext =
2303 (struct create_context *)iov[n_iov-1].iov_base;
2304 ccontext->Next =
2305 cpu_to_le32(iov[n_iov-1].iov_len);
2306 }
2307
2308 rc = add_posix_context(iov, &n_iov, oparms->mode);
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002309 if (rc)
Steve Frenchce558b02018-05-31 19:16:54 -05002310 return rc;
Steve Frenchce558b02018-05-31 19:16:54 -05002311 }
Steve Frenchce558b02018-05-31 19:16:54 -05002312
Steve Frenchcdeaf9d2018-08-10 02:25:06 -05002313 if (tcon->snapshot_time) {
2314 cifs_dbg(FYI, "adding snapshot context\n");
2315 if (n_iov > 2) {
2316 struct create_context *ccontext =
2317 (struct create_context *)iov[n_iov-1].iov_base;
2318 ccontext->Next =
2319 cpu_to_le32(iov[n_iov-1].iov_len);
2320 }
2321
2322 rc = add_twarp_context(iov, &n_iov, tcon->snapshot_time);
2323 if (rc)
2324 return rc;
2325 }
2326
2327
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002328 rqst->rq_nvec = n_iov;
2329 return 0;
2330}
2331
2332/* rq_iov[0] is the request and is released by cifs_small_buf_release().
2333 * All other vectors are freed by kfree().
2334 */
2335void
2336SMB2_open_free(struct smb_rqst *rqst)
2337{
2338 int i;
2339
Ronnie Sahlberg32a1fb32018-10-24 11:50:33 +10002340 if (rqst && rqst->rq_iov) {
2341 cifs_small_buf_release(rqst->rq_iov[0].iov_base);
2342 for (i = 1; i < rqst->rq_nvec; i++)
2343 if (rqst->rq_iov[i].iov_base != smb2_padding)
2344 kfree(rqst->rq_iov[i].iov_base);
2345 }
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002346}
2347
2348int
2349SMB2_open(const unsigned int xid, struct cifs_open_parms *oparms, __le16 *path,
2350 __u8 *oplock, struct smb2_file_all_info *buf,
2351 struct kvec *err_iov, int *buftype)
2352{
2353 struct smb_rqst rqst;
2354 struct smb2_create_rsp *rsp = NULL;
2355 struct TCP_Server_Info *server;
2356 struct cifs_tcon *tcon = oparms->tcon;
2357 struct cifs_ses *ses = tcon->ses;
Ronnie Sahlberg4d8dfaf2018-08-21 11:49:21 +10002358 struct kvec iov[SMB2_CREATE_IOV_SIZE];
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002359 struct kvec rsp_iov = {NULL, 0};
Garry McNultyef2298a2018-10-03 20:51:21 +01002360 int resp_buftype = CIFS_NO_BUFFER;
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002361 int rc = 0;
2362 int flags = 0;
2363
2364 cifs_dbg(FYI, "create/open\n");
2365 if (ses && (ses->server))
2366 server = ses->server;
2367 else
2368 return -EIO;
2369
2370 if (smb3_encryption_required(tcon))
2371 flags |= CIFS_TRANSFORM_REQ;
2372
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002373 memset(&rqst, 0, sizeof(struct smb_rqst));
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002374 memset(&iov, 0, sizeof(iov));
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002375 rqst.rq_iov = iov;
Ronnie Sahlberg4d8dfaf2018-08-21 11:49:21 +10002376 rqst.rq_nvec = SMB2_CREATE_IOV_SIZE;
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002377
2378 rc = SMB2_open_init(tcon, &rqst, oplock, oparms, path);
2379 if (rc)
2380 goto creat_exit;
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002381
2382 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags,
Ronnie Sahlberg4f33bc32017-11-20 11:24:38 +11002383 &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002384 rsp = (struct smb2_create_rsp *)rsp_iov.iov_base;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002385
2386 if (rc != 0) {
2387 cifs_stats_fail_inc(tcon, SMB2_CREATE_HE);
Ronnie Sahlberg91cb74f2018-04-13 09:03:19 +10002388 if (err_iov && rsp) {
2389 *err_iov = rsp_iov;
Ronnie Sahlberg9d874c32018-06-08 13:21:18 +10002390 *buftype = resp_buftype;
Ronnie Sahlberg91cb74f2018-04-13 09:03:19 +10002391 resp_buftype = CIFS_NO_BUFFER;
2392 rsp = NULL;
2393 }
Steve French28d59362018-05-30 21:42:34 -05002394 trace_smb3_open_err(xid, tcon->tid, ses->Suid,
2395 oparms->create_options, oparms->desired_access, rc);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002396 goto creat_exit;
Steve French28d59362018-05-30 21:42:34 -05002397 } else
2398 trace_smb3_open_done(xid, rsp->PersistentFileId, tcon->tid,
2399 ses->Suid, oparms->create_options,
2400 oparms->desired_access);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002401
Steve Frenchfae80442018-10-19 17:14:32 -05002402 atomic_inc(&tcon->num_remote_opens);
Pavel Shilovsky064f6042013-07-09 18:20:30 +04002403 oparms->fid->persistent_fid = rsp->PersistentFileId;
2404 oparms->fid->volatile_fid = rsp->VolatileFileId;
Steve Frenchdfe33f92018-10-30 19:50:31 -05002405#ifdef CONFIG_CIFS_DEBUG2
2406 oparms->fid->mid = le64_to_cpu(rsp->sync_hdr.MessageId);
2407#endif /* CIFS_DEBUG2 */
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002408
2409 if (buf) {
2410 memcpy(buf, &rsp->CreationTime, 32);
2411 buf->AllocationSize = rsp->AllocationSize;
2412 buf->EndOfFile = rsp->EndofFile;
2413 buf->Attributes = rsp->FileAttributes;
2414 buf->NumberOfLinks = cpu_to_le32(1);
2415 buf->DeletePending = 0;
2416 }
Pavel Shilovsky2e44b282012-09-18 16:20:33 -07002417
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07002418 if (rsp->OplockLevel == SMB2_OPLOCK_LEVEL_LEASE)
Ronnie Sahlberg96164ab2018-04-26 08:10:18 -06002419 *oplock = parse_lease_state(server, rsp, &oparms->fid->epoch,
2420 oparms->fid->lease_key);
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -07002421 else
2422 *oplock = rsp->OplockLevel;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002423creat_exit:
Ronnie Sahlberg1eb9fb52018-08-08 15:07:46 +10002424 SMB2_open_free(&rqst);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002425 free_rsp_buf(resp_buftype, rsp);
2426 return rc;
2427}
2428
Steve French4a72daf2013-06-25 00:20:49 -05002429/*
2430 * SMB2 IOCTL is used for both IOCTLs and FSCTLs
2431 */
2432int
2433SMB2_ioctl(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
Aurelien Aptel63a83b82018-01-24 13:46:11 +01002434 u64 volatile_fid, u32 opcode, bool is_fsctl,
Aurelien Aptel51146622017-02-28 15:08:41 +01002435 char *in_data, u32 indatalen,
2436 char **out_data, u32 *plen /* returned data len */)
Steve French4a72daf2013-06-25 00:20:49 -05002437{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002438 struct smb_rqst rqst;
Steve French4a72daf2013-06-25 00:20:49 -05002439 struct smb2_ioctl_req *req;
2440 struct smb2_ioctl_rsp *rsp;
Steve French8e353102015-03-26 19:47:02 -05002441 struct cifs_ses *ses;
Steve French4a72daf2013-06-25 00:20:49 -05002442 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002443 struct kvec rsp_iov;
Steve French4a72daf2013-06-25 00:20:49 -05002444 int resp_buftype;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002445 int n_iov;
Steve French4a72daf2013-06-25 00:20:49 -05002446 int rc = 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002447 int flags = 0;
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002448 unsigned int total_len;
Steve French4a72daf2013-06-25 00:20:49 -05002449
2450 cifs_dbg(FYI, "SMB2 IOCTL\n");
2451
Steve French3d1a3742014-08-11 21:05:25 -05002452 if (out_data != NULL)
2453 *out_data = NULL;
2454
Steve French4a72daf2013-06-25 00:20:49 -05002455 /* zero out returned data len, in case of error */
2456 if (plen)
2457 *plen = 0;
2458
Steve French8e353102015-03-26 19:47:02 -05002459 if (tcon)
2460 ses = tcon->ses;
2461 else
2462 return -EIO;
2463
Christos Gkekas68a6afa2017-07-09 11:45:04 +01002464 if (!ses || !(ses->server))
Steve French4a72daf2013-06-25 00:20:49 -05002465 return -EIO;
2466
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002467 rc = smb2_plain_req_init(SMB2_IOCTL, tcon, (void **) &req, &total_len);
Steve French4a72daf2013-06-25 00:20:49 -05002468 if (rc)
2469 return rc;
2470
Steve French5a77e752018-05-09 17:43:08 -05002471 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002472 flags |= CIFS_TRANSFORM_REQ;
2473
Steve French4a72daf2013-06-25 00:20:49 -05002474 req->CtlCode = cpu_to_le32(opcode);
2475 req->PersistentFileId = persistent_fid;
2476 req->VolatileFileId = volatile_fid;
2477
2478 if (indatalen) {
2479 req->InputCount = cpu_to_le32(indatalen);
2480 /* do not set InputOffset if no input data */
2481 req->InputOffset =
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002482 cpu_to_le32(offsetof(struct smb2_ioctl_req, Buffer));
Steve French4a72daf2013-06-25 00:20:49 -05002483 iov[1].iov_base = in_data;
2484 iov[1].iov_len = indatalen;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002485 n_iov = 2;
Steve French4a72daf2013-06-25 00:20:49 -05002486 } else
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002487 n_iov = 1;
Steve French4a72daf2013-06-25 00:20:49 -05002488
2489 req->OutputOffset = 0;
2490 req->OutputCount = 0; /* MBZ */
2491
2492 /*
2493 * Could increase MaxOutputResponse, but that would require more
2494 * than one credit. Windows typically sets this smaller, but for some
2495 * ioctls it may be useful to allow server to send more. No point
2496 * limiting what the server can send as long as fits in one credit
Steve French7db0a6e2017-05-03 21:12:20 -05002497 * Unfortunately - we can not handle more than CIFS_MAX_MSG_SIZE
2498 * (by default, note that it can be overridden to make max larger)
2499 * in responses (except for read responses which can be bigger.
2500 * We may want to bump this limit up
Steve French4a72daf2013-06-25 00:20:49 -05002501 */
Steve French7db0a6e2017-05-03 21:12:20 -05002502 req->MaxOutputResponse = cpu_to_le32(CIFSMaxBufSize);
Steve French4a72daf2013-06-25 00:20:49 -05002503
2504 if (is_fsctl)
2505 req->Flags = cpu_to_le32(SMB2_0_IOCTL_IS_FSCTL);
2506 else
2507 req->Flags = 0;
2508
2509 iov[0].iov_base = (char *)req;
Steve French4a72daf2013-06-25 00:20:49 -05002510
Steve French7ff8d452013-10-14 00:44:19 -05002511 /*
2512 * If no input data, the size of ioctl struct in
2513 * protocol spec still includes a 1 byte data buffer,
2514 * but if input data passed to ioctl, we do not
2515 * want to double count this, so we do not send
2516 * the dummy one byte of data in iovec[0] if sending
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002517 * input data (in iovec[1]).
Steve French7ff8d452013-10-14 00:44:19 -05002518 */
2519
2520 if (indatalen) {
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002521 iov[0].iov_len = total_len - 1;
Steve French7ff8d452013-10-14 00:44:19 -05002522 } else
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002523 iov[0].iov_len = total_len;
Steve French7ff8d452013-10-14 00:44:19 -05002524
Steve French4587eee2017-10-25 15:58:31 -05002525 /* validate negotiate request must be signed - see MS-SMB2 3.2.5.5 */
2526 if (opcode == FSCTL_VALIDATE_NEGOTIATE_INFO)
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002527 req->sync_hdr.Flags |= SMB2_FLAGS_SIGNED;
Steve French4a72daf2013-06-25 00:20:49 -05002528
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002529 memset(&rqst, 0, sizeof(struct smb_rqst));
2530 rqst.rq_iov = iov;
2531 rqst.rq_nvec = n_iov;
2532
2533 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags,
Ronnie Sahlberg97754682017-11-09 12:14:20 +11002534 &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002535 cifs_small_buf_release(req);
2536 rsp = (struct smb2_ioctl_rsp *)rsp_iov.iov_base;
Steve French4a72daf2013-06-25 00:20:49 -05002537
Steve Frencheccb4422018-05-17 21:16:55 -05002538 if (rc != 0)
2539 trace_smb3_fsctl_err(xid, persistent_fid, tcon->tid,
2540 ses->Suid, 0, opcode, rc);
2541
Steve French9bf0c9c2013-11-16 18:05:28 -06002542 if ((rc != 0) && (rc != -EINVAL)) {
Steve French8e353102015-03-26 19:47:02 -05002543 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French4a72daf2013-06-25 00:20:49 -05002544 goto ioctl_exit;
Steve French9bf0c9c2013-11-16 18:05:28 -06002545 } else if (rc == -EINVAL) {
2546 if ((opcode != FSCTL_SRV_COPYCHUNK_WRITE) &&
2547 (opcode != FSCTL_SRV_COPYCHUNK)) {
Steve French8e353102015-03-26 19:47:02 -05002548 cifs_stats_fail_inc(tcon, SMB2_IOCTL_HE);
Steve French9bf0c9c2013-11-16 18:05:28 -06002549 goto ioctl_exit;
2550 }
Steve French4a72daf2013-06-25 00:20:49 -05002551 }
2552
2553 /* check if caller wants to look at return data or just return rc */
2554 if ((plen == NULL) || (out_data == NULL))
2555 goto ioctl_exit;
2556
2557 *plen = le32_to_cpu(rsp->OutputCount);
2558
2559 /* We check for obvious errors in the output buffer length and offset */
2560 if (*plen == 0)
2561 goto ioctl_exit; /* server returned no data */
Dan Carpenter2d204ee2018-09-10 14:12:07 +03002562 else if (*plen > rsp_iov.iov_len || *plen > 0xFF00) {
Steve French4a72daf2013-06-25 00:20:49 -05002563 cifs_dbg(VFS, "srv returned invalid ioctl length: %d\n", *plen);
2564 *plen = 0;
2565 rc = -EIO;
2566 goto ioctl_exit;
2567 }
2568
Dan Carpenter2d204ee2018-09-10 14:12:07 +03002569 if (rsp_iov.iov_len - *plen < le32_to_cpu(rsp->OutputOffset)) {
Steve French4a72daf2013-06-25 00:20:49 -05002570 cifs_dbg(VFS, "Malformed ioctl resp: len %d offset %d\n", *plen,
2571 le32_to_cpu(rsp->OutputOffset));
2572 *plen = 0;
2573 rc = -EIO;
2574 goto ioctl_exit;
2575 }
2576
YueHaibingd034fee2018-09-10 01:33:06 +00002577 *out_data = kmemdup((char *)rsp + le32_to_cpu(rsp->OutputOffset),
2578 *plen, GFP_KERNEL);
Steve French4a72daf2013-06-25 00:20:49 -05002579 if (*out_data == NULL) {
2580 rc = -ENOMEM;
2581 goto ioctl_exit;
2582 }
2583
Steve French4a72daf2013-06-25 00:20:49 -05002584ioctl_exit:
2585 free_rsp_buf(resp_buftype, rsp);
2586 return rc;
2587}
2588
Steve French64a5cfa2013-10-14 15:31:32 -05002589/*
2590 * Individual callers to ioctl worker function follow
2591 */
2592
2593int
2594SMB2_set_compression(const unsigned int xid, struct cifs_tcon *tcon,
2595 u64 persistent_fid, u64 volatile_fid)
2596{
2597 int rc;
Steve French64a5cfa2013-10-14 15:31:32 -05002598 struct compress_ioctl fsctl_input;
2599 char *ret_data = NULL;
2600
2601 fsctl_input.CompressionState =
Fabian Frederickbc09d142014-12-10 15:41:15 -08002602 cpu_to_le16(COMPRESSION_FORMAT_DEFAULT);
Steve French64a5cfa2013-10-14 15:31:32 -05002603
2604 rc = SMB2_ioctl(xid, tcon, persistent_fid, volatile_fid,
2605 FSCTL_SET_COMPRESSION, true /* is_fsctl */,
2606 (char *)&fsctl_input /* data input */,
2607 2 /* in data len */, &ret_data /* out data */, NULL);
2608
2609 cifs_dbg(FYI, "set compression rc %d\n", rc);
Steve French64a5cfa2013-10-14 15:31:32 -05002610
2611 return rc;
2612}
2613
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002614int
Ronnie Sahlberg8eb4ecf2018-08-01 09:26:16 +10002615SMB2_close_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
2616 u64 persistent_fid, u64 volatile_fid)
2617{
2618 struct smb2_close_req *req;
2619 struct kvec *iov = rqst->rq_iov;
2620 unsigned int total_len;
2621 int rc;
2622
2623 rc = smb2_plain_req_init(SMB2_CLOSE, tcon, (void **) &req, &total_len);
2624 if (rc)
2625 return rc;
2626
2627 req->PersistentFileId = persistent_fid;
2628 req->VolatileFileId = volatile_fid;
2629 iov[0].iov_base = (char *)req;
2630 iov[0].iov_len = total_len;
2631
2632 return 0;
2633}
2634
2635void
2636SMB2_close_free(struct smb_rqst *rqst)
2637{
Ronnie Sahlberg32a1fb32018-10-24 11:50:33 +10002638 if (rqst && rqst->rq_iov)
2639 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
Ronnie Sahlberg8eb4ecf2018-08-01 09:26:16 +10002640}
2641
2642int
Ronnie Sahlberg97ca1762018-04-26 08:50:49 -06002643SMB2_close_flags(const unsigned int xid, struct cifs_tcon *tcon,
2644 u64 persistent_fid, u64 volatile_fid, int flags)
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002645{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002646 struct smb_rqst rqst;
Ronnie Sahlberg8eb4ecf2018-08-01 09:26:16 +10002647 struct smb2_close_rsp *rsp = NULL;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002648 struct cifs_ses *ses = tcon->ses;
2649 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002650 struct kvec rsp_iov;
Garry McNultyef2298a2018-10-03 20:51:21 +01002651 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002652 int rc = 0;
2653
Joe Perchesf96637b2013-05-04 22:12:25 -05002654 cifs_dbg(FYI, "Close\n");
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002655
Christos Gkekas68a6afa2017-07-09 11:45:04 +01002656 if (!ses || !(ses->server))
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002657 return -EIO;
2658
Steve French5a77e752018-05-09 17:43:08 -05002659 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07002660 flags |= CIFS_TRANSFORM_REQ;
2661
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002662 memset(&rqst, 0, sizeof(struct smb_rqst));
Ronnie Sahlberg8eb4ecf2018-08-01 09:26:16 +10002663 memset(&iov, 0, sizeof(iov));
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002664 rqst.rq_iov = iov;
2665 rqst.rq_nvec = 1;
2666
Ronnie Sahlberg8eb4ecf2018-08-01 09:26:16 +10002667 rc = SMB2_close_init(tcon, &rqst, persistent_fid, volatile_fid);
2668 if (rc)
2669 goto close_exit;
2670
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002671 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002672 rsp = (struct smb2_close_rsp *)rsp_iov.iov_base;
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002673
2674 if (rc != 0) {
Namjae Jeond4a029d2014-08-20 19:39:59 +09002675 cifs_stats_fail_inc(tcon, SMB2_CLOSE_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05002676 trace_smb3_close_err(xid, persistent_fid, tcon->tid, ses->Suid,
2677 rc);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002678 goto close_exit;
2679 }
2680
Steve Frenchfae80442018-10-19 17:14:32 -05002681 atomic_dec(&tcon->num_remote_opens);
2682
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002683 /* BB FIXME - decode close response, update inode for caching */
2684
2685close_exit:
Ronnie Sahlberg8eb4ecf2018-08-01 09:26:16 +10002686 SMB2_close_free(&rqst);
Pavel Shilovsky2503a0d2011-12-26 22:58:46 +04002687 free_rsp_buf(resp_buftype, rsp);
2688 return rc;
2689}
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002690
Ronnie Sahlberg97ca1762018-04-26 08:50:49 -06002691int
2692SMB2_close(const unsigned int xid, struct cifs_tcon *tcon,
2693 u64 persistent_fid, u64 volatile_fid)
2694{
2695 return SMB2_close_flags(xid, tcon, persistent_fid, volatile_fid, 0);
2696}
2697
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10002698int
2699smb2_validate_iov(unsigned int offset, unsigned int buffer_length,
2700 struct kvec *iov, unsigned int min_buf_size)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002701{
Ronnie Sahlbergc1596ff2018-04-09 18:06:30 +10002702 unsigned int smb_len = iov->iov_len;
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10002703 char *end_of_smb = smb_len + (char *)iov->iov_base;
2704 char *begin_of_buf = offset + (char *)iov->iov_base;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002705 char *end_of_buf = begin_of_buf + buffer_length;
2706
2707
2708 if (buffer_length < min_buf_size) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002709 cifs_dbg(VFS, "buffer length %d smaller than minimum size %d\n",
2710 buffer_length, min_buf_size);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002711 return -EINVAL;
2712 }
2713
2714 /* check if beyond RFC1001 maximum length */
2715 if ((smb_len > 0x7FFFFF) || (buffer_length > 0x7FFFFF)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002716 cifs_dbg(VFS, "buffer length %d or smb length %d too large\n",
2717 buffer_length, smb_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002718 return -EINVAL;
2719 }
2720
2721 if ((begin_of_buf > end_of_smb) || (end_of_buf > end_of_smb)) {
Joe Perchesf96637b2013-05-04 22:12:25 -05002722 cifs_dbg(VFS, "illegal server response, bad offset to data\n");
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002723 return -EINVAL;
2724 }
2725
2726 return 0;
2727}
2728
2729/*
2730 * If SMB buffer fields are valid, copy into temporary buffer to hold result.
2731 * Caller must free buffer.
2732 */
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +10002733int
2734smb2_validate_and_copy_iov(unsigned int offset, unsigned int buffer_length,
2735 struct kvec *iov, unsigned int minbufsize,
2736 char *data)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002737{
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10002738 char *begin_of_buf = offset + (char *)iov->iov_base;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002739 int rc;
2740
2741 if (!data)
2742 return -EINVAL;
2743
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10002744 rc = smb2_validate_iov(offset, buffer_length, iov, minbufsize);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002745 if (rc)
2746 return rc;
2747
2748 memcpy(data, begin_of_buf, buffer_length);
2749
2750 return 0;
2751}
2752
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002753int
2754SMB2_query_info_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
2755 u64 persistent_fid, u64 volatile_fid,
2756 u8 info_class, u8 info_type, u32 additional_info,
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -05002757 size_t output_len, size_t input_len, void *input)
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002758{
2759 struct smb2_query_info_req *req;
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002760 struct kvec *iov = rqst->rq_iov;
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11002761 unsigned int total_len;
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002762 int rc;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002763
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11002764 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, (void **) &req,
2765 &total_len);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002766 if (rc)
2767 return rc;
2768
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002769 req->InfoType = info_type;
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002770 req->FileInfoClass = info_class;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002771 req->PersistentFileId = persistent_fid;
2772 req->VolatileFileId = volatile_fid;
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002773 req->AdditionalInformation = cpu_to_le32(additional_info);
Aurelien Aptel48923d22017-10-17 14:47:17 +02002774
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002775 req->OutputBufferLength = cpu_to_le32(output_len);
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -05002776 if (input_len) {
2777 req->InputBufferLength = cpu_to_le32(input_len);
2778 /* total_len for smb query request never close to le16 max */
2779 req->InputBufferOffset = cpu_to_le16(total_len - 1);
2780 memcpy(req->Buffer, input, input_len);
2781 }
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002782
2783 iov[0].iov_base = (char *)req;
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11002784 /* 1 for Buffer */
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -05002785 iov[0].iov_len = total_len - 1 + input_len;
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002786 return 0;
2787}
2788
2789void
2790SMB2_query_info_free(struct smb_rqst *rqst)
2791{
Ronnie Sahlberg32a1fb32018-10-24 11:50:33 +10002792 if (rqst && rqst->rq_iov)
2793 cifs_small_buf_release(rqst->rq_iov[0].iov_base); /* request */
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002794}
2795
2796static int
2797query_info(const unsigned int xid, struct cifs_tcon *tcon,
2798 u64 persistent_fid, u64 volatile_fid, u8 info_class, u8 info_type,
2799 u32 additional_info, size_t output_len, size_t min_len, void **data,
2800 u32 *dlen)
2801{
2802 struct smb_rqst rqst;
2803 struct smb2_query_info_rsp *rsp = NULL;
2804 struct kvec iov[1];
2805 struct kvec rsp_iov;
2806 int rc = 0;
Garry McNultyef2298a2018-10-03 20:51:21 +01002807 int resp_buftype = CIFS_NO_BUFFER;
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002808 struct cifs_ses *ses = tcon->ses;
2809 int flags = 0;
2810
2811 cifs_dbg(FYI, "Query Info\n");
2812
2813 if (!ses || !(ses->server))
2814 return -EIO;
2815
2816 if (smb3_encryption_required(tcon))
2817 flags |= CIFS_TRANSFORM_REQ;
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002818
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002819 memset(&rqst, 0, sizeof(struct smb_rqst));
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002820 memset(&iov, 0, sizeof(iov));
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002821 rqst.rq_iov = iov;
2822 rqst.rq_nvec = 1;
2823
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002824 rc = SMB2_query_info_init(tcon, &rqst, persistent_fid, volatile_fid,
2825 info_class, info_type, additional_info,
Ronnie Sahlbergf5b05d62018-10-07 19:19:58 -05002826 output_len, 0, NULL);
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002827 if (rc)
2828 goto qinf_exit;
2829
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10002830 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07002831 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
Pavel Shilovskye5d04882012-09-19 16:03:26 +04002832
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002833 if (rc) {
2834 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05002835 trace_smb3_query_info_err(xid, persistent_fid, tcon->tid,
2836 ses->Suid, info_class, (__u32)info_type, rc);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002837 goto qinf_exit;
2838 }
2839
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002840 if (dlen) {
2841 *dlen = le32_to_cpu(rsp->OutputBufferLength);
2842 if (!*data) {
2843 *data = kmalloc(*dlen, GFP_KERNEL);
2844 if (!*data) {
2845 cifs_dbg(VFS,
2846 "Error %d allocating memory for acl\n",
2847 rc);
2848 *dlen = 0;
2849 goto qinf_exit;
2850 }
2851 }
2852 }
2853
Ronnie Sahlbergc5a5f382018-09-03 13:33:41 +10002854 rc = smb2_validate_and_copy_iov(le16_to_cpu(rsp->OutputBufferOffset),
2855 le32_to_cpu(rsp->OutputBufferLength),
2856 &rsp_iov, min_len, *data);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002857
2858qinf_exit:
Ronnie Sahlberg296ecba2018-08-01 09:26:17 +10002859 SMB2_query_info_free(&rqst);
Pavel Shilovskybe4cb9e2011-12-29 17:06:33 +04002860 free_rsp_buf(resp_buftype, rsp);
2861 return rc;
2862}
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002863
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002864int SMB2_query_info(const unsigned int xid, struct cifs_tcon *tcon,
2865 u64 persistent_fid, u64 volatile_fid, struct smb2_file_all_info *data)
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002866{
2867 return query_info(xid, tcon, persistent_fid, volatile_fid,
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002868 FILE_ALL_INFORMATION, SMB2_O_INFO_FILE, 0,
Pavel Shilovsky1bbe4992014-08-22 13:32:11 +04002869 sizeof(struct smb2_file_all_info) + PATH_MAX * 2,
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002870 sizeof(struct smb2_file_all_info), (void **)&data,
2871 NULL);
2872}
2873
2874int
2875SMB2_query_acl(const unsigned int xid, struct cifs_tcon *tcon,
2876 u64 persistent_fid, u64 volatile_fid,
2877 void **data, u32 *plen)
2878{
2879 __u32 additional_info = OWNER_SECINFO | GROUP_SECINFO | DACL_SECINFO;
2880 *plen = 0;
2881
2882 return query_info(xid, tcon, persistent_fid, volatile_fid,
2883 0, SMB2_O_INFO_SECURITY, additional_info,
Shirish Pargaonkaree25c6d2018-06-04 06:46:22 -05002884 SMB2_MAX_BUFFER_SIZE, MIN_SEC_DESC_LEN, data, plen);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002885}
2886
2887int
2888SMB2_get_srv_num(const unsigned int xid, struct cifs_tcon *tcon,
2889 u64 persistent_fid, u64 volatile_fid, __le64 *uniqueid)
2890{
2891 return query_info(xid, tcon, persistent_fid, volatile_fid,
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002892 FILE_INTERNAL_INFORMATION, SMB2_O_INFO_FILE, 0,
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002893 sizeof(struct smb2_file_internal_info),
Shirish Pargaonkar42c493c2017-06-22 22:51:31 -05002894 sizeof(struct smb2_file_internal_info),
2895 (void **)&uniqueid, NULL);
Pavel Shilovskyf0df7372012-09-18 16:20:26 -07002896}
2897
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002898/*
2899 * This is a no-op for now. We're not really interested in the reply, but
2900 * rather in the fact that the server sent one and that server->lstrp
2901 * gets updated.
2902 *
2903 * FIXME: maybe we should consider checking that the reply matches request?
2904 */
2905static void
2906smb2_echo_callback(struct mid_q_entry *mid)
2907{
2908 struct TCP_Server_Info *server = mid->callback_data;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07002909 struct smb2_echo_rsp *rsp = (struct smb2_echo_rsp *)mid->resp_buf;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002910 unsigned int credits_received = 1;
2911
2912 if (mid->mid_state == MID_RESPONSE_RECEIVED)
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10002913 credits_received = le16_to_cpu(rsp->sync_hdr.CreditRequest);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002914
2915 DeleteMidQEntry(mid);
2916 add_credits(server, credits_received, CIFS_ECHO_OP);
2917}
2918
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002919void smb2_reconnect_server(struct work_struct *work)
2920{
2921 struct TCP_Server_Info *server = container_of(work,
2922 struct TCP_Server_Info, reconnect.work);
2923 struct cifs_ses *ses;
2924 struct cifs_tcon *tcon, *tcon2;
2925 struct list_head tmp_list;
2926 int tcon_exist = false;
Germano Percossi18ea4312017-04-07 12:29:36 +01002927 int rc;
2928 int resched = false;
2929
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002930
2931 /* Prevent simultaneous reconnects that can corrupt tcon->rlist list */
2932 mutex_lock(&server->reconnect_mutex);
2933
2934 INIT_LIST_HEAD(&tmp_list);
2935 cifs_dbg(FYI, "Need negotiate, reconnecting tcons\n");
2936
2937 spin_lock(&cifs_tcp_ses_lock);
2938 list_for_each_entry(ses, &server->smb_ses_list, smb_ses_list) {
2939 list_for_each_entry(tcon, &ses->tcon_list, tcon_list) {
Pavel Shilovsky96a988f2016-11-29 11:31:23 -08002940 if (tcon->need_reconnect || tcon->need_reopen_files) {
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002941 tcon->tc_count++;
2942 list_add_tail(&tcon->rlist, &tmp_list);
2943 tcon_exist = true;
2944 }
2945 }
Aurelien Aptelb327a712018-01-24 13:46:10 +01002946 if (ses->tcon_ipc && ses->tcon_ipc->need_reconnect) {
2947 list_add_tail(&ses->tcon_ipc->rlist, &tmp_list);
2948 tcon_exist = true;
2949 }
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002950 }
2951 /*
2952 * Get the reference to server struct to be sure that the last call of
2953 * cifs_put_tcon() in the loop below won't release the server pointer.
2954 */
2955 if (tcon_exist)
2956 server->srv_count++;
2957
2958 spin_unlock(&cifs_tcp_ses_lock);
2959
2960 list_for_each_entry_safe(tcon, tcon2, &tmp_list, rlist) {
Germano Percossi18ea4312017-04-07 12:29:36 +01002961 rc = smb2_reconnect(SMB2_INTERNAL_CMD, tcon);
2962 if (!rc)
Pavel Shilovsky96a988f2016-11-29 11:31:23 -08002963 cifs_reopen_persistent_handles(tcon);
Germano Percossi18ea4312017-04-07 12:29:36 +01002964 else
2965 resched = true;
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002966 list_del_init(&tcon->rlist);
2967 cifs_put_tcon(tcon);
2968 }
2969
2970 cifs_dbg(FYI, "Reconnecting tcons finished\n");
Germano Percossi18ea4312017-04-07 12:29:36 +01002971 if (resched)
2972 queue_delayed_work(cifsiod_wq, &server->reconnect, 2 * HZ);
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002973 mutex_unlock(&server->reconnect_mutex);
2974
2975 /* now we can safely release srv struct */
2976 if (tcon_exist)
2977 cifs_put_tcp_session(server, 1);
2978}
2979
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002980int
2981SMB2_echo(struct TCP_Server_Info *server)
2982{
2983 struct smb2_echo_req *req;
2984 int rc = 0;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10002985 struct kvec iov[1];
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08002986 struct smb_rqst rqst = { .rq_iov = iov,
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10002987 .rq_nvec = 1 };
Ronnie Sahlberg7f7ae752017-11-09 12:14:21 +11002988 unsigned int total_len;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002989
Joe Perchesf96637b2013-05-04 22:12:25 -05002990 cifs_dbg(FYI, "In echo request\n");
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002991
Steve French4fcd1812016-06-22 20:12:05 -05002992 if (server->tcpStatus == CifsNeedNegotiate) {
Pavel Shilovsky53e0e112016-11-04 11:50:31 -07002993 /* No need to send echo on newly established connections */
2994 queue_delayed_work(cifsiod_wq, &server->reconnect, 0);
2995 return rc;
Steve French4fcd1812016-06-22 20:12:05 -05002996 }
2997
Ronnie Sahlberg7f7ae752017-11-09 12:14:21 +11002998 rc = smb2_plain_req_init(SMB2_ECHO, NULL, (void **)&req, &total_len);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04002999 if (rc)
3000 return rc;
3001
Ronnie Sahlberg7f7ae752017-11-09 12:14:21 +11003002 req->sync_hdr.CreditRequest = cpu_to_le16(1);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04003003
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003004 iov[0].iov_len = total_len;
3005 iov[0].iov_base = (char *)req;
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04003006
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -08003007 rc = cifs_call_async(server, &rqst, NULL, smb2_echo_callback, NULL,
3008 server, CIFS_ECHO_OP);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04003009 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003010 cifs_dbg(FYI, "Echo request failed: %d\n", rc);
Pavel Shilovsky9094fad2012-07-12 18:30:44 +04003011
3012 cifs_small_buf_release(req);
3013 return rc;
3014}
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003015
3016int
3017SMB2_flush(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
3018 u64 volatile_fid)
3019{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003020 struct smb_rqst rqst;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003021 struct smb2_flush_req *req;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003022 struct cifs_ses *ses = tcon->ses;
3023 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003024 struct kvec rsp_iov;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003025 int resp_buftype;
3026 int rc = 0;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003027 int flags = 0;
Ronnie Sahlberg1f444e42017-11-20 11:24:39 +11003028 unsigned int total_len;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003029
Joe Perchesf96637b2013-05-04 22:12:25 -05003030 cifs_dbg(FYI, "Flush\n");
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003031
Christos Gkekas68a6afa2017-07-09 11:45:04 +01003032 if (!ses || !(ses->server))
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003033 return -EIO;
3034
Ronnie Sahlberg1f444e42017-11-20 11:24:39 +11003035 rc = smb2_plain_req_init(SMB2_FLUSH, tcon, (void **) &req, &total_len);
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003036 if (rc)
3037 return rc;
3038
Steve French5a77e752018-05-09 17:43:08 -05003039 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003040 flags |= CIFS_TRANSFORM_REQ;
3041
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003042 req->PersistentFileId = persistent_fid;
3043 req->VolatileFileId = volatile_fid;
3044
3045 iov[0].iov_base = (char *)req;
Ronnie Sahlberg1f444e42017-11-20 11:24:39 +11003046 iov[0].iov_len = total_len;
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003047
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003048 memset(&rqst, 0, sizeof(struct smb_rqst));
3049 rqst.rq_iov = iov;
3050 rqst.rq_nvec = 1;
3051
3052 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003053 cifs_small_buf_release(req);
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003054
Steve Frencheccb4422018-05-17 21:16:55 -05003055 if (rc != 0) {
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003056 cifs_stats_fail_inc(tcon, SMB2_FLUSH_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05003057 trace_smb3_flush_err(xid, persistent_fid, tcon->tid, ses->Suid,
3058 rc);
3059 }
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003060
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003061 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovsky7a5cfb12012-09-18 16:20:28 -07003062 return rc;
3063}
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003064
3065/*
3066 * To form a chain of read requests, any read requests after the first should
3067 * have the end_of_chain boolean set to true.
3068 */
3069static int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003070smb2_new_read_req(void **buf, unsigned int *total_len,
Long Li2dabfd52017-11-07 01:54:53 -07003071 struct cifs_io_parms *io_parms, struct cifs_readdata *rdata,
3072 unsigned int remaining_bytes, int request_type)
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003073{
3074 int rc = -EACCES;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003075 struct smb2_read_plain_req *req = NULL;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003076 struct smb2_sync_hdr *shdr;
Long Li2dabfd52017-11-07 01:54:53 -07003077 struct TCP_Server_Info *server;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003078
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003079 rc = smb2_plain_req_init(SMB2_READ, io_parms->tcon, (void **) &req,
3080 total_len);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003081 if (rc)
3082 return rc;
Long Li2dabfd52017-11-07 01:54:53 -07003083
3084 server = io_parms->tcon->ses->server;
3085 if (server == NULL)
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003086 return -ECONNABORTED;
3087
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003088 shdr = &req->sync_hdr;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003089 shdr->ProcessId = cpu_to_le32(io_parms->pid);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003090
3091 req->PersistentFileId = io_parms->persistent_fid;
3092 req->VolatileFileId = io_parms->volatile_fid;
3093 req->ReadChannelInfoOffset = 0; /* reserved */
3094 req->ReadChannelInfoLength = 0; /* reserved */
3095 req->Channel = 0; /* reserved */
3096 req->MinimumCount = 0;
3097 req->Length = cpu_to_le32(io_parms->length);
3098 req->Offset = cpu_to_le64(io_parms->offset);
Long Libd3dcc62017-11-22 17:38:47 -07003099#ifdef CONFIG_CIFS_SMB_DIRECT
3100 /*
3101 * If we want to do a RDMA write, fill in and append
3102 * smbd_buffer_descriptor_v1 to the end of read request
3103 */
Long Libb4c0412018-04-17 12:17:08 -07003104 if (server->rdma && rdata && !server->sign &&
Long Libd3dcc62017-11-22 17:38:47 -07003105 rdata->bytes >= server->smbd_conn->rdma_readwrite_threshold) {
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003106
Long Libd3dcc62017-11-22 17:38:47 -07003107 struct smbd_buffer_descriptor_v1 *v1;
3108 bool need_invalidate =
3109 io_parms->tcon->ses->server->dialect == SMB30_PROT_ID;
3110
3111 rdata->mr = smbd_register_mr(
3112 server->smbd_conn, rdata->pages,
Long Li7cf20bc2018-05-30 12:48:02 -07003113 rdata->nr_pages, rdata->page_offset,
3114 rdata->tailsz, true, need_invalidate);
Long Libd3dcc62017-11-22 17:38:47 -07003115 if (!rdata->mr)
3116 return -ENOBUFS;
3117
3118 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
3119 if (need_invalidate)
3120 req->Channel = SMB2_CHANNEL_RDMA_V1;
3121 req->ReadChannelInfoOffset =
Steve French2026b062018-01-24 23:07:41 -06003122 cpu_to_le16(offsetof(struct smb2_read_plain_req, Buffer));
Long Libd3dcc62017-11-22 17:38:47 -07003123 req->ReadChannelInfoLength =
Steve French2026b062018-01-24 23:07:41 -06003124 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
Long Libd3dcc62017-11-22 17:38:47 -07003125 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
Steve French2026b062018-01-24 23:07:41 -06003126 v1->offset = cpu_to_le64(rdata->mr->mr->iova);
3127 v1->token = cpu_to_le32(rdata->mr->mr->rkey);
3128 v1->length = cpu_to_le32(rdata->mr->mr->length);
Long Libd3dcc62017-11-22 17:38:47 -07003129
3130 *total_len += sizeof(*v1) - 1;
3131 }
3132#endif
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003133 if (request_type & CHAINED_REQUEST) {
3134 if (!(request_type & END_OF_CHAIN)) {
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003135 /* next 8-byte aligned request */
3136 *total_len = DIV_ROUND_UP(*total_len, 8) * 8;
3137 shdr->NextCommand = cpu_to_le32(*total_len);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003138 } else /* END_OF_CHAIN */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003139 shdr->NextCommand = 0;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003140 if (request_type & RELATED_REQUEST) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003141 shdr->Flags |= SMB2_FLAGS_RELATED_OPERATIONS;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003142 /*
3143 * Related requests use info from previous read request
3144 * in chain.
3145 */
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003146 shdr->SessionId = 0xFFFFFFFF;
3147 shdr->TreeId = 0xFFFFFFFF;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003148 req->PersistentFileId = 0xFFFFFFFF;
3149 req->VolatileFileId = 0xFFFFFFFF;
3150 }
3151 }
3152 if (remaining_bytes > io_parms->length)
3153 req->RemainingBytes = cpu_to_le32(remaining_bytes);
3154 else
3155 req->RemainingBytes = 0;
3156
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003157 *buf = req;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003158 return rc;
3159}
3160
3161static void
3162smb2_readv_callback(struct mid_q_entry *mid)
3163{
3164 struct cifs_readdata *rdata = mid->callback_data;
3165 struct cifs_tcon *tcon = tlink_tcon(rdata->cfile->tlink);
3166 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003167 struct smb2_sync_hdr *shdr =
Ronnie Sahlberg977b6172018-06-01 10:53:02 +10003168 (struct smb2_sync_hdr *)rdata->iov[0].iov_base;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003169 unsigned int credits_received = 1;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003170 struct smb_rqst rqst = { .rq_iov = rdata->iov,
3171 .rq_nvec = 2,
Jeff Layton8321fec2012-09-19 06:22:32 -07003172 .rq_pages = rdata->pages,
Long Li1dbe3462018-05-30 12:47:55 -07003173 .rq_offset = rdata->page_offset,
Jeff Layton8321fec2012-09-19 06:22:32 -07003174 .rq_npages = rdata->nr_pages,
3175 .rq_pagesz = rdata->pagesz,
3176 .rq_tailsz = rdata->tailsz };
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003177
Joe Perchesf96637b2013-05-04 22:12:25 -05003178 cifs_dbg(FYI, "%s: mid=%llu state=%d result=%d bytes=%u\n",
3179 __func__, mid->mid, mid->mid_state, rdata->result,
3180 rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003181
3182 switch (mid->mid_state) {
3183 case MID_RESPONSE_RECEIVED:
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003184 credits_received = le16_to_cpu(shdr->CreditRequest);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003185 /* result already set, check signature */
Pavel Shilovsky4326ed22016-11-17 15:24:46 -08003186 if (server->sign && !mid->decrypted) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07003187 int rc;
3188
Jeff Layton0b688cf2012-09-18 16:20:34 -07003189 rc = smb2_verify_signature(&rqst, server);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07003190 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -05003191 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
3192 rc);
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07003193 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003194 /* FIXME: should this be counted toward the initiating task? */
Pavel Shilovsky34a54d62014-07-10 10:03:29 +04003195 task_io_account_read(rdata->got_bytes);
3196 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003197 break;
3198 case MID_REQUEST_SUBMITTED:
3199 case MID_RETRY_NEEDED:
3200 rdata->result = -EAGAIN;
Pavel Shilovskyd913ed12014-07-10 11:31:48 +04003201 if (server->sign && rdata->got_bytes)
3202 /* reset bytes number since we can not check a sign */
3203 rdata->got_bytes = 0;
3204 /* FIXME: should this be counted toward the initiating task? */
3205 task_io_account_read(rdata->got_bytes);
3206 cifs_stats_bytes_read(tcon, rdata->got_bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003207 break;
3208 default:
3209 if (rdata->result != -ENODATA)
3210 rdata->result = -EIO;
3211 }
Long Libd3dcc62017-11-22 17:38:47 -07003212#ifdef CONFIG_CIFS_SMB_DIRECT
3213 /*
3214 * If this rdata has a memmory registered, the MR can be freed
3215 * MR needs to be freed as soon as I/O finishes to prevent deadlock
3216 * because they have limited number and are used for future I/Os
3217 */
3218 if (rdata->mr) {
3219 smbd_deregister_mr(rdata->mr);
3220 rdata->mr = NULL;
3221 }
3222#endif
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003223 if (rdata->result)
3224 cifs_stats_fail_inc(tcon, SMB2_READ_HE);
3225
3226 queue_work(cifsiod_wq, &rdata->work);
3227 DeleteMidQEntry(mid);
3228 add_credits(server, credits_received, 0);
3229}
3230
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003231/* smb2_async_readv - send an async read, and set up mid to handle result */
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003232int
3233smb2_async_readv(struct cifs_readdata *rdata)
3234{
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003235 int rc, flags = 0;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003236 char *buf;
3237 struct smb2_sync_hdr *shdr;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003238 struct cifs_io_parms io_parms;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003239 struct smb_rqst rqst = { .rq_iov = rdata->iov,
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003240 .rq_nvec = 1 };
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003241 struct TCP_Server_Info *server;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003242 unsigned int total_len;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003243
Joe Perchesf96637b2013-05-04 22:12:25 -05003244 cifs_dbg(FYI, "%s: offset=%llu bytes=%u\n",
3245 __func__, rdata->offset, rdata->bytes);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003246
3247 io_parms.tcon = tlink_tcon(rdata->cfile->tlink);
3248 io_parms.offset = rdata->offset;
3249 io_parms.length = rdata->bytes;
3250 io_parms.persistent_fid = rdata->cfile->fid.persistent_fid;
3251 io_parms.volatile_fid = rdata->cfile->fid.volatile_fid;
3252 io_parms.pid = rdata->pid;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003253
3254 server = io_parms.tcon->ses->server;
3255
Long Li2dabfd52017-11-07 01:54:53 -07003256 rc = smb2_new_read_req(
3257 (void **) &buf, &total_len, &io_parms, rdata, 0, 0);
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003258 if (rc) {
3259 if (rc == -EAGAIN && rdata->credits) {
3260 /* credits was reset by reconnect */
3261 rdata->credits = 0;
3262 /* reduce in_flight value since we won't send the req */
3263 spin_lock(&server->req_lock);
3264 server->in_flight--;
3265 spin_unlock(&server->req_lock);
3266 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003267 return rc;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003268 }
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003269
Steve French5a77e752018-05-09 17:43:08 -05003270 if (smb3_encryption_required(io_parms.tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003271 flags |= CIFS_TRANSFORM_REQ;
3272
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003273 rdata->iov[0].iov_base = buf;
3274 rdata->iov[0].iov_len = total_len;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003275
3276 shdr = (struct smb2_sync_hdr *)buf;
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003277
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003278 if (rdata->credits) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003279 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(rdata->bytes,
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003280 SMB2_MAX_BUFFER_SIZE));
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003281 shdr->CreditRequest = shdr->CreditCharge;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003282 spin_lock(&server->req_lock);
3283 server->credits += rdata->credits -
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003284 le16_to_cpu(shdr->CreditCharge);
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003285 spin_unlock(&server->req_lock);
3286 wake_up(&server->request_q);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003287 flags |= CIFS_HAS_CREDITS;
Pavel Shilovskybed9da02014-06-25 11:28:57 +04003288 }
3289
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003290 kref_get(&rdata->refcount);
Jeff Laytonfec344e2012-09-18 16:20:35 -07003291 rc = cifs_call_async(io_parms.tcon->ses->server, &rqst,
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003292 cifs_readv_receive, smb2_readv_callback,
Pavel Shilovsky4326ed22016-11-17 15:24:46 -08003293 smb3_handle_read_data, rdata, flags);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04003294 if (rc) {
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003295 kref_put(&rdata->refcount, cifs_readdata_release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04003296 cifs_stats_fail_inc(io_parms.tcon, SMB2_READ_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05003297 trace_smb3_read_err(rc, 0 /* xid */, io_parms.persistent_fid,
3298 io_parms.tcon->tid, io_parms.tcon->ses->Suid,
3299 io_parms.offset, io_parms.length);
3300 } else
3301 trace_smb3_read_done(0 /* xid */, io_parms.persistent_fid,
3302 io_parms.tcon->tid, io_parms.tcon->ses->Suid,
3303 io_parms.offset, io_parms.length);
Pavel Shilovsky09a47072012-09-18 16:20:29 -07003304
3305 cifs_small_buf_release(buf);
3306 return rc;
3307}
Pavel Shilovsky33319142012-09-18 16:20:29 -07003308
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003309int
3310SMB2_read(const unsigned int xid, struct cifs_io_parms *io_parms,
3311 unsigned int *nbytes, char **buf, int *buf_type)
3312{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003313 struct smb_rqst rqst;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003314 int resp_buftype, rc = -EACCES;
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003315 struct smb2_read_plain_req *req = NULL;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003316 struct smb2_read_rsp *rsp = NULL;
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003317 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003318 struct kvec rsp_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003319 unsigned int total_len;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003320 int flags = CIFS_LOG_ERROR;
3321 struct cifs_ses *ses = io_parms->tcon->ses;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003322
3323 *nbytes = 0;
Long Li2dabfd52017-11-07 01:54:53 -07003324 rc = smb2_new_read_req((void **)&req, &total_len, io_parms, NULL, 0, 0);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003325 if (rc)
3326 return rc;
3327
Steve French5a77e752018-05-09 17:43:08 -05003328 if (smb3_encryption_required(io_parms->tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003329 flags |= CIFS_TRANSFORM_REQ;
3330
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003331 iov[0].iov_base = (char *)req;
3332 iov[0].iov_len = total_len;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003333
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003334 memset(&rqst, 0, sizeof(struct smb_rqst));
3335 rqst.rq_iov = iov;
3336 rqst.rq_nvec = 1;
3337
3338 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08003339 cifs_small_buf_release(req);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003340
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003341 rsp = (struct smb2_read_rsp *)rsp_iov.iov_base;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003342
3343 if (rc) {
Ronnie Sahlberga821df32017-11-21 09:36:33 +11003344 if (rc != -ENODATA) {
3345 cifs_stats_fail_inc(io_parms->tcon, SMB2_READ_HE);
3346 cifs_dbg(VFS, "Send error in read = %d\n", rc);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003347 }
Steve Frencheccb4422018-05-17 21:16:55 -05003348 trace_smb3_read_err(rc, xid, req->PersistentFileId,
3349 io_parms->tcon->tid, ses->Suid,
3350 io_parms->offset, io_parms->length);
Ronnie Sahlberga821df32017-11-21 09:36:33 +11003351 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
3352 return rc == -ENODATA ? 0 : rc;
Steve Frencheccb4422018-05-17 21:16:55 -05003353 } else
3354 trace_smb3_read_done(xid, req->PersistentFileId,
3355 io_parms->tcon->tid, ses->Suid,
3356 io_parms->offset, io_parms->length);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003357
Ronnie Sahlberga821df32017-11-21 09:36:33 +11003358 *nbytes = le32_to_cpu(rsp->DataLength);
3359 if ((*nbytes > CIFS_MAX_MSGSIZE) ||
3360 (*nbytes > io_parms->length)) {
3361 cifs_dbg(FYI, "bad length %d for count %d\n",
3362 *nbytes, io_parms->length);
3363 rc = -EIO;
3364 *nbytes = 0;
3365 }
3366
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003367 if (*buf) {
Ronnie Sahlberg977b6172018-06-01 10:53:02 +10003368 memcpy(*buf, (char *)rsp + rsp->DataOffset, *nbytes);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003369 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003370 } else if (resp_buftype != CIFS_NO_BUFFER) {
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003371 *buf = rsp_iov.iov_base;
Pavel Shilovskyd8e05032012-09-18 16:20:30 -07003372 if (resp_buftype == CIFS_SMALL_BUFFER)
3373 *buf_type = CIFS_SMALL_BUFFER;
3374 else if (resp_buftype == CIFS_LARGE_BUFFER)
3375 *buf_type = CIFS_LARGE_BUFFER;
3376 }
3377 return rc;
3378}
3379
Pavel Shilovsky33319142012-09-18 16:20:29 -07003380/*
3381 * Check the mid_state and signature on received buffer (if any), and queue the
3382 * workqueue completion task.
3383 */
3384static void
3385smb2_writev_callback(struct mid_q_entry *mid)
3386{
3387 struct cifs_writedata *wdata = mid->callback_data;
3388 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
3389 unsigned int written;
3390 struct smb2_write_rsp *rsp = (struct smb2_write_rsp *)mid->resp_buf;
3391 unsigned int credits_received = 1;
3392
3393 switch (mid->mid_state) {
3394 case MID_RESPONSE_RECEIVED:
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10003395 credits_received = le16_to_cpu(rsp->sync_hdr.CreditRequest);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003396 wdata->result = smb2_check_receive(mid, tcon->ses->server, 0);
3397 if (wdata->result != 0)
3398 break;
3399
3400 written = le32_to_cpu(rsp->DataLength);
3401 /*
3402 * Mask off high 16 bits when bytes written as returned
3403 * by the server is greater than bytes requested by the
3404 * client. OS/2 servers are known to set incorrect
3405 * CountHigh values.
3406 */
3407 if (written > wdata->bytes)
3408 written &= 0xFFFF;
3409
3410 if (written < wdata->bytes)
3411 wdata->result = -ENOSPC;
3412 else
3413 wdata->bytes = written;
3414 break;
3415 case MID_REQUEST_SUBMITTED:
3416 case MID_RETRY_NEEDED:
3417 wdata->result = -EAGAIN;
3418 break;
3419 default:
3420 wdata->result = -EIO;
3421 break;
3422 }
Long Lidb223a52017-11-22 17:38:45 -07003423#ifdef CONFIG_CIFS_SMB_DIRECT
3424 /*
3425 * If this wdata has a memory registered, the MR can be freed
3426 * The number of MRs available is limited, it's important to recover
3427 * used MR as soon as I/O is finished. Hold MR longer in the later
3428 * I/O process can possibly result in I/O deadlock due to lack of MR
3429 * to send request on I/O retry
3430 */
3431 if (wdata->mr) {
3432 smbd_deregister_mr(wdata->mr);
3433 wdata->mr = NULL;
3434 }
3435#endif
Pavel Shilovsky33319142012-09-18 16:20:29 -07003436 if (wdata->result)
3437 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
3438
3439 queue_work(cifsiod_wq, &wdata->work);
3440 DeleteMidQEntry(mid);
3441 add_credits(tcon->ses->server, credits_received, 0);
3442}
3443
3444/* smb2_async_writev - send an async write, and set up mid to handle result */
3445int
Steve French4a5c80d2014-02-07 20:45:12 -06003446smb2_async_writev(struct cifs_writedata *wdata,
3447 void (*release)(struct kref *kref))
Pavel Shilovsky33319142012-09-18 16:20:29 -07003448{
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003449 int rc = -EACCES, flags = 0;
Pavel Shilovsky33319142012-09-18 16:20:29 -07003450 struct smb2_write_req *req = NULL;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003451 struct smb2_sync_hdr *shdr;
Pavel Shilovsky33319142012-09-18 16:20:29 -07003452 struct cifs_tcon *tcon = tlink_tcon(wdata->cfile->tlink);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003453 struct TCP_Server_Info *server = tcon->ses->server;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003454 struct kvec iov[1];
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003455 struct smb_rqst rqst = { };
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003456 unsigned int total_len;
Pavel Shilovsky33319142012-09-18 16:20:29 -07003457
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003458 rc = smb2_plain_req_init(SMB2_WRITE, tcon, (void **) &req, &total_len);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003459 if (rc) {
3460 if (rc == -EAGAIN && wdata->credits) {
3461 /* credits was reset by reconnect */
3462 wdata->credits = 0;
3463 /* reduce in_flight value since we won't send the req */
3464 spin_lock(&server->req_lock);
3465 server->in_flight--;
3466 spin_unlock(&server->req_lock);
3467 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07003468 goto async_writev_out;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003469 }
Pavel Shilovsky33319142012-09-18 16:20:29 -07003470
Steve French5a77e752018-05-09 17:43:08 -05003471 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003472 flags |= CIFS_TRANSFORM_REQ;
3473
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003474 shdr = (struct smb2_sync_hdr *)req;
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003475 shdr->ProcessId = cpu_to_le32(wdata->cfile->pid);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003476
3477 req->PersistentFileId = wdata->cfile->fid.persistent_fid;
3478 req->VolatileFileId = wdata->cfile->fid.volatile_fid;
3479 req->WriteChannelInfoOffset = 0;
3480 req->WriteChannelInfoLength = 0;
3481 req->Channel = 0;
3482 req->Offset = cpu_to_le64(wdata->offset);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003483 req->DataOffset = cpu_to_le16(
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003484 offsetof(struct smb2_write_req, Buffer));
Pavel Shilovsky33319142012-09-18 16:20:29 -07003485 req->RemainingBytes = 0;
Long Lidb223a52017-11-22 17:38:45 -07003486#ifdef CONFIG_CIFS_SMB_DIRECT
3487 /*
3488 * If we want to do a server RDMA read, fill in and append
3489 * smbd_buffer_descriptor_v1 to the end of write request
3490 */
Long Libb4c0412018-04-17 12:17:08 -07003491 if (server->rdma && !server->sign && wdata->bytes >=
Long Lidb223a52017-11-22 17:38:45 -07003492 server->smbd_conn->rdma_readwrite_threshold) {
Pavel Shilovsky33319142012-09-18 16:20:29 -07003493
Long Lidb223a52017-11-22 17:38:45 -07003494 struct smbd_buffer_descriptor_v1 *v1;
3495 bool need_invalidate = server->dialect == SMB30_PROT_ID;
3496
3497 wdata->mr = smbd_register_mr(
3498 server->smbd_conn, wdata->pages,
Long Li7cf20bc2018-05-30 12:48:02 -07003499 wdata->nr_pages, wdata->page_offset,
3500 wdata->tailsz, false, need_invalidate);
Long Lidb223a52017-11-22 17:38:45 -07003501 if (!wdata->mr) {
3502 rc = -ENOBUFS;
3503 goto async_writev_out;
3504 }
3505 req->Length = 0;
3506 req->DataOffset = 0;
Long Li7cf20bc2018-05-30 12:48:02 -07003507 if (wdata->nr_pages > 1)
3508 req->RemainingBytes =
3509 cpu_to_le32(
3510 (wdata->nr_pages - 1) * wdata->pagesz -
3511 wdata->page_offset + wdata->tailsz
3512 );
3513 else
3514 req->RemainingBytes = cpu_to_le32(wdata->tailsz);
Long Lidb223a52017-11-22 17:38:45 -07003515 req->Channel = SMB2_CHANNEL_RDMA_V1_INVALIDATE;
3516 if (need_invalidate)
3517 req->Channel = SMB2_CHANNEL_RDMA_V1;
3518 req->WriteChannelInfoOffset =
Steve French2026b062018-01-24 23:07:41 -06003519 cpu_to_le16(offsetof(struct smb2_write_req, Buffer));
Long Lidb223a52017-11-22 17:38:45 -07003520 req->WriteChannelInfoLength =
Steve French2026b062018-01-24 23:07:41 -06003521 cpu_to_le16(sizeof(struct smbd_buffer_descriptor_v1));
Long Lidb223a52017-11-22 17:38:45 -07003522 v1 = (struct smbd_buffer_descriptor_v1 *) &req->Buffer[0];
Steve French2026b062018-01-24 23:07:41 -06003523 v1->offset = cpu_to_le64(wdata->mr->mr->iova);
3524 v1->token = cpu_to_le32(wdata->mr->mr->rkey);
3525 v1->length = cpu_to_le32(wdata->mr->mr->length);
Long Lidb223a52017-11-22 17:38:45 -07003526 }
3527#endif
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003528 iov[0].iov_len = total_len - 1;
3529 iov[0].iov_base = (char *)req;
Pavel Shilovsky33319142012-09-18 16:20:29 -07003530
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08003531 rqst.rq_iov = iov;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003532 rqst.rq_nvec = 1;
Jeff Laytoneddb0792012-09-18 16:20:35 -07003533 rqst.rq_pages = wdata->pages;
Long Li57a929a2018-05-30 12:47:53 -07003534 rqst.rq_offset = wdata->page_offset;
Jeff Laytoneddb0792012-09-18 16:20:35 -07003535 rqst.rq_npages = wdata->nr_pages;
3536 rqst.rq_pagesz = wdata->pagesz;
3537 rqst.rq_tailsz = wdata->tailsz;
Long Lidb223a52017-11-22 17:38:45 -07003538#ifdef CONFIG_CIFS_SMB_DIRECT
3539 if (wdata->mr) {
Ronnie Sahlbergc713c872018-06-12 08:00:58 +10003540 iov[0].iov_len += sizeof(struct smbd_buffer_descriptor_v1);
Long Lidb223a52017-11-22 17:38:45 -07003541 rqst.rq_npages = 0;
3542 }
3543#endif
Joe Perchesf96637b2013-05-04 22:12:25 -05003544 cifs_dbg(FYI, "async write at %llu %u bytes\n",
3545 wdata->offset, wdata->bytes);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003546
Long Lidb223a52017-11-22 17:38:45 -07003547#ifdef CONFIG_CIFS_SMB_DIRECT
3548 /* For RDMA read, I/O size is in RemainingBytes not in Length */
3549 if (!wdata->mr)
3550 req->Length = cpu_to_le32(wdata->bytes);
3551#else
Pavel Shilovsky33319142012-09-18 16:20:29 -07003552 req->Length = cpu_to_le32(wdata->bytes);
Long Lidb223a52017-11-22 17:38:45 -07003553#endif
Pavel Shilovsky33319142012-09-18 16:20:29 -07003554
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003555 if (wdata->credits) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003556 shdr->CreditCharge = cpu_to_le16(DIV_ROUND_UP(wdata->bytes,
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003557 SMB2_MAX_BUFFER_SIZE));
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003558 shdr->CreditRequest = shdr->CreditCharge;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003559 spin_lock(&server->req_lock);
3560 server->credits += wdata->credits -
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003561 le16_to_cpu(shdr->CreditCharge);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003562 spin_unlock(&server->req_lock);
3563 wake_up(&server->request_q);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003564 flags |= CIFS_HAS_CREDITS;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +04003565 }
3566
Pavel Shilovsky33319142012-09-18 16:20:29 -07003567 kref_get(&wdata->refcount);
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -08003568 rc = cifs_call_async(server, &rqst, NULL, smb2_writev_callback, NULL,
3569 wdata, flags);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003570
Pavel Shilovskye5d04882012-09-19 16:03:26 +04003571 if (rc) {
Steve Frencheccb4422018-05-17 21:16:55 -05003572 trace_smb3_write_err(0 /* no xid */, req->PersistentFileId,
3573 tcon->tid, tcon->ses->Suid, wdata->offset,
3574 wdata->bytes, rc);
Steve French4a5c80d2014-02-07 20:45:12 -06003575 kref_put(&wdata->refcount, release);
Pavel Shilovskye5d04882012-09-19 16:03:26 +04003576 cifs_stats_fail_inc(tcon, SMB2_WRITE_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05003577 } else
3578 trace_smb3_write_done(0 /* no xid */, req->PersistentFileId,
3579 tcon->tid, tcon->ses->Suid, wdata->offset,
3580 wdata->bytes);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003581
Pavel Shilovsky33319142012-09-18 16:20:29 -07003582async_writev_out:
3583 cifs_small_buf_release(req);
Pavel Shilovsky33319142012-09-18 16:20:29 -07003584 return rc;
3585}
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003586
3587/*
3588 * SMB2_write function gets iov pointer to kvec array with n_vec as a length.
3589 * The length field from io_parms must be at least 1 and indicates a number of
3590 * elements with data to write that begins with position 1 in iov array. All
3591 * data length is specified by count.
3592 */
3593int
3594SMB2_write(const unsigned int xid, struct cifs_io_parms *io_parms,
3595 unsigned int *nbytes, struct kvec *iov, int n_vec)
3596{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003597 struct smb_rqst rqst;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003598 int rc = 0;
3599 struct smb2_write_req *req = NULL;
3600 struct smb2_write_rsp *rsp = NULL;
3601 int resp_buftype;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003602 struct kvec rsp_iov;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003603 int flags = 0;
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003604 unsigned int total_len;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003605
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003606 *nbytes = 0;
3607
3608 if (n_vec < 1)
3609 return rc;
3610
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003611 rc = smb2_plain_req_init(SMB2_WRITE, io_parms->tcon, (void **) &req,
3612 &total_len);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003613 if (rc)
3614 return rc;
3615
3616 if (io_parms->tcon->ses->server == NULL)
3617 return -ECONNABORTED;
3618
Steve French5a77e752018-05-09 17:43:08 -05003619 if (smb3_encryption_required(io_parms->tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003620 flags |= CIFS_TRANSFORM_REQ;
3621
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003622 req->sync_hdr.ProcessId = cpu_to_le32(io_parms->pid);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003623
3624 req->PersistentFileId = io_parms->persistent_fid;
3625 req->VolatileFileId = io_parms->volatile_fid;
3626 req->WriteChannelInfoOffset = 0;
3627 req->WriteChannelInfoLength = 0;
3628 req->Channel = 0;
3629 req->Length = cpu_to_le32(io_parms->length);
3630 req->Offset = cpu_to_le64(io_parms->offset);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003631 req->DataOffset = cpu_to_le16(
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003632 offsetof(struct smb2_write_req, Buffer));
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003633 req->RemainingBytes = 0;
3634
3635 iov[0].iov_base = (char *)req;
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003636 /* 1 for Buffer */
3637 iov[0].iov_len = total_len - 1;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003638
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003639 memset(&rqst, 0, sizeof(struct smb_rqst));
3640 rqst.rq_iov = iov;
3641 rqst.rq_nvec = n_vec + 1;
3642
3643 rc = cifs_send_recv(xid, io_parms->tcon->ses, &rqst,
Ronnie Sahlbergf5688a62017-11-20 11:24:41 +11003644 &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003645 cifs_small_buf_release(req);
3646 rsp = (struct smb2_write_rsp *)rsp_iov.iov_base;
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003647
3648 if (rc) {
Steve Frencheccb4422018-05-17 21:16:55 -05003649 trace_smb3_write_err(xid, req->PersistentFileId,
3650 io_parms->tcon->tid,
3651 io_parms->tcon->ses->Suid,
3652 io_parms->offset, io_parms->length, rc);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003653 cifs_stats_fail_inc(io_parms->tcon, SMB2_WRITE_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05003654 cifs_dbg(VFS, "Send error in write = %d\n", rc);
Steve Frencheccb4422018-05-17 21:16:55 -05003655 } else {
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003656 *nbytes = le32_to_cpu(rsp->DataLength);
Steve Frencheccb4422018-05-17 21:16:55 -05003657 trace_smb3_write_done(xid, req->PersistentFileId,
3658 io_parms->tcon->tid,
3659 io_parms->tcon->ses->Suid,
3660 io_parms->offset, *nbytes);
3661 }
Pavel Shilovskye5d04882012-09-19 16:03:26 +04003662
3663 free_rsp_buf(resp_buftype, rsp);
Pavel Shilovsky009d3442012-09-18 16:20:30 -07003664 return rc;
3665}
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003666
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003667static unsigned int
3668num_entries(char *bufstart, char *end_of_buf, char **lastentry, size_t size)
3669{
3670 int len;
3671 unsigned int entrycount = 0;
3672 unsigned int next_offset = 0;
Dan Carpenter56446f22018-09-06 12:48:22 +03003673 char *entryptr;
3674 FILE_DIRECTORY_INFO *dir_info;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003675
3676 if (bufstart == NULL)
3677 return 0;
3678
Dan Carpenter56446f22018-09-06 12:48:22 +03003679 entryptr = bufstart;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003680
3681 while (1) {
Dan Carpenter56446f22018-09-06 12:48:22 +03003682 if (entryptr + next_offset < entryptr ||
3683 entryptr + next_offset > end_of_buf ||
3684 entryptr + next_offset + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003685 cifs_dbg(VFS, "malformed search entry would overflow\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003686 break;
3687 }
3688
Dan Carpenter56446f22018-09-06 12:48:22 +03003689 entryptr = entryptr + next_offset;
3690 dir_info = (FILE_DIRECTORY_INFO *)entryptr;
3691
3692 len = le32_to_cpu(dir_info->FileNameLength);
3693 if (entryptr + len < entryptr ||
3694 entryptr + len > end_of_buf ||
3695 entryptr + len + size > end_of_buf) {
Joe Perchesf96637b2013-05-04 22:12:25 -05003696 cifs_dbg(VFS, "directory entry name would overflow frame end of buf %p\n",
3697 end_of_buf);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003698 break;
3699 }
3700
Dan Carpenter56446f22018-09-06 12:48:22 +03003701 *lastentry = entryptr;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003702 entrycount++;
3703
Dan Carpenter56446f22018-09-06 12:48:22 +03003704 next_offset = le32_to_cpu(dir_info->NextEntryOffset);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003705 if (!next_offset)
3706 break;
3707 }
3708
3709 return entrycount;
3710}
3711
3712/*
3713 * Readdir/FindFirst
3714 */
3715int
3716SMB2_query_directory(const unsigned int xid, struct cifs_tcon *tcon,
3717 u64 persistent_fid, u64 volatile_fid, int index,
3718 struct cifs_search_info *srch_inf)
3719{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003720 struct smb_rqst rqst;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003721 struct smb2_query_directory_req *req;
3722 struct smb2_query_directory_rsp *rsp = NULL;
3723 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003724 struct kvec rsp_iov;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003725 int rc = 0;
3726 int len;
Steve French75fdfc82015-03-25 18:51:57 -05003727 int resp_buftype = CIFS_NO_BUFFER;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003728 unsigned char *bufptr;
3729 struct TCP_Server_Info *server;
3730 struct cifs_ses *ses = tcon->ses;
3731 __le16 asteriks = cpu_to_le16('*');
3732 char *end_of_smb;
3733 unsigned int output_size = CIFSMaxBufSize;
3734 size_t info_buf_size;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003735 int flags = 0;
Ronnie Sahlberg7c00c3a2017-11-20 11:24:45 +11003736 unsigned int total_len;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003737
3738 if (ses && (ses->server))
3739 server = ses->server;
3740 else
3741 return -EIO;
3742
Ronnie Sahlberg7c00c3a2017-11-20 11:24:45 +11003743 rc = smb2_plain_req_init(SMB2_QUERY_DIRECTORY, tcon, (void **) &req,
3744 &total_len);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003745 if (rc)
3746 return rc;
3747
Steve French5a77e752018-05-09 17:43:08 -05003748 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003749 flags |= CIFS_TRANSFORM_REQ;
3750
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003751 switch (srch_inf->info_level) {
3752 case SMB_FIND_FILE_DIRECTORY_INFO:
3753 req->FileInformationClass = FILE_DIRECTORY_INFORMATION;
3754 info_buf_size = sizeof(FILE_DIRECTORY_INFO) - 1;
3755 break;
3756 case SMB_FIND_FILE_ID_FULL_DIR_INFO:
3757 req->FileInformationClass = FILEID_FULL_DIRECTORY_INFORMATION;
3758 info_buf_size = sizeof(SEARCH_ID_FULL_DIR_INFO) - 1;
3759 break;
3760 default:
Joe Perchesf96637b2013-05-04 22:12:25 -05003761 cifs_dbg(VFS, "info level %u isn't supported\n",
3762 srch_inf->info_level);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003763 rc = -EINVAL;
3764 goto qdir_exit;
3765 }
3766
3767 req->FileIndex = cpu_to_le32(index);
3768 req->PersistentFileId = persistent_fid;
3769 req->VolatileFileId = volatile_fid;
3770
3771 len = 0x2;
3772 bufptr = req->Buffer;
3773 memcpy(bufptr, &asteriks, len);
3774
3775 req->FileNameOffset =
Ronnie Sahlberg7c00c3a2017-11-20 11:24:45 +11003776 cpu_to_le16(sizeof(struct smb2_query_directory_req) - 1);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003777 req->FileNameLength = cpu_to_le16(len);
3778 /*
3779 * BB could be 30 bytes or so longer if we used SMB2 specific
3780 * buffer lengths, but this is safe and close enough.
3781 */
3782 output_size = min_t(unsigned int, output_size, server->maxBuf);
3783 output_size = min_t(unsigned int, output_size, 2 << 15);
3784 req->OutputBufferLength = cpu_to_le32(output_size);
3785
3786 iov[0].iov_base = (char *)req;
Ronnie Sahlberg7c00c3a2017-11-20 11:24:45 +11003787 /* 1 for Buffer */
3788 iov[0].iov_len = total_len - 1;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003789
3790 iov[1].iov_base = (char *)(req->Buffer);
3791 iov[1].iov_len = len;
3792
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003793 memset(&rqst, 0, sizeof(struct smb_rqst));
3794 rqst.rq_iov = iov;
3795 rqst.rq_nvec = 2;
3796
3797 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003798 cifs_small_buf_release(req);
3799 rsp = (struct smb2_query_directory_rsp *)rsp_iov.iov_base;
Pavel Shilovskye5d04882012-09-19 16:03:26 +04003800
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003801 if (rc) {
Pavel Shilovsky31473fc2016-10-24 15:33:04 -07003802 if (rc == -ENODATA &&
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10003803 rsp->sync_hdr.Status == STATUS_NO_MORE_FILES) {
Pavel Shilovsky52755802014-08-18 20:49:57 +04003804 srch_inf->endOfSearch = true;
3805 rc = 0;
3806 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003807 cifs_stats_fail_inc(tcon, SMB2_QUERY_DIRECTORY_HE);
3808 goto qdir_exit;
3809 }
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003810
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10003811 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
3812 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
3813 info_buf_size);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003814 if (rc)
3815 goto qdir_exit;
3816
3817 srch_inf->unicode = true;
3818
3819 if (srch_inf->ntwrk_buf_start) {
3820 if (srch_inf->smallBuf)
3821 cifs_small_buf_release(srch_inf->ntwrk_buf_start);
3822 else
3823 cifs_buf_release(srch_inf->ntwrk_buf_start);
3824 }
3825 srch_inf->ntwrk_buf_start = (char *)rsp;
Ronnie Sahlberg977b6172018-06-01 10:53:02 +10003826 srch_inf->srch_entries_start = srch_inf->last_entry =
3827 (char *)rsp + le16_to_cpu(rsp->OutputBufferOffset);
3828 end_of_smb = rsp_iov.iov_len + (char *)rsp;
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003829 srch_inf->entries_in_buffer =
3830 num_entries(srch_inf->srch_entries_start, end_of_smb,
3831 &srch_inf->last_entry, info_buf_size);
3832 srch_inf->index_of_last_entry += srch_inf->entries_in_buffer;
Joe Perchesf96637b2013-05-04 22:12:25 -05003833 cifs_dbg(FYI, "num entries %d last_index %lld srch start %p srch end %p\n",
3834 srch_inf->entries_in_buffer, srch_inf->index_of_last_entry,
3835 srch_inf->srch_entries_start, srch_inf->last_entry);
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003836 if (resp_buftype == CIFS_LARGE_BUFFER)
3837 srch_inf->smallBuf = false;
3838 else if (resp_buftype == CIFS_SMALL_BUFFER)
3839 srch_inf->smallBuf = true;
3840 else
Joe Perchesf96637b2013-05-04 22:12:25 -05003841 cifs_dbg(VFS, "illegal search buffer type\n");
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003842
Pavel Shilovskyd324f08d2012-09-18 16:20:33 -07003843 return rc;
3844
3845qdir_exit:
3846 free_rsp_buf(resp_buftype, rsp);
3847 return rc;
3848}
3849
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003850int
3851SMB2_set_info_init(struct cifs_tcon *tcon, struct smb_rqst *rqst,
Shirish Pargaonkardac95342017-06-28 22:37:00 -05003852 u64 persistent_fid, u64 volatile_fid, u32 pid, u8 info_class,
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003853 u8 info_type, u32 additional_info,
Shirish Pargaonkardac95342017-06-28 22:37:00 -05003854 void **data, unsigned int *size)
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003855{
3856 struct smb2_set_info_req *req;
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003857 struct kvec *iov = rqst->rq_iov;
3858 unsigned int i, total_len;
3859 int rc;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003860
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11003861 rc = smb2_plain_req_init(SMB2_SET_INFO, tcon, (void **) &req, &total_len);
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003862 if (rc)
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003863 return rc;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07003864
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11003865 req->sync_hdr.ProcessId = cpu_to_le32(pid);
Shirish Pargaonkardac95342017-06-28 22:37:00 -05003866 req->InfoType = info_type;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003867 req->FileInfoClass = info_class;
3868 req->PersistentFileId = persistent_fid;
3869 req->VolatileFileId = volatile_fid;
Shirish Pargaonkardac95342017-06-28 22:37:00 -05003870 req->AdditionalInformation = cpu_to_le32(additional_info);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003871
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003872 req->BufferOffset =
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11003873 cpu_to_le16(sizeof(struct smb2_set_info_req) - 1);
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003874 req->BufferLength = cpu_to_le32(*size);
3875
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003876 memcpy(req->Buffer, *data, *size);
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11003877 total_len += *size;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003878
3879 iov[0].iov_base = (char *)req;
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11003880 /* 1 for Buffer */
3881 iov[0].iov_len = total_len - 1;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003882
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003883 for (i = 1; i < rqst->rq_nvec; i++) {
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003884 le32_add_cpu(&req->BufferLength, size[i]);
3885 iov[i].iov_base = (char *)data[i];
3886 iov[i].iov_len = size[i];
3887 }
3888
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003889 return 0;
3890}
3891
3892void
3893SMB2_set_info_free(struct smb_rqst *rqst)
3894{
Ronnie Sahlberg32a1fb32018-10-24 11:50:33 +10003895 if (rqst && rqst->rq_iov)
3896 cifs_buf_release(rqst->rq_iov[0].iov_base); /* request */
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003897}
3898
3899static int
3900send_set_info(const unsigned int xid, struct cifs_tcon *tcon,
3901 u64 persistent_fid, u64 volatile_fid, u32 pid, u8 info_class,
3902 u8 info_type, u32 additional_info, unsigned int num,
3903 void **data, unsigned int *size)
3904{
3905 struct smb_rqst rqst;
3906 struct smb2_set_info_rsp *rsp = NULL;
3907 struct kvec *iov;
3908 struct kvec rsp_iov;
3909 int rc = 0;
3910 int resp_buftype;
3911 struct cifs_ses *ses = tcon->ses;
3912 int flags = 0;
3913
3914 if (!ses || !(ses->server))
3915 return -EIO;
3916
3917 if (!num)
3918 return -EINVAL;
3919
3920 if (smb3_encryption_required(tcon))
3921 flags |= CIFS_TRANSFORM_REQ;
3922
3923 iov = kmalloc_array(num, sizeof(struct kvec), GFP_KERNEL);
3924 if (!iov)
3925 return -ENOMEM;
3926
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003927 memset(&rqst, 0, sizeof(struct smb_rqst));
3928 rqst.rq_iov = iov;
3929 rqst.rq_nvec = num;
3930
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003931 rc = SMB2_set_info_init(tcon, &rqst, persistent_fid, volatile_fid, pid,
3932 info_class, info_type, additional_info,
3933 data, size);
3934 if (rc) {
3935 kfree(iov);
3936 return rc;
3937 }
3938
3939
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003940 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags,
Ronnie Sahlberg2fc803e2017-11-20 11:24:44 +11003941 &rsp_iov);
Ronnie Sahlbergba8ca112018-09-03 13:33:44 +10003942 SMB2_set_info_free(&rqst);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07003943 rsp = (struct smb2_set_info_rsp *)rsp_iov.iov_base;
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003944
Steve Frencheccb4422018-05-17 21:16:55 -05003945 if (rc != 0) {
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003946 cifs_stats_fail_inc(tcon, SMB2_SET_INFO_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05003947 trace_smb3_set_info_err(xid, persistent_fid, tcon->tid,
3948 ses->Suid, info_class, (__u32)info_type, rc);
3949 }
Steve French7d3fb242013-11-18 09:56:28 -06003950
Pavel Shilovsky35143eb2012-09-18 16:20:31 -07003951 free_rsp_buf(resp_buftype, rsp);
3952 kfree(iov);
3953 return rc;
3954}
3955
3956int
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003957SMB2_set_eof(const unsigned int xid, struct cifs_tcon *tcon, u64 persistent_fid,
Ronnie Sahlberg3764cbd2018-09-03 13:33:47 +10003958 u64 volatile_fid, u32 pid, __le64 *eof)
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003959{
3960 struct smb2_file_eof_info info;
3961 void *data;
3962 unsigned int size;
3963
3964 info.EndOfFile = *eof;
3965
3966 data = &info;
3967 size = sizeof(struct smb2_file_eof_info);
3968
Ronnie Sahlberg3764cbd2018-09-03 13:33:47 +10003969 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
Shirish Pargaonkardac95342017-06-28 22:37:00 -05003970 pid, FILE_END_OF_FILE_INFORMATION, SMB2_O_INFO_FILE,
3971 0, 1, &data, &size);
Pavel Shilovskyc839ff22012-09-18 16:20:32 -07003972}
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -07003973
3974int
Shirish Pargaonkardac95342017-06-28 22:37:00 -05003975SMB2_set_acl(const unsigned int xid, struct cifs_tcon *tcon,
3976 u64 persistent_fid, u64 volatile_fid,
3977 struct cifs_ntsd *pnntsd, int pacllen, int aclflag)
3978{
3979 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3980 current->tgid, 0, SMB2_O_INFO_SECURITY, aclflag,
3981 1, (void **)&pnntsd, &pacllen);
Pavel Shilovsky1feeaac2012-09-18 16:20:32 -07003982}
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003983
3984int
Ronnie Sahlberg55175542017-08-24 11:24:56 +10003985SMB2_set_ea(const unsigned int xid, struct cifs_tcon *tcon,
3986 u64 persistent_fid, u64 volatile_fid,
3987 struct smb2_file_full_ea_info *buf, int len)
3988{
3989 return send_set_info(xid, tcon, persistent_fid, volatile_fid,
3990 current->tgid, FILE_FULL_EA_INFORMATION, SMB2_O_INFO_FILE,
3991 0, 1, (void **)&buf, &len);
3992}
3993
3994int
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07003995SMB2_oplock_break(const unsigned int xid, struct cifs_tcon *tcon,
3996 const u64 persistent_fid, const u64 volatile_fid,
3997 __u8 oplock_level)
3998{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10003999 struct smb_rqst rqst;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004000 int rc;
Ronnie Sahlberg0d5a2882018-06-01 10:53:03 +10004001 struct smb2_oplock_break *req = NULL;
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +11004002 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004003 int flags = CIFS_OBREAK_OP;
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +11004004 unsigned int total_len;
4005 struct kvec iov[1];
4006 struct kvec rsp_iov;
4007 int resp_buf_type;
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004008
Joe Perchesf96637b2013-05-04 22:12:25 -05004009 cifs_dbg(FYI, "SMB2_oplock_break\n");
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +11004010 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req,
4011 &total_len);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004012 if (rc)
4013 return rc;
4014
Steve French5a77e752018-05-09 17:43:08 -05004015 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004016 flags |= CIFS_TRANSFORM_REQ;
4017
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004018 req->VolatileFid = volatile_fid;
4019 req->PersistentFid = persistent_fid;
4020 req->OplockLevel = oplock_level;
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +11004021 req->sync_hdr.CreditRequest = cpu_to_le16(1);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004022
Ronnie Sahlberg21ad9482017-11-20 11:24:43 +11004023 flags |= CIFS_NO_RESP;
4024
4025 iov[0].iov_base = (char *)req;
4026 iov[0].iov_len = total_len;
4027
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004028 memset(&rqst, 0, sizeof(struct smb_rqst));
4029 rqst.rq_iov = iov;
4030 rqst.rq_nvec = 1;
4031
4032 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004033 cifs_small_buf_release(req);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004034
4035 if (rc) {
4036 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Joe Perchesf96637b2013-05-04 22:12:25 -05004037 cifs_dbg(FYI, "Send error in Oplock Break = %d\n", rc);
Pavel Shilovsky983c88a2012-09-18 16:20:33 -07004038 }
4039
4040 return rc;
4041}
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004042
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10004043void
4044smb2_copy_fs_info_to_kstatfs(struct smb2_fs_full_size_info *pfs_inf,
4045 struct kstatfs *kst)
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004046{
4047 kst->f_bsize = le32_to_cpu(pfs_inf->BytesPerSector) *
4048 le32_to_cpu(pfs_inf->SectorsPerAllocationUnit);
4049 kst->f_blocks = le64_to_cpu(pfs_inf->TotalAllocationUnits);
Sachin Prabhu42bec212017-08-03 13:09:03 +05304050 kst->f_bfree = kst->f_bavail =
4051 le64_to_cpu(pfs_inf->CallerAvailableAllocationUnits);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004052 return;
4053}
4054
Steve French2d304212018-06-24 23:28:12 -05004055static void
4056copy_posix_fs_info_to_kstatfs(FILE_SYSTEM_POSIX_INFO *response_data,
4057 struct kstatfs *kst)
4058{
4059 kst->f_bsize = le32_to_cpu(response_data->BlockSize);
4060 kst->f_blocks = le64_to_cpu(response_data->TotalBlocks);
4061 kst->f_bfree = le64_to_cpu(response_data->BlocksAvail);
4062 if (response_data->UserBlocksAvail == cpu_to_le64(-1))
4063 kst->f_bavail = kst->f_bfree;
4064 else
4065 kst->f_bavail = le64_to_cpu(response_data->UserBlocksAvail);
4066 if (response_data->TotalFileNodes != cpu_to_le64(-1))
4067 kst->f_files = le64_to_cpu(response_data->TotalFileNodes);
4068 if (response_data->FreeFileNodes != cpu_to_le64(-1))
4069 kst->f_ffree = le64_to_cpu(response_data->FreeFileNodes);
4070
4071 return;
4072}
Steve French2d304212018-06-24 23:28:12 -05004073
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004074static int
4075build_qfs_info_req(struct kvec *iov, struct cifs_tcon *tcon, int level,
4076 int outbuf_len, u64 persistent_fid, u64 volatile_fid)
4077{
4078 int rc;
4079 struct smb2_query_info_req *req;
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11004080 unsigned int total_len;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004081
Joe Perchesf96637b2013-05-04 22:12:25 -05004082 cifs_dbg(FYI, "Query FSInfo level %d\n", level);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004083
4084 if ((tcon->ses == NULL) || (tcon->ses->server == NULL))
4085 return -EIO;
4086
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11004087 rc = smb2_plain_req_init(SMB2_QUERY_INFO, tcon, (void **) &req,
4088 &total_len);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004089 if (rc)
4090 return rc;
4091
4092 req->InfoType = SMB2_O_INFO_FILESYSTEM;
4093 req->FileInfoClass = level;
4094 req->PersistentFileId = persistent_fid;
4095 req->VolatileFileId = volatile_fid;
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11004096 /* 1 for pad */
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004097 req->InputBufferOffset =
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11004098 cpu_to_le16(sizeof(struct smb2_query_info_req) - 1);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004099 req->OutputBufferLength = cpu_to_le32(
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10004100 outbuf_len + sizeof(struct smb2_query_info_rsp) - 1);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004101
4102 iov->iov_base = (char *)req;
Ronnie Sahlbergb2fb7fe2017-11-20 11:24:46 +11004103 iov->iov_len = total_len;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004104 return 0;
4105}
4106
Steve French2d304212018-06-24 23:28:12 -05004107int
4108SMB311_posix_qfs_info(const unsigned int xid, struct cifs_tcon *tcon,
4109 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
4110{
4111 struct smb_rqst rqst;
4112 struct smb2_query_info_rsp *rsp = NULL;
4113 struct kvec iov;
4114 struct kvec rsp_iov;
4115 int rc = 0;
4116 int resp_buftype;
4117 struct cifs_ses *ses = tcon->ses;
4118 FILE_SYSTEM_POSIX_INFO *info = NULL;
4119 int flags = 0;
4120
4121 rc = build_qfs_info_req(&iov, tcon, FS_POSIX_INFORMATION,
4122 sizeof(FILE_SYSTEM_POSIX_INFO),
4123 persistent_fid, volatile_fid);
4124 if (rc)
4125 return rc;
4126
4127 if (smb3_encryption_required(tcon))
4128 flags |= CIFS_TRANSFORM_REQ;
4129
4130 memset(&rqst, 0, sizeof(struct smb_rqst));
4131 rqst.rq_iov = &iov;
4132 rqst.rq_nvec = 1;
4133
4134 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
4135 cifs_small_buf_release(iov.iov_base);
4136 if (rc) {
4137 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
4138 goto posix_qfsinf_exit;
4139 }
4140 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
4141
4142 info = (FILE_SYSTEM_POSIX_INFO *)(
4143 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10004144 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4145 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
4146 sizeof(FILE_SYSTEM_POSIX_INFO));
Steve French2d304212018-06-24 23:28:12 -05004147 if (!rc)
4148 copy_posix_fs_info_to_kstatfs(info, fsdata);
4149
4150posix_qfsinf_exit:
4151 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
4152 return rc;
4153}
Steve French2d304212018-06-24 23:28:12 -05004154
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004155int
4156SMB2_QFS_info(const unsigned int xid, struct cifs_tcon *tcon,
4157 u64 persistent_fid, u64 volatile_fid, struct kstatfs *fsdata)
4158{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004159 struct smb_rqst rqst;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004160 struct smb2_query_info_rsp *rsp = NULL;
4161 struct kvec iov;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004162 struct kvec rsp_iov;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004163 int rc = 0;
4164 int resp_buftype;
4165 struct cifs_ses *ses = tcon->ses;
4166 struct smb2_fs_full_size_info *info = NULL;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004167 int flags = 0;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004168
4169 rc = build_qfs_info_req(&iov, tcon, FS_FULL_SIZE_INFORMATION,
4170 sizeof(struct smb2_fs_full_size_info),
4171 persistent_fid, volatile_fid);
4172 if (rc)
4173 return rc;
4174
Steve French5a77e752018-05-09 17:43:08 -05004175 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004176 flags |= CIFS_TRANSFORM_REQ;
4177
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004178 memset(&rqst, 0, sizeof(struct smb_rqst));
4179 rqst.rq_iov = &iov;
4180 rqst.rq_nvec = 1;
4181
4182 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004183 cifs_small_buf_release(iov.iov_base);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004184 if (rc) {
4185 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
Steve French34f62642013-10-09 02:07:00 -05004186 goto qfsinf_exit;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004187 }
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004188 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004189
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10004190 info = (struct smb2_fs_full_size_info *)(
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10004191 le16_to_cpu(rsp->OutputBufferOffset) + (char *)rsp);
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10004192 rc = smb2_validate_iov(le16_to_cpu(rsp->OutputBufferOffset),
4193 le32_to_cpu(rsp->OutputBufferLength), &rsp_iov,
4194 sizeof(struct smb2_fs_full_size_info));
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004195 if (!rc)
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10004196 smb2_copy_fs_info_to_kstatfs(info, fsdata);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004197
Steve French34f62642013-10-09 02:07:00 -05004198qfsinf_exit:
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004199 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Steve French34f62642013-10-09 02:07:00 -05004200 return rc;
4201}
4202
4203int
4204SMB2_QFS_attr(const unsigned int xid, struct cifs_tcon *tcon,
Steven French21671142013-10-09 13:36:35 -05004205 u64 persistent_fid, u64 volatile_fid, int level)
Steve French34f62642013-10-09 02:07:00 -05004206{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004207 struct smb_rqst rqst;
Steve French34f62642013-10-09 02:07:00 -05004208 struct smb2_query_info_rsp *rsp = NULL;
4209 struct kvec iov;
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004210 struct kvec rsp_iov;
Steve French34f62642013-10-09 02:07:00 -05004211 int rc = 0;
Steven French21671142013-10-09 13:36:35 -05004212 int resp_buftype, max_len, min_len;
Steve French34f62642013-10-09 02:07:00 -05004213 struct cifs_ses *ses = tcon->ses;
4214 unsigned int rsp_len, offset;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004215 int flags = 0;
Steve French34f62642013-10-09 02:07:00 -05004216
Steven French21671142013-10-09 13:36:35 -05004217 if (level == FS_DEVICE_INFORMATION) {
4218 max_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
4219 min_len = sizeof(FILE_SYSTEM_DEVICE_INFO);
4220 } else if (level == FS_ATTRIBUTE_INFORMATION) {
4221 max_len = sizeof(FILE_SYSTEM_ATTRIBUTE_INFO);
4222 min_len = MIN_FS_ATTR_INFO_SIZE;
Steven Frenchaf6a12e2013-10-09 20:55:53 -05004223 } else if (level == FS_SECTOR_SIZE_INFORMATION) {
4224 max_len = sizeof(struct smb3_fs_ss_info);
4225 min_len = sizeof(struct smb3_fs_ss_info);
Steve French21ba3842018-06-24 23:18:52 -05004226 } else if (level == FS_VOLUME_INFORMATION) {
4227 max_len = sizeof(struct smb3_fs_vol_info) + MAX_VOL_LABEL_LEN;
4228 min_len = sizeof(struct smb3_fs_vol_info);
Steven French21671142013-10-09 13:36:35 -05004229 } else {
Steven Frenchaf6a12e2013-10-09 20:55:53 -05004230 cifs_dbg(FYI, "Invalid qfsinfo level %d\n", level);
Steven French21671142013-10-09 13:36:35 -05004231 return -EINVAL;
4232 }
4233
4234 rc = build_qfs_info_req(&iov, tcon, level, max_len,
Steve French34f62642013-10-09 02:07:00 -05004235 persistent_fid, volatile_fid);
4236 if (rc)
4237 return rc;
4238
Steve French5a77e752018-05-09 17:43:08 -05004239 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004240 flags |= CIFS_TRANSFORM_REQ;
4241
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004242 memset(&rqst, 0, sizeof(struct smb_rqst));
4243 rqst.rq_iov = &iov;
4244 rqst.rq_nvec = 1;
4245
4246 rc = cifs_send_recv(xid, ses, &rqst, &resp_buftype, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004247 cifs_small_buf_release(iov.iov_base);
Steve French34f62642013-10-09 02:07:00 -05004248 if (rc) {
4249 cifs_stats_fail_inc(tcon, SMB2_QUERY_INFO_HE);
4250 goto qfsattr_exit;
4251 }
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004252 rsp = (struct smb2_query_info_rsp *)rsp_iov.iov_base;
Steve French34f62642013-10-09 02:07:00 -05004253
4254 rsp_len = le32_to_cpu(rsp->OutputBufferLength);
4255 offset = le16_to_cpu(rsp->OutputBufferOffset);
Ronnie Sahlberg730928c2018-08-08 15:07:49 +10004256 rc = smb2_validate_iov(offset, rsp_len, &rsp_iov, min_len);
Steven French21671142013-10-09 13:36:35 -05004257 if (rc)
4258 goto qfsattr_exit;
4259
4260 if (level == FS_ATTRIBUTE_INFORMATION)
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10004261 memcpy(&tcon->fsAttrInfo, offset
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10004262 + (char *)rsp, min_t(unsigned int,
Steven French21671142013-10-09 13:36:35 -05004263 rsp_len, max_len));
4264 else if (level == FS_DEVICE_INFORMATION)
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10004265 memcpy(&tcon->fsDevInfo, offset
Ronnie Sahlberg49f466b2018-06-01 10:53:06 +10004266 + (char *)rsp, sizeof(FILE_SYSTEM_DEVICE_INFO));
Steven Frenchaf6a12e2013-10-09 20:55:53 -05004267 else if (level == FS_SECTOR_SIZE_INFORMATION) {
4268 struct smb3_fs_ss_info *ss_info = (struct smb3_fs_ss_info *)
Ronnie Sahlberg1fc6ad22018-06-01 10:53:07 +10004269 (offset + (char *)rsp);
Steven Frenchaf6a12e2013-10-09 20:55:53 -05004270 tcon->ss_flags = le32_to_cpu(ss_info->Flags);
4271 tcon->perf_sector_size =
4272 le32_to_cpu(ss_info->PhysicalBytesPerSectorForPerf);
Steve French21ba3842018-06-24 23:18:52 -05004273 } else if (level == FS_VOLUME_INFORMATION) {
4274 struct smb3_fs_vol_info *vol_info = (struct smb3_fs_vol_info *)
4275 (offset + (char *)rsp);
4276 tcon->vol_serial_number = vol_info->VolumeSerialNumber;
4277 tcon->vol_create_time = vol_info->VolumeCreationTime;
Steven Frenchaf6a12e2013-10-09 20:55:53 -05004278 }
Steve French34f62642013-10-09 02:07:00 -05004279
4280qfsattr_exit:
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004281 free_rsp_buf(resp_buftype, rsp_iov.iov_base);
Pavel Shilovsky6fc05c22012-09-18 16:20:34 -07004282 return rc;
4283}
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004284
4285int
4286smb2_lockv(const unsigned int xid, struct cifs_tcon *tcon,
4287 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
4288 const __u32 num_lock, struct smb2_lock_element *buf)
4289{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004290 struct smb_rqst rqst;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004291 int rc = 0;
4292 struct smb2_lock_req *req = NULL;
4293 struct kvec iov[2];
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004294 struct kvec rsp_iov;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004295 int resp_buf_type;
4296 unsigned int count;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004297 int flags = CIFS_NO_RESP;
Ronnie Sahlbergced93672017-11-21 10:07:27 +11004298 unsigned int total_len;
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004299
Joe Perchesf96637b2013-05-04 22:12:25 -05004300 cifs_dbg(FYI, "smb2_lockv num lock %d\n", num_lock);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004301
Ronnie Sahlbergced93672017-11-21 10:07:27 +11004302 rc = smb2_plain_req_init(SMB2_LOCK, tcon, (void **) &req, &total_len);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004303 if (rc)
4304 return rc;
4305
Steve French5a77e752018-05-09 17:43:08 -05004306 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004307 flags |= CIFS_TRANSFORM_REQ;
4308
Ronnie Sahlbergced93672017-11-21 10:07:27 +11004309 req->sync_hdr.ProcessId = cpu_to_le32(pid);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004310 req->LockCount = cpu_to_le16(num_lock);
4311
4312 req->PersistentFileId = persist_fid;
4313 req->VolatileFileId = volatile_fid;
4314
4315 count = num_lock * sizeof(struct smb2_lock_element);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004316
4317 iov[0].iov_base = (char *)req;
Ronnie Sahlbergced93672017-11-21 10:07:27 +11004318 iov[0].iov_len = total_len - sizeof(struct smb2_lock_element);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004319 iov[1].iov_base = (char *)buf;
4320 iov[1].iov_len = count;
4321
4322 cifs_stats_inc(&tcon->stats.cifs_stats.num_locks);
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004323
4324 memset(&rqst, 0, sizeof(struct smb_rqst));
4325 rqst.rq_iov = iov;
4326 rqst.rq_nvec = 2;
4327
4328 rc = cifs_send_recv(xid, tcon->ses, &rqst, &resp_buf_type, flags,
Ronnie Sahlbergced93672017-11-21 10:07:27 +11004329 &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004330 cifs_small_buf_release(req);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004331 if (rc) {
Joe Perchesf96637b2013-05-04 22:12:25 -05004332 cifs_dbg(FYI, "Send error in smb2_lockv = %d\n", rc);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004333 cifs_stats_fail_inc(tcon, SMB2_LOCK_HE);
Steve Frencheccb4422018-05-17 21:16:55 -05004334 trace_smb3_lock_err(xid, persist_fid, tcon->tid,
4335 tcon->ses->Suid, rc);
Pavel Shilovskyf7ba7fe2012-09-19 06:22:43 -07004336 }
4337
4338 return rc;
4339}
4340
4341int
4342SMB2_lock(const unsigned int xid, struct cifs_tcon *tcon,
4343 const __u64 persist_fid, const __u64 volatile_fid, const __u32 pid,
4344 const __u64 length, const __u64 offset, const __u32 lock_flags,
4345 const bool wait)
4346{
4347 struct smb2_lock_element lock;
4348
4349 lock.Offset = cpu_to_le64(offset);
4350 lock.Length = cpu_to_le64(length);
4351 lock.Flags = cpu_to_le32(lock_flags);
4352 if (!wait && lock_flags != SMB2_LOCKFLAG_UNLOCK)
4353 lock.Flags |= cpu_to_le32(SMB2_LOCKFLAG_FAIL_IMMEDIATELY);
4354
4355 return smb2_lockv(xid, tcon, persist_fid, volatile_fid, pid, 1, &lock);
4356}
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004357
4358int
4359SMB2_lease_break(const unsigned int xid, struct cifs_tcon *tcon,
4360 __u8 *lease_key, const __le32 lease_state)
4361{
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004362 struct smb_rqst rqst;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004363 int rc;
4364 struct smb2_lease_ack *req = NULL;
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11004365 struct cifs_ses *ses = tcon->ses;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004366 int flags = CIFS_OBREAK_OP;
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11004367 unsigned int total_len;
4368 struct kvec iov[1];
4369 struct kvec rsp_iov;
4370 int resp_buf_type;
Steve French179e44d2018-09-28 19:44:23 -05004371 __u64 *please_key_high;
4372 __u64 *please_key_low;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004373
Joe Perchesf96637b2013-05-04 22:12:25 -05004374 cifs_dbg(FYI, "SMB2_lease_break\n");
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11004375 rc = smb2_plain_req_init(SMB2_OPLOCK_BREAK, tcon, (void **) &req,
4376 &total_len);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004377 if (rc)
4378 return rc;
4379
Steve French5a77e752018-05-09 17:43:08 -05004380 if (smb3_encryption_required(tcon))
Pavel Shilovsky7fb89862016-10-31 13:49:30 -07004381 flags |= CIFS_TRANSFORM_REQ;
4382
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11004383 req->sync_hdr.CreditRequest = cpu_to_le16(1);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004384 req->StructureSize = cpu_to_le16(36);
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11004385 total_len += 12;
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004386
4387 memcpy(req->LeaseKey, lease_key, 16);
4388 req->LeaseState = lease_state;
4389
Ronnie Sahlberg8eb79982017-11-21 11:04:37 +11004390 flags |= CIFS_NO_RESP;
4391
4392 iov[0].iov_base = (char *)req;
4393 iov[0].iov_len = total_len;
4394
Ronnie Sahlberg40eff452018-06-12 08:00:59 +10004395 memset(&rqst, 0, sizeof(struct smb_rqst));
4396 rqst.rq_iov = iov;
4397 rqst.rq_nvec = 1;
4398
4399 rc = cifs_send_recv(xid, ses, &rqst, &resp_buf_type, flags, &rsp_iov);
Pavel Shilovskyda502f72016-10-25 11:38:47 -07004400 cifs_small_buf_release(req);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004401
Steve French179e44d2018-09-28 19:44:23 -05004402 please_key_low = (__u64 *)req->LeaseKey;
4403 please_key_high = (__u64 *)(req->LeaseKey+8);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004404 if (rc) {
4405 cifs_stats_fail_inc(tcon, SMB2_OPLOCK_BREAK_HE);
Steve French179e44d2018-09-28 19:44:23 -05004406 trace_smb3_lease_err(le32_to_cpu(lease_state), tcon->tid,
4407 ses->Suid, *please_key_low, *please_key_high, rc);
Joe Perchesf96637b2013-05-04 22:12:25 -05004408 cifs_dbg(FYI, "Send error in Lease Break = %d\n", rc);
Steve French179e44d2018-09-28 19:44:23 -05004409 } else
4410 trace_smb3_lease_done(le32_to_cpu(lease_state), tcon->tid,
4411 ses->Suid, *please_key_low, *please_key_high);
Pavel Shilovsky0822f512012-09-19 06:22:45 -07004412
4413 return rc;
4414}