blob: 47a125ece11ea0d3e2daa0814c8cab28b4643bb1 [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>
36#include "cifspdu.h"
37#include "cifsglob.h"
38#include "cifsproto.h"
39#include "cifs_debug.h"
Steve French50c2f752007-07-13 00:33:32 +000040
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040041void
42cifs_wake_up_task(struct mid_q_entry *mid)
Jeff Layton2b84a36c2011-01-11 07:24:21 -050043{
44 wake_up_process(mid->callback_data);
45}
46
Jeff Laytona6827c12011-01-11 07:24:21 -050047struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050048AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 struct mid_q_entry *temp;
51
Jeff Layton24b9b062008-12-01 07:09:34 -050052 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050053 cifs_dbg(VFS, "Null TCP session in AllocMidQEntry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 return NULL;
55 }
Steve French50c2f752007-07-13 00:33:32 +000056
Pekka Enberg232087c2008-09-15 13:22:54 +030057 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
NeilBrowna6f74e82017-04-10 12:08:53 +100058 memset(temp, 0, sizeof(struct mid_q_entry));
59 temp->mid = get_mid(smb_buffer);
60 temp->pid = current->pid;
61 temp->command = cpu_to_le16(smb_buffer->Command);
62 cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command);
Steve French1047abc2005-10-11 19:58:06 -070063 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
NeilBrowna6f74e82017-04-10 12:08:53 +100064 /* when mid allocated can be before when sent */
65 temp->when_alloc = jiffies;
66 temp->server = server;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050067
NeilBrowna6f74e82017-04-10 12:08:53 +100068 /*
69 * The default is for the mid to be synchronous, so the
70 * default callback just wakes up the current task.
71 */
72 temp->callback = cifs_wake_up_task;
73 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 atomic_inc(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040076 temp->mid_state = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return temp;
78}
79
Jeff Layton766fdbb2011-01-11 07:24:21 -050080void
Linus Torvalds1da177e2005-04-16 15:20:36 -070081DeleteMidQEntry(struct mid_q_entry *midEntry)
82{
Steve French1047abc2005-10-11 19:58:06 -070083#ifdef CONFIG_CIFS_STATS2
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040084 __le16 command = midEntry->server->vals->lock_cmd;
Steve French1047abc2005-10-11 19:58:06 -070085 unsigned long now;
86#endif
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040087 midEntry->mid_state = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -050088 atomic_dec(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040089 if (midEntry->large_buf)
Steve Frenchb8643e12005-04-28 22:41:07 -070090 cifs_buf_release(midEntry->resp_buf);
91 else
92 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -070093#ifdef CONFIG_CIFS_STATS2
94 now = jiffies;
95 /* commands taking longer than one second are indications that
96 something is wrong, unless it is quite a slow link or server */
Karim Eshapa4328fea2017-05-12 01:53:38 +020097 if (time_after(now, midEntry->when_alloc + HZ)) {
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040098 if ((cifsFYI & CIFS_TIMER) && (midEntry->command != command)) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +030099 pr_debug(" CIFS slow rsp: cmd %d mid %llu",
Steve French1047abc2005-10-11 19:58:06 -0700100 midEntry->command, midEntry->mid);
Andy Shevchenko0b456f02014-08-27 16:49:44 +0300101 pr_info(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
Steve French1047abc2005-10-11 19:58:06 -0700102 now - midEntry->when_alloc,
103 now - midEntry->when_sent,
104 now - midEntry->when_received);
105 }
106 }
107#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 mempool_free(midEntry, cifs_mid_poolp);
109}
110
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700111void
112cifs_delete_mid(struct mid_q_entry *mid)
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500113{
114 spin_lock(&GlobalMid_Lock);
115 list_del(&mid->qhead);
116 spin_unlock(&GlobalMid_Lock);
117
118 DeleteMidQEntry(mid);
119}
120
Jeff Layton6f49f462012-09-18 16:20:34 -0700121/*
122 * smb_send_kvec - send an array of kvecs to the server
123 * @server: Server to send the data to
Al Viro3ab3f2a2015-11-13 02:36:04 -0500124 * @smb_msg: Message to send
Jeff Layton6f49f462012-09-18 16:20:34 -0700125 * @sent: amount of data sent on socket is stored here
126 *
127 * Our basic "send data to server" function. Should be called with srv_mutex
128 * held. The caller is responsible for handling the results.
129 */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500130static int
Al Viro3ab3f2a2015-11-13 02:36:04 -0500131smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg,
132 size_t *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 int rc = 0;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500135 int retries = 0;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000136 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000137
Jeff Layton6f49f462012-09-18 16:20:34 -0700138 *sent = 0;
139
Al Viro3ab3f2a2015-11-13 02:36:04 -0500140 smb_msg->msg_name = (struct sockaddr *) &server->dstaddr;
141 smb_msg->msg_namelen = sizeof(struct sockaddr);
142 smb_msg->msg_control = NULL;
143 smb_msg->msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500144 if (server->noblocksnd)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500145 smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000146 else
Al Viro3ab3f2a2015-11-13 02:36:04 -0500147 smb_msg->msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Al Viro3ab3f2a2015-11-13 02:36:04 -0500149 while (msg_data_left(smb_msg)) {
Jeff Layton6f49f462012-09-18 16:20:34 -0700150 /*
151 * If blocking send, we try 3 times, since each can block
152 * for 5 seconds. For nonblocking we have to try more
153 * but wait increasing amounts of time allowing time for
154 * socket to clear. The overall time we wait in either
155 * case to send on the socket is about 15 seconds.
156 * Similarly we wait for 15 seconds for a response from
157 * the server in SendReceive[2] for the server to send
158 * a response back for most types of requests (except
159 * SMB Write past end of file which can be slow, and
160 * blocking lock operations). NFS waits slightly longer
161 * than CIFS, but this can make it take longer for
162 * nonresponsive servers to be detected and 15 seconds
163 * is more than enough time for modern networks to
164 * send a packet. In most cases if we fail to send
165 * after the retries we will kill the socket and
166 * reconnect which may clear the network problem.
167 */
Al Viro3ab3f2a2015-11-13 02:36:04 -0500168 rc = sock_sendmsg(ssocket, smb_msg);
Jeff Laytonce6c44e2013-03-22 08:36:45 -0400169 if (rc == -EAGAIN) {
Al Viro3ab3f2a2015-11-13 02:36:04 -0500170 retries++;
171 if (retries >= 14 ||
172 (!server->noblocksnd && (retries > 2))) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500173 cifs_dbg(VFS, "sends on sock %p stuck for 15 seconds\n",
174 ssocket);
Al Viro3ab3f2a2015-11-13 02:36:04 -0500175 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500177 msleep(1 << retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 continue;
179 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700180
Steve French79a58d12007-07-06 22:44:50 +0000181 if (rc < 0)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500182 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700183
Steve French79a58d12007-07-06 22:44:50 +0000184 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700185 /* should never happen, letting socket clear before
186 retrying is our only obvious option here */
Joe Perchesf96637b2013-05-04 22:12:25 -0500187 cifs_dbg(VFS, "tcp sent no data\n");
Steve French3e844692005-10-03 13:37:24 -0700188 msleep(500);
189 continue;
190 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700191
Al Viro3ab3f2a2015-11-13 02:36:04 -0500192 /* send was at least partially successful */
193 *sent += rc;
194 retries = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500196 return 0;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700197}
198
Jeff Laytona26054d2014-02-14 07:21:00 -0500199static unsigned long
200rqst_len(struct smb_rqst *rqst)
201{
202 unsigned int i;
203 struct kvec *iov = rqst->rq_iov;
204 unsigned long buflen = 0;
205
206 /* total up iov array first */
207 for (i = 0; i < rqst->rq_nvec; i++)
208 buflen += iov[i].iov_len;
209
210 /* add in the page array if there is one */
211 if (rqst->rq_npages) {
212 buflen += rqst->rq_pagesz * (rqst->rq_npages - 1);
213 buflen += rqst->rq_tailsz;
214 }
215
216 return buflen;
217}
218
Jeff Layton6f49f462012-09-18 16:20:34 -0700219static int
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700220__smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Jeff Layton6f49f462012-09-18 16:20:34 -0700221{
222 int rc;
223 struct kvec *iov = rqst->rq_iov;
224 int n_vec = rqst->rq_nvec;
225 unsigned int smb_buf_length = get_rfc1002_length(iov[0].iov_base);
Jeff Laytona26054d2014-02-14 07:21:00 -0500226 unsigned long send_length;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700227 unsigned int i;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500228 size_t total_len = 0, sent, size;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700229 struct socket *ssocket = server->ssocket;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500230 struct msghdr smb_msg;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700231 int val = 1;
Jeff Layton6f49f462012-09-18 16:20:34 -0700232
Jeff Laytonea702b82012-12-27 07:28:55 -0500233 if (ssocket == NULL)
234 return -ENOTSOCK;
235
Jeff Laytona26054d2014-02-14 07:21:00 -0500236 /* sanity check send length */
237 send_length = rqst_len(rqst);
238 if (send_length != smb_buf_length + 4) {
239 WARN(1, "Send length mismatch(send_length=%lu smb_buf_length=%u)\n",
240 send_length, smb_buf_length);
241 return -EIO;
242 }
243
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800244 if (n_vec < 2)
245 return -EIO;
246
Joe Perchesf96637b2013-05-04 22:12:25 -0500247 cifs_dbg(FYI, "Sending smb: smb_len=%u\n", smb_buf_length);
Jeff Layton6f49f462012-09-18 16:20:34 -0700248 dump_smb(iov[0].iov_base, iov[0].iov_len);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800249 dump_smb(iov[1].iov_base, iov[1].iov_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700250
Jeff Laytonb8eed282012-09-18 16:20:35 -0700251 /* cork the socket */
252 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
253 (char *)&val, sizeof(val));
254
Al Viro3ab3f2a2015-11-13 02:36:04 -0500255 size = 0;
256 for (i = 0; i < n_vec; i++)
257 size += iov[i].iov_len;
258
259 iov_iter_kvec(&smb_msg.msg_iter, WRITE | ITER_KVEC, iov, n_vec, size);
260
261 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700262 if (rc < 0)
263 goto uncork;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Jeff Layton97bc00b2012-09-18 16:20:35 -0700265 total_len += sent;
266
267 /* now walk the page array and send each page in it */
268 for (i = 0; i < rqst->rq_npages; i++) {
Al Viro3ab3f2a2015-11-13 02:36:04 -0500269 size_t len = i == rqst->rq_npages - 1
270 ? rqst->rq_tailsz
271 : rqst->rq_pagesz;
272 struct bio_vec bvec = {
273 .bv_page = rqst->rq_pages[i],
274 .bv_len = len
275 };
276 iov_iter_bvec(&smb_msg.msg_iter, WRITE | ITER_BVEC,
277 &bvec, 1, len);
278 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700279 if (rc < 0)
280 break;
281
282 total_len += sent;
283 }
284
285uncork:
Jeff Laytonb8eed282012-09-18 16:20:35 -0700286 /* uncork it */
287 val = 0;
288 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
289 (char *)&val, sizeof(val));
290
Steve Frenchedf1ae42008-10-29 00:47:57 +0000291 if ((total_len > 0) && (total_len != smb_buf_length + 4)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500292 cifs_dbg(FYI, "partial send (wanted=%u sent=%zu): terminating session\n",
293 smb_buf_length + 4, total_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700294 /*
295 * If we have only sent part of an SMB then the next SMB could
296 * be taken as the remainder of this one. We need to kill the
297 * socket so the server throws away the partial SMB
298 */
Steve Frenchedf1ae42008-10-29 00:47:57 +0000299 server->tcpStatus = CifsNeedReconnect;
300 }
301
Jeff Laytond804d412011-01-28 15:05:43 -0500302 if (rc < 0 && rc != -EINTR)
Joe Perchesf96637b2013-05-04 22:12:25 -0500303 cifs_dbg(VFS, "Error %d sending data on socket to server\n",
304 rc);
Jeff Laytond804d412011-01-28 15:05:43 -0500305 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 return rc;
309}
310
Jeff Layton6f49f462012-09-18 16:20:34 -0700311static int
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700312smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst, int flags)
Jeff Layton6f49f462012-09-18 16:20:34 -0700313{
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700314 struct smb_rqst cur_rqst;
315 int rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700316
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700317 if (!(flags & CIFS_TRANSFORM_REQ))
318 return __smb_send_rqst(server, rqst);
319
320 if (!server->ops->init_transform_rq ||
321 !server->ops->free_transform_rq) {
322 cifs_dbg(VFS, "Encryption requested but transform callbacks are missed\n");
323 return -EIO;
324 }
325
326 rc = server->ops->init_transform_rq(server, &cur_rqst, rqst);
327 if (rc)
328 return rc;
329
330 rc = __smb_send_rqst(server, &cur_rqst);
331 server->ops->free_transform_rq(&cur_rqst);
332 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700333}
334
Jeff Layton0496e022008-12-30 12:39:16 -0500335int
336smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
337 unsigned int smb_buf_length)
338{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800339 struct kvec iov[2];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700340 struct smb_rqst rqst = { .rq_iov = iov,
341 .rq_nvec = 2 };
Jeff Layton0496e022008-12-30 12:39:16 -0500342
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800343 iov[0].iov_base = smb_buffer;
344 iov[0].iov_len = 4;
345 iov[1].iov_base = (char *)smb_buffer + 4;
346 iov[1].iov_len = smb_buf_length;
Jeff Layton0496e022008-12-30 12:39:16 -0500347
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700348 return __smb_send_rqst(server, &rqst);
Jeff Layton0496e022008-12-30 12:39:16 -0500349}
350
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300351static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400352wait_for_free_credits(struct TCP_Server_Info *server, const int timeout,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300353 int *credits)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000354{
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300355 int rc;
356
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300357 spin_lock(&server->req_lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400358 if (timeout == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000359 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300360 server->in_flight++;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300361 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300362 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000363 return 0;
364 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000365
Volker Lendecke27a97a62008-12-08 20:59:39 +0000366 while (1) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300367 if (*credits <= 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300368 spin_unlock(&server->req_lock);
Steve French789e6662011-08-09 18:44:44 +0000369 cifs_num_waiters_inc(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300370 rc = wait_event_killable(server->request_q,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300371 has_credits(server, credits));
Steve French789e6662011-08-09 18:44:44 +0000372 cifs_num_waiters_dec(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300373 if (rc)
374 return rc;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300375 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000376 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500377 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300378 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000379 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000380 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000381
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400382 /*
383 * Can not count locking commands against total
384 * as they are allowed to block on server.
385 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000386
387 /* update # of requests on the wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400388 if (timeout != CIFS_BLOCKING_OP) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300389 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300390 server->in_flight++;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400391 }
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300392 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000393 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000394 }
395 }
396 return 0;
397}
398
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300399static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400400wait_for_free_request(struct TCP_Server_Info *server, const int timeout,
401 const int optype)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300402{
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500403 int *val;
404
405 val = server->ops->get_credits_field(server, optype);
406 /* Since an echo is already inflight, no need to wait to send another */
407 if (*val <= 0 && optype == CIFS_ECHO_OP)
408 return -EAGAIN;
409 return wait_for_free_credits(server, timeout, val);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300410}
411
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400412int
413cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
414 unsigned int *num, unsigned int *credits)
415{
416 *num = size;
417 *credits = 0;
418 return 0;
419}
420
Steve French96daf2b2011-05-27 04:34:02 +0000421static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000422 struct mid_q_entry **ppmidQ)
423{
424 if (ses->server->tcpStatus == CifsExiting) {
425 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100426 }
427
428 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500429 cifs_dbg(FYI, "tcp session dead - return to caller to retry\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000430 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100431 }
432
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500433 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000434 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000435 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000436 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000437 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000438 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500439
440 if (ses->status == CifsExiting) {
441 /* check if SMB session is bad because we are setting it up */
442 if (in_buf->Command != SMB_COM_LOGOFF_ANDX)
443 return -EAGAIN;
444 /* else ok - we are shutting down session */
445 }
446
Jeff Layton24b9b062008-12-01 07:09:34 -0500447 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000448 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000449 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500450 spin_lock(&GlobalMid_Lock);
451 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
452 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000453 return 0;
454}
455
Jeff Layton0ade6402011-01-11 07:24:02 -0500456static int
457wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000458{
Jeff Layton0ade6402011-01-11 07:24:02 -0500459 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000460
Colin Cross5853cc22013-05-07 17:52:05 +0000461 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400462 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500463 if (error < 0)
464 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000465
Jeff Layton0ade6402011-01-11 07:24:02 -0500466 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000467}
468
Jeff Laytonfec344e2012-09-18 16:20:35 -0700469struct mid_q_entry *
470cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400471{
472 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700473 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400474 struct mid_q_entry *mid;
475
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800476 if (rqst->rq_iov[0].iov_len != 4 ||
477 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
478 return ERR_PTR(-EIO);
479
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400480 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400481 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400482 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
483
484 mid = AllocMidQEntry(hdr, server);
485 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700486 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400487
Jeff Laytonfec344e2012-09-18 16:20:35 -0700488 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100489 if (rc) {
490 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700491 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100492 }
493
Jeff Laytonfec344e2012-09-18 16:20:35 -0700494 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400495}
Steve French133672e2007-11-13 22:41:37 +0000496
497/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500498 * Send a SMB request and set the callback function in the mid to handle
499 * the result. Caller is responsible for dealing with timeouts.
500 */
501int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700502cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800503 mid_receive_t *receive, mid_callback_t *callback,
504 mid_handle_t *handle, void *cbdata, const int flags)
Jeff Laytona6827c12011-01-11 07:24:21 -0500505{
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400506 int rc, timeout, optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500507 struct mid_q_entry *mid;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400508 unsigned int credits = 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500509
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400510 timeout = flags & CIFS_TIMEOUT_MASK;
511 optype = flags & CIFS_OP_MASK;
512
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400513 if ((flags & CIFS_HAS_CREDITS) == 0) {
514 rc = wait_for_free_request(server, timeout, optype);
515 if (rc)
516 return rc;
517 credits = 1;
518 }
Jeff Laytona6827c12011-01-11 07:24:21 -0500519
520 mutex_lock(&server->srv_mutex);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700521 mid = server->ops->setup_async_request(server, rqst);
522 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500523 mutex_unlock(&server->srv_mutex);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400524 add_credits_and_wake_if(server, credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700525 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500526 }
527
Jeff Layton44d22d82011-10-19 15:29:49 -0400528 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500529 mid->callback = callback;
530 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800531 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400532 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000533
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100534 /* put it on the pending_mid_q */
535 spin_lock(&GlobalMid_Lock);
536 list_add_tail(&mid->qhead, &server->pending_mid_q);
537 spin_unlock(&GlobalMid_Lock);
538
539
Steve French789e6662011-08-09 18:44:44 +0000540 cifs_in_send_inc(server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700541 rc = smb_send_rqst(server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000542 cifs_in_send_dec(server);
543 cifs_save_when_sent(mid);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400544
Rabin Vincent820962d2015-12-23 07:32:41 +0100545 if (rc < 0) {
Jeff Laytonad313cb2013-04-03 10:27:36 -0400546 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100547 cifs_delete_mid(mid);
548 }
549
Jeff Laytona6827c12011-01-11 07:24:21 -0500550 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000551
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100552 if (rc == 0)
553 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500554
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400555 add_credits_and_wake_if(server, credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500556 return rc;
557}
558
559/*
Steve French133672e2007-11-13 22:41:37 +0000560 *
561 * Send an SMB Request. No response info (other than return code)
562 * needs to be parsed.
563 *
564 * flags indicate the type of request buffer and how long to wait
565 * and whether to log NT STATUS code (error) before mapping it to POSIX error
566 *
567 */
568int
Steve French96daf2b2011-05-27 04:34:02 +0000569SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400570 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000571{
572 int rc;
573 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700574 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000575 int resp_buf_type;
576
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400577 iov[0].iov_base = in_buf;
578 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Steve French133672e2007-11-13 22:41:37 +0000579 flags |= CIFS_NO_RESP;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700580 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500581 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000582
Steve French133672e2007-11-13 22:41:37 +0000583 return rc;
584}
585
Jeff Layton053d5032011-01-11 07:24:02 -0500586static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400587cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500588{
589 int rc = 0;
590
Joe Perchesf96637b2013-05-04 22:12:25 -0500591 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
592 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500593
Jeff Layton74dd92a2011-01-11 07:24:02 -0500594 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400595 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500596 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500597 spin_unlock(&GlobalMid_Lock);
598 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500599 case MID_RETRY_NEEDED:
600 rc = -EAGAIN;
601 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500602 case MID_RESPONSE_MALFORMED:
603 rc = -EIO;
604 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400605 case MID_SHUTDOWN:
606 rc = -EHOSTDOWN;
607 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500608 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400609 list_del_init(&mid->qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500610 cifs_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
611 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500612 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500613 }
614 spin_unlock(&GlobalMid_Lock);
615
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500616 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500617 return rc;
618}
619
Jeff Layton121b0462012-05-15 12:21:10 -0400620static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800621send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
622 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500623{
Jeff Layton121b0462012-05-15 12:21:10 -0400624 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800625 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500626}
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400629cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
630 bool log_error)
631{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400632 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400633
634 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400635
636 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400637 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800638 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500639 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800640 struct smb_rqst rqst = { .rq_iov = iov,
641 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400642
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800643 iov[0].iov_base = mid->resp_buf;
644 iov[0].iov_len = 4;
645 iov[1].iov_base = (char *)mid->resp_buf + 4;
646 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400647 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700648 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400649 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500650 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500651 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
652 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400653 }
654
655 /* BB special case reconnect tid and uid here? */
656 return map_smb_to_linux_error(mid->resp_buf, log_error);
657}
658
Jeff Laytonfec344e2012-09-18 16:20:35 -0700659struct mid_q_entry *
660cifs_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400661{
662 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700663 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400664 struct mid_q_entry *mid;
665
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800666 if (rqst->rq_iov[0].iov_len != 4 ||
667 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
668 return ERR_PTR(-EIO);
669
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400670 rc = allocate_mid(ses, hdr, &mid);
671 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700672 return ERR_PTR(rc);
673 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
674 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700675 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700676 return ERR_PTR(rc);
677 }
678 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400679}
680
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800681int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800682cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
683 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
684 struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 int rc = 0;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400687 int timeout, optype;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500688 struct mid_q_entry *midQ;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400689 unsigned int credits = 1;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800690 char *buf;
Steve French50c2f752007-07-13 00:33:32 +0000691
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400692 timeout = flags & CIFS_TIMEOUT_MASK;
693 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +0000694
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400695 *resp_buf_type = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Steve French4b8f9302006-02-26 16:41:18 +0000697 if ((ses == NULL) || (ses->server == NULL)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500698 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return -EIO;
700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700702 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700703 return -ENOENT;
704
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400705 /*
706 * Ensure that we do not send more than 50 overlapping requests
707 * to the same server. We may make this configurable later or
708 * use ses->maxReq.
709 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400711 rc = wait_for_free_request(ses->server, timeout, optype);
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700712 if (rc)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000713 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000714
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400715 /*
716 * Make sure that we sign in the same order that we send on this socket
717 * and avoid races inside tcp sendmsg code that could cause corruption
718 * of smb data.
719 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Jeff Layton72ca5452008-12-01 07:09:36 -0500721 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800723 midQ = ses->server->ops->setup_request(ses, rqst);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700724 if (IS_ERR(midQ)) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500725 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000726 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400727 add_credits(ses->server, 1, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700728 return PTR_ERR(midQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400731 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000732 cifs_in_send_inc(ses->server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700733 rc = smb_send_rqst(ses->server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000734 cifs_in_send_dec(ses->server);
735 cifs_save_when_sent(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000736
Jeff Laytonad313cb2013-04-03 10:27:36 -0400737 if (rc < 0)
738 ses->server->sequence_number -= 2;
Jeff Layton72ca5452008-12-01 07:09:36 -0500739 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000740
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700741 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000742 goto out;
Steve French4b8f9302006-02-26 16:41:18 +0000743
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700744 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000745 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500746
747 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500748 if (rc != 0) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800749 cifs_dbg(FYI, "Cancelling wait for mid %llu\n", midQ->mid);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800750 send_cancel(ses->server, rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500751 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400752 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800753 midQ->mid_flags |= MID_WAIT_CANCELLED;
Jeff Layton1be912d2011-01-28 07:08:28 -0500754 midQ->callback = DeleteMidQEntry;
755 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400756 add_credits(ses->server, 1, optype);
Jeff Layton1be912d2011-01-28 07:08:28 -0500757 return rc;
758 }
759 spin_unlock(&GlobalMid_Lock);
760 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500761
Jeff Layton3c1105d2011-05-22 07:09:13 -0400762 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500763 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400764 add_credits(ses->server, 1, optype);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500765 return rc;
766 }
Steve French50c2f752007-07-13 00:33:32 +0000767
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400768 if (!midQ->resp_buf || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500769 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -0500770 cifs_dbg(FYI, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +0000771 goto out;
772 }
Steve French84afc292005-12-02 13:32:45 -0800773
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400774 buf = (char *)midQ->resp_buf;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700775 resp_iov->iov_base = buf;
776 resp_iov->iov_len = get_rfc1002_length(buf) + 4;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400777 if (midQ->large_buf)
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400778 *resp_buf_type = CIFS_LARGE_BUFFER;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400779 else
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400780 *resp_buf_type = CIFS_SMALL_BUFFER;
781
782 credits = ses->server->ops->get_credits(midQ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500783
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400784 rc = ses->server->ops->check_receive(midQ, ses->server,
785 flags & CIFS_LOG_ERROR);
Steve French2b2bdfb2008-12-11 17:26:54 +0000786
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700787 /* mark it so buf will not be freed by cifs_delete_mid */
Jeff Layton2c8f9812011-05-19 16:22:52 -0400788 if ((flags & CIFS_NO_RESP) == 0)
789 midQ->resp_buf = NULL;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000790out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700791 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400792 add_credits(ses->server, credits, optype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 return rc;
795}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800798SendReceive2(const unsigned int xid, struct cifs_ses *ses,
799 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
800 const int flags, struct kvec *resp_iov)
801{
802 struct smb_rqst rqst;
803 struct kvec *new_iov;
804 int rc;
805
806 new_iov = kmalloc(sizeof(struct kvec) * (n_vec + 1), GFP_KERNEL);
807 if (!new_iov)
808 return -ENOMEM;
809
810 /* 1st iov is a RFC1001 length followed by the rest of the packet */
811 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
812
813 new_iov[0].iov_base = new_iov[1].iov_base;
814 new_iov[0].iov_len = 4;
815 new_iov[1].iov_base += 4;
816 new_iov[1].iov_len -= 4;
817
818 memset(&rqst, 0, sizeof(struct smb_rqst));
819 rqst.rq_iov = new_iov;
820 rqst.rq_nvec = n_vec + 1;
821
822 rc = cifs_send_recv(xid, ses, &rqst, resp_buf_type, flags, resp_iov);
823 kfree(new_iov);
824 return rc;
825}
826
827int
Steve French96daf2b2011-05-27 04:34:02 +0000828SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400830 int *pbytes_returned, const int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800834 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
835 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
836 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500839 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return -EIO;
841 }
Steve French79a58d12007-07-06 22:44:50 +0000842 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500843 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return -EIO;
845 }
846
Steve French79a58d12007-07-06 22:44:50 +0000847 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700848 return -ENOENT;
849
Steve French79a58d12007-07-06 22:44:50 +0000850 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 to the same server. We may make this configurable later or
852 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800854 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500855 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800856 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000857 return -EIO;
858 }
859
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400860 rc = wait_for_free_request(ses->server, timeout, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000861 if (rc)
862 return rc;
863
Steve French79a58d12007-07-06 22:44:50 +0000864 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 and avoid races inside tcp sendmsg code that could cause corruption
866 of smb data */
867
Jeff Layton72ca5452008-12-01 07:09:36 -0500868 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000870 rc = allocate_mid(ses, in_buf, &midQ);
871 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500872 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000873 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400874 add_credits(ses->server, 1, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000875 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
Steve Frenchad009ac2005-04-28 22:41:05 -0700878 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100879 if (rc) {
880 mutex_unlock(&ses->server->srv_mutex);
881 goto out;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400884 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000885
886 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800887 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +0000888 cifs_in_send_dec(ses->server);
889 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400890
891 if (rc < 0)
892 ses->server->sequence_number -= 2;
893
Jeff Layton72ca5452008-12-01 07:09:36 -0500894 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000895
Steve French79a58d12007-07-06 22:44:50 +0000896 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000897 goto out;
898
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400899 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000900 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500901
902 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500903 if (rc != 0) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800904 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500905 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400906 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500907 /* no longer considered to be "in-flight" */
908 midQ->callback = DeleteMidQEntry;
909 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400910 add_credits(ses->server, 1, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -0500911 return rc;
912 }
913 spin_unlock(&GlobalMid_Lock);
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Jeff Layton3c1105d2011-05-22 07:09:13 -0400916 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500917 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400918 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 return rc;
920 }
Steve French50c2f752007-07-13 00:33:32 +0000921
Jeff Layton2c8f9812011-05-19 16:22:52 -0400922 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400923 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -0500925 cifs_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +0000926 goto out;
927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400929 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400930 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
931 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000932out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700933 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400934 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000937}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000939/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
940 blocking lock to return. */
941
942static int
Steve French96daf2b2011-05-27 04:34:02 +0000943send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000944 struct smb_hdr *in_buf,
945 struct smb_hdr *out_buf)
946{
947 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +0000948 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000949 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
950
951 /* We just modify the current in_buf to change
952 the type of lock from LOCKING_ANDX_SHARED_LOCK
953 or LOCKING_ANDX_EXCLUSIVE_LOCK to
954 LOCKING_ANDX_CANCEL_LOCK. */
955
956 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
957 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +0400958 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000959
960 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -0500961 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000962}
963
964int
Steve French96daf2b2011-05-27 04:34:02 +0000965SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000966 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
967 int *pbytes_returned)
968{
969 int rc = 0;
970 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000971 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +0000972 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800973 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
974 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
975 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000976
977 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500978 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000979 return -EIO;
980 }
981 ses = tcon->ses;
982
Steve French79a58d12007-07-06 22:44:50 +0000983 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500984 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000985 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
Steve French79a58d12007-07-06 22:44:50 +0000988 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000989 return -ENOENT;
990
Steve French79a58d12007-07-06 22:44:50 +0000991 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000992 to the same server. We may make this configurable later or
993 use ses->maxReq */
994
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800995 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500996 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800997 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000998 return -EIO;
999 }
1000
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001001 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001002 if (rc)
1003 return rc;
1004
Steve French79a58d12007-07-06 22:44:50 +00001005 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001006 and avoid races inside tcp sendmsg code that could cause corruption
1007 of smb data */
1008
Jeff Layton72ca5452008-12-01 07:09:36 -05001009 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001010
1011 rc = allocate_mid(ses, in_buf, &midQ);
1012 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -05001013 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001014 return rc;
1015 }
1016
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001017 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001018 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001019 cifs_delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +01001020 mutex_unlock(&ses->server->srv_mutex);
1021 return rc;
1022 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001023
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001024 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001025 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001026 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +00001027 cifs_in_send_dec(ses->server);
1028 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001029
1030 if (rc < 0)
1031 ses->server->sequence_number -= 2;
1032
Jeff Layton72ca5452008-12-01 07:09:36 -05001033 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001034
Steve French79a58d12007-07-06 22:44:50 +00001035 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001036 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001037 return rc;
1038 }
1039
1040 /* Wait for a reply - allow signals to interrupt. */
1041 rc = wait_event_interruptible(ses->server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001042 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001043 ((ses->server->tcpStatus != CifsGood) &&
1044 (ses->server->tcpStatus != CifsNew)));
1045
1046 /* Were we interrupted by a signal ? */
1047 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001048 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001049 ((ses->server->tcpStatus == CifsGood) ||
1050 (ses->server->tcpStatus == CifsNew))) {
1051
1052 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1053 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1054 blocking lock to return. */
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001055 rc = send_cancel(ses->server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001056 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001057 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001058 return rc;
1059 }
1060 } else {
1061 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1062 to cause the blocking lock to return. */
1063
1064 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1065
1066 /* If we get -ENOLCK back the lock may have
1067 already been removed. Don't exit in this case. */
1068 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001069 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001070 return rc;
1071 }
1072 }
1073
Jeff Layton1be912d2011-01-28 07:08:28 -05001074 rc = wait_for_response(ses->server, midQ);
1075 if (rc) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001076 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001077 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001078 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001079 /* no longer considered to be "in-flight" */
1080 midQ->callback = DeleteMidQEntry;
1081 spin_unlock(&GlobalMid_Lock);
1082 return rc;
1083 }
1084 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001085 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001086
1087 /* We got the response - restart system call. */
1088 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001089 }
1090
Jeff Layton3c1105d2011-05-22 07:09:13 -04001091 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001092 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001093 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001094
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001095 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001096 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001097 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001098 cifs_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001099 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001100 }
1101
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001102 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001103 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1104 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001105out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001106 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001107 if (rstart && rc == -EACCES)
1108 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return rc;
1110}