blob: 9fcc4a82943d76110d52d89f1d09f331d5b9a759 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/transport.c
3 *
Steve Frenchad7a2922008-02-07 23:25:02 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
Steve French14a441a2b2006-07-16 04:32:51 +00006 * Jeremy Allison (jra@samba.org) 2006.
Steve French79a58d12007-07-06 22:44:50 +00007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This library is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as published
10 * by the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
16 * the GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this library; if not, write to the Free Software
Steve French79a58d12007-07-06 22:44:50 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
23#include <linux/fs.h>
24#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/wait.h>
27#include <linux/net.h>
28#include <linux/delay.h>
Jeff Laytonf06ac722011-10-19 15:30:40 -040029#include <linux/freezer.h>
Jeff Laytonb8eed282012-09-18 16:20:35 -070030#include <linux/tcp.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060031#include <linux/bvec.h>
Jeff Layton97bc00b2012-09-18 16:20:35 -070032#include <linux/highmem.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080033#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/processor.h>
35#include <linux/mempool.h>
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -080036#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "cifspdu.h"
38#include "cifsglob.h"
39#include "cifsproto.h"
40#include "cifs_debug.h"
Aurelien Aptel8bd68c62018-02-16 19:19:29 +010041#include "smb2proto.h"
Long Li9762c2d2017-11-22 17:38:43 -070042#include "smbdirect.h"
Steve French50c2f752007-07-13 00:33:32 +000043
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +110044/* Max number of iovectors we can use off the stack when sending requests. */
45#define CIFS_MAX_IOV_SIZE 8
46
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040047void
48cifs_wake_up_task(struct mid_q_entry *mid)
Jeff Layton2b84a36c2011-01-11 07:24:21 -050049{
50 wake_up_process(mid->callback_data);
51}
52
Jeff Laytona6827c12011-01-11 07:24:21 -050053struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050054AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 struct mid_q_entry *temp;
57
Jeff Layton24b9b062008-12-01 07:09:34 -050058 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050059 cifs_dbg(VFS, "Null TCP session in AllocMidQEntry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return NULL;
61 }
Steve French50c2f752007-07-13 00:33:32 +000062
Pekka Enberg232087c2008-09-15 13:22:54 +030063 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
NeilBrowna6f74e82017-04-10 12:08:53 +100064 memset(temp, 0, sizeof(struct mid_q_entry));
Lars Persson696e4202018-06-25 14:05:25 +020065 kref_init(&temp->refcount);
NeilBrowna6f74e82017-04-10 12:08:53 +100066 temp->mid = get_mid(smb_buffer);
67 temp->pid = current->pid;
68 temp->command = cpu_to_le16(smb_buffer->Command);
69 cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command);
Steve French1047abc2005-10-11 19:58:06 -070070 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
NeilBrowna6f74e82017-04-10 12:08:53 +100071 /* when mid allocated can be before when sent */
72 temp->when_alloc = jiffies;
73 temp->server = server;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050074
NeilBrowna6f74e82017-04-10 12:08:53 +100075 /*
76 * The default is for the mid to be synchronous, so the
77 * default callback just wakes up the current task.
78 */
79 temp->callback = cifs_wake_up_task;
80 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 atomic_inc(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040083 temp->mid_state = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return temp;
85}
86
Lars Persson696e4202018-06-25 14:05:25 +020087static void _cifs_mid_q_entry_release(struct kref *refcount)
88{
89 struct mid_q_entry *mid = container_of(refcount, struct mid_q_entry,
90 refcount);
91
92 mempool_free(mid, cifs_mid_poolp);
93}
94
95void cifs_mid_q_entry_release(struct mid_q_entry *midEntry)
96{
97 spin_lock(&GlobalMid_Lock);
98 kref_put(&midEntry->refcount, _cifs_mid_q_entry_release);
99 spin_unlock(&GlobalMid_Lock);
100}
101
Jeff Layton766fdbb2011-01-11 07:24:21 -0500102void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103DeleteMidQEntry(struct mid_q_entry *midEntry)
104{
Steve French1047abc2005-10-11 19:58:06 -0700105#ifdef CONFIG_CIFS_STATS2
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400106 __le16 command = midEntry->server->vals->lock_cmd;
Steve French1047abc2005-10-11 19:58:06 -0700107 unsigned long now;
108#endif
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400109 midEntry->mid_state = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -0500110 atomic_dec(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400111 if (midEntry->large_buf)
Steve Frenchb8643e12005-04-28 22:41:07 -0700112 cifs_buf_release(midEntry->resp_buf);
113 else
114 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -0700115#ifdef CONFIG_CIFS_STATS2
116 now = jiffies;
Steve French00778e22018-09-18 14:05:18 -0500117 /*
118 * commands taking longer than one second (default) can be indications
119 * that something is wrong, unless it is quite a slow link or a very
120 * busy server. Note that this calc is unlikely or impossible to wrap
121 * as long as slow_rsp_threshold is not set way above recommended max
122 * value (32767 ie 9 hours) and is generally harmless even if wrong
123 * since only affects debug counters - so leaving the calc as simple
124 * comparison rather than doing multiple conversions and overflow
125 * checks
126 */
127 if ((slow_rsp_threshold != 0) &&
128 time_after(now, midEntry->when_alloc + (slow_rsp_threshold * HZ)) &&
Steve French020eec52018-08-01 16:38:07 -0500129 (midEntry->command != command)) {
Steve Frenchf5942db2018-11-14 01:37:39 -0600130 /*
131 * smb2slowcmd[NUMBER_OF_SMB2_COMMANDS] counts by command
132 * NB: le16_to_cpu returns unsigned so can not be negative below
133 */
134 if (le16_to_cpu(midEntry->command) < NUMBER_OF_SMB2_COMMANDS)
Steve French468d6772018-08-04 05:24:34 -0500135 cifs_stats_inc(&midEntry->server->smb2slowcmd[le16_to_cpu(midEntry->command)]);
136
Steve French020eec52018-08-01 16:38:07 -0500137 trace_smb3_slow_rsp(le16_to_cpu(midEntry->command),
138 midEntry->mid, midEntry->pid,
139 midEntry->when_sent, midEntry->when_received);
140 if (cifsFYI & CIFS_TIMER) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +0300141 pr_debug(" CIFS slow rsp: cmd %d mid %llu",
Steve French1047abc2005-10-11 19:58:06 -0700142 midEntry->command, midEntry->mid);
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300143 cifs_info(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
Steve French1047abc2005-10-11 19:58:06 -0700144 now - midEntry->when_alloc,
145 now - midEntry->when_sent,
146 now - midEntry->when_received);
147 }
148 }
149#endif
Lars Persson696e4202018-06-25 14:05:25 +0200150 cifs_mid_q_entry_release(midEntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700153void
154cifs_delete_mid(struct mid_q_entry *mid)
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500155{
156 spin_lock(&GlobalMid_Lock);
Ronnie Sahlbergddf83af2018-08-30 10:12:59 +1000157 list_del_init(&mid->qhead);
158 mid->mid_flags |= MID_DELETED;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500159 spin_unlock(&GlobalMid_Lock);
160
161 DeleteMidQEntry(mid);
162}
163
Jeff Layton6f49f462012-09-18 16:20:34 -0700164/*
165 * smb_send_kvec - send an array of kvecs to the server
166 * @server: Server to send the data to
Al Viro3ab3f2a2015-11-13 02:36:04 -0500167 * @smb_msg: Message to send
Jeff Layton6f49f462012-09-18 16:20:34 -0700168 * @sent: amount of data sent on socket is stored here
169 *
170 * Our basic "send data to server" function. Should be called with srv_mutex
171 * held. The caller is responsible for handling the results.
172 */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500173static int
Al Viro3ab3f2a2015-11-13 02:36:04 -0500174smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg,
175 size_t *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 int rc = 0;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500178 int retries = 0;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000179 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000180
Jeff Layton6f49f462012-09-18 16:20:34 -0700181 *sent = 0;
182
Al Viro3ab3f2a2015-11-13 02:36:04 -0500183 smb_msg->msg_name = (struct sockaddr *) &server->dstaddr;
184 smb_msg->msg_namelen = sizeof(struct sockaddr);
185 smb_msg->msg_control = NULL;
186 smb_msg->msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500187 if (server->noblocksnd)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500188 smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000189 else
Al Viro3ab3f2a2015-11-13 02:36:04 -0500190 smb_msg->msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Al Viro3ab3f2a2015-11-13 02:36:04 -0500192 while (msg_data_left(smb_msg)) {
Jeff Layton6f49f462012-09-18 16:20:34 -0700193 /*
194 * If blocking send, we try 3 times, since each can block
195 * for 5 seconds. For nonblocking we have to try more
196 * but wait increasing amounts of time allowing time for
197 * socket to clear. The overall time we wait in either
198 * case to send on the socket is about 15 seconds.
199 * Similarly we wait for 15 seconds for a response from
200 * the server in SendReceive[2] for the server to send
201 * a response back for most types of requests (except
202 * SMB Write past end of file which can be slow, and
203 * blocking lock operations). NFS waits slightly longer
204 * than CIFS, but this can make it take longer for
205 * nonresponsive servers to be detected and 15 seconds
206 * is more than enough time for modern networks to
207 * send a packet. In most cases if we fail to send
208 * after the retries we will kill the socket and
209 * reconnect which may clear the network problem.
210 */
Al Viro3ab3f2a2015-11-13 02:36:04 -0500211 rc = sock_sendmsg(ssocket, smb_msg);
Jeff Laytonce6c44e2013-03-22 08:36:45 -0400212 if (rc == -EAGAIN) {
Al Viro3ab3f2a2015-11-13 02:36:04 -0500213 retries++;
214 if (retries >= 14 ||
215 (!server->noblocksnd && (retries > 2))) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500216 cifs_dbg(VFS, "sends on sock %p stuck for 15 seconds\n",
217 ssocket);
Al Viro3ab3f2a2015-11-13 02:36:04 -0500218 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500220 msleep(1 << retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 continue;
222 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700223
Steve French79a58d12007-07-06 22:44:50 +0000224 if (rc < 0)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500225 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700226
Steve French79a58d12007-07-06 22:44:50 +0000227 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700228 /* should never happen, letting socket clear before
229 retrying is our only obvious option here */
Joe Perchesf96637b2013-05-04 22:12:25 -0500230 cifs_dbg(VFS, "tcp sent no data\n");
Steve French3e844692005-10-03 13:37:24 -0700231 msleep(500);
232 continue;
233 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700234
Al Viro3ab3f2a2015-11-13 02:36:04 -0500235 /* send was at least partially successful */
236 *sent += rc;
237 retries = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500239 return 0;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700240}
241
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300242unsigned long
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000243smb_rqst_len(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Jeff Laytona26054d2014-02-14 07:21:00 -0500244{
245 unsigned int i;
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300246 struct kvec *iov;
247 int nvec;
Jeff Laytona26054d2014-02-14 07:21:00 -0500248 unsigned long buflen = 0;
249
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000250 if (server->vals->header_preamble_size == 0 &&
251 rqst->rq_nvec >= 2 && rqst->rq_iov[0].iov_len == 4) {
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300252 iov = &rqst->rq_iov[1];
253 nvec = rqst->rq_nvec - 1;
254 } else {
255 iov = rqst->rq_iov;
256 nvec = rqst->rq_nvec;
257 }
258
Jeff Laytona26054d2014-02-14 07:21:00 -0500259 /* total up iov array first */
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300260 for (i = 0; i < nvec; i++)
Jeff Laytona26054d2014-02-14 07:21:00 -0500261 buflen += iov[i].iov_len;
262
Long Lic06a0f22018-05-30 12:47:57 -0700263 /*
264 * Add in the page array if there is one. The caller needs to make
265 * sure rq_offset and rq_tailsz are set correctly. If a buffer of
266 * multiple pages ends at page boundary, rq_tailsz needs to be set to
267 * PAGE_SIZE.
268 */
Jeff Laytona26054d2014-02-14 07:21:00 -0500269 if (rqst->rq_npages) {
Long Lic06a0f22018-05-30 12:47:57 -0700270 if (rqst->rq_npages == 1)
271 buflen += rqst->rq_tailsz;
272 else {
273 /*
274 * If there is more than one page, calculate the
275 * buffer length based on rq_offset and rq_tailsz
276 */
277 buflen += rqst->rq_pagesz * (rqst->rq_npages - 1) -
278 rqst->rq_offset;
279 buflen += rqst->rq_tailsz;
280 }
Jeff Laytona26054d2014-02-14 07:21:00 -0500281 }
282
283 return buflen;
284}
285
Jeff Layton6f49f462012-09-18 16:20:34 -0700286static int
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000287__smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
288 struct smb_rqst *rqst)
Jeff Layton6f49f462012-09-18 16:20:34 -0700289{
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000290 int rc = 0;
291 struct kvec *iov;
292 int n_vec;
293 unsigned int send_length = 0;
294 unsigned int i, j;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800295 sigset_t mask, oldmask;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500296 size_t total_len = 0, sent, size;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700297 struct socket *ssocket = server->ssocket;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500298 struct msghdr smb_msg;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700299 int val = 1;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000300 __be32 rfc1002_marker;
301
Long Li9762c2d2017-11-22 17:38:43 -0700302 if (cifs_rdma_enabled(server) && server->smbd_conn) {
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000303 rc = smbd_send(server, rqst);
Long Li9762c2d2017-11-22 17:38:43 -0700304 goto smbd_done;
305 }
Pavel Shilovskyafc18a62019-03-05 15:51:56 -0800306
Jeff Laytonea702b82012-12-27 07:28:55 -0500307 if (ssocket == NULL)
Pavel Shilovskyafc18a62019-03-05 15:51:56 -0800308 return -EAGAIN;
Jeff Laytonea702b82012-12-27 07:28:55 -0500309
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800310 if (signal_pending(current)) {
311 cifs_dbg(FYI, "signal is pending before sending any data\n");
312 return -EINTR;
313 }
314
Jeff Laytonb8eed282012-09-18 16:20:35 -0700315 /* cork the socket */
316 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
317 (char *)&val, sizeof(val));
318
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000319 for (j = 0; j < num_rqst; j++)
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000320 send_length += smb_rqst_len(server, &rqst[j]);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000321 rfc1002_marker = cpu_to_be32(send_length);
322
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800323 /*
324 * We should not allow signals to interrupt the network send because
325 * any partial send will cause session reconnects thus increasing
326 * latency of system calls and overload a server with unnecessary
327 * requests.
328 */
329
330 sigfillset(&mask);
331 sigprocmask(SIG_BLOCK, &mask, &oldmask);
332
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000333 /* Generate a rfc1002 marker for SMB2+ */
334 if (server->vals->header_preamble_size == 0) {
335 struct kvec hiov = {
336 .iov_base = &rfc1002_marker,
337 .iov_len = 4
338 };
David Howellsaa563d72018-10-20 00:57:56 +0100339 iov_iter_kvec(&smb_msg.msg_iter, WRITE, &hiov, 1, 4);
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000340 rc = smb_send_kvec(server, &smb_msg, &sent);
341 if (rc < 0)
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800342 goto unmask;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000343
344 total_len += sent;
345 send_length += 4;
346 }
347
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300348 cifs_dbg(FYI, "Sending smb: smb_len=%u\n", send_length);
349
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000350 for (j = 0; j < num_rqst; j++) {
351 iov = rqst[j].rq_iov;
352 n_vec = rqst[j].rq_nvec;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000353
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000354 size = 0;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300355 for (i = 0; i < n_vec; i++) {
356 dump_smb(iov[i].iov_base, iov[i].iov_len);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000357 size += iov[i].iov_len;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300358 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500359
David Howellsaa563d72018-10-20 00:57:56 +0100360 iov_iter_kvec(&smb_msg.msg_iter, WRITE, iov, n_vec, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Al Viro3ab3f2a2015-11-13 02:36:04 -0500362 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700363 if (rc < 0)
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800364 goto unmask;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700365
366 total_len += sent;
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000367
368 /* now walk the page array and send each page in it */
369 for (i = 0; i < rqst[j].rq_npages; i++) {
370 struct bio_vec bvec;
371
372 bvec.bv_page = rqst[j].rq_pages[i];
373 rqst_page_get_length(&rqst[j], i, &bvec.bv_len,
374 &bvec.bv_offset);
375
David Howellsaa563d72018-10-20 00:57:56 +0100376 iov_iter_bvec(&smb_msg.msg_iter, WRITE,
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000377 &bvec, 1, bvec.bv_len);
378 rc = smb_send_kvec(server, &smb_msg, &sent);
379 if (rc < 0)
380 break;
381
382 total_len += sent;
383 }
Jeff Layton97bc00b2012-09-18 16:20:35 -0700384 }
385
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800386unmask:
387 sigprocmask(SIG_SETMASK, &oldmask, NULL);
388
389 /*
390 * If signal is pending but we have already sent the whole packet to
391 * the server we need to return success status to allow a corresponding
392 * mid entry to be kept in the pending requests queue thus allowing
393 * to handle responses from the server by the client.
394 *
395 * If only part of the packet has been sent there is no need to hide
396 * interrupt because the session will be reconnected anyway, so there
397 * won't be any response from the server to handle.
398 */
399
400 if (signal_pending(current) && (total_len != send_length)) {
401 cifs_dbg(FYI, "signal is pending after attempt to send\n");
402 rc = -EINTR;
403 }
404
Jeff Laytonb8eed282012-09-18 16:20:35 -0700405 /* uncork it */
406 val = 0;
407 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
408 (char *)&val, sizeof(val));
409
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000410 if ((total_len > 0) && (total_len != send_length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500411 cifs_dbg(FYI, "partial send (wanted=%u sent=%zu): terminating session\n",
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000412 send_length, total_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700413 /*
414 * If we have only sent part of an SMB then the next SMB could
415 * be taken as the remainder of this one. We need to kill the
416 * socket so the server throws away the partial SMB
417 */
Steve Frenchedf1ae42008-10-29 00:47:57 +0000418 server->tcpStatus = CifsNeedReconnect;
Steve Frenchbf1fdeb2018-07-30 19:23:09 -0500419 trace_smb3_partial_send_reconnect(server->CurrentMid,
420 server->hostname);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000421 }
Long Li9762c2d2017-11-22 17:38:43 -0700422smbd_done:
Jeff Laytond804d412011-01-28 15:05:43 -0500423 if (rc < 0 && rc != -EINTR)
Joe Perchesf96637b2013-05-04 22:12:25 -0500424 cifs_dbg(VFS, "Error %d sending data on socket to server\n",
425 rc);
Pavel Shilovskyee139192019-01-10 11:27:28 -0800426 else if (rc > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 return rc;
430}
431
Jeff Layton6f49f462012-09-18 16:20:34 -0700432static int
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000433smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
434 struct smb_rqst *rqst, int flags)
Jeff Layton6f49f462012-09-18 16:20:34 -0700435{
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000436 struct kvec iov;
437 struct smb2_transform_hdr tr_hdr;
438 struct smb_rqst cur_rqst[MAX_COMPOUND];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700439 int rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700440
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700441 if (!(flags & CIFS_TRANSFORM_REQ))
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000442 return __smb_send_rqst(server, num_rqst, rqst);
443
444 if (num_rqst > MAX_COMPOUND - 1)
445 return -ENOMEM;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700446
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000447 memset(&cur_rqst[0], 0, sizeof(cur_rqst));
448 memset(&iov, 0, sizeof(iov));
449 memset(&tr_hdr, 0, sizeof(tr_hdr));
450
451 iov.iov_base = &tr_hdr;
452 iov.iov_len = sizeof(tr_hdr);
453 cur_rqst[0].rq_iov = &iov;
454 cur_rqst[0].rq_nvec = 1;
455
456 if (!server->ops->init_transform_rq) {
457 cifs_dbg(VFS, "Encryption requested but transform callback "
458 "is missing\n");
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700459 return -EIO;
460 }
461
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000462 rc = server->ops->init_transform_rq(server, num_rqst + 1,
463 &cur_rqst[0], rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700464 if (rc)
465 return rc;
466
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000467 rc = __smb_send_rqst(server, num_rqst + 1, &cur_rqst[0]);
468 smb3_free_compound_rqst(num_rqst, &cur_rqst[1]);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700469 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700470}
471
Jeff Layton0496e022008-12-30 12:39:16 -0500472int
473smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
474 unsigned int smb_buf_length)
475{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800476 struct kvec iov[2];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700477 struct smb_rqst rqst = { .rq_iov = iov,
478 .rq_nvec = 2 };
Jeff Layton0496e022008-12-30 12:39:16 -0500479
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800480 iov[0].iov_base = smb_buffer;
481 iov[0].iov_len = 4;
482 iov[1].iov_base = (char *)smb_buffer + 4;
483 iov[1].iov_len = smb_buf_length;
Jeff Layton0496e022008-12-30 12:39:16 -0500484
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000485 return __smb_send_rqst(server, 1, &rqst);
Jeff Layton0496e022008-12-30 12:39:16 -0500486}
487
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300488static int
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000489wait_for_free_credits(struct TCP_Server_Info *server, const int flags,
490 unsigned int *instance)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000491{
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300492 int rc;
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000493 int *credits;
494 int optype;
495
496 optype = flags & CIFS_OP_MASK;
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300497
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800498 *instance = 0;
499
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000500 credits = server->ops->get_credits_field(server, optype);
501 /* Since an echo is already inflight, no need to wait to send another */
502 if (*credits <= 0 && optype == CIFS_ECHO_OP)
503 return -EAGAIN;
504
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300505 spin_lock(&server->req_lock);
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000506 if ((flags & CIFS_TIMEOUT_MASK) == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000507 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300508 server->in_flight++;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300509 *credits -= 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800510 *instance = server->reconnect_instance;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300511 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000512 return 0;
513 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000514
Volker Lendecke27a97a62008-12-08 20:59:39 +0000515 while (1) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300516 if (*credits <= 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300517 spin_unlock(&server->req_lock);
Steve French789e6662011-08-09 18:44:44 +0000518 cifs_num_waiters_inc(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300519 rc = wait_event_killable(server->request_q,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300520 has_credits(server, credits));
Steve French789e6662011-08-09 18:44:44 +0000521 cifs_num_waiters_dec(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300522 if (rc)
523 return rc;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300524 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000525 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500526 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300527 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000528 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000529 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000530
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400531 /*
532 * Can not count locking commands against total
533 * as they are allowed to block on server.
534 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000535
536 /* update # of requests on the wire to server */
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000537 if ((flags & CIFS_TIMEOUT_MASK) != CIFS_BLOCKING_OP) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300538 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300539 server->in_flight++;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800540 *instance = server->reconnect_instance;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400541 }
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300542 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000543 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000544 }
545 }
546 return 0;
547}
548
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300549static int
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000550wait_for_free_request(struct TCP_Server_Info *server, const int flags,
551 unsigned int *instance)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300552{
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000553 return wait_for_free_credits(server, flags, instance);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300554}
555
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400556int
557cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800558 unsigned int *num, struct cifs_credits *credits)
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400559{
560 *num = size;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800561 credits->value = 0;
562 credits->instance = server->reconnect_instance;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400563 return 0;
564}
565
Steve French96daf2b2011-05-27 04:34:02 +0000566static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000567 struct mid_q_entry **ppmidQ)
568{
569 if (ses->server->tcpStatus == CifsExiting) {
570 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100571 }
572
573 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500574 cifs_dbg(FYI, "tcp session dead - return to caller to retry\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000575 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100576 }
577
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500578 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000579 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000580 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000581 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000582 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000583 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500584
585 if (ses->status == CifsExiting) {
586 /* check if SMB session is bad because we are setting it up */
587 if (in_buf->Command != SMB_COM_LOGOFF_ANDX)
588 return -EAGAIN;
589 /* else ok - we are shutting down session */
590 }
591
Jeff Layton24b9b062008-12-01 07:09:34 -0500592 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000593 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000594 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500595 spin_lock(&GlobalMid_Lock);
596 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
597 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000598 return 0;
599}
600
Jeff Layton0ade6402011-01-11 07:24:02 -0500601static int
602wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000603{
Jeff Layton0ade6402011-01-11 07:24:02 -0500604 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000605
Colin Cross5853cc22013-05-07 17:52:05 +0000606 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400607 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500608 if (error < 0)
609 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000610
Jeff Layton0ade6402011-01-11 07:24:02 -0500611 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000612}
613
Jeff Laytonfec344e2012-09-18 16:20:35 -0700614struct mid_q_entry *
615cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400616{
617 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700618 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400619 struct mid_q_entry *mid;
620
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800621 if (rqst->rq_iov[0].iov_len != 4 ||
622 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
623 return ERR_PTR(-EIO);
624
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400625 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400626 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400627 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
628
629 mid = AllocMidQEntry(hdr, server);
630 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700631 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400632
Jeff Laytonfec344e2012-09-18 16:20:35 -0700633 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100634 if (rc) {
635 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700636 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100637 }
638
Jeff Laytonfec344e2012-09-18 16:20:35 -0700639 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400640}
Steve French133672e2007-11-13 22:41:37 +0000641
642/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500643 * Send a SMB request and set the callback function in the mid to handle
644 * the result. Caller is responsible for dealing with timeouts.
645 */
646int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700647cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800648 mid_receive_t *receive, mid_callback_t *callback,
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800649 mid_handle_t *handle, void *cbdata, const int flags,
650 const struct cifs_credits *exist_credits)
Jeff Laytona6827c12011-01-11 07:24:21 -0500651{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000652 int rc;
Jeff Laytona6827c12011-01-11 07:24:21 -0500653 struct mid_q_entry *mid;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800654 struct cifs_credits credits = { .value = 0, .instance = 0 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800655 unsigned int instance;
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000656 int optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500657
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400658 optype = flags & CIFS_OP_MASK;
659
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400660 if ((flags & CIFS_HAS_CREDITS) == 0) {
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000661 rc = wait_for_free_request(server, flags, &instance);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400662 if (rc)
663 return rc;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800664 credits.value = 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800665 credits.instance = instance;
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800666 } else
667 instance = exist_credits->instance;
Jeff Laytona6827c12011-01-11 07:24:21 -0500668
669 mutex_lock(&server->srv_mutex);
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800670
671 /*
672 * We can't use credits obtained from the previous session to send this
673 * request. Check if there were reconnects after we obtained credits and
674 * return -EAGAIN in such cases to let callers handle it.
675 */
676 if (instance != server->reconnect_instance) {
677 mutex_unlock(&server->srv_mutex);
678 add_credits_and_wake_if(server, &credits, optype);
679 return -EAGAIN;
680 }
681
Jeff Laytonfec344e2012-09-18 16:20:35 -0700682 mid = server->ops->setup_async_request(server, rqst);
683 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500684 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800685 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700686 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500687 }
688
Jeff Layton44d22d82011-10-19 15:29:49 -0400689 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500690 mid->callback = callback;
691 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800692 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400693 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000694
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100695 /* put it on the pending_mid_q */
696 spin_lock(&GlobalMid_Lock);
697 list_add_tail(&mid->qhead, &server->pending_mid_q);
698 spin_unlock(&GlobalMid_Lock);
699
Long Li93d2cb62017-06-28 15:55:55 -0700700 /*
701 * Need to store the time in mid before calling I/O. For call_async,
702 * I/O response may come back and free the mid entry on another thread.
703 */
704 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000705 cifs_in_send_inc(server);
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000706 rc = smb_send_rqst(server, 1, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000707 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400708
Rabin Vincent820962d2015-12-23 07:32:41 +0100709 if (rc < 0) {
Pavel Shilovskyc781af72019-03-04 14:02:50 -0800710 revert_current_mid(server, mid->credits);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400711 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100712 cifs_delete_mid(mid);
713 }
714
Jeff Laytona6827c12011-01-11 07:24:21 -0500715 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000716
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100717 if (rc == 0)
718 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500719
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800720 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500721 return rc;
722}
723
724/*
Steve French133672e2007-11-13 22:41:37 +0000725 *
726 * Send an SMB Request. No response info (other than return code)
727 * needs to be parsed.
728 *
729 * flags indicate the type of request buffer and how long to wait
730 * and whether to log NT STATUS code (error) before mapping it to POSIX error
731 *
732 */
733int
Steve French96daf2b2011-05-27 04:34:02 +0000734SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400735 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000736{
737 int rc;
738 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700739 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000740 int resp_buf_type;
741
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400742 iov[0].iov_base = in_buf;
743 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Steve French133672e2007-11-13 22:41:37 +0000744 flags |= CIFS_NO_RESP;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700745 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500746 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000747
Steve French133672e2007-11-13 22:41:37 +0000748 return rc;
749}
750
Jeff Layton053d5032011-01-11 07:24:02 -0500751static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400752cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500753{
754 int rc = 0;
755
Joe Perchesf96637b2013-05-04 22:12:25 -0500756 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
757 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500758
Jeff Layton74dd92a2011-01-11 07:24:02 -0500759 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400760 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500761 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500762 spin_unlock(&GlobalMid_Lock);
763 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500764 case MID_RETRY_NEEDED:
765 rc = -EAGAIN;
766 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500767 case MID_RESPONSE_MALFORMED:
768 rc = -EIO;
769 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400770 case MID_SHUTDOWN:
771 rc = -EHOSTDOWN;
772 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500773 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400774 list_del_init(&mid->qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500775 cifs_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
776 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500777 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500778 }
779 spin_unlock(&GlobalMid_Lock);
780
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500781 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500782 return rc;
783}
784
Jeff Layton121b0462012-05-15 12:21:10 -0400785static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800786send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
787 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500788{
Jeff Layton121b0462012-05-15 12:21:10 -0400789 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800790 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500791}
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400794cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
795 bool log_error)
796{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400797 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400798
799 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400800
801 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400802 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800803 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500804 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800805 struct smb_rqst rqst = { .rq_iov = iov,
806 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400807
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800808 iov[0].iov_base = mid->resp_buf;
809 iov[0].iov_len = 4;
810 iov[1].iov_base = (char *)mid->resp_buf + 4;
811 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400812 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700813 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400814 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500815 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500816 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
817 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400818 }
819
820 /* BB special case reconnect tid and uid here? */
821 return map_smb_to_linux_error(mid->resp_buf, log_error);
822}
823
Jeff Laytonfec344e2012-09-18 16:20:35 -0700824struct mid_q_entry *
825cifs_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400826{
827 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700828 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400829 struct mid_q_entry *mid;
830
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800831 if (rqst->rq_iov[0].iov_len != 4 ||
832 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
833 return ERR_PTR(-EIO);
834
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400835 rc = allocate_mid(ses, hdr, &mid);
836 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700837 return ERR_PTR(rc);
838 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
839 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700840 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700841 return ERR_PTR(rc);
842 }
843 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400844}
845
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +1000846static void
Pavel Shilovskyee258d72019-01-03 15:53:10 -0800847cifs_compound_callback(struct mid_q_entry *mid)
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -0800848{
849 struct TCP_Server_Info *server = mid->server;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800850 struct cifs_credits credits;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -0800851
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800852 credits.value = server->ops->get_credits(mid);
853 credits.instance = server->reconnect_instance;
854
855 add_credits(server, &credits, mid->optype);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -0800856}
857
Pavel Shilovskyee258d72019-01-03 15:53:10 -0800858static void
859cifs_compound_last_callback(struct mid_q_entry *mid)
860{
861 cifs_compound_callback(mid);
862 cifs_wake_up_task(mid);
863}
864
865static void
866cifs_cancelled_callback(struct mid_q_entry *mid)
867{
868 cifs_compound_callback(mid);
869 DeleteMidQEntry(mid);
870}
871
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800872int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +1000873compound_send_recv(const unsigned int xid, struct cifs_ses *ses,
874 const int flags, const int num_rqst, struct smb_rqst *rqst,
875 int *resp_buf_type, struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000877 int i, j, optype, rc = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +1000878 struct mid_q_entry *midQ[MAX_COMPOUND];
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -0800879 bool cancelled_mid[MAX_COMPOUND] = {false};
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800880 struct cifs_credits credits[MAX_COMPOUND] = {
881 { .value = 0, .instance = 0 }
882 };
883 unsigned int instance;
Pavel Shilovsky97ea4992019-01-15 16:07:52 -0800884 unsigned int first_instance = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800885 char *buf;
Steve French50c2f752007-07-13 00:33:32 +0000886
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400887 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +0000888
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +1000889 for (i = 0; i < num_rqst; i++)
890 resp_buf_type[i] = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Steve French4b8f9302006-02-26 16:41:18 +0000892 if ((ses == NULL) || (ses->server == NULL)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500893 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return -EIO;
895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700897 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700898 return -ENOENT;
899
Pavel Shilovsky7091bca2019-01-30 16:58:09 -0800900 spin_lock(&ses->server->req_lock);
901 if (ses->server->credits < num_rqst) {
902 /*
903 * Return immediately if not too many requests in flight since
904 * we will likely be stuck on waiting for credits.
905 */
906 if (ses->server->in_flight < num_rqst - ses->server->credits) {
907 spin_unlock(&ses->server->req_lock);
908 return -ENOTSUPP;
909 }
910 } else {
911 /* enough credits to send the whole compounded request */
912 ses->server->credits -= num_rqst;
913 ses->server->in_flight += num_rqst;
914 first_instance = ses->server->reconnect_instance;
915 }
916 spin_unlock(&ses->server->req_lock);
917
918 if (first_instance) {
919 cifs_dbg(FYI, "Acquired %d credits at once\n", num_rqst);
920 for (i = 0; i < num_rqst; i++) {
921 credits[i].value = 1;
922 credits[i].instance = first_instance;
923 }
924 goto setup_rqsts;
925 }
926
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400927 /*
Pavel Shilovsky7091bca2019-01-30 16:58:09 -0800928 * There are not enough credits to send the whole compound request but
929 * there are requests in flight that may bring credits from the server.
930 * This approach still leaves the possibility to be stuck waiting for
931 * credits if the server doesn't grant credits to the outstanding
932 * requests. This should be fixed by returning immediately and letting
933 * a caller fallback to sequential commands instead of compounding.
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -0800934 * Ensure we obtain 1 credit per request in the compound chain.
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400935 */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -0800936 for (i = 0; i < num_rqst; i++) {
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000937 rc = wait_for_free_request(ses->server, flags, &instance);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -0800938
939 if (rc == 0) {
940 credits[i].value = 1;
941 credits[i].instance = instance;
942 /*
943 * All parts of the compound chain must get credits from
944 * the same session, otherwise we may end up using more
945 * credits than the server granted. If there were
946 * reconnects in between, return -EAGAIN and let callers
947 * handle it.
948 */
949 if (i == 0)
950 first_instance = instance;
951 else if (first_instance != instance) {
952 i++;
953 rc = -EAGAIN;
954 }
955 }
956
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -0800957 if (rc) {
958 /*
959 * We haven't sent an SMB packet to the server yet but
960 * we already obtained credits for i requests in the
961 * compound chain - need to return those credits back
962 * for future use. Note that we need to call add_credits
963 * multiple times to match the way we obtained credits
964 * in the first place and to account for in flight
965 * requests correctly.
966 */
967 for (j = 0; j < i; j++)
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800968 add_credits(ses->server, &credits[j], optype);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -0800969 return rc;
970 }
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -0800971 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000972
Pavel Shilovsky7091bca2019-01-30 16:58:09 -0800973setup_rqsts:
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400974 /*
975 * Make sure that we sign in the same order that we send on this socket
976 * and avoid races inside tcp sendmsg code that could cause corruption
977 * of smb data.
978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Jeff Layton72ca5452008-12-01 07:09:36 -0500980 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Pavel Shilovsky97ea4992019-01-15 16:07:52 -0800982 /*
983 * All the parts of the compound chain belong obtained credits from the
984 * same session (see the appropriate checks above). In the same time
985 * there might be reconnects after those checks but before we acquired
986 * the srv_mutex. We can not use credits obtained from the previous
987 * session to send this request. Check if there were reconnects after
988 * we obtained credits and return -EAGAIN in such cases to let callers
989 * handle it.
990 */
991 if (first_instance != ses->server->reconnect_instance) {
992 mutex_unlock(&ses->server->srv_mutex);
993 for (j = 0; j < num_rqst; j++)
994 add_credits(ses->server, &credits[j], optype);
995 return -EAGAIN;
996 }
997
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +1000998 for (i = 0; i < num_rqst; i++) {
999 midQ[i] = ses->server->ops->setup_request(ses, &rqst[i]);
1000 if (IS_ERR(midQ[i])) {
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001001 revert_current_mid(ses->server, i);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001002 for (j = 0; j < i; j++)
1003 cifs_delete_mid(midQ[j]);
1004 mutex_unlock(&ses->server->srv_mutex);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001005
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001006 /* Update # of requests on wire to server */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001007 for (j = 0; j < num_rqst; j++)
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001008 add_credits(ses->server, &credits[j], optype);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001009 return PTR_ERR(midQ[i]);
1010 }
1011
1012 midQ[i]->mid_state = MID_REQUEST_SUBMITTED;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001013 midQ[i]->optype = optype;
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001014 /*
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001015 * Invoke callback for every part of the compound chain
1016 * to calculate credits properly. Wake up this thread only when
1017 * the last element is received.
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001018 */
1019 if (i < num_rqst - 1)
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001020 midQ[i]->callback = cifs_compound_callback;
1021 else
1022 midQ[i]->callback = cifs_compound_last_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 }
Steve French789e6662011-08-09 18:44:44 +00001024 cifs_in_send_inc(ses->server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001025 rc = smb_send_rqst(ses->server, num_rqst, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +00001026 cifs_in_send_dec(ses->server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001027
1028 for (i = 0; i < num_rqst; i++)
1029 cifs_save_when_sent(midQ[i]);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001030
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001031 if (rc < 0) {
1032 revert_current_mid(ses->server, num_rqst);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001033 ses->server->sequence_number -= 2;
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001034 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001035
Jeff Layton72ca5452008-12-01 07:09:36 -05001036 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001037
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001038 if (rc < 0) {
1039 /* Sending failed for some reason - return credits back */
1040 for (i = 0; i < num_rqst; i++)
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001041 add_credits(ses->server, &credits[i], optype);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001042 goto out;
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001043 }
1044
1045 /*
1046 * At this point the request is passed to the network stack - we assume
1047 * that any credits taken from the server structure on the client have
1048 * been spent and we can't return them back. Once we receive responses
1049 * we will collect credits granted by the server in the mid callbacks
1050 * and add those credits to the server structure.
1051 */
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001052
1053 /*
1054 * Compounding is never used during session establish.
1055 */
1056 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP))
1057 smb311_update_preauth_hash(ses, rqst[0].rq_iov,
1058 rqst[0].rq_nvec);
1059
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001060 if ((flags & CIFS_TIMEOUT_MASK) == CIFS_ASYNC_OP)
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001061 goto out;
1062
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001063 for (i = 0; i < num_rqst; i++) {
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001064 rc = wait_for_response(ses->server, midQ[i]);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001065 if (rc != 0)
1066 break;
1067 }
1068 if (rc != 0) {
1069 for (; i < num_rqst; i++) {
Steve French43de1db2018-10-23 21:04:57 -05001070 cifs_dbg(VFS, "Cancelling wait for mid %llu cmd: %d\n",
1071 midQ[i]->mid, le16_to_cpu(midQ[i]->command));
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001072 send_cancel(ses->server, &rqst[i], midQ[i]);
1073 spin_lock(&GlobalMid_Lock);
1074 if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED) {
1075 midQ[i]->mid_flags |= MID_WAIT_CANCELLED;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001076 midQ[i]->callback = cifs_cancelled_callback;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001077 cancelled_mid[i] = true;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001078 credits[i].value = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001079 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001080 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001081 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001082 }
1083
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001084 for (i = 0; i < num_rqst; i++) {
1085 if (rc < 0)
1086 goto out;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001087
1088 rc = cifs_sync_mid_result(midQ[i], ses->server);
1089 if (rc != 0) {
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001090 /* mark this mid as cancelled to not free it below */
1091 cancelled_mid[i] = true;
1092 goto out;
Jeff Layton1be912d2011-01-28 07:08:28 -05001093 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001094
1095 if (!midQ[i]->resp_buf ||
1096 midQ[i]->mid_state != MID_RESPONSE_RECEIVED) {
1097 rc = -EIO;
1098 cifs_dbg(FYI, "Bad MID state?\n");
1099 goto out;
1100 }
1101
1102 buf = (char *)midQ[i]->resp_buf;
1103 resp_iov[i].iov_base = buf;
1104 resp_iov[i].iov_len = midQ[i]->resp_buf_size +
1105 ses->server->vals->header_preamble_size;
1106
1107 if (midQ[i]->large_buf)
1108 resp_buf_type[i] = CIFS_LARGE_BUFFER;
1109 else
1110 resp_buf_type[i] = CIFS_SMALL_BUFFER;
1111
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001112 rc = ses->server->ops->check_receive(midQ[i], ses->server,
1113 flags & CIFS_LOG_ERROR);
1114
1115 /* mark it so buf will not be freed by cifs_delete_mid */
1116 if ((flags & CIFS_NO_RESP) == 0)
1117 midQ[i]->resp_buf = NULL;
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001118
Jeff Layton1be912d2011-01-28 07:08:28 -05001119 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001120
1121 /*
1122 * Compounding is never used during session establish.
1123 */
1124 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP)) {
1125 struct kvec iov = {
1126 .iov_base = resp_iov[0].iov_base,
1127 .iov_len = resp_iov[0].iov_len
1128 };
1129 smb311_update_preauth_hash(ses, &iov, 1);
1130 }
1131
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001132out:
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001133 /*
1134 * This will dequeue all mids. After this it is important that the
1135 * demultiplex_thread will not process any of these mids any futher.
1136 * This is prevented above by using a noop callback that will not
1137 * wake this thread except for the very last PDU.
1138 */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001139 for (i = 0; i < num_rqst; i++) {
1140 if (!cancelled_mid[i])
1141 cifs_delete_mid(midQ[i]);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 return rc;
1145}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001148cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
1149 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
1150 struct kvec *resp_iov)
1151{
1152 return compound_send_recv(xid, ses, flags, 1, rqst, resp_buf_type,
1153 resp_iov);
1154}
1155
1156int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001157SendReceive2(const unsigned int xid, struct cifs_ses *ses,
1158 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
1159 const int flags, struct kvec *resp_iov)
1160{
1161 struct smb_rqst rqst;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001162 struct kvec s_iov[CIFS_MAX_IOV_SIZE], *new_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001163 int rc;
1164
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001165 if (n_vec + 1 > CIFS_MAX_IOV_SIZE) {
Kees Cook6da2ec52018-06-12 13:55:00 -07001166 new_iov = kmalloc_array(n_vec + 1, sizeof(struct kvec),
1167 GFP_KERNEL);
Steve French117e3b72018-04-22 10:24:19 -05001168 if (!new_iov) {
1169 /* otherwise cifs_send_recv below sets resp_buf_type */
1170 *resp_buf_type = CIFS_NO_BUFFER;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001171 return -ENOMEM;
Steve French117e3b72018-04-22 10:24:19 -05001172 }
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001173 } else
1174 new_iov = s_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001175
1176 /* 1st iov is a RFC1001 length followed by the rest of the packet */
1177 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
1178
1179 new_iov[0].iov_base = new_iov[1].iov_base;
1180 new_iov[0].iov_len = 4;
1181 new_iov[1].iov_base += 4;
1182 new_iov[1].iov_len -= 4;
1183
1184 memset(&rqst, 0, sizeof(struct smb_rqst));
1185 rqst.rq_iov = new_iov;
1186 rqst.rq_nvec = n_vec + 1;
1187
1188 rc = cifs_send_recv(xid, ses, &rqst, resp_buf_type, flags, resp_iov);
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001189 if (n_vec + 1 > CIFS_MAX_IOV_SIZE)
1190 kfree(new_iov);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001191 return rc;
1192}
1193
1194int
Steve French96daf2b2011-05-27 04:34:02 +00001195SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001197 int *pbytes_returned, const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
1199 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001201 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1202 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1203 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001204 struct cifs_credits credits = { .value = 1, .instance = 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001207 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return -EIO;
1209 }
Steve French79a58d12007-07-06 22:44:50 +00001210 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001211 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return -EIO;
1213 }
1214
Steve French79a58d12007-07-06 22:44:50 +00001215 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -07001216 return -ENOENT;
1217
Steve French79a58d12007-07-06 22:44:50 +00001218 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 to the same server. We may make this configurable later or
1220 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001222 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001223 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001224 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001225 return -EIO;
1226 }
1227
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001228 rc = wait_for_free_request(ses->server, flags, &credits.instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001229 if (rc)
1230 return rc;
1231
Steve French79a58d12007-07-06 22:44:50 +00001232 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 and avoid races inside tcp sendmsg code that could cause corruption
1234 of smb data */
1235
Jeff Layton72ca5452008-12-01 07:09:36 -05001236 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001238 rc = allocate_mid(ses, in_buf, &midQ);
1239 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -05001240 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001241 /* Update # of requests on wire to server */
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001242 add_credits(ses->server, &credits, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001243 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
1245
Steve Frenchad009ac2005-04-28 22:41:05 -07001246 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001247 if (rc) {
1248 mutex_unlock(&ses->server->srv_mutex);
1249 goto out;
1250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001252 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001253
1254 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001255 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +00001256 cifs_in_send_dec(ses->server);
1257 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001258
1259 if (rc < 0)
1260 ses->server->sequence_number -= 2;
1261
Jeff Layton72ca5452008-12-01 07:09:36 -05001262 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001263
Steve French79a58d12007-07-06 22:44:50 +00001264 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001265 goto out;
1266
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001267 if ((flags & CIFS_TIMEOUT_MASK) == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +00001268 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -05001269
1270 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001271 if (rc != 0) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001272 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001273 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001274 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001275 /* no longer considered to be "in-flight" */
1276 midQ->callback = DeleteMidQEntry;
1277 spin_unlock(&GlobalMid_Lock);
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001278 add_credits(ses->server, &credits, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -05001279 return rc;
1280 }
1281 spin_unlock(&GlobalMid_Lock);
1282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Jeff Layton3c1105d2011-05-22 07:09:13 -04001284 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001285 if (rc != 0) {
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001286 add_credits(ses->server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return rc;
1288 }
Steve French50c2f752007-07-13 00:33:32 +00001289
Jeff Layton2c8f9812011-05-19 16:22:52 -04001290 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001291 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001293 cifs_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +00001294 goto out;
1295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001297 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001298 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1299 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001300out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001301 cifs_delete_mid(midQ);
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001302 add_credits(ses->server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001305}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001307/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
1308 blocking lock to return. */
1309
1310static int
Steve French96daf2b2011-05-27 04:34:02 +00001311send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001312 struct smb_hdr *in_buf,
1313 struct smb_hdr *out_buf)
1314{
1315 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +00001316 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001317 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
1318
1319 /* We just modify the current in_buf to change
1320 the type of lock from LOCKING_ANDX_SHARED_LOCK
1321 or LOCKING_ANDX_EXCLUSIVE_LOCK to
1322 LOCKING_ANDX_CANCEL_LOCK. */
1323
1324 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
1325 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +04001326 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001327
1328 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -05001329 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001330}
1331
1332int
Steve French96daf2b2011-05-27 04:34:02 +00001333SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001334 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
1335 int *pbytes_returned)
1336{
1337 int rc = 0;
1338 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001339 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +00001340 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001341 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1342 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1343 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001344 unsigned int instance;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001345
1346 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001347 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001348 return -EIO;
1349 }
1350 ses = tcon->ses;
1351
Steve French79a58d12007-07-06 22:44:50 +00001352 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001353 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001354 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 }
1356
Steve French79a58d12007-07-06 22:44:50 +00001357 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001358 return -ENOENT;
1359
Steve French79a58d12007-07-06 22:44:50 +00001360 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001361 to the same server. We may make this configurable later or
1362 use ses->maxReq */
1363
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001364 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001365 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001366 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001367 return -EIO;
1368 }
1369
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001370 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP, &instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001371 if (rc)
1372 return rc;
1373
Steve French79a58d12007-07-06 22:44:50 +00001374 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001375 and avoid races inside tcp sendmsg code that could cause corruption
1376 of smb data */
1377
Jeff Layton72ca5452008-12-01 07:09:36 -05001378 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001379
1380 rc = allocate_mid(ses, in_buf, &midQ);
1381 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -05001382 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001383 return rc;
1384 }
1385
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001386 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001387 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001388 cifs_delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +01001389 mutex_unlock(&ses->server->srv_mutex);
1390 return rc;
1391 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001392
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001393 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001394 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001395 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +00001396 cifs_in_send_dec(ses->server);
1397 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001398
1399 if (rc < 0)
1400 ses->server->sequence_number -= 2;
1401
Jeff Layton72ca5452008-12-01 07:09:36 -05001402 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001403
Steve French79a58d12007-07-06 22:44:50 +00001404 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001405 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001406 return rc;
1407 }
1408
1409 /* Wait for a reply - allow signals to interrupt. */
1410 rc = wait_event_interruptible(ses->server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001411 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001412 ((ses->server->tcpStatus != CifsGood) &&
1413 (ses->server->tcpStatus != CifsNew)));
1414
1415 /* Were we interrupted by a signal ? */
1416 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001417 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001418 ((ses->server->tcpStatus == CifsGood) ||
1419 (ses->server->tcpStatus == CifsNew))) {
1420
1421 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1422 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1423 blocking lock to return. */
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001424 rc = send_cancel(ses->server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001425 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001426 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001427 return rc;
1428 }
1429 } else {
1430 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1431 to cause the blocking lock to return. */
1432
1433 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1434
1435 /* If we get -ENOLCK back the lock may have
1436 already been removed. Don't exit in this case. */
1437 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001438 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001439 return rc;
1440 }
1441 }
1442
Jeff Layton1be912d2011-01-28 07:08:28 -05001443 rc = wait_for_response(ses->server, midQ);
1444 if (rc) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001445 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001446 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001447 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001448 /* no longer considered to be "in-flight" */
1449 midQ->callback = DeleteMidQEntry;
1450 spin_unlock(&GlobalMid_Lock);
1451 return rc;
1452 }
1453 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001454 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001455
1456 /* We got the response - restart system call. */
1457 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001458 }
1459
Jeff Layton3c1105d2011-05-22 07:09:13 -04001460 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001461 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001462 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001463
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001464 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001465 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001466 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001467 cifs_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001468 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001469 }
1470
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001471 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001472 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1473 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001474out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001475 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001476 if (rstart && rc == -EACCES)
1477 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return rc;
1479}