blob: 357d25351ffac281ac70fbd9a496af95e85f2664 [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
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000221smb_rqst_len(struct TCP_Server_Info *server, struct smb_rqst *rqst)
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
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000228 if (server->vals->header_preamble_size == 0 &&
229 rqst->rq_nvec >= 2 && rqst->rq_iov[0].iov_len == 4) {
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300230 iov = &rqst->rq_iov[1];
231 nvec = rqst->rq_nvec - 1;
232 } else {
233 iov = rqst->rq_iov;
234 nvec = rqst->rq_nvec;
235 }
236
Jeff Laytona26054d2014-02-14 07:21:00 -0500237 /* total up iov array first */
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300238 for (i = 0; i < nvec; i++)
Jeff Laytona26054d2014-02-14 07:21:00 -0500239 buflen += iov[i].iov_len;
240
Long Lic06a0f22018-05-30 12:47:57 -0700241 /*
242 * Add in the page array if there is one. The caller needs to make
243 * sure rq_offset and rq_tailsz are set correctly. If a buffer of
244 * multiple pages ends at page boundary, rq_tailsz needs to be set to
245 * PAGE_SIZE.
246 */
Jeff Laytona26054d2014-02-14 07:21:00 -0500247 if (rqst->rq_npages) {
Long Lic06a0f22018-05-30 12:47:57 -0700248 if (rqst->rq_npages == 1)
249 buflen += rqst->rq_tailsz;
250 else {
251 /*
252 * If there is more than one page, calculate the
253 * buffer length based on rq_offset and rq_tailsz
254 */
255 buflen += rqst->rq_pagesz * (rqst->rq_npages - 1) -
256 rqst->rq_offset;
257 buflen += rqst->rq_tailsz;
258 }
Jeff Laytona26054d2014-02-14 07:21:00 -0500259 }
260
261 return buflen;
262}
263
Jeff Layton6f49f462012-09-18 16:20:34 -0700264static int
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000265__smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
266 struct smb_rqst *rqst)
Jeff Layton6f49f462012-09-18 16:20:34 -0700267{
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000268 int rc = 0;
269 struct kvec *iov;
270 int n_vec;
271 unsigned int send_length = 0;
272 unsigned int i, j;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500273 size_t total_len = 0, sent, size;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700274 struct socket *ssocket = server->ssocket;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500275 struct msghdr smb_msg;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700276 int val = 1;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000277 __be32 rfc1002_marker;
278
Long Li9762c2d2017-11-22 17:38:43 -0700279 if (cifs_rdma_enabled(server) && server->smbd_conn) {
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000280 rc = smbd_send(server, rqst);
Long Li9762c2d2017-11-22 17:38:43 -0700281 goto smbd_done;
282 }
Jeff Laytonea702b82012-12-27 07:28:55 -0500283 if (ssocket == NULL)
284 return -ENOTSOCK;
285
Jeff Laytonb8eed282012-09-18 16:20:35 -0700286 /* cork the socket */
287 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
288 (char *)&val, sizeof(val));
289
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000290 for (j = 0; j < num_rqst; j++)
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000291 send_length += smb_rqst_len(server, &rqst[j]);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000292 rfc1002_marker = cpu_to_be32(send_length);
293
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000294 /* Generate a rfc1002 marker for SMB2+ */
295 if (server->vals->header_preamble_size == 0) {
296 struct kvec hiov = {
297 .iov_base = &rfc1002_marker,
298 .iov_len = 4
299 };
300 iov_iter_kvec(&smb_msg.msg_iter, WRITE | ITER_KVEC, &hiov,
301 1, 4);
302 rc = smb_send_kvec(server, &smb_msg, &sent);
303 if (rc < 0)
304 goto uncork;
305
306 total_len += sent;
307 send_length += 4;
308 }
309
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300310 cifs_dbg(FYI, "Sending smb: smb_len=%u\n", send_length);
311
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000312 for (j = 0; j < num_rqst; j++) {
313 iov = rqst[j].rq_iov;
314 n_vec = rqst[j].rq_nvec;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000315
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000316 size = 0;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300317 for (i = 0; i < n_vec; i++) {
318 dump_smb(iov[i].iov_base, iov[i].iov_len);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000319 size += iov[i].iov_len;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300320 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500321
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000322 iov_iter_kvec(&smb_msg.msg_iter, WRITE | ITER_KVEC,
323 iov, n_vec, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Al Viro3ab3f2a2015-11-13 02:36:04 -0500325 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700326 if (rc < 0)
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000327 goto uncork;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700328
329 total_len += sent;
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000330
331 /* now walk the page array and send each page in it */
332 for (i = 0; i < rqst[j].rq_npages; i++) {
333 struct bio_vec bvec;
334
335 bvec.bv_page = rqst[j].rq_pages[i];
336 rqst_page_get_length(&rqst[j], i, &bvec.bv_len,
337 &bvec.bv_offset);
338
339 iov_iter_bvec(&smb_msg.msg_iter, WRITE | ITER_BVEC,
340 &bvec, 1, bvec.bv_len);
341 rc = smb_send_kvec(server, &smb_msg, &sent);
342 if (rc < 0)
343 break;
344
345 total_len += sent;
346 }
Jeff Layton97bc00b2012-09-18 16:20:35 -0700347 }
348
349uncork:
Jeff Laytonb8eed282012-09-18 16:20:35 -0700350 /* uncork it */
351 val = 0;
352 kernel_setsockopt(ssocket, SOL_TCP, TCP_CORK,
353 (char *)&val, sizeof(val));
354
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000355 if ((total_len > 0) && (total_len != send_length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500356 cifs_dbg(FYI, "partial send (wanted=%u sent=%zu): terminating session\n",
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000357 send_length, total_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700358 /*
359 * If we have only sent part of an SMB then the next SMB could
360 * be taken as the remainder of this one. We need to kill the
361 * socket so the server throws away the partial SMB
362 */
Steve Frenchedf1ae42008-10-29 00:47:57 +0000363 server->tcpStatus = CifsNeedReconnect;
Steve Frenchbf1fdeb2018-07-30 19:23:09 -0500364 trace_smb3_partial_send_reconnect(server->CurrentMid,
365 server->hostname);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000366 }
Long Li9762c2d2017-11-22 17:38:43 -0700367smbd_done:
Jeff Laytond804d412011-01-28 15:05:43 -0500368 if (rc < 0 && rc != -EINTR)
Joe Perchesf96637b2013-05-04 22:12:25 -0500369 cifs_dbg(VFS, "Error %d sending data on socket to server\n",
370 rc);
Jeff Laytond804d412011-01-28 15:05:43 -0500371 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 return rc;
375}
376
Jeff Layton6f49f462012-09-18 16:20:34 -0700377static int
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700378smb_send_rqst(struct TCP_Server_Info *server, struct smb_rqst *rqst, int flags)
Jeff Layton6f49f462012-09-18 16:20:34 -0700379{
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700380 struct smb_rqst cur_rqst;
381 int rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700382
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700383 if (!(flags & CIFS_TRANSFORM_REQ))
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000384 return __smb_send_rqst(server, 1, rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700385
386 if (!server->ops->init_transform_rq ||
387 !server->ops->free_transform_rq) {
388 cifs_dbg(VFS, "Encryption requested but transform callbacks are missed\n");
389 return -EIO;
390 }
391
392 rc = server->ops->init_transform_rq(server, &cur_rqst, rqst);
393 if (rc)
394 return rc;
395
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000396 rc = __smb_send_rqst(server, 1, &cur_rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700397 server->ops->free_transform_rq(&cur_rqst);
398 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700399}
400
Jeff Layton0496e022008-12-30 12:39:16 -0500401int
402smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
403 unsigned int smb_buf_length)
404{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800405 struct kvec iov[2];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700406 struct smb_rqst rqst = { .rq_iov = iov,
407 .rq_nvec = 2 };
Jeff Layton0496e022008-12-30 12:39:16 -0500408
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800409 iov[0].iov_base = smb_buffer;
410 iov[0].iov_len = 4;
411 iov[1].iov_base = (char *)smb_buffer + 4;
412 iov[1].iov_len = smb_buf_length;
Jeff Layton0496e022008-12-30 12:39:16 -0500413
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000414 return __smb_send_rqst(server, 1, &rqst);
Jeff Layton0496e022008-12-30 12:39:16 -0500415}
416
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300417static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400418wait_for_free_credits(struct TCP_Server_Info *server, const int timeout,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300419 int *credits)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000420{
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300421 int rc;
422
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300423 spin_lock(&server->req_lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400424 if (timeout == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000425 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300426 server->in_flight++;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300427 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300428 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000429 return 0;
430 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000431
Volker Lendecke27a97a62008-12-08 20:59:39 +0000432 while (1) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300433 if (*credits <= 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300434 spin_unlock(&server->req_lock);
Steve French789e6662011-08-09 18:44:44 +0000435 cifs_num_waiters_inc(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300436 rc = wait_event_killable(server->request_q,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300437 has_credits(server, credits));
Steve French789e6662011-08-09 18:44:44 +0000438 cifs_num_waiters_dec(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300439 if (rc)
440 return rc;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300441 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000442 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500443 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300444 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000445 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000446 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000447
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400448 /*
449 * Can not count locking commands against total
450 * as they are allowed to block on server.
451 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000452
453 /* update # of requests on the wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400454 if (timeout != CIFS_BLOCKING_OP) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300455 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300456 server->in_flight++;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400457 }
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300458 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000459 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000460 }
461 }
462 return 0;
463}
464
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300465static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400466wait_for_free_request(struct TCP_Server_Info *server, const int timeout,
467 const int optype)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300468{
Shirish Pargaonkareb4c7df2013-10-03 05:44:45 -0500469 int *val;
470
471 val = server->ops->get_credits_field(server, optype);
472 /* Since an echo is already inflight, no need to wait to send another */
473 if (*val <= 0 && optype == CIFS_ECHO_OP)
474 return -EAGAIN;
475 return wait_for_free_credits(server, timeout, val);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300476}
477
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400478int
479cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
480 unsigned int *num, unsigned int *credits)
481{
482 *num = size;
483 *credits = 0;
484 return 0;
485}
486
Steve French96daf2b2011-05-27 04:34:02 +0000487static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000488 struct mid_q_entry **ppmidQ)
489{
490 if (ses->server->tcpStatus == CifsExiting) {
491 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100492 }
493
494 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500495 cifs_dbg(FYI, "tcp session dead - return to caller to retry\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000496 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100497 }
498
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500499 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000500 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000501 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000502 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000503 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000504 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500505
506 if (ses->status == CifsExiting) {
507 /* check if SMB session is bad because we are setting it up */
508 if (in_buf->Command != SMB_COM_LOGOFF_ANDX)
509 return -EAGAIN;
510 /* else ok - we are shutting down session */
511 }
512
Jeff Layton24b9b062008-12-01 07:09:34 -0500513 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000514 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000515 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500516 spin_lock(&GlobalMid_Lock);
517 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
518 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000519 return 0;
520}
521
Jeff Layton0ade6402011-01-11 07:24:02 -0500522static int
523wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000524{
Jeff Layton0ade6402011-01-11 07:24:02 -0500525 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000526
Colin Cross5853cc22013-05-07 17:52:05 +0000527 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400528 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500529 if (error < 0)
530 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000531
Jeff Layton0ade6402011-01-11 07:24:02 -0500532 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000533}
534
Jeff Laytonfec344e2012-09-18 16:20:35 -0700535struct mid_q_entry *
536cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400537{
538 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700539 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400540 struct mid_q_entry *mid;
541
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800542 if (rqst->rq_iov[0].iov_len != 4 ||
543 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
544 return ERR_PTR(-EIO);
545
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400546 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400547 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400548 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
549
550 mid = AllocMidQEntry(hdr, server);
551 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700552 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400553
Jeff Laytonfec344e2012-09-18 16:20:35 -0700554 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100555 if (rc) {
556 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700557 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100558 }
559
Jeff Laytonfec344e2012-09-18 16:20:35 -0700560 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400561}
Steve French133672e2007-11-13 22:41:37 +0000562
563/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500564 * Send a SMB request and set the callback function in the mid to handle
565 * the result. Caller is responsible for dealing with timeouts.
566 */
567int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700568cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800569 mid_receive_t *receive, mid_callback_t *callback,
570 mid_handle_t *handle, void *cbdata, const int flags)
Jeff Laytona6827c12011-01-11 07:24:21 -0500571{
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400572 int rc, timeout, optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500573 struct mid_q_entry *mid;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400574 unsigned int credits = 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500575
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400576 timeout = flags & CIFS_TIMEOUT_MASK;
577 optype = flags & CIFS_OP_MASK;
578
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400579 if ((flags & CIFS_HAS_CREDITS) == 0) {
580 rc = wait_for_free_request(server, timeout, optype);
581 if (rc)
582 return rc;
583 credits = 1;
584 }
Jeff Laytona6827c12011-01-11 07:24:21 -0500585
586 mutex_lock(&server->srv_mutex);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700587 mid = server->ops->setup_async_request(server, rqst);
588 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500589 mutex_unlock(&server->srv_mutex);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400590 add_credits_and_wake_if(server, credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700591 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500592 }
593
Jeff Layton44d22d82011-10-19 15:29:49 -0400594 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500595 mid->callback = callback;
596 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800597 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400598 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000599
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100600 /* put it on the pending_mid_q */
601 spin_lock(&GlobalMid_Lock);
602 list_add_tail(&mid->qhead, &server->pending_mid_q);
603 spin_unlock(&GlobalMid_Lock);
604
Long Li93d2cb62017-06-28 15:55:55 -0700605 /*
606 * Need to store the time in mid before calling I/O. For call_async,
607 * I/O response may come back and free the mid entry on another thread.
608 */
609 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000610 cifs_in_send_inc(server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700611 rc = smb_send_rqst(server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000612 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400613
Rabin Vincent820962d2015-12-23 07:32:41 +0100614 if (rc < 0) {
Jeff Laytonad313cb2013-04-03 10:27:36 -0400615 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100616 cifs_delete_mid(mid);
617 }
618
Jeff Laytona6827c12011-01-11 07:24:21 -0500619 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000620
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100621 if (rc == 0)
622 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500623
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400624 add_credits_and_wake_if(server, credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500625 return rc;
626}
627
628/*
Steve French133672e2007-11-13 22:41:37 +0000629 *
630 * Send an SMB Request. No response info (other than return code)
631 * needs to be parsed.
632 *
633 * flags indicate the type of request buffer and how long to wait
634 * and whether to log NT STATUS code (error) before mapping it to POSIX error
635 *
636 */
637int
Steve French96daf2b2011-05-27 04:34:02 +0000638SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400639 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000640{
641 int rc;
642 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700643 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000644 int resp_buf_type;
645
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400646 iov[0].iov_base = in_buf;
647 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Steve French133672e2007-11-13 22:41:37 +0000648 flags |= CIFS_NO_RESP;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700649 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500650 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000651
Steve French133672e2007-11-13 22:41:37 +0000652 return rc;
653}
654
Jeff Layton053d5032011-01-11 07:24:02 -0500655static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400656cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500657{
658 int rc = 0;
659
Joe Perchesf96637b2013-05-04 22:12:25 -0500660 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
661 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500662
Jeff Layton74dd92a2011-01-11 07:24:02 -0500663 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400664 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500665 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500666 spin_unlock(&GlobalMid_Lock);
667 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500668 case MID_RETRY_NEEDED:
669 rc = -EAGAIN;
670 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500671 case MID_RESPONSE_MALFORMED:
672 rc = -EIO;
673 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400674 case MID_SHUTDOWN:
675 rc = -EHOSTDOWN;
676 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500677 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400678 list_del_init(&mid->qhead);
Joe Perchesf96637b2013-05-04 22:12:25 -0500679 cifs_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
680 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500681 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500682 }
683 spin_unlock(&GlobalMid_Lock);
684
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500685 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500686 return rc;
687}
688
Jeff Layton121b0462012-05-15 12:21:10 -0400689static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800690send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
691 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500692{
Jeff Layton121b0462012-05-15 12:21:10 -0400693 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800694 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500695}
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400698cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
699 bool log_error)
700{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400701 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400702
703 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400704
705 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400706 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800707 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500708 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800709 struct smb_rqst rqst = { .rq_iov = iov,
710 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400711
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800712 iov[0].iov_base = mid->resp_buf;
713 iov[0].iov_len = 4;
714 iov[1].iov_base = (char *)mid->resp_buf + 4;
715 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400716 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700717 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400718 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500719 if (rc)
Joe Perchesf96637b2013-05-04 22:12:25 -0500720 cifs_dbg(VFS, "SMB signature verification returned error = %d\n",
721 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400722 }
723
724 /* BB special case reconnect tid and uid here? */
725 return map_smb_to_linux_error(mid->resp_buf, log_error);
726}
727
Jeff Laytonfec344e2012-09-18 16:20:35 -0700728struct mid_q_entry *
729cifs_setup_request(struct cifs_ses *ses, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400730{
731 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700732 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400733 struct mid_q_entry *mid;
734
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800735 if (rqst->rq_iov[0].iov_len != 4 ||
736 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
737 return ERR_PTR(-EIO);
738
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400739 rc = allocate_mid(ses, hdr, &mid);
740 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700741 return ERR_PTR(rc);
742 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
743 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700744 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700745 return ERR_PTR(rc);
746 }
747 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400748}
749
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -0800750int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800751cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
752 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
753 struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 int rc = 0;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400756 int timeout, optype;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500757 struct mid_q_entry *midQ;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400758 unsigned int credits = 1;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800759 char *buf;
Steve French50c2f752007-07-13 00:33:32 +0000760
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400761 timeout = flags & CIFS_TIMEOUT_MASK;
762 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +0000763
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400764 *resp_buf_type = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Steve French4b8f9302006-02-26 16:41:18 +0000766 if ((ses == NULL) || (ses->server == NULL)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500767 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return -EIO;
769 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700771 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700772 return -ENOENT;
773
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400774 /*
775 * Ensure that we do not send more than 50 overlapping requests
776 * to the same server. We may make this configurable later or
777 * use ses->maxReq.
778 */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400779 rc = wait_for_free_request(ses->server, timeout, optype);
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700780 if (rc)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000781 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000782
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400783 /*
784 * Make sure that we sign in the same order that we send on this socket
785 * and avoid races inside tcp sendmsg code that could cause corruption
786 * of smb data.
787 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Jeff Layton72ca5452008-12-01 07:09:36 -0500789 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800791 midQ = ses->server->ops->setup_request(ses, rqst);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700792 if (IS_ERR(midQ)) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500793 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000794 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400795 add_credits(ses->server, 1, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700796 return PTR_ERR(midQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400799 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000800 cifs_in_send_inc(ses->server);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700801 rc = smb_send_rqst(ses->server, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000802 cifs_in_send_dec(ses->server);
803 cifs_save_when_sent(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000804
Jeff Laytonad313cb2013-04-03 10:27:36 -0400805 if (rc < 0)
806 ses->server->sequence_number -= 2;
Jeff Layton72ca5452008-12-01 07:09:36 -0500807 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000808
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700809 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000810 goto out;
Steve French4b8f9302006-02-26 16:41:18 +0000811
Steve French0d5ec282018-04-22 19:51:22 -0500812 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP))
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000813 smb311_update_preauth_hash(ses, rqst->rq_iov,
814 rqst->rq_nvec);
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100815
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700816 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000817 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500818
819 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500820 if (rc != 0) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800821 cifs_dbg(FYI, "Cancelling wait for mid %llu\n", midQ->mid);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800822 send_cancel(ses->server, rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500823 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400824 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Sachin Prabhu38bd4902017-03-03 15:41:38 -0800825 midQ->mid_flags |= MID_WAIT_CANCELLED;
Jeff Layton1be912d2011-01-28 07:08:28 -0500826 midQ->callback = DeleteMidQEntry;
827 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400828 add_credits(ses->server, 1, optype);
Jeff Layton1be912d2011-01-28 07:08:28 -0500829 return rc;
830 }
831 spin_unlock(&GlobalMid_Lock);
832 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500833
Jeff Layton3c1105d2011-05-22 07:09:13 -0400834 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500835 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400836 add_credits(ses->server, 1, optype);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500837 return rc;
838 }
Steve French50c2f752007-07-13 00:33:32 +0000839
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400840 if (!midQ->resp_buf || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500841 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -0500842 cifs_dbg(FYI, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +0000843 goto out;
844 }
Steve French84afc292005-12-02 13:32:45 -0800845
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400846 buf = (char *)midQ->resp_buf;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700847 resp_iov->iov_base = buf;
Ronnie Sahlberge19b2bc2018-04-09 18:06:28 +1000848 resp_iov->iov_len = midQ->resp_buf_size +
Ronnie Sahlberg93012bf2018-03-31 11:45:31 +1100849 ses->server->vals->header_preamble_size;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400850 if (midQ->large_buf)
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400851 *resp_buf_type = CIFS_LARGE_BUFFER;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400852 else
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400853 *resp_buf_type = CIFS_SMALL_BUFFER;
854
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 }
Aurelien Aptel8bd68c62018-02-16 19:19:29 +0100862
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400863 credits = ses->server->ops->get_credits(midQ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500864
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400865 rc = ses->server->ops->check_receive(midQ, ses->server,
866 flags & CIFS_LOG_ERROR);
Steve French2b2bdfb2008-12-11 17:26:54 +0000867
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700868 /* mark it so buf will not be freed by cifs_delete_mid */
Jeff Layton2c8f9812011-05-19 16:22:52 -0400869 if ((flags & CIFS_NO_RESP) == 0)
870 midQ->resp_buf = NULL;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000871out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700872 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400873 add_credits(ses->server, credits, optype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 return rc;
876}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800879SendReceive2(const unsigned int xid, struct cifs_ses *ses,
880 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
881 const int flags, struct kvec *resp_iov)
882{
883 struct smb_rqst rqst;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100884 struct kvec s_iov[CIFS_MAX_IOV_SIZE], *new_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800885 int rc;
886
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100887 if (n_vec + 1 > CIFS_MAX_IOV_SIZE) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700888 new_iov = kmalloc_array(n_vec + 1, sizeof(struct kvec),
889 GFP_KERNEL);
Steve French117e3b72018-04-22 10:24:19 -0500890 if (!new_iov) {
891 /* otherwise cifs_send_recv below sets resp_buf_type */
892 *resp_buf_type = CIFS_NO_BUFFER;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100893 return -ENOMEM;
Steve French117e3b72018-04-22 10:24:19 -0500894 }
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100895 } else
896 new_iov = s_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800897
898 /* 1st iov is a RFC1001 length followed by the rest of the packet */
899 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
900
901 new_iov[0].iov_base = new_iov[1].iov_base;
902 new_iov[0].iov_len = 4;
903 new_iov[1].iov_base += 4;
904 new_iov[1].iov_len -= 4;
905
906 memset(&rqst, 0, sizeof(struct smb_rqst));
907 rqst.rq_iov = new_iov;
908 rqst.rq_nvec = n_vec + 1;
909
910 rc = cifs_send_recv(xid, ses, &rqst, resp_buf_type, flags, resp_iov);
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +1100911 if (n_vec + 1 > CIFS_MAX_IOV_SIZE)
912 kfree(new_iov);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800913 return rc;
914}
915
916int
Steve French96daf2b2011-05-27 04:34:02 +0000917SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400919 int *pbytes_returned, const int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800923 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
924 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
925 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500928 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 return -EIO;
930 }
Steve French79a58d12007-07-06 22:44:50 +0000931 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500932 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return -EIO;
934 }
935
Steve French79a58d12007-07-06 22:44:50 +0000936 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700937 return -ENOENT;
938
Steve French79a58d12007-07-06 22:44:50 +0000939 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 to the same server. We may make this configurable later or
941 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800943 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500944 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800945 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000946 return -EIO;
947 }
948
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400949 rc = wait_for_free_request(ses->server, timeout, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000950 if (rc)
951 return rc;
952
Steve French79a58d12007-07-06 22:44:50 +0000953 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 and avoid races inside tcp sendmsg code that could cause corruption
955 of smb data */
956
Jeff Layton72ca5452008-12-01 07:09:36 -0500957 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000959 rc = allocate_mid(ses, in_buf, &midQ);
960 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500961 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000962 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400963 add_credits(ses->server, 1, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000964 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
966
Steve Frenchad009ac2005-04-28 22:41:05 -0700967 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100968 if (rc) {
969 mutex_unlock(&ses->server->srv_mutex);
970 goto out;
971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400973 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000974
975 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800976 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +0000977 cifs_in_send_dec(ses->server);
978 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400979
980 if (rc < 0)
981 ses->server->sequence_number -= 2;
982
Jeff Layton72ca5452008-12-01 07:09:36 -0500983 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000984
Steve French79a58d12007-07-06 22:44:50 +0000985 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000986 goto out;
987
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400988 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000989 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500990
991 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500992 if (rc != 0) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800993 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500994 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400995 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500996 /* no longer considered to be "in-flight" */
997 midQ->callback = DeleteMidQEntry;
998 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400999 add_credits(ses->server, 1, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -05001000 return rc;
1001 }
1002 spin_unlock(&GlobalMid_Lock);
1003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Jeff Layton3c1105d2011-05-22 07:09:13 -04001005 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001006 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001007 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return rc;
1009 }
Steve French50c2f752007-07-13 00:33:32 +00001010
Jeff Layton2c8f9812011-05-19 16:22:52 -04001011 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001012 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001014 cifs_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +00001015 goto out;
1016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001018 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001019 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1020 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001021out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001022 cifs_delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001023 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001026}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001028/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
1029 blocking lock to return. */
1030
1031static int
Steve French96daf2b2011-05-27 04:34:02 +00001032send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001033 struct smb_hdr *in_buf,
1034 struct smb_hdr *out_buf)
1035{
1036 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +00001037 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001038 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
1039
1040 /* We just modify the current in_buf to change
1041 the type of lock from LOCKING_ANDX_SHARED_LOCK
1042 or LOCKING_ANDX_EXCLUSIVE_LOCK to
1043 LOCKING_ANDX_CANCEL_LOCK. */
1044
1045 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
1046 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +04001047 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001048
1049 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -05001050 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001051}
1052
1053int
Steve French96daf2b2011-05-27 04:34:02 +00001054SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001055 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
1056 int *pbytes_returned)
1057{
1058 int rc = 0;
1059 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001060 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +00001061 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001062 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1063 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1064 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001065
1066 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001067 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001068 return -EIO;
1069 }
1070 ses = tcon->ses;
1071
Steve French79a58d12007-07-06 22:44:50 +00001072 if (ses->server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001073 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001074 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 }
1076
Steve French79a58d12007-07-06 22:44:50 +00001077 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001078 return -ENOENT;
1079
Steve French79a58d12007-07-06 22:44:50 +00001080 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001081 to the same server. We may make this configurable later or
1082 use ses->maxReq */
1083
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001084 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001085 cifs_dbg(VFS, "Illegal length, greater than maximum frame, %d\n",
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001086 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001087 return -EIO;
1088 }
1089
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001090 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001091 if (rc)
1092 return rc;
1093
Steve French79a58d12007-07-06 22:44:50 +00001094 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001095 and avoid races inside tcp sendmsg code that could cause corruption
1096 of smb data */
1097
Jeff Layton72ca5452008-12-01 07:09:36 -05001098 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001099
1100 rc = allocate_mid(ses, in_buf, &midQ);
1101 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -05001102 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001103 return rc;
1104 }
1105
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001106 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001107 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001108 cifs_delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +01001109 mutex_unlock(&ses->server->srv_mutex);
1110 return rc;
1111 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001112
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001113 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001114 cifs_in_send_inc(ses->server);
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001115 rc = smb_send(ses->server, in_buf, len);
Steve French789e6662011-08-09 18:44:44 +00001116 cifs_in_send_dec(ses->server);
1117 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001118
1119 if (rc < 0)
1120 ses->server->sequence_number -= 2;
1121
Jeff Layton72ca5452008-12-01 07:09:36 -05001122 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001123
Steve French79a58d12007-07-06 22:44:50 +00001124 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001125 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001126 return rc;
1127 }
1128
1129 /* Wait for a reply - allow signals to interrupt. */
1130 rc = wait_event_interruptible(ses->server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001131 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001132 ((ses->server->tcpStatus != CifsGood) &&
1133 (ses->server->tcpStatus != CifsNew)));
1134
1135 /* Were we interrupted by a signal ? */
1136 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001137 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001138 ((ses->server->tcpStatus == CifsGood) ||
1139 (ses->server->tcpStatus == CifsNew))) {
1140
1141 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1142 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1143 blocking lock to return. */
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001144 rc = send_cancel(ses->server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001145 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001146 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001147 return rc;
1148 }
1149 } else {
1150 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1151 to cause the blocking lock to return. */
1152
1153 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1154
1155 /* If we get -ENOLCK back the lock may have
1156 already been removed. Don't exit in this case. */
1157 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001158 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001159 return rc;
1160 }
1161 }
1162
Jeff Layton1be912d2011-01-28 07:08:28 -05001163 rc = wait_for_response(ses->server, midQ);
1164 if (rc) {
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001165 send_cancel(ses->server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001166 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001167 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001168 /* no longer considered to be "in-flight" */
1169 midQ->callback = DeleteMidQEntry;
1170 spin_unlock(&GlobalMid_Lock);
1171 return rc;
1172 }
1173 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001174 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001175
1176 /* We got the response - restart system call. */
1177 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001178 }
1179
Jeff Layton3c1105d2011-05-22 07:09:13 -04001180 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -05001181 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001182 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001183
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001184 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001185 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001186 rc = -EIO;
Joe Perchesf96637b2013-05-04 22:12:25 -05001187 cifs_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001188 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001189 }
1190
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001191 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001192 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
1193 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001194out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001195 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001196 if (rstart && rc == -EACCES)
1197 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 return rc;
1199}