blob: 7efbab013957551c1812f73d833426a537bd99c7 [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
Long Li93d2cb62017-06-28 15:55:55 -0700539 /*
540 * Need to store the time in mid before calling I/O. For call_async,
541 * I/O response may come back and free the mid entry on another thread.
542 */
543 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000544 cifs_in_send_inc(server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700545 rc = smb_send_rqst(server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000546 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400547
Rabin Vincent820962d2015-12-23 07:32:41 +0100548 if (rc < 0) {
Jeff Laytonad313cb2013-04-03 10:27:36 -0400549 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100550 cifs_delete_mid(mid);
551 }
552
Jeff Laytona6827c12011-01-11 07:24:21 -0500553 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000554
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100555 if (rc == 0)
556 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500557
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400558 add_credits_and_wake_if(server, credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500559 return rc;
560}
561
562/*
Steve French133672e2007-11-13 22:41:37 +0000563 *
564 * Send an SMB Request. No response info (other than return code)
565 * needs to be parsed.
566 *
567 * flags indicate the type of request buffer and how long to wait
568 * and whether to log NT STATUS code (error) before mapping it to POSIX error
569 *
570 */
571int
Steve French96daf2b2011-05-27 04:34:02 +0000572SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400573 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000574{
575 int rc;
576 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700577 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000578 int resp_buf_type;
579
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400580 iov[0].iov_base = in_buf;
581 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Steve French133672e2007-11-13 22:41:37 +0000582 flags |= CIFS_NO_RESP;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700583 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500584 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000585
Steve French133672e2007-11-13 22:41:37 +0000586 return rc;
587}
588
Jeff Layton053d5032011-01-11 07:24:02 -0500589static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400590cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500591{
592 int rc = 0;
593
Joe Perchesf96637b2013-05-04 22:12:25 -0500594 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
595 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500596
Jeff Layton74dd92a2011-01-11 07:24:02 -0500597 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400598 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500599 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500600 spin_unlock(&GlobalMid_Lock);
601 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500602 case MID_RETRY_NEEDED:
603 rc = -EAGAIN;
604 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500605 case MID_RESPONSE_MALFORMED:
606 rc = -EIO;
607 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400608 case MID_SHUTDOWN:
609 rc = -EHOSTDOWN;
610 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500611 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400612 list_del_init(&mid->qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500613 cifs_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
614 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500615 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500616 }
617 spin_unlock(&GlobalMid_Lock);
618
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500619 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500620 return rc;
621}
622
Jeff Layton121b0462012-05-15 12:21:10 -0400623static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800624send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
625 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500626{
Jeff Layton121b0462012-05-15 12:21:10 -0400627 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800628 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400632cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
633 bool log_error)
634{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400635 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400636
637 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400638
639 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400640 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800641 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500642 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800643 struct smb_rqst rqst = { .rq_iov = iov,
644 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400645
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800646 iov[0].iov_base = mid->resp_buf;
647 iov[0].iov_len = 4;
648 iov[1].iov_base = (char *)mid->resp_buf + 4;
649 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400650 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700651 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400652 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500653 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500654 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
655 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400656 }
657
658 /* BB special case reconnect tid and uid here? */
659 return map_smb_to_linux_error(mid->resp_buf, log_error);
660}
661
Jeff Laytonfec344e2012-09-18 16:20:35 -0700662struct mid_q_entry *
663cifs_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400664{
665 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700666 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400667 struct mid_q_entry *mid;
668
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800669 if (rqst->rq_iov[0].iov_len != 4 ||
670 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
671 return ERR_PTR(-EIO);
672
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400673 rc = allocate_mid(ses, hdr, &mid);
674 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700675 return ERR_PTR(rc);
676 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
677 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700678 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700679 return ERR_PTR(rc);
680 }
681 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400682}
683
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800684int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800685cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
686 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
687 struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 int rc = 0;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400690 int timeout, optype;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500691 struct mid_q_entry *midQ;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400692 unsigned int credits = 1;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800693 char *buf;
Steve French50c2f752007-07-13 00:33:32 +0000694
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400695 timeout = flags & CIFS_TIMEOUT_MASK;
696 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +0000697
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400698 *resp_buf_type = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Steve French4b8f9302006-02-26 16:41:18 +0000700 if ((ses == NULL) || (ses->server == NULL)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500701 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return -EIO;
703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700705 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700706 return -ENOENT;
707
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400708 /*
709 * Ensure that we do not send more than 50 overlapping requests
710 * to the same server. We may make this configurable later or
711 * use ses->maxReq.
712 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400714 rc = wait_for_free_request(ses->server, timeout, optype);
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700715 if (rc)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000716 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000717
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400718 /*
719 * Make sure that we sign in the same order that we send on this socket
720 * and avoid races inside tcp sendmsg code that could cause corruption
721 * of smb data.
722 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Jeff Layton72ca5452008-12-01 07:09:36 -0500724 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800726 midQ = ses->server->ops->setup_request(ses, rqst);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700727 if (IS_ERR(midQ)) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500728 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000729 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400730 add_credits(ses->server, 1, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700731 return PTR_ERR(midQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400734 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000735 cifs_in_send_inc(ses->server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700736 rc = smb_send_rqst(ses->server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000737 cifs_in_send_dec(ses->server);
738 cifs_save_when_sent(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000739
Jeff Laytonad313cb2013-04-03 10:27:36 -0400740 if (rc < 0)
741 ses->server->sequence_number -= 2;
Jeff Layton72ca5452008-12-01 07:09:36 -0500742 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000743
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700744 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000745 goto out;
Steve French4b8f9302006-02-26 16:41:18 +0000746
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700747 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000748 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500749
750 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500751 if (rc != 0) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800752 cifs_dbg(FYI, "Cancelling wait for mid %llu\n", midQ->mid);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800753 send_cancel(ses->server, rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500754 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400755 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800756 midQ->mid_flags |= MID_WAIT_CANCELLED;
Jeff Layton1be912d2011-01-28 07:08:28 -0500757 midQ->callback = DeleteMidQEntry;
758 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400759 add_credits(ses->server, 1, optype);
Jeff Layton1be912d2011-01-28 07:08:28 -0500760 return rc;
761 }
762 spin_unlock(&GlobalMid_Lock);
763 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500764
Jeff Layton3c1105d2011-05-22 07:09:13 -0400765 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500766 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400767 add_credits(ses->server, 1, optype);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500768 return rc;
769 }
Steve French50c2f752007-07-13 00:33:32 +0000770
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400771 if (!midQ->resp_buf || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500772 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -0500773 cifs_dbg(FYI, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +0000774 goto out;
775 }
Steve French84afc292005-12-02 13:32:45 -0800776
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400777 buf = (char *)midQ->resp_buf;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700778 resp_iov->iov_base = buf;
779 resp_iov->iov_len = get_rfc1002_length(buf) + 4;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400780 if (midQ->large_buf)
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400781 *resp_buf_type = CIFS_LARGE_BUFFER;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400782 else
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400783 *resp_buf_type = CIFS_SMALL_BUFFER;
784
785 credits = ses->server->ops->get_credits(midQ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500786
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400787 rc = ses->server->ops->check_receive(midQ, ses->server,
788 flags & CIFS_LOG_ERROR);
Steve French2b2bdfb2008-12-11 17:26:54 +0000789
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700790 /* mark it so buf will not be freed by cifs_delete_mid */
Jeff Layton2c8f9812011-05-19 16:22:52 -0400791 if ((flags & CIFS_NO_RESP) == 0)
792 midQ->resp_buf = NULL;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000793out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700794 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400795 add_credits(ses->server, credits, optype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 return rc;
798}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800801SendReceive2(const unsigned int xid, struct cifs_ses *ses,
802 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
803 const int flags, struct kvec *resp_iov)
804{
805 struct smb_rqst rqst;
806 struct kvec *new_iov;
807 int rc;
808
809 new_iov = kmalloc(sizeof(struct kvec) * (n_vec + 1), GFP_KERNEL);
810 if (!new_iov)
811 return -ENOMEM;
812
813 /* 1st iov is a RFC1001 length followed by the rest of the packet */
814 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
815
816 new_iov[0].iov_base = new_iov[1].iov_base;
817 new_iov[0].iov_len = 4;
818 new_iov[1].iov_base += 4;
819 new_iov[1].iov_len -= 4;
820
821 memset(&rqst, 0, sizeof(struct smb_rqst));
822 rqst.rq_iov = new_iov;
823 rqst.rq_nvec = n_vec + 1;
824
825 rc = cifs_send_recv(xid, ses, &rqst, resp_buf_type, flags, resp_iov);
826 kfree(new_iov);
827 return rc;
828}
829
830int
Steve French96daf2b2011-05-27 04:34:02 +0000831SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400833 int *pbytes_returned, const int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800837 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
838 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
839 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500842 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return -EIO;
844 }
Steve French79a58d12007-07-06 22:44:50 +0000845 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500846 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return -EIO;
848 }
849
Steve French79a58d12007-07-06 22:44:50 +0000850 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700851 return -ENOENT;
852
Steve French79a58d12007-07-06 22:44:50 +0000853 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 to the same server. We may make this configurable later or
855 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800857 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500858 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800859 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000860 return -EIO;
861 }
862
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400863 rc = wait_for_free_request(ses->server, timeout, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000864 if (rc)
865 return rc;
866
Steve French79a58d12007-07-06 22:44:50 +0000867 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 and avoid races inside tcp sendmsg code that could cause corruption
869 of smb data */
870
Jeff Layton72ca5452008-12-01 07:09:36 -0500871 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000873 rc = allocate_mid(ses, in_buf, &midQ);
874 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500875 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000876 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400877 add_credits(ses->server, 1, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000878 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880
Steve Frenchad009ac2005-04-28 22:41:05 -0700881 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100882 if (rc) {
883 mutex_unlock(&ses->server->srv_mutex);
884 goto out;
885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400887 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000888
889 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800890 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +0000891 cifs_in_send_dec(ses->server);
892 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400893
894 if (rc < 0)
895 ses->server->sequence_number -= 2;
896
Jeff Layton72ca5452008-12-01 07:09:36 -0500897 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000898
Steve French79a58d12007-07-06 22:44:50 +0000899 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000900 goto out;
901
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400902 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000903 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500904
905 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500906 if (rc != 0) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800907 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500908 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400909 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500910 /* no longer considered to be "in-flight" */
911 midQ->callback = DeleteMidQEntry;
912 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400913 add_credits(ses->server, 1, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -0500914 return rc;
915 }
916 spin_unlock(&GlobalMid_Lock);
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Jeff Layton3c1105d2011-05-22 07:09:13 -0400919 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500920 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400921 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return rc;
923 }
Steve French50c2f752007-07-13 00:33:32 +0000924
Jeff Layton2c8f9812011-05-19 16:22:52 -0400925 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400926 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -0500928 cifs_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +0000929 goto out;
930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400932 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400933 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
934 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000935out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700936 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400937 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000940}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000942/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
943 blocking lock to return. */
944
945static int
Steve French96daf2b2011-05-27 04:34:02 +0000946send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000947 struct smb_hdr *in_buf,
948 struct smb_hdr *out_buf)
949{
950 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +0000951 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000952 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
953
954 /* We just modify the current in_buf to change
955 the type of lock from LOCKING_ANDX_SHARED_LOCK
956 or LOCKING_ANDX_EXCLUSIVE_LOCK to
957 LOCKING_ANDX_CANCEL_LOCK. */
958
959 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
960 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +0400961 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000962
963 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -0500964 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000965}
966
967int
Steve French96daf2b2011-05-27 04:34:02 +0000968SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000969 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
970 int *pbytes_returned)
971{
972 int rc = 0;
973 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000974 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +0000975 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800976 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
977 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
978 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000979
980 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500981 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000982 return -EIO;
983 }
984 ses = tcon->ses;
985
Steve French79a58d12007-07-06 22:44:50 +0000986 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500987 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000988 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990
Steve French79a58d12007-07-06 22:44:50 +0000991 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000992 return -ENOENT;
993
Steve French79a58d12007-07-06 22:44:50 +0000994 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000995 to the same server. We may make this configurable later or
996 use ses->maxReq */
997
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800998 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500999 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001000 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001001 return -EIO;
1002 }
1003
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001004 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001005 if (rc)
1006 return rc;
1007
Steve French79a58d12007-07-06 22:44:50 +00001008 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001009 and avoid races inside tcp sendmsg code that could cause corruption
1010 of smb data */
1011
Jeff Layton72ca5452008-12-01 07:09:36 -05001012 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001013
1014 rc = allocate_mid(ses, in_buf, &midQ);
1015 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -05001016 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001017 return rc;
1018 }
1019
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001020 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001021 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001022 cifs_delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +01001023 mutex_unlock(&ses->server->srv_mutex);
1024 return rc;
1025 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001026
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001027 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001028 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001029 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +00001030 cifs_in_send_dec(ses->server);
1031 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001032
1033 if (rc < 0)
1034 ses->server->sequence_number -= 2;
1035
Jeff Layton72ca5452008-12-01 07:09:36 -05001036 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001037
Steve French79a58d12007-07-06 22:44:50 +00001038 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001039 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001040 return rc;
1041 }
1042
1043 /* Wait for a reply - allow signals to interrupt. */
1044 rc = wait_event_interruptible(ses->server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001045 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001046 ((ses->server->tcpStatus != CifsGood) &&
1047 (ses->server->tcpStatus != CifsNew)));
1048
1049 /* Were we interrupted by a signal ? */
1050 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001051 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001052 ((ses->server->tcpStatus == CifsGood) ||
1053 (ses->server->tcpStatus == CifsNew))) {
1054
1055 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1056 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1057 blocking lock to return. */
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001058 rc = send_cancel(ses->server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001059 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001060 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001061 return rc;
1062 }
1063 } else {
1064 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1065 to cause the blocking lock to return. */
1066
1067 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1068
1069 /* If we get -ENOLCK back the lock may have
1070 already been removed. Don't exit in this case. */
1071 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001072 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001073 return rc;
1074 }
1075 }
1076
Jeff Layton1be912d2011-01-28 07:08:28 -05001077 rc = wait_for_response(ses->server, midQ);
1078 if (rc) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001079 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001080 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001081 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001082 /* no longer considered to be "in-flight" */
1083 midQ->callback = DeleteMidQEntry;
1084 spin_unlock(&GlobalMid_Lock);
1085 return rc;
1086 }
1087 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001088 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001089
1090 /* We got the response - restart system call. */
1091 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001092 }
1093
Jeff Layton3c1105d2011-05-22 07:09:13 -04001094 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001095 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001096 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001097
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001098 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001099 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001100 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001101 cifs_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001102 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001103 }
1104
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001105 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001106 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1107 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001108out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001109 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001110 if (rstart && rc == -EACCES)
1111 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 return rc;
1113}