blob: 208ecb83046651f4294fd1bfaf47cc88cd9c7684 [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"
Aurelien Aptel8bd68c62018-02-16 19:19:29 +010040#include "smb2proto.h"
Long Li9762c2d2017-11-22 17:38:43 -070041#include "smbdirect.h"
Steve French50c2f752007-07-13 00:33:32 +000042
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +110043/* Max number of iovectors we can use off the stack when sending requests. */
44#define CIFS_MAX_IOV_SIZE 8
45
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040046void
47cifs_wake_up_task(struct mid_q_entry *mid)
Jeff Layton2b84a36c2011-01-11 07:24:21 -050048{
49 wake_up_process(mid->callback_data);
50}
51
Jeff Laytona6827c12011-01-11 07:24:21 -050052struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050053AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 struct mid_q_entry *temp;
56
Jeff Layton24b9b062008-12-01 07:09:34 -050057 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050058 cifs_dbg(VFS, "Null TCP session in AllocMidQEntry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return NULL;
60 }
Steve French50c2f752007-07-13 00:33:32 +000061
Pekka Enberg232087c2008-09-15 13:22:54 +030062 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
NeilBrowna6f74e82017-04-10 12:08:53 +100063 memset(temp, 0, sizeof(struct mid_q_entry));
Lars Persson696e4202018-06-25 14:05:25 +020064 kref_init(&temp->refcount);
NeilBrowna6f74e82017-04-10 12:08:53 +100065 temp->mid = get_mid(smb_buffer);
66 temp->pid = current->pid;
67 temp->command = cpu_to_le16(smb_buffer->Command);
68 cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command);
Steve French1047abc2005-10-11 19:58:06 -070069 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
NeilBrowna6f74e82017-04-10 12:08:53 +100070 /* when mid allocated can be before when sent */
71 temp->when_alloc = jiffies;
72 temp->server = server;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050073
NeilBrowna6f74e82017-04-10 12:08:53 +100074 /*
75 * The default is for the mid to be synchronous, so the
76 * default callback just wakes up the current task.
77 */
78 temp->callback = cifs_wake_up_task;
79 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 atomic_inc(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040082 temp->mid_state = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return temp;
84}
85
Lars Persson696e4202018-06-25 14:05:25 +020086static void _cifs_mid_q_entry_release(struct kref *refcount)
87{
88 struct mid_q_entry *mid = container_of(refcount, struct mid_q_entry,
89 refcount);
90
91 mempool_free(mid, cifs_mid_poolp);
92}
93
94void cifs_mid_q_entry_release(struct mid_q_entry *midEntry)
95{
96 spin_lock(&GlobalMid_Lock);
97 kref_put(&midEntry->refcount, _cifs_mid_q_entry_release);
98 spin_unlock(&GlobalMid_Lock);
99}
100
Jeff Layton766fdbb2011-01-11 07:24:21 -0500101void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102DeleteMidQEntry(struct mid_q_entry *midEntry)
103{
Steve French1047abc2005-10-11 19:58:06 -0700104#ifdef CONFIG_CIFS_STATS2
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400105 __le16 command = midEntry->server->vals->lock_cmd;
Steve French1047abc2005-10-11 19:58:06 -0700106 unsigned long now;
107#endif
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400108 midEntry->mid_state = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -0500109 atomic_dec(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400110 if (midEntry->large_buf)
Steve Frenchb8643e12005-04-28 22:41:07 -0700111 cifs_buf_release(midEntry->resp_buf);
112 else
113 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -0700114#ifdef CONFIG_CIFS_STATS2
115 now = jiffies;
116 /* commands taking longer than one second are indications that
117 something is wrong, unless it is quite a slow link or server */
Karim Eshapa4328fea2017-05-12 01:53:38 +0200118 if (time_after(now, midEntry->when_alloc + HZ)) {
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +0400119 if ((cifsFYI & CIFS_TIMER) && (midEntry->command != command)) {
Andy Shevchenko0b456f02014-08-27 16:49:44 +0300120 pr_debug(" CIFS slow rsp: cmd %d mid %llu",
Steve French1047abc2005-10-11 19:58:06 -0700121 midEntry->command, midEntry->mid);
Andy Shevchenko0b456f02014-08-27 16:49:44 +0300122 pr_info(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
Steve French1047abc2005-10-11 19:58:06 -0700123 now - midEntry->when_alloc,
124 now - midEntry->when_sent,
125 now - midEntry->when_received);
126 }
127 }
128#endif
Lars Persson696e4202018-06-25 14:05:25 +0200129 cifs_mid_q_entry_release(midEntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700132void
133cifs_delete_mid(struct mid_q_entry *mid)
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500134{
135 spin_lock(&GlobalMid_Lock);
136 list_del(&mid->qhead);
137 spin_unlock(&GlobalMid_Lock);
138
139 DeleteMidQEntry(mid);
140}
141
Jeff Layton6f49f462012-09-18 16:20:34 -0700142/*
143 * smb_send_kvec - send an array of kvecs to the server
144 * @server: Server to send the data to
Al Viro3ab3f2a2015-11-13 02:36:04 -0500145 * @smb_msg: Message to send
Jeff Layton6f49f462012-09-18 16:20:34 -0700146 * @sent: amount of data sent on socket is stored here
147 *
148 * Our basic "send data to server" function. Should be called with srv_mutex
149 * held. The caller is responsible for handling the results.
150 */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500151static int
Al Viro3ab3f2a2015-11-13 02:36:04 -0500152smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg,
153 size_t *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 int rc = 0;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500156 int retries = 0;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000157 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000158
Jeff Layton6f49f462012-09-18 16:20:34 -0700159 *sent = 0;
160
Al Viro3ab3f2a2015-11-13 02:36:04 -0500161 smb_msg->msg_name = (struct sockaddr *) &server->dstaddr;
162 smb_msg->msg_namelen = sizeof(struct sockaddr);
163 smb_msg->msg_control = NULL;
164 smb_msg->msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500165 if (server->noblocksnd)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500166 smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000167 else
Al Viro3ab3f2a2015-11-13 02:36:04 -0500168 smb_msg->msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Al Viro3ab3f2a2015-11-13 02:36:04 -0500170 while (msg_data_left(smb_msg)) {
Jeff Layton6f49f462012-09-18 16:20:34 -0700171 /*
172 * If blocking send, we try 3 times, since each can block
173 * for 5 seconds. For nonblocking we have to try more
174 * but wait increasing amounts of time allowing time for
175 * socket to clear. The overall time we wait in either
176 * case to send on the socket is about 15 seconds.
177 * Similarly we wait for 15 seconds for a response from
178 * the server in SendReceive[2] for the server to send
179 * a response back for most types of requests (except
180 * SMB Write past end of file which can be slow, and
181 * blocking lock operations). NFS waits slightly longer
182 * than CIFS, but this can make it take longer for
183 * nonresponsive servers to be detected and 15 seconds
184 * is more than enough time for modern networks to
185 * send a packet. In most cases if we fail to send
186 * after the retries we will kill the socket and
187 * reconnect which may clear the network problem.
188 */
Al Viro3ab3f2a2015-11-13 02:36:04 -0500189 rc = sock_sendmsg(ssocket, smb_msg);
Jeff Laytonce6c44e2013-03-22 08:36:45 -0400190 if (rc == -EAGAIN) {
Al Viro3ab3f2a2015-11-13 02:36:04 -0500191 retries++;
192 if (retries >= 14 ||
193 (!server->noblocksnd && (retries > 2))) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500194 cifs_dbg(VFS, "sends on sock %p stuck for 15 seconds\n",
195 ssocket);
Al Viro3ab3f2a2015-11-13 02:36:04 -0500196 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500198 msleep(1 << retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 continue;
200 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700201
Steve French79a58d12007-07-06 22:44:50 +0000202 if (rc < 0)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500203 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700204
Steve French79a58d12007-07-06 22:44:50 +0000205 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700206 /* should never happen, letting socket clear before
207 retrying is our only obvious option here */
Joe Perchesf96637b2013-05-04 22:12:25 -0500208 cifs_dbg(VFS, "tcp sent no data\n");
Steve French3e844692005-10-03 13:37:24 -0700209 msleep(500);
210 continue;
211 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700212
Al Viro3ab3f2a2015-11-13 02:36:04 -0500213 /* send was at least partially successful */
214 *sent += rc;
215 retries = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500217 return 0;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700218}
219
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300220unsigned long
221smb2_rqst_len(struct smb_rqst *rqst, bool skip_rfc1002_marker)
Jeff Laytona26054d2014-02-14 07:21:00 -0500222{
223 unsigned int i;
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300224 struct kvec *iov;
225 int nvec;
Jeff Laytona26054d2014-02-14 07:21:00 -0500226 unsigned long buflen = 0;
227
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300228 if (skip_rfc1002_marker && rqst->rq_iov[0].iov_len == 4) {
229 iov = &rqst->rq_iov[1];
230 nvec = rqst->rq_nvec - 1;
231 } else {
232 iov = rqst->rq_iov;
233 nvec = rqst->rq_nvec;
234 }
235
Jeff Laytona26054d2014-02-14 07:21:00 -0500236 /* total up iov array first */
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300237 for (i = 0; i < nvec; i++)
Jeff Laytona26054d2014-02-14 07:21:00 -0500238 buflen += iov[i].iov_len;
239
Long Lic06a0f22018-05-30 12:47:57 -0700240 /*
241 * Add in the page array if there is one. The caller needs to make
242 * sure rq_offset and rq_tailsz are set correctly. If a buffer of
243 * multiple pages ends at page boundary, rq_tailsz needs to be set to
244 * PAGE_SIZE.
245 */
Jeff Laytona26054d2014-02-14 07:21:00 -0500246 if (rqst->rq_npages) {
Long Lic06a0f22018-05-30 12:47:57 -0700247 if (rqst->rq_npages == 1)
248 buflen += rqst->rq_tailsz;
249 else {
250 /*
251 * If there is more than one page, calculate the
252 * buffer length based on rq_offset and rq_tailsz
253 */
254 buflen += rqst->rq_pagesz * (rqst->rq_npages - 1) -
255 rqst->rq_offset;
256 buflen += rqst->rq_tailsz;
257 }
Jeff Laytona26054d2014-02-14 07:21:00 -0500258 }
259
260 return buflen;
261}
262
Jeff Layton6f49f462012-09-18 16:20:34 -0700263static int
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000264__smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
265 struct smb_rqst *rqst)
Jeff Layton6f49f462012-09-18 16:20:34 -0700266{
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000267 int rc = 0;
268 struct kvec *iov;
269 int n_vec;
270 unsigned int send_length = 0;
271 unsigned int i, j;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500272 size_t total_len = 0, sent, size;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700273 struct socket *ssocket = server->ssocket;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500274 struct msghdr smb_msg;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700275 int val = 1;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000276 __be32 rfc1002_marker;
277
Long Li9762c2d2017-11-22 17:38:43 -0700278 if (cifs_rdma_enabled(server) && server->smbd_conn) {
279 rc = smbd_send(server->smbd_conn, rqst);
280 goto smbd_done;
281 }
Jeff Laytonea702b82012-12-27 07:28:55 -0500282 if (ssocket == NULL)
283 return -ENOTSOCK;
284
Jeff Laytonb8eed282012-09-18 16:20:35 -0700285 /* cork the socket */
286 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
287 (char *)&val, sizeof(val));
288
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000289 for (j = 0; j < num_rqst; j++)
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300290 send_length += smb2_rqst_len(&rqst[j], true);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000291 rfc1002_marker = cpu_to_be32(send_length);
292
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000293 /* Generate a rfc1002 marker for SMB2+ */
294 if (server->vals->header_preamble_size == 0) {
295 struct kvec hiov = {
296 .iov_base = &rfc1002_marker,
297 .iov_len = 4
298 };
299 iov_iter_kvec(&smb_msg.msg_iter, WRITE | ITER_KVEC, &hiov,
300 1, 4);
301 rc = smb_send_kvec(server, &smb_msg, &sent);
302 if (rc < 0)
303 goto uncork;
304
305 total_len += sent;
306 send_length += 4;
307 }
308
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300309 cifs_dbg(FYI, "Sending smb: smb_len=%u\n", send_length);
310
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000311 for (j = 0; j < num_rqst; j++) {
312 iov = rqst[j].rq_iov;
313 n_vec = rqst[j].rq_nvec;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000314
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000315 size = 0;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300316 for (i = 0; i < n_vec; i++) {
317 dump_smb(iov[i].iov_base, iov[i].iov_len);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000318 size += iov[i].iov_len;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300319 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500320
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000321 iov_iter_kvec(&smb_msg.msg_iter, WRITE | ITER_KVEC,
322 iov, n_vec, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Al Viro3ab3f2a2015-11-13 02:36:04 -0500324 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700325 if (rc < 0)
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000326 goto uncork;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700327
328 total_len += sent;
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000329
330 /* now walk the page array and send each page in it */
331 for (i = 0; i < rqst[j].rq_npages; i++) {
332 struct bio_vec bvec;
333
334 bvec.bv_page = rqst[j].rq_pages[i];
335 rqst_page_get_length(&rqst[j], i, &bvec.bv_len,
336 &bvec.bv_offset);
337
338 iov_iter_bvec(&smb_msg.msg_iter, WRITE | ITER_BVEC,
339 &bvec, 1, bvec.bv_len);
340 rc = smb_send_kvec(server, &smb_msg, &sent);
341 if (rc < 0)
342 break;
343
344 total_len += sent;
345 }
Jeff Layton97bc00b2012-09-18 16:20:35 -0700346 }
347
348uncork:
Jeff Laytonb8eed282012-09-18 16:20:35 -0700349 /* uncork it */
350 val = 0;
351 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
352 (char *)&val, sizeof(val));
353
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000354 if ((total_len > 0) && (total_len != send_length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500355 cifs_dbg(FYI, "partial send (wanted=%u sent=%zu): terminating session\n",
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000356 send_length, total_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700357 /*
358 * If we have only sent part of an SMB then the next SMB could
359 * be taken as the remainder of this one. We need to kill the
360 * socket so the server throws away the partial SMB
361 */
Steve Frenchedf1ae42008-10-29 00:47:57 +0000362 server->tcpStatus = CifsNeedReconnect;
363 }
Long Li9762c2d2017-11-22 17:38:43 -0700364smbd_done:
Jeff Laytond804d412011-01-28 15:05:43 -0500365 if (rc < 0 && rc != -EINTR)
Joe Perchesf96637b2013-05-04 22:12:25 -0500366 cifs_dbg(VFS, "Error %d sending data on socket to server\n",
367 rc);
Jeff Laytond804d412011-01-28 15:05:43 -0500368 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 return rc;
372}
373
Jeff Layton6f49f462012-09-18 16:20:34 -0700374static int
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700375smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst, int flags)
Jeff Layton6f49f462012-09-18 16:20:34 -0700376{
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700377 struct smb_rqst cur_rqst;
378 int rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700379
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700380 if (!(flags & CIFS_TRANSFORM_REQ))
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000381 return __smb_send_rqst(server, 1, rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700382
383 if (!server->ops->init_transform_rq ||
384 !server->ops->free_transform_rq) {
385 cifs_dbg(VFS, "Encryption requested but transform callbacks are missed\n");
386 return -EIO;
387 }
388
389 rc = server->ops->init_transform_rq(server, &cur_rqst, rqst);
390 if (rc)
391 return rc;
392
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000393 rc = __smb_send_rqst(server, 1, &cur_rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700394 server->ops->free_transform_rq(&cur_rqst);
395 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700396}
397
Jeff Layton0496e022008-12-30 12:39:16 -0500398int
399smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
400 unsigned int smb_buf_length)
401{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800402 struct kvec iov[2];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700403 struct smb_rqst rqst = { .rq_iov = iov,
404 .rq_nvec = 2 };
Jeff Layton0496e022008-12-30 12:39:16 -0500405
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800406 iov[0].iov_base = smb_buffer;
407 iov[0].iov_len = 4;
408 iov[1].iov_base = (char *)smb_buffer + 4;
409 iov[1].iov_len = smb_buf_length;
Jeff Layton0496e022008-12-30 12:39:16 -0500410
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000411 return __smb_send_rqst(server, 1, &rqst);
Jeff Layton0496e022008-12-30 12:39:16 -0500412}
413
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300414static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400415wait_for_free_credits(struct TCP_Server_Info *server, const int timeout,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300416 int *credits)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000417{
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300418 int rc;
419
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300420 spin_lock(&server->req_lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400421 if (timeout == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000422 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300423 server->in_flight++;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300424 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300425 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000426 return 0;
427 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000428
Volker Lendecke27a97a62008-12-08 20:59:39 +0000429 while (1) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300430 if (*credits <= 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300431 spin_unlock(&server->req_lock);
Steve French789e6662011-08-09 18:44:44 +0000432 cifs_num_waiters_inc(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300433 rc = wait_event_killable(server->request_q,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300434 has_credits(server, credits));
Steve French789e6662011-08-09 18:44:44 +0000435 cifs_num_waiters_dec(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300436 if (rc)
437 return rc;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300438 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000439 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500440 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300441 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000442 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000443 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000444
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400445 /*
446 * Can not count locking commands against total
447 * as they are allowed to block on server.
448 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000449
450 /* update # of requests on the wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400451 if (timeout != CIFS_BLOCKING_OP) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300452 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300453 server->in_flight++;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400454 }
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300455 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000456 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000457 }
458 }
459 return 0;
460}
461
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300462static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400463wait_for_free_request(struct TCP_Server_Info *server, const int timeout,
464 const int optype)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300465{
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500466 int *val;
467
468 val = server->ops->get_credits_field(server, optype);
469 /* Since an echo is already inflight, no need to wait to send another */
470 if (*val <= 0 && optype == CIFS_ECHO_OP)
471 return -EAGAIN;
472 return wait_for_free_credits(server, timeout, val);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300473}
474
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400475int
476cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
477 unsigned int *num, unsigned int *credits)
478{
479 *num = size;
480 *credits = 0;
481 return 0;
482}
483
Steve French96daf2b2011-05-27 04:34:02 +0000484static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000485 struct mid_q_entry **ppmidQ)
486{
487 if (ses->server->tcpStatus == CifsExiting) {
488 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100489 }
490
491 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500492 cifs_dbg(FYI, "tcp session dead - return to caller to retry\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000493 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100494 }
495
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500496 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000497 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000498 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000499 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000500 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000501 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500502
503 if (ses->status == CifsExiting) {
504 /* check if SMB session is bad because we are setting it up */
505 if (in_buf->Command != SMB_COM_LOGOFF_ANDX)
506 return -EAGAIN;
507 /* else ok - we are shutting down session */
508 }
509
Jeff Layton24b9b062008-12-01 07:09:34 -0500510 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000511 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000512 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500513 spin_lock(&GlobalMid_Lock);
514 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
515 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000516 return 0;
517}
518
Jeff Layton0ade6402011-01-11 07:24:02 -0500519static int
520wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000521{
Jeff Layton0ade6402011-01-11 07:24:02 -0500522 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000523
Colin Cross5853cc22013-05-07 17:52:05 +0000524 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400525 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500526 if (error < 0)
527 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000528
Jeff Layton0ade6402011-01-11 07:24:02 -0500529 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000530}
531
Jeff Laytonfec344e2012-09-18 16:20:35 -0700532struct mid_q_entry *
533cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400534{
535 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700536 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400537 struct mid_q_entry *mid;
538
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800539 if (rqst->rq_iov[0].iov_len != 4 ||
540 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
541 return ERR_PTR(-EIO);
542
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400543 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400544 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400545 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
546
547 mid = AllocMidQEntry(hdr, server);
548 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700549 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400550
Jeff Laytonfec344e2012-09-18 16:20:35 -0700551 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100552 if (rc) {
553 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700554 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100555 }
556
Jeff Laytonfec344e2012-09-18 16:20:35 -0700557 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400558}
Steve French133672e2007-11-13 22:41:37 +0000559
560/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500561 * Send a SMB request and set the callback function in the mid to handle
562 * the result. Caller is responsible for dealing with timeouts.
563 */
564int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700565cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800566 mid_receive_t *receive, mid_callback_t *callback,
567 mid_handle_t *handle, void *cbdata, const int flags)
Jeff Laytona6827c12011-01-11 07:24:21 -0500568{
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400569 int rc, timeout, optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500570 struct mid_q_entry *mid;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400571 unsigned int credits = 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500572
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400573 timeout = flags & CIFS_TIMEOUT_MASK;
574 optype = flags & CIFS_OP_MASK;
575
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400576 if ((flags & CIFS_HAS_CREDITS) == 0) {
577 rc = wait_for_free_request(server, timeout, optype);
578 if (rc)
579 return rc;
580 credits = 1;
581 }
Jeff Laytona6827c12011-01-11 07:24:21 -0500582
583 mutex_lock(&server->srv_mutex);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700584 mid = server->ops->setup_async_request(server, rqst);
585 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500586 mutex_unlock(&server->srv_mutex);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400587 add_credits_and_wake_if(server, credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700588 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500589 }
590
Jeff Layton44d22d82011-10-19 15:29:49 -0400591 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500592 mid->callback = callback;
593 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800594 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400595 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000596
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100597 /* put it on the pending_mid_q */
598 spin_lock(&GlobalMid_Lock);
599 list_add_tail(&mid->qhead, &server->pending_mid_q);
600 spin_unlock(&GlobalMid_Lock);
601
Long Li93d2cb62017-06-28 15:55:55 -0700602 /*
603 * Need to store the time in mid before calling I/O. For call_async,
604 * I/O response may come back and free the mid entry on another thread.
605 */
606 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000607 cifs_in_send_inc(server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700608 rc = smb_send_rqst(server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000609 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400610
Rabin Vincent820962d2015-12-23 07:32:41 +0100611 if (rc < 0) {
Jeff Laytonad313cb2013-04-03 10:27:36 -0400612 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100613 cifs_delete_mid(mid);
614 }
615
Jeff Laytona6827c12011-01-11 07:24:21 -0500616 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000617
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100618 if (rc == 0)
619 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500620
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400621 add_credits_and_wake_if(server, credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500622 return rc;
623}
624
625/*
Steve French133672e2007-11-13 22:41:37 +0000626 *
627 * Send an SMB Request. No response info (other than return code)
628 * needs to be parsed.
629 *
630 * flags indicate the type of request buffer and how long to wait
631 * and whether to log NT STATUS code (error) before mapping it to POSIX error
632 *
633 */
634int
Steve French96daf2b2011-05-27 04:34:02 +0000635SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400636 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000637{
638 int rc;
639 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700640 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000641 int resp_buf_type;
642
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400643 iov[0].iov_base = in_buf;
644 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Steve French133672e2007-11-13 22:41:37 +0000645 flags |= CIFS_NO_RESP;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700646 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500647 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000648
Steve French133672e2007-11-13 22:41:37 +0000649 return rc;
650}
651
Jeff Layton053d5032011-01-11 07:24:02 -0500652static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400653cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500654{
655 int rc = 0;
656
Joe Perchesf96637b2013-05-04 22:12:25 -0500657 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
658 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500659
Jeff Layton74dd92a2011-01-11 07:24:02 -0500660 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400661 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500662 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500663 spin_unlock(&GlobalMid_Lock);
664 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500665 case MID_RETRY_NEEDED:
666 rc = -EAGAIN;
667 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500668 case MID_RESPONSE_MALFORMED:
669 rc = -EIO;
670 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400671 case MID_SHUTDOWN:
672 rc = -EHOSTDOWN;
673 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500674 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400675 list_del_init(&mid->qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500676 cifs_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
677 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500678 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500679 }
680 spin_unlock(&GlobalMid_Lock);
681
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500682 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500683 return rc;
684}
685
Jeff Layton121b0462012-05-15 12:21:10 -0400686static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800687send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
688 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500689{
Jeff Layton121b0462012-05-15 12:21:10 -0400690 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800691 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500692}
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400695cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
696 bool log_error)
697{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400698 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400699
700 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400701
702 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400703 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800704 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500705 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800706 struct smb_rqst rqst = { .rq_iov = iov,
707 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400708
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800709 iov[0].iov_base = mid->resp_buf;
710 iov[0].iov_len = 4;
711 iov[1].iov_base = (char *)mid->resp_buf + 4;
712 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400713 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700714 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400715 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500716 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500717 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
718 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400719 }
720
721 /* BB special case reconnect tid and uid here? */
722 return map_smb_to_linux_error(mid->resp_buf, log_error);
723}
724
Jeff Laytonfec344e2012-09-18 16:20:35 -0700725struct mid_q_entry *
726cifs_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400727{
728 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700729 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400730 struct mid_q_entry *mid;
731
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800732 if (rqst->rq_iov[0].iov_len != 4 ||
733 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
734 return ERR_PTR(-EIO);
735
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400736 rc = allocate_mid(ses, hdr, &mid);
737 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700738 return ERR_PTR(rc);
739 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
740 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700741 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700742 return ERR_PTR(rc);
743 }
744 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400745}
746
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800747int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800748cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
749 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
750 struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 int rc = 0;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400753 int timeout, optype;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500754 struct mid_q_entry *midQ;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400755 unsigned int credits = 1;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800756 char *buf;
Steve French50c2f752007-07-13 00:33:32 +0000757
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400758 timeout = flags & CIFS_TIMEOUT_MASK;
759 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +0000760
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400761 *resp_buf_type = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Steve French4b8f9302006-02-26 16:41:18 +0000763 if ((ses == NULL) || (ses->server == NULL)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500764 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return -EIO;
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700768 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700769 return -ENOENT;
770
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400771 /*
772 * Ensure that we do not send more than 50 overlapping requests
773 * to the same server. We may make this configurable later or
774 * use ses->maxReq.
775 */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400776 rc = wait_for_free_request(ses->server, timeout, optype);
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700777 if (rc)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000778 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000779
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400780 /*
781 * Make sure that we sign in the same order that we send on this socket
782 * and avoid races inside tcp sendmsg code that could cause corruption
783 * of smb data.
784 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Jeff Layton72ca5452008-12-01 07:09:36 -0500786 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800788 midQ = ses->server->ops->setup_request(ses, rqst);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700789 if (IS_ERR(midQ)) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500790 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000791 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400792 add_credits(ses->server, 1, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700793 return PTR_ERR(midQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400796 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000797 cifs_in_send_inc(ses->server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700798 rc = smb_send_rqst(ses->server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000799 cifs_in_send_dec(ses->server);
800 cifs_save_when_sent(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000801
Jeff Laytonad313cb2013-04-03 10:27:36 -0400802 if (rc < 0)
803 ses->server->sequence_number -= 2;
Jeff Layton72ca5452008-12-01 07:09:36 -0500804 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000805
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700806 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000807 goto out;
Steve French4b8f9302006-02-26 16:41:18 +0000808
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100809#ifdef CONFIG_CIFS_SMB311
Steve French0d5ec282018-04-22 19:51:22 -0500810 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP))
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000811 smb311_update_preauth_hash(ses, rqst->rq_iov,
812 rqst->rq_nvec);
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100813#endif
814
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700815 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000816 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500817
818 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500819 if (rc != 0) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800820 cifs_dbg(FYI, "Cancelling wait for mid %llu\n", midQ->mid);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800821 send_cancel(ses->server, rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500822 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400823 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800824 midQ->mid_flags |= MID_WAIT_CANCELLED;
Jeff Layton1be912d2011-01-28 07:08:28 -0500825 midQ->callback = DeleteMidQEntry;
826 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400827 add_credits(ses->server, 1, optype);
Jeff Layton1be912d2011-01-28 07:08:28 -0500828 return rc;
829 }
830 spin_unlock(&GlobalMid_Lock);
831 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500832
Jeff Layton3c1105d2011-05-22 07:09:13 -0400833 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500834 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400835 add_credits(ses->server, 1, optype);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500836 return rc;
837 }
Steve French50c2f752007-07-13 00:33:32 +0000838
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400839 if (!midQ->resp_buf || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500840 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -0500841 cifs_dbg(FYI, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +0000842 goto out;
843 }
Steve French84afc292005-12-02 13:32:45 -0800844
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400845 buf = (char *)midQ->resp_buf;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700846 resp_iov->iov_base = buf;
Ronnie Sahlberge19b2bc2018-04-09 18:06:28 +1000847 resp_iov->iov_len = midQ->resp_buf_size +
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100848 ses->server->vals->header_preamble_size;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400849 if (midQ->large_buf)
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400850 *resp_buf_type = CIFS_LARGE_BUFFER;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400851 else
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400852 *resp_buf_type = CIFS_SMALL_BUFFER;
853
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100854#ifdef CONFIG_CIFS_SMB311
Steve French0d5ec282018-04-22 19:51:22 -0500855 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP)) {
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100856 struct kvec iov = {
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000857 .iov_base = resp_iov->iov_base,
858 .iov_len = resp_iov->iov_len
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100859 };
860 smb311_update_preauth_hash(ses, &iov, 1);
861 }
862#endif
863
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400864 credits = ses->server->ops->get_credits(midQ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500865
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400866 rc = ses->server->ops->check_receive(midQ, ses->server,
867 flags & CIFS_LOG_ERROR);
Steve French2b2bdfb2008-12-11 17:26:54 +0000868
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700869 /* mark it so buf will not be freed by cifs_delete_mid */
Jeff Layton2c8f9812011-05-19 16:22:52 -0400870 if ((flags & CIFS_NO_RESP) == 0)
871 midQ->resp_buf = NULL;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000872out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700873 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400874 add_credits(ses->server, credits, optype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 return rc;
877}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800880SendReceive2(const unsigned int xid, struct cifs_ses *ses,
881 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
882 const int flags, struct kvec *resp_iov)
883{
884 struct smb_rqst rqst;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100885 struct kvec s_iov[CIFS_MAX_IOV_SIZE], *new_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800886 int rc;
887
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100888 if (n_vec + 1 > CIFS_MAX_IOV_SIZE) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700889 new_iov = kmalloc_array(n_vec + 1, sizeof(struct kvec),
890 GFP_KERNEL);
Steve French117e3b72018-04-22 10:24:19 -0500891 if (!new_iov) {
892 /* otherwise cifs_send_recv below sets resp_buf_type */
893 *resp_buf_type = CIFS_NO_BUFFER;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100894 return -ENOMEM;
Steve French117e3b72018-04-22 10:24:19 -0500895 }
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100896 } else
897 new_iov = s_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800898
899 /* 1st iov is a RFC1001 length followed by the rest of the packet */
900 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
901
902 new_iov[0].iov_base = new_iov[1].iov_base;
903 new_iov[0].iov_len = 4;
904 new_iov[1].iov_base += 4;
905 new_iov[1].iov_len -= 4;
906
907 memset(&rqst, 0, sizeof(struct smb_rqst));
908 rqst.rq_iov = new_iov;
909 rqst.rq_nvec = n_vec + 1;
910
911 rc = cifs_send_recv(xid, ses, &rqst, resp_buf_type, flags, resp_iov);
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100912 if (n_vec + 1 > CIFS_MAX_IOV_SIZE)
913 kfree(new_iov);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800914 return rc;
915}
916
917int
Steve French96daf2b2011-05-27 04:34:02 +0000918SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400920 int *pbytes_returned, const int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800924 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
925 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
926 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500929 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return -EIO;
931 }
Steve French79a58d12007-07-06 22:44:50 +0000932 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500933 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return -EIO;
935 }
936
Steve French79a58d12007-07-06 22:44:50 +0000937 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700938 return -ENOENT;
939
Steve French79a58d12007-07-06 22:44:50 +0000940 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 to the same server. We may make this configurable later or
942 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800944 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500945 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800946 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000947 return -EIO;
948 }
949
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400950 rc = wait_for_free_request(ses->server, timeout, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000951 if (rc)
952 return rc;
953
Steve French79a58d12007-07-06 22:44:50 +0000954 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 and avoid races inside tcp sendmsg code that could cause corruption
956 of smb data */
957
Jeff Layton72ca5452008-12-01 07:09:36 -0500958 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000960 rc = allocate_mid(ses, in_buf, &midQ);
961 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500962 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000963 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400964 add_credits(ses->server, 1, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000965 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
Steve Frenchad009ac2005-04-28 22:41:05 -0700968 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100969 if (rc) {
970 mutex_unlock(&ses->server->srv_mutex);
971 goto out;
972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400974 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000975
976 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800977 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +0000978 cifs_in_send_dec(ses->server);
979 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400980
981 if (rc < 0)
982 ses->server->sequence_number -= 2;
983
Jeff Layton72ca5452008-12-01 07:09:36 -0500984 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000985
Steve French79a58d12007-07-06 22:44:50 +0000986 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000987 goto out;
988
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400989 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000990 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500991
992 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500993 if (rc != 0) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800994 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500995 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400996 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500997 /* no longer considered to be "in-flight" */
998 midQ->callback = DeleteMidQEntry;
999 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001000 add_credits(ses->server, 1, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -05001001 return rc;
1002 }
1003 spin_unlock(&GlobalMid_Lock);
1004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Jeff Layton3c1105d2011-05-22 07:09:13 -04001006 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001007 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001008 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return rc;
1010 }
Steve French50c2f752007-07-13 00:33:32 +00001011
Jeff Layton2c8f9812011-05-19 16:22:52 -04001012 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001013 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001015 cifs_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +00001016 goto out;
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001019 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001020 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1021 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001022out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001023 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001024 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001029/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
1030 blocking lock to return. */
1031
1032static int
Steve French96daf2b2011-05-27 04:34:02 +00001033send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001034 struct smb_hdr *in_buf,
1035 struct smb_hdr *out_buf)
1036{
1037 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +00001038 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001039 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
1040
1041 /* We just modify the current in_buf to change
1042 the type of lock from LOCKING_ANDX_SHARED_LOCK
1043 or LOCKING_ANDX_EXCLUSIVE_LOCK to
1044 LOCKING_ANDX_CANCEL_LOCK. */
1045
1046 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
1047 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +04001048 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001049
1050 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -05001051 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001052}
1053
1054int
Steve French96daf2b2011-05-27 04:34:02 +00001055SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001056 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
1057 int *pbytes_returned)
1058{
1059 int rc = 0;
1060 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001061 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +00001062 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001063 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1064 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1065 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001066
1067 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001068 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001069 return -EIO;
1070 }
1071 ses = tcon->ses;
1072
Steve French79a58d12007-07-06 22:44:50 +00001073 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001074 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001075 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077
Steve French79a58d12007-07-06 22:44:50 +00001078 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001079 return -ENOENT;
1080
Steve French79a58d12007-07-06 22:44:50 +00001081 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001082 to the same server. We may make this configurable later or
1083 use ses->maxReq */
1084
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001085 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001086 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001087 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001088 return -EIO;
1089 }
1090
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001091 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001092 if (rc)
1093 return rc;
1094
Steve French79a58d12007-07-06 22:44:50 +00001095 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001096 and avoid races inside tcp sendmsg code that could cause corruption
1097 of smb data */
1098
Jeff Layton72ca5452008-12-01 07:09:36 -05001099 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001100
1101 rc = allocate_mid(ses, in_buf, &midQ);
1102 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -05001103 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001104 return rc;
1105 }
1106
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001107 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001108 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001109 cifs_delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +01001110 mutex_unlock(&ses->server->srv_mutex);
1111 return rc;
1112 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001113
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001114 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001115 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001116 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +00001117 cifs_in_send_dec(ses->server);
1118 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001119
1120 if (rc < 0)
1121 ses->server->sequence_number -= 2;
1122
Jeff Layton72ca5452008-12-01 07:09:36 -05001123 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001124
Steve French79a58d12007-07-06 22:44:50 +00001125 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001126 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001127 return rc;
1128 }
1129
1130 /* Wait for a reply - allow signals to interrupt. */
1131 rc = wait_event_interruptible(ses->server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001132 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001133 ((ses->server->tcpStatus != CifsGood) &&
1134 (ses->server->tcpStatus != CifsNew)));
1135
1136 /* Were we interrupted by a signal ? */
1137 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001138 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001139 ((ses->server->tcpStatus == CifsGood) ||
1140 (ses->server->tcpStatus == CifsNew))) {
1141
1142 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1143 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1144 blocking lock to return. */
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001145 rc = send_cancel(ses->server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001146 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001147 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001148 return rc;
1149 }
1150 } else {
1151 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1152 to cause the blocking lock to return. */
1153
1154 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1155
1156 /* If we get -ENOLCK back the lock may have
1157 already been removed. Don't exit in this case. */
1158 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001159 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001160 return rc;
1161 }
1162 }
1163
Jeff Layton1be912d2011-01-28 07:08:28 -05001164 rc = wait_for_response(ses->server, midQ);
1165 if (rc) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001166 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001167 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001168 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001169 /* no longer considered to be "in-flight" */
1170 midQ->callback = DeleteMidQEntry;
1171 spin_unlock(&GlobalMid_Lock);
1172 return rc;
1173 }
1174 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001175 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001176
1177 /* We got the response - restart system call. */
1178 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001179 }
1180
Jeff Layton3c1105d2011-05-22 07:09:13 -04001181 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001182 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001183 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001184
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001185 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001186 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001187 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001188 cifs_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001189 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001190 }
1191
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001192 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001193 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1194 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001195out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001196 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001197 if (rstart && rc == -EACCES)
1198 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return rc;
1200}