blob: 75a95de320cfe2353848906378604cf8230a38e0 [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * fs/cifs/transport.c
4 *
Steve Frenchad7a2922008-02-07 23:25:02 +00005 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Steve French (sfrench@us.ibm.com)
Steve French14a441a2b2006-07-16 04:32:51 +00007 * Jeremy Allison (jra@samba.org) 2006.
Steve French79a58d12007-07-06 22:44:50 +00008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11#include <linux/fs.h>
12#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/wait.h>
15#include <linux/net.h>
16#include <linux/delay.h>
Jeff Laytonf06ac722011-10-19 15:30:40 -040017#include <linux/freezer.h>
Jeff Laytonb8eed282012-09-18 16:20:35 -070018#include <linux/tcp.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060019#include <linux/bvec.h>
Jeff Layton97bc00b2012-09-18 16:20:35 -070020#include <linux/highmem.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080021#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/processor.h>
23#include <linux/mempool.h>
Ronnie Sahlberg14e25972019-05-13 11:24:17 +100024#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "cifspdu.h"
26#include "cifsglob.h"
27#include "cifsproto.h"
28#include "cifs_debug.h"
Aurelien Aptel8bd68c62018-02-16 19:19:29 +010029#include "smb2proto.h"
Long Li9762c2d2017-11-22 17:38:43 -070030#include "smbdirect.h"
Steve French50c2f752007-07-13 00:33:32 +000031
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +110032/* Max number of iovectors we can use off the stack when sending requests. */
33#define CIFS_MAX_IOV_SIZE 8
34
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040035void
36cifs_wake_up_task(struct mid_q_entry *mid)
Jeff Layton2b84a36c2011-01-11 07:24:21 -050037{
38 wake_up_process(mid->callback_data);
39}
40
Jeff Laytona6827c12011-01-11 07:24:21 -050041struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050042AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043{
44 struct mid_q_entry *temp;
45
Jeff Layton24b9b062008-12-01 07:09:34 -050046 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050047 cifs_dbg(VFS, "Null TCP session in AllocMidQEntry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 return NULL;
49 }
Steve French50c2f752007-07-13 00:33:32 +000050
Pekka Enberg232087c2008-09-15 13:22:54 +030051 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
NeilBrowna6f74e82017-04-10 12:08:53 +100052 memset(temp, 0, sizeof(struct mid_q_entry));
Lars Persson696e4202018-06-25 14:05:25 +020053 kref_init(&temp->refcount);
NeilBrowna6f74e82017-04-10 12:08:53 +100054 temp->mid = get_mid(smb_buffer);
55 temp->pid = current->pid;
56 temp->command = cpu_to_le16(smb_buffer->Command);
57 cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command);
Steve French1047abc2005-10-11 19:58:06 -070058 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
NeilBrowna6f74e82017-04-10 12:08:53 +100059 /* when mid allocated can be before when sent */
60 temp->when_alloc = jiffies;
61 temp->server = server;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050062
NeilBrowna6f74e82017-04-10 12:08:53 +100063 /*
64 * The default is for the mid to be synchronous, so the
65 * default callback just wakes up the current task.
66 */
Vincent Whitchurchf1f27ad2020-01-23 17:09:06 +010067 get_task_struct(current);
68 temp->creator = current;
NeilBrowna6f74e82017-04-10 12:08:53 +100069 temp->callback = cifs_wake_up_task;
70 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 atomic_inc(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040073 temp->mid_state = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return temp;
75}
76
Lars Persson696e4202018-06-25 14:05:25 +020077static void _cifs_mid_q_entry_release(struct kref *refcount)
78{
Pavel Shilovskyabe57072019-10-22 08:41:42 -070079 struct mid_q_entry *midEntry =
80 container_of(refcount, struct mid_q_entry, refcount);
Steve French1047abc2005-10-11 19:58:06 -070081#ifdef CONFIG_CIFS_STATS2
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040082 __le16 command = midEntry->server->vals->lock_cmd;
Steve French433b8dd2019-03-26 13:53:21 -050083 __u16 smb_cmd = le16_to_cpu(midEntry->command);
Steve French1047abc2005-10-11 19:58:06 -070084 unsigned long now;
Steve French433b8dd2019-03-26 13:53:21 -050085 unsigned long roundtrip_time;
Steve French1047abc2005-10-11 19:58:06 -070086#endif
Pavel Shilovsky7b718432019-11-21 11:35:14 -080087 struct TCP_Server_Info *server = midEntry->server;
88
89 if (midEntry->resp_buf && (midEntry->mid_flags & MID_WAIT_CANCELLED) &&
90 midEntry->mid_state == MID_RESPONSE_RECEIVED &&
91 server->ops->handle_cancelled_mid)
Paulo Alcantara04ad69c2021-03-08 12:00:50 -030092 server->ops->handle_cancelled_mid(midEntry, server);
Pavel Shilovsky7b718432019-11-21 11:35:14 -080093
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040094 midEntry->mid_state = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -050095 atomic_dec(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040096 if (midEntry->large_buf)
Steve Frenchb8643e12005-04-28 22:41:07 -070097 cifs_buf_release(midEntry->resp_buf);
98 else
99 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -0700100#ifdef CONFIG_CIFS_STATS2
101 now = jiffies;
Steve French433b8dd2019-03-26 13:53:21 -0500102 if (now < midEntry->when_alloc)
Joe Perchesa0a30362020-04-14 22:42:53 -0700103 cifs_server_dbg(VFS, "Invalid mid allocation time\n");
Steve French433b8dd2019-03-26 13:53:21 -0500104 roundtrip_time = now - midEntry->when_alloc;
105
106 if (smb_cmd < NUMBER_OF_SMB2_COMMANDS) {
107 if (atomic_read(&server->num_cmds[smb_cmd]) == 0) {
108 server->slowest_cmd[smb_cmd] = roundtrip_time;
109 server->fastest_cmd[smb_cmd] = roundtrip_time;
110 } else {
111 if (server->slowest_cmd[smb_cmd] < roundtrip_time)
112 server->slowest_cmd[smb_cmd] = roundtrip_time;
113 else if (server->fastest_cmd[smb_cmd] > roundtrip_time)
114 server->fastest_cmd[smb_cmd] = roundtrip_time;
115 }
116 cifs_stats_inc(&server->num_cmds[smb_cmd]);
117 server->time_per_cmd[smb_cmd] += roundtrip_time;
118 }
Steve French00778e22018-09-18 14:05:18 -0500119 /*
120 * commands taking longer than one second (default) can be indications
121 * that something is wrong, unless it is quite a slow link or a very
122 * busy server. Note that this calc is unlikely or impossible to wrap
123 * as long as slow_rsp_threshold is not set way above recommended max
124 * value (32767 ie 9 hours) and is generally harmless even if wrong
125 * since only affects debug counters - so leaving the calc as simple
126 * comparison rather than doing multiple conversions and overflow
127 * checks
128 */
129 if ((slow_rsp_threshold != 0) &&
130 time_after(now, midEntry->when_alloc + (slow_rsp_threshold * HZ)) &&
Steve French020eec52018-08-01 16:38:07 -0500131 (midEntry->command != command)) {
Steve Frenchf5942db2018-11-14 01:37:39 -0600132 /*
133 * smb2slowcmd[NUMBER_OF_SMB2_COMMANDS] counts by command
134 * NB: le16_to_cpu returns unsigned so can not be negative below
135 */
Steve French433b8dd2019-03-26 13:53:21 -0500136 if (smb_cmd < NUMBER_OF_SMB2_COMMANDS)
137 cifs_stats_inc(&server->smb2slowcmd[smb_cmd]);
Steve French468d6772018-08-04 05:24:34 -0500138
Steve French433b8dd2019-03-26 13:53:21 -0500139 trace_smb3_slow_rsp(smb_cmd, midEntry->mid, midEntry->pid,
Steve French020eec52018-08-01 16:38:07 -0500140 midEntry->when_sent, midEntry->when_received);
141 if (cifsFYI & CIFS_TIMER) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700142 pr_debug("slow rsp: cmd %d mid %llu",
143 midEntry->command, midEntry->mid);
144 cifs_info("A: 0x%lx S: 0x%lx R: 0x%lx\n",
145 now - midEntry->when_alloc,
146 now - midEntry->when_sent,
147 now - midEntry->when_received);
Steve French1047abc2005-10-11 19:58:06 -0700148 }
149 }
150#endif
Vincent Whitchurchf1f27ad2020-01-23 17:09:06 +0100151 put_task_struct(midEntry->creator);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700152
153 mempool_free(midEntry, cifs_mid_poolp);
154}
155
156void cifs_mid_q_entry_release(struct mid_q_entry *midEntry)
157{
158 spin_lock(&GlobalMid_Lock);
159 kref_put(&midEntry->refcount, _cifs_mid_q_entry_release);
160 spin_unlock(&GlobalMid_Lock);
161}
162
163void DeleteMidQEntry(struct mid_q_entry *midEntry)
164{
Lars Persson696e4202018-06-25 14:05:25 +0200165 cifs_mid_q_entry_release(midEntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700168void
169cifs_delete_mid(struct mid_q_entry *mid)
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500170{
171 spin_lock(&GlobalMid_Lock);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700172 if (!(mid->mid_flags & MID_DELETED)) {
173 list_del_init(&mid->qhead);
174 mid->mid_flags |= MID_DELETED;
175 }
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500176 spin_unlock(&GlobalMid_Lock);
177
178 DeleteMidQEntry(mid);
179}
180
Jeff Layton6f49f462012-09-18 16:20:34 -0700181/*
182 * smb_send_kvec - send an array of kvecs to the server
183 * @server: Server to send the data to
Al Viro3ab3f2a2015-11-13 02:36:04 -0500184 * @smb_msg: Message to send
Jeff Layton6f49f462012-09-18 16:20:34 -0700185 * @sent: amount of data sent on socket is stored here
186 *
187 * Our basic "send data to server" function. Should be called with srv_mutex
188 * held. The caller is responsible for handling the results.
189 */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500190static int
Al Viro3ab3f2a2015-11-13 02:36:04 -0500191smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg,
192 size_t *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 int rc = 0;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500195 int retries = 0;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000196 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000197
Jeff Layton6f49f462012-09-18 16:20:34 -0700198 *sent = 0;
199
Al Viro3ab3f2a2015-11-13 02:36:04 -0500200 smb_msg->msg_name = (struct sockaddr *) &server->dstaddr;
201 smb_msg->msg_namelen = sizeof(struct sockaddr);
202 smb_msg->msg_control = NULL;
203 smb_msg->msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500204 if (server->noblocksnd)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500205 smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000206 else
Al Viro3ab3f2a2015-11-13 02:36:04 -0500207 smb_msg->msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Al Viro3ab3f2a2015-11-13 02:36:04 -0500209 while (msg_data_left(smb_msg)) {
Jeff Layton6f49f462012-09-18 16:20:34 -0700210 /*
211 * If blocking send, we try 3 times, since each can block
212 * for 5 seconds. For nonblocking we have to try more
213 * but wait increasing amounts of time allowing time for
214 * socket to clear. The overall time we wait in either
215 * case to send on the socket is about 15 seconds.
216 * Similarly we wait for 15 seconds for a response from
217 * the server in SendReceive[2] for the server to send
218 * a response back for most types of requests (except
219 * SMB Write past end of file which can be slow, and
220 * blocking lock operations). NFS waits slightly longer
221 * than CIFS, but this can make it take longer for
222 * nonresponsive servers to be detected and 15 seconds
223 * is more than enough time for modern networks to
224 * send a packet. In most cases if we fail to send
225 * after the retries we will kill the socket and
226 * reconnect which may clear the network problem.
227 */
Al Viro3ab3f2a2015-11-13 02:36:04 -0500228 rc = sock_sendmsg(ssocket, smb_msg);
Jeff Laytonce6c44e2013-03-22 08:36:45 -0400229 if (rc == -EAGAIN) {
Al Viro3ab3f2a2015-11-13 02:36:04 -0500230 retries++;
231 if (retries >= 14 ||
232 (!server->noblocksnd && (retries > 2))) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000233 cifs_server_dbg(VFS, "sends on sock %p stuck for 15 seconds\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500234 ssocket);
Al Viro3ab3f2a2015-11-13 02:36:04 -0500235 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500237 msleep(1 << retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 continue;
239 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700240
Steve French79a58d12007-07-06 22:44:50 +0000241 if (rc < 0)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500242 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700243
Steve French79a58d12007-07-06 22:44:50 +0000244 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700245 /* should never happen, letting socket clear before
246 retrying is our only obvious option here */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000247 cifs_server_dbg(VFS, "tcp sent no data\n");
Steve French3e844692005-10-03 13:37:24 -0700248 msleep(500);
249 continue;
250 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700251
Al Viro3ab3f2a2015-11-13 02:36:04 -0500252 /* send was at least partially successful */
253 *sent += rc;
254 retries = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500256 return 0;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700257}
258
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300259unsigned long
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000260smb_rqst_len(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Jeff Laytona26054d2014-02-14 07:21:00 -0500261{
262 unsigned int i;
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300263 struct kvec *iov;
264 int nvec;
Jeff Laytona26054d2014-02-14 07:21:00 -0500265 unsigned long buflen = 0;
266
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000267 if (server->vals->header_preamble_size == 0 &&
268 rqst->rq_nvec >= 2 && rqst->rq_iov[0].iov_len == 4) {
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300269 iov = &rqst->rq_iov[1];
270 nvec = rqst->rq_nvec - 1;
271 } else {
272 iov = rqst->rq_iov;
273 nvec = rqst->rq_nvec;
274 }
275
Jeff Laytona26054d2014-02-14 07:21:00 -0500276 /* total up iov array first */
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300277 for (i = 0; i < nvec; i++)
Jeff Laytona26054d2014-02-14 07:21:00 -0500278 buflen += iov[i].iov_len;
279
Long Lic06a0f22018-05-30 12:47:57 -0700280 /*
281 * Add in the page array if there is one. The caller needs to make
282 * sure rq_offset and rq_tailsz are set correctly. If a buffer of
283 * multiple pages ends at page boundary, rq_tailsz needs to be set to
284 * PAGE_SIZE.
285 */
Jeff Laytona26054d2014-02-14 07:21:00 -0500286 if (rqst->rq_npages) {
Long Lic06a0f22018-05-30 12:47:57 -0700287 if (rqst->rq_npages == 1)
288 buflen += rqst->rq_tailsz;
289 else {
290 /*
291 * If there is more than one page, calculate the
292 * buffer length based on rq_offset and rq_tailsz
293 */
294 buflen += rqst->rq_pagesz * (rqst->rq_npages - 1) -
295 rqst->rq_offset;
296 buflen += rqst->rq_tailsz;
297 }
Jeff Laytona26054d2014-02-14 07:21:00 -0500298 }
299
300 return buflen;
301}
302
Jeff Layton6f49f462012-09-18 16:20:34 -0700303static int
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000304__smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
305 struct smb_rqst *rqst)
Jeff Layton6f49f462012-09-18 16:20:34 -0700306{
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000307 int rc = 0;
308 struct kvec *iov;
309 int n_vec;
310 unsigned int send_length = 0;
311 unsigned int i, j;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800312 sigset_t mask, oldmask;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500313 size_t total_len = 0, sent, size;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700314 struct socket *ssocket = server->ssocket;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500315 struct msghdr smb_msg;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000316 __be32 rfc1002_marker;
317
Long Li4357d452019-10-16 13:51:56 -0700318 if (cifs_rdma_enabled(server)) {
319 /* return -EAGAIN when connecting or reconnecting */
320 rc = -EAGAIN;
321 if (server->smbd_conn)
322 rc = smbd_send(server, num_rqst, rqst);
Long Li9762c2d2017-11-22 17:38:43 -0700323 goto smbd_done;
324 }
Pavel Shilovskyafc18a62019-03-05 15:51:56 -0800325
Jeff Laytonea702b82012-12-27 07:28:55 -0500326 if (ssocket == NULL)
Pavel Shilovskyafc18a62019-03-05 15:51:56 -0800327 return -EAGAIN;
Jeff Laytonea702b82012-12-27 07:28:55 -0500328
Ronnie Sahlberg214a5ea2021-01-21 08:22:48 +1000329 if (fatal_signal_pending(current)) {
Paulo Alcantara6988a612020-11-28 15:57:06 -0300330 cifs_dbg(FYI, "signal pending before send request\n");
331 return -ERESTARTSYS;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800332 }
333
Jeff Laytonb8eed282012-09-18 16:20:35 -0700334 /* cork the socket */
Christoph Hellwigdb105382020-05-28 07:12:18 +0200335 tcp_sock_set_cork(ssocket->sk, true);
Jeff Laytonb8eed282012-09-18 16:20:35 -0700336
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000337 for (j = 0; j < num_rqst; j++)
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000338 send_length += smb_rqst_len(server, &rqst[j]);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000339 rfc1002_marker = cpu_to_be32(send_length);
340
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800341 /*
342 * We should not allow signals to interrupt the network send because
343 * any partial send will cause session reconnects thus increasing
344 * latency of system calls and overload a server with unnecessary
345 * requests.
346 */
347
348 sigfillset(&mask);
349 sigprocmask(SIG_BLOCK, &mask, &oldmask);
350
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000351 /* Generate a rfc1002 marker for SMB2+ */
352 if (server->vals->header_preamble_size == 0) {
353 struct kvec hiov = {
354 .iov_base = &rfc1002_marker,
355 .iov_len = 4
356 };
David Howellsaa563d72018-10-20 00:57:56 +0100357 iov_iter_kvec(&smb_msg.msg_iter, WRITE, &hiov, 1, 4);
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000358 rc = smb_send_kvec(server, &smb_msg, &sent);
359 if (rc < 0)
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800360 goto unmask;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000361
362 total_len += sent;
363 send_length += 4;
364 }
365
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300366 cifs_dbg(FYI, "Sending smb: smb_len=%u\n", send_length);
367
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000368 for (j = 0; j < num_rqst; j++) {
369 iov = rqst[j].rq_iov;
370 n_vec = rqst[j].rq_nvec;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000371
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000372 size = 0;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300373 for (i = 0; i < n_vec; i++) {
374 dump_smb(iov[i].iov_base, iov[i].iov_len);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000375 size += iov[i].iov_len;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300376 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500377
David Howellsaa563d72018-10-20 00:57:56 +0100378 iov_iter_kvec(&smb_msg.msg_iter, WRITE, iov, n_vec, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Al Viro3ab3f2a2015-11-13 02:36:04 -0500380 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700381 if (rc < 0)
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800382 goto unmask;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700383
384 total_len += sent;
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000385
386 /* now walk the page array and send each page in it */
387 for (i = 0; i < rqst[j].rq_npages; i++) {
388 struct bio_vec bvec;
389
390 bvec.bv_page = rqst[j].rq_pages[i];
391 rqst_page_get_length(&rqst[j], i, &bvec.bv_len,
392 &bvec.bv_offset);
393
David Howellsaa563d72018-10-20 00:57:56 +0100394 iov_iter_bvec(&smb_msg.msg_iter, WRITE,
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000395 &bvec, 1, bvec.bv_len);
396 rc = smb_send_kvec(server, &smb_msg, &sent);
397 if (rc < 0)
398 break;
399
400 total_len += sent;
401 }
Jeff Layton97bc00b2012-09-18 16:20:35 -0700402 }
403
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800404unmask:
405 sigprocmask(SIG_SETMASK, &oldmask, NULL);
406
407 /*
408 * If signal is pending but we have already sent the whole packet to
409 * the server we need to return success status to allow a corresponding
410 * mid entry to be kept in the pending requests queue thus allowing
411 * to handle responses from the server by the client.
412 *
413 * If only part of the packet has been sent there is no need to hide
414 * interrupt because the session will be reconnected anyway, so there
415 * won't be any response from the server to handle.
416 */
417
418 if (signal_pending(current) && (total_len != send_length)) {
419 cifs_dbg(FYI, "signal is pending after attempt to send\n");
Ronnie Sahlberg214a5ea2021-01-21 08:22:48 +1000420 rc = -ERESTARTSYS;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800421 }
422
Jeff Laytonb8eed282012-09-18 16:20:35 -0700423 /* uncork it */
Christoph Hellwigdb105382020-05-28 07:12:18 +0200424 tcp_sock_set_cork(ssocket->sk, false);
Jeff Laytonb8eed282012-09-18 16:20:35 -0700425
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000426 if ((total_len > 0) && (total_len != send_length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500427 cifs_dbg(FYI, "partial send (wanted=%u sent=%zu): terminating session\n",
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000428 send_length, total_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700429 /*
430 * If we have only sent part of an SMB then the next SMB could
431 * be taken as the remainder of this one. We need to kill the
432 * socket so the server throws away the partial SMB
433 */
Steve French01cf3082021-07-01 12:22:47 -0500434 spin_lock(&GlobalMid_Lock);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000435 server->tcpStatus = CifsNeedReconnect;
Steve French01cf3082021-07-01 12:22:47 -0500436 spin_unlock(&GlobalMid_Lock);
Steve Frenchbf1fdeb2018-07-30 19:23:09 -0500437 trace_smb3_partial_send_reconnect(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800438 server->conn_id, server->hostname);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000439 }
Long Li9762c2d2017-11-22 17:38:43 -0700440smbd_done:
Jeff Laytond804d412011-01-28 15:05:43 -0500441 if (rc < 0 && rc != -EINTR)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000442 cifs_server_dbg(VFS, "Error %d sending data on socket to server\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500443 rc);
Pavel Shilovskyee139192019-01-10 11:27:28 -0800444 else if (rc > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 return rc;
448}
449
Jeff Layton6f49f462012-09-18 16:20:34 -0700450static int
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000451smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
452 struct smb_rqst *rqst, int flags)
Jeff Layton6f49f462012-09-18 16:20:34 -0700453{
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000454 struct kvec iov;
Long Li3946d0d2020-03-26 22:09:20 -0700455 struct smb2_transform_hdr *tr_hdr;
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000456 struct smb_rqst cur_rqst[MAX_COMPOUND];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700457 int rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700458
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700459 if (!(flags & CIFS_TRANSFORM_REQ))
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000460 return __smb_send_rqst(server, num_rqst, rqst);
461
462 if (num_rqst > MAX_COMPOUND - 1)
463 return -ENOMEM;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700464
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000465 if (!server->ops->init_transform_rq) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700466 cifs_server_dbg(VFS, "Encryption requested but transform callback is missing\n");
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700467 return -EIO;
468 }
469
Long Li3946d0d2020-03-26 22:09:20 -0700470 tr_hdr = kmalloc(sizeof(*tr_hdr), GFP_NOFS);
471 if (!tr_hdr)
472 return -ENOMEM;
473
474 memset(&cur_rqst[0], 0, sizeof(cur_rqst));
475 memset(&iov, 0, sizeof(iov));
476 memset(tr_hdr, 0, sizeof(*tr_hdr));
477
478 iov.iov_base = tr_hdr;
479 iov.iov_len = sizeof(*tr_hdr);
480 cur_rqst[0].rq_iov = &iov;
481 cur_rqst[0].rq_nvec = 1;
482
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000483 rc = server->ops->init_transform_rq(server, num_rqst + 1,
484 &cur_rqst[0], rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700485 if (rc)
Long Li3946d0d2020-03-26 22:09:20 -0700486 goto out;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700487
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000488 rc = __smb_send_rqst(server, num_rqst + 1, &cur_rqst[0]);
489 smb3_free_compound_rqst(num_rqst, &cur_rqst[1]);
Long Li3946d0d2020-03-26 22:09:20 -0700490out:
491 kfree(tr_hdr);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700492 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700493}
494
Jeff Layton0496e022008-12-30 12:39:16 -0500495int
496smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
497 unsigned int smb_buf_length)
498{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800499 struct kvec iov[2];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700500 struct smb_rqst rqst = { .rq_iov = iov,
501 .rq_nvec = 2 };
Jeff Layton0496e022008-12-30 12:39:16 -0500502
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800503 iov[0].iov_base = smb_buffer;
504 iov[0].iov_len = 4;
505 iov[1].iov_base = (char *)smb_buffer + 4;
506 iov[1].iov_len = smb_buf_length;
Jeff Layton0496e022008-12-30 12:39:16 -0500507
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000508 return __smb_send_rqst(server, 1, &rqst);
Jeff Layton0496e022008-12-30 12:39:16 -0500509}
510
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300511static int
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000512wait_for_free_credits(struct TCP_Server_Info *server, const int num_credits,
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000513 const int timeout, const int flags,
514 unsigned int *instance)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000515{
Ronnie Sahlberg19e88862020-07-02 10:55:41 +1000516 long rc;
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000517 int *credits;
518 int optype;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000519 long int t;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800520 int scredits, in_flight;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000521
522 if (timeout < 0)
523 t = MAX_JIFFY_OFFSET;
524 else
525 t = msecs_to_jiffies(timeout);
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000526
527 optype = flags & CIFS_OP_MASK;
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300528
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800529 *instance = 0;
530
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000531 credits = server->ops->get_credits_field(server, optype);
532 /* Since an echo is already inflight, no need to wait to send another */
533 if (*credits <= 0 && optype == CIFS_ECHO_OP)
534 return -EAGAIN;
535
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300536 spin_lock(&server->req_lock);
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +1000537 if ((flags & CIFS_TIMEOUT_MASK) == CIFS_NON_BLOCKING) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000538 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300539 server->in_flight++;
Steve French1b63f182019-09-09 22:57:11 -0500540 if (server->in_flight > server->max_in_flight)
541 server->max_in_flight = server->in_flight;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300542 *credits -= 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800543 *instance = server->reconnect_instance;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800544 scredits = *credits;
545 in_flight = server->in_flight;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300546 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800547
548 trace_smb3_add_credits(server->CurrentMid,
549 server->conn_id, server->hostname, scredits, -1, in_flight);
550 cifs_dbg(FYI, "%s: remove %u credits total=%d\n",
551 __func__, 1, scredits);
552
Volker Lendecke27a97a62008-12-08 20:59:39 +0000553 return 0;
554 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000555
Volker Lendecke27a97a62008-12-08 20:59:39 +0000556 while (1) {
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000557 if (*credits < num_credits) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800558 scredits = *credits;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300559 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800560
Steve French789e6662011-08-09 18:44:44 +0000561 cifs_num_waiters_inc(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000562 rc = wait_event_killable_timeout(server->request_q,
563 has_credits(server, credits, num_credits), t);
Steve French789e6662011-08-09 18:44:44 +0000564 cifs_num_waiters_dec(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000565 if (!rc) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800566 spin_lock(&server->req_lock);
567 scredits = *credits;
568 in_flight = server->in_flight;
569 spin_unlock(&server->req_lock);
570
Steve French7937ca92019-03-09 20:29:55 -0600571 trace_smb3_credit_timeout(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800572 server->conn_id, server->hostname, scredits,
573 num_credits, in_flight);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000574 cifs_server_dbg(VFS, "wait timed out after %d ms\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800575 timeout);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800576 return -EBUSY;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000577 }
578 if (rc == -ERESTARTSYS)
579 return -ERESTARTSYS;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300580 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000581 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500582 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300583 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000584 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000585 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000586
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400587 /*
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000588 * For normal commands, reserve the last MAX_COMPOUND
589 * credits to compound requests.
590 * Otherwise these compounds could be permanently
591 * starved for credits by single-credit requests.
592 *
593 * To prevent spinning CPU, block this thread until
594 * there are >MAX_COMPOUND credits available.
595 * But only do this is we already have a lot of
596 * credits in flight to avoid triggering this check
597 * for servers that are slow to hand out credits on
598 * new sessions.
599 */
600 if (!optype && num_credits == 1 &&
601 server->in_flight > 2 * MAX_COMPOUND &&
602 *credits <= MAX_COMPOUND) {
603 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800604
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000605 cifs_num_waiters_inc(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000606 rc = wait_event_killable_timeout(
607 server->request_q,
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000608 has_credits(server, credits,
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000609 MAX_COMPOUND + 1),
610 t);
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000611 cifs_num_waiters_dec(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000612 if (!rc) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800613 spin_lock(&server->req_lock);
614 scredits = *credits;
615 in_flight = server->in_flight;
616 spin_unlock(&server->req_lock);
617
Steve French7937ca92019-03-09 20:29:55 -0600618 trace_smb3_credit_timeout(
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800619 server->CurrentMid,
620 server->conn_id, server->hostname,
621 scredits, num_credits, in_flight);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000622 cifs_server_dbg(VFS, "wait timed out after %d ms\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800623 timeout);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800624 return -EBUSY;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000625 }
626 if (rc == -ERESTARTSYS)
627 return -ERESTARTSYS;
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000628 spin_lock(&server->req_lock);
629 continue;
630 }
631
632 /*
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400633 * Can not count locking commands against total
634 * as they are allowed to block on server.
635 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000636
637 /* update # of requests on the wire to server */
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000638 if ((flags & CIFS_TIMEOUT_MASK) != CIFS_BLOCKING_OP) {
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000639 *credits -= num_credits;
640 server->in_flight += num_credits;
Steve French1b63f182019-09-09 22:57:11 -0500641 if (server->in_flight > server->max_in_flight)
642 server->max_in_flight = server->in_flight;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800643 *instance = server->reconnect_instance;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400644 }
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800645 scredits = *credits;
646 in_flight = server->in_flight;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300647 spin_unlock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800648
649 trace_smb3_add_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800650 server->conn_id, server->hostname, scredits,
651 -(num_credits), in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800652 cifs_dbg(FYI, "%s: remove %u credits total=%d\n",
653 __func__, num_credits, scredits);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000654 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000655 }
656 }
657 return 0;
658}
659
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300660static int
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000661wait_for_free_request(struct TCP_Server_Info *server, const int flags,
662 unsigned int *instance)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300663{
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000664 return wait_for_free_credits(server, 1, -1, flags,
665 instance);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300666}
667
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000668static int
669wait_for_compound_request(struct TCP_Server_Info *server, int num,
670 const int flags, unsigned int *instance)
671{
672 int *credits;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800673 int scredits, in_flight;
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000674
675 credits = server->ops->get_credits_field(server, flags & CIFS_OP_MASK);
676
677 spin_lock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800678 scredits = *credits;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800679 in_flight = server->in_flight;
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800680
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000681 if (*credits < num) {
682 /*
Pavel Shilovsky91792bb2021-02-02 22:34:32 -0600683 * If the server is tight on resources or just gives us less
684 * credits for other reasons (e.g. requests are coming out of
685 * order and the server delays granting more credits until it
686 * processes a missing mid) and we exhausted most available
687 * credits there may be situations when we try to send
688 * a compound request but we don't have enough credits. At this
689 * point the client needs to decide if it should wait for
690 * additional credits or fail the request. If at least one
691 * request is in flight there is a high probability that the
692 * server will return enough credits to satisfy this compound
693 * request.
694 *
695 * Return immediately if no requests in flight since we will be
696 * stuck on waiting for credits.
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000697 */
Pavel Shilovsky91792bb2021-02-02 22:34:32 -0600698 if (server->in_flight == 0) {
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000699 spin_unlock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800700 trace_smb3_insufficient_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800701 server->conn_id, server->hostname, scredits,
702 num, in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800703 cifs_dbg(FYI, "%s: %d requests in flight, needed %d total=%d\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800704 __func__, in_flight, num, scredits);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800705 return -EDEADLK;
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000706 }
707 }
708 spin_unlock(&server->req_lock);
709
710 return wait_for_free_credits(server, num, 60000, flags,
711 instance);
712}
713
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400714int
715cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800716 unsigned int *num, struct cifs_credits *credits)
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400717{
718 *num = size;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800719 credits->value = 0;
720 credits->instance = server->reconnect_instance;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400721 return 0;
722}
723
Steve French96daf2b2011-05-27 04:34:02 +0000724static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000725 struct mid_q_entry **ppmidQ)
726{
727 if (ses->server->tcpStatus == CifsExiting) {
728 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100729 }
730
731 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500732 cifs_dbg(FYI, "tcp session dead - return to caller to retry\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000733 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100734 }
735
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500736 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000737 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000738 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000739 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000740 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000741 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500742
743 if (ses->status == CifsExiting) {
744 /* check if SMB session is bad because we are setting it up */
745 if (in_buf->Command != SMB_COM_LOGOFF_ANDX)
746 return -EAGAIN;
747 /* else ok - we are shutting down session */
748 }
749
Jeff Layton24b9b062008-12-01 07:09:34 -0500750 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000751 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000752 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500753 spin_lock(&GlobalMid_Lock);
754 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
755 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000756 return 0;
757}
758
Jeff Layton0ade6402011-01-11 07:24:02 -0500759static int
760wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000761{
Jeff Layton0ade6402011-01-11 07:24:02 -0500762 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000763
Colin Cross5853cc22013-05-07 17:52:05 +0000764 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400765 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500766 if (error < 0)
767 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000768
Jeff Layton0ade6402011-01-11 07:24:02 -0500769 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000770}
771
Jeff Laytonfec344e2012-09-18 16:20:35 -0700772struct mid_q_entry *
773cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400774{
775 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700776 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400777 struct mid_q_entry *mid;
778
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800779 if (rqst->rq_iov[0].iov_len != 4 ||
780 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
781 return ERR_PTR(-EIO);
782
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400783 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400784 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400785 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
786
787 mid = AllocMidQEntry(hdr, server);
788 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700789 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400790
Jeff Laytonfec344e2012-09-18 16:20:35 -0700791 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100792 if (rc) {
793 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700794 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100795 }
796
Jeff Laytonfec344e2012-09-18 16:20:35 -0700797 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400798}
Steve French133672e2007-11-13 22:41:37 +0000799
800/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500801 * Send a SMB request and set the callback function in the mid to handle
802 * the result. Caller is responsible for dealing with timeouts.
803 */
804int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700805cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800806 mid_receive_t *receive, mid_callback_t *callback,
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800807 mid_handle_t *handle, void *cbdata, const int flags,
808 const struct cifs_credits *exist_credits)
Jeff Laytona6827c12011-01-11 07:24:21 -0500809{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000810 int rc;
Jeff Laytona6827c12011-01-11 07:24:21 -0500811 struct mid_q_entry *mid;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800812 struct cifs_credits credits = { .value = 0, .instance = 0 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800813 unsigned int instance;
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000814 int optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500815
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400816 optype = flags & CIFS_OP_MASK;
817
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400818 if ((flags & CIFS_HAS_CREDITS) == 0) {
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000819 rc = wait_for_free_request(server, flags, &instance);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400820 if (rc)
821 return rc;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800822 credits.value = 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800823 credits.instance = instance;
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800824 } else
825 instance = exist_credits->instance;
Jeff Laytona6827c12011-01-11 07:24:21 -0500826
827 mutex_lock(&server->srv_mutex);
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800828
829 /*
830 * We can't use credits obtained from the previous session to send this
831 * request. Check if there were reconnects after we obtained credits and
832 * return -EAGAIN in such cases to let callers handle it.
833 */
834 if (instance != server->reconnect_instance) {
835 mutex_unlock(&server->srv_mutex);
836 add_credits_and_wake_if(server, &credits, optype);
837 return -EAGAIN;
838 }
839
Jeff Laytonfec344e2012-09-18 16:20:35 -0700840 mid = server->ops->setup_async_request(server, rqst);
841 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500842 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800843 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700844 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500845 }
846
Jeff Layton44d22d82011-10-19 15:29:49 -0400847 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500848 mid->callback = callback;
849 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800850 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400851 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000852
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100853 /* put it on the pending_mid_q */
854 spin_lock(&GlobalMid_Lock);
855 list_add_tail(&mid->qhead, &server->pending_mid_q);
856 spin_unlock(&GlobalMid_Lock);
857
Long Li93d2cb62017-06-28 15:55:55 -0700858 /*
859 * Need to store the time in mid before calling I/O. For call_async,
860 * I/O response may come back and free the mid entry on another thread.
861 */
862 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000863 cifs_in_send_inc(server);
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000864 rc = smb_send_rqst(server, 1, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000865 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400866
Rabin Vincent820962d2015-12-23 07:32:41 +0100867 if (rc < 0) {
Pavel Shilovskyc781af72019-03-04 14:02:50 -0800868 revert_current_mid(server, mid->credits);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400869 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100870 cifs_delete_mid(mid);
871 }
872
Jeff Laytona6827c12011-01-11 07:24:21 -0500873 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000874
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100875 if (rc == 0)
876 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500877
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800878 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500879 return rc;
880}
881
882/*
Steve French133672e2007-11-13 22:41:37 +0000883 *
884 * Send an SMB Request. No response info (other than return code)
885 * needs to be parsed.
886 *
887 * flags indicate the type of request buffer and how long to wait
888 * and whether to log NT STATUS code (error) before mapping it to POSIX error
889 *
890 */
891int
Steve French96daf2b2011-05-27 04:34:02 +0000892SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400893 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000894{
895 int rc;
896 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700897 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000898 int resp_buf_type;
899
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400900 iov[0].iov_base = in_buf;
901 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +1000902 flags |= CIFS_NO_RSP_BUF;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700903 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500904 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000905
Steve French133672e2007-11-13 22:41:37 +0000906 return rc;
907}
908
Jeff Layton053d5032011-01-11 07:24:02 -0500909static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400910cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500911{
912 int rc = 0;
913
Joe Perchesf96637b2013-05-04 22:12:25 -0500914 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
915 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500916
Jeff Layton74dd92a2011-01-11 07:24:02 -0500917 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400918 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500919 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500920 spin_unlock(&GlobalMid_Lock);
921 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500922 case MID_RETRY_NEEDED:
923 rc = -EAGAIN;
924 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500925 case MID_RESPONSE_MALFORMED:
926 rc = -EIO;
927 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400928 case MID_SHUTDOWN:
929 rc = -EHOSTDOWN;
930 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500931 default:
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700932 if (!(mid->mid_flags & MID_DELETED)) {
933 list_del_init(&mid->qhead);
934 mid->mid_flags |= MID_DELETED;
935 }
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000936 cifs_server_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500937 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500938 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500939 }
940 spin_unlock(&GlobalMid_Lock);
941
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500942 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500943 return rc;
944}
945
Jeff Layton121b0462012-05-15 12:21:10 -0400946static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800947send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
948 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500949{
Jeff Layton121b0462012-05-15 12:21:10 -0400950 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800951 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500952}
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400955cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
956 bool log_error)
957{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400958 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400959
960 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400961
962 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400963 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800964 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500965 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800966 struct smb_rqst rqst = { .rq_iov = iov,
967 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400968
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800969 iov[0].iov_base = mid->resp_buf;
970 iov[0].iov_len = 4;
971 iov[1].iov_base = (char *)mid->resp_buf + 4;
972 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400973 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700974 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400975 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500976 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000977 cifs_server_dbg(VFS, "SMB signature verification returned error = %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500978 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400979 }
980
981 /* BB special case reconnect tid and uid here? */
Roberto Bergantinos Corpasa3713ec2020-07-03 11:29:32 +0200982 return map_and_check_smb_error(mid, log_error);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400983}
984
Jeff Laytonfec344e2012-09-18 16:20:35 -0700985struct mid_q_entry *
Aurelien Aptelf780bd32019-09-20 06:08:34 +0200986cifs_setup_request(struct cifs_ses *ses, struct TCP_Server_Info *ignored,
987 struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400988{
989 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700990 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400991 struct mid_q_entry *mid;
992
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800993 if (rqst->rq_iov[0].iov_len != 4 ||
994 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
995 return ERR_PTR(-EIO);
996
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400997 rc = allocate_mid(ses, hdr, &mid);
998 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700999 return ERR_PTR(rc);
1000 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
1001 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001002 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001003 return ERR_PTR(rc);
1004 }
1005 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001006}
1007
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001008static void
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001009cifs_compound_callback(struct mid_q_entry *mid)
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001010{
1011 struct TCP_Server_Info *server = mid->server;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001012 struct cifs_credits credits;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001013
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001014 credits.value = server->ops->get_credits(mid);
1015 credits.instance = server->reconnect_instance;
1016
1017 add_credits(server, &credits, mid->optype);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001018}
1019
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001020static void
1021cifs_compound_last_callback(struct mid_q_entry *mid)
1022{
1023 cifs_compound_callback(mid);
1024 cifs_wake_up_task(mid);
1025}
1026
1027static void
1028cifs_cancelled_callback(struct mid_q_entry *mid)
1029{
1030 cifs_compound_callback(mid);
1031 DeleteMidQEntry(mid);
1032}
1033
Aurelien Aptel5f68ea42020-04-22 15:58:57 +02001034/*
1035 * Return a channel (master if none) of @ses that can be used to send
1036 * regular requests.
1037 *
1038 * If we are currently binding a new channel (negprot/sess.setup),
1039 * return the new incomplete channel.
1040 */
1041struct TCP_Server_Info *cifs_pick_channel(struct cifs_ses *ses)
1042{
1043 uint index = 0;
1044
1045 if (!ses)
1046 return NULL;
1047
1048 if (!ses->binding) {
1049 /* round robin */
1050 if (ses->chan_count > 1) {
1051 index = (uint)atomic_inc_return(&ses->chan_seq);
1052 index %= ses->chan_count;
1053 }
1054 return ses->chans[index].server;
1055 } else {
1056 return cifs_ses_server(ses);
1057 }
1058}
1059
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08001060int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001061compound_send_recv(const unsigned int xid, struct cifs_ses *ses,
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001062 struct TCP_Server_Info *server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001063 const int flags, const int num_rqst, struct smb_rqst *rqst,
1064 int *resp_buf_type, struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001066 int i, j, optype, rc = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001067 struct mid_q_entry *midQ[MAX_COMPOUND];
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001068 bool cancelled_mid[MAX_COMPOUND] = {false};
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001069 struct cifs_credits credits[MAX_COMPOUND] = {
1070 { .value = 0, .instance = 0 }
1071 };
1072 unsigned int instance;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001073 char *buf;
Steve French50c2f752007-07-13 00:33:32 +00001074
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001075 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +00001076
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001077 for (i = 0; i < num_rqst; i++)
1078 resp_buf_type[i] = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001080 if (!ses || !ses->server || !server) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001081 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return -EIO;
1083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Aurelien Aptel3190b592019-06-24 13:00:12 -05001085 if (server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -07001086 return -ENOENT;
1087
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001088 /*
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001089 * Wait for all the requests to become available.
Pavel Shilovsky7091bca2019-01-30 16:58:09 -08001090 * This approach still leaves the possibility to be stuck waiting for
1091 * credits if the server doesn't grant credits to the outstanding
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001092 * requests and if the client is completely idle, not generating any
1093 * other requests.
1094 * This can be handled by the eventual session reconnect.
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001095 */
Aurelien Aptel3190b592019-06-24 13:00:12 -05001096 rc = wait_for_compound_request(server, num_rqst, flags,
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001097 &instance);
1098 if (rc)
1099 return rc;
1100
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001101 for (i = 0; i < num_rqst; i++) {
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001102 credits[i].value = 1;
1103 credits[i].instance = instance;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001104 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001105
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001106 /*
1107 * Make sure that we sign in the same order that we send on this socket
1108 * and avoid races inside tcp sendmsg code that could cause corruption
1109 * of smb data.
1110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Aurelien Aptel3190b592019-06-24 13:00:12 -05001112 mutex_lock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001114 /*
1115 * All the parts of the compound chain belong obtained credits from the
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001116 * same session. We can not use credits obtained from the previous
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001117 * session to send this request. Check if there were reconnects after
1118 * we obtained credits and return -EAGAIN in such cases to let callers
1119 * handle it.
1120 */
Aurelien Aptel3190b592019-06-24 13:00:12 -05001121 if (instance != server->reconnect_instance) {
1122 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001123 for (j = 0; j < num_rqst; j++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001124 add_credits(server, &credits[j], optype);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001125 return -EAGAIN;
1126 }
1127
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001128 for (i = 0; i < num_rqst; i++) {
Aurelien Aptelf780bd32019-09-20 06:08:34 +02001129 midQ[i] = server->ops->setup_request(ses, server, &rqst[i]);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001130 if (IS_ERR(midQ[i])) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001131 revert_current_mid(server, i);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001132 for (j = 0; j < i; j++)
1133 cifs_delete_mid(midQ[j]);
Aurelien Aptel3190b592019-06-24 13:00:12 -05001134 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001135
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001136 /* Update # of requests on wire to server */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001137 for (j = 0; j < num_rqst; j++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001138 add_credits(server, &credits[j], optype);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001139 return PTR_ERR(midQ[i]);
1140 }
1141
1142 midQ[i]->mid_state = MID_REQUEST_SUBMITTED;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001143 midQ[i]->optype = optype;
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001144 /*
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001145 * Invoke callback for every part of the compound chain
1146 * to calculate credits properly. Wake up this thread only when
1147 * the last element is received.
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001148 */
1149 if (i < num_rqst - 1)
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001150 midQ[i]->callback = cifs_compound_callback;
1151 else
1152 midQ[i]->callback = cifs_compound_last_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Aurelien Aptel3190b592019-06-24 13:00:12 -05001154 cifs_in_send_inc(server);
1155 rc = smb_send_rqst(server, num_rqst, rqst, flags);
1156 cifs_in_send_dec(server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001157
1158 for (i = 0; i < num_rqst; i++)
1159 cifs_save_when_sent(midQ[i]);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001160
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001161 if (rc < 0) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001162 revert_current_mid(server, num_rqst);
1163 server->sequence_number -= 2;
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001164 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001165
Aurelien Aptel3190b592019-06-24 13:00:12 -05001166 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001167
Ronnie Sahlbergd69cb722019-05-01 12:03:41 +10001168 /*
1169 * If sending failed for some reason or it is an oplock break that we
1170 * will not receive a response to - return credits back
1171 */
1172 if (rc < 0 || (flags & CIFS_NO_SRV_RSP)) {
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001173 for (i = 0; i < num_rqst; i++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001174 add_credits(server, &credits[i], optype);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001175 goto out;
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001176 }
1177
1178 /*
1179 * At this point the request is passed to the network stack - we assume
1180 * that any credits taken from the server structure on the client have
1181 * been spent and we can't return them back. Once we receive responses
1182 * we will collect credits granted by the server in the mid callbacks
1183 * and add those credits to the server structure.
1184 */
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001185
1186 /*
1187 * Compounding is never used during session establish.
1188 */
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001189 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) {
1190 mutex_lock(&server->srv_mutex);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001191 smb311_update_preauth_hash(ses, rqst[0].rq_iov,
1192 rqst[0].rq_nvec);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001193 mutex_unlock(&server->srv_mutex);
1194 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001195
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001196 for (i = 0; i < num_rqst; i++) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001197 rc = wait_for_response(server, midQ[i]);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001198 if (rc != 0)
1199 break;
1200 }
1201 if (rc != 0) {
1202 for (; i < num_rqst; i++) {
Paulo Alcantarae3d100e2021-03-08 12:00:48 -03001203 cifs_server_dbg(FYI, "Cancelling wait for mid %llu cmd: %d\n",
Steve French43de1db2018-10-23 21:04:57 -05001204 midQ[i]->mid, le16_to_cpu(midQ[i]->command));
Aurelien Aptel3190b592019-06-24 13:00:12 -05001205 send_cancel(server, &rqst[i], midQ[i]);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001206 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7b718432019-11-21 11:35:14 -08001207 midQ[i]->mid_flags |= MID_WAIT_CANCELLED;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001208 if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED) {
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001209 midQ[i]->callback = cifs_cancelled_callback;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001210 cancelled_mid[i] = true;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001211 credits[i].value = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001212 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001213 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001214 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001215 }
1216
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001217 for (i = 0; i < num_rqst; i++) {
1218 if (rc < 0)
1219 goto out;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001220
Aurelien Aptel3190b592019-06-24 13:00:12 -05001221 rc = cifs_sync_mid_result(midQ[i], server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001222 if (rc != 0) {
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001223 /* mark this mid as cancelled to not free it below */
1224 cancelled_mid[i] = true;
1225 goto out;
Jeff Layton1be912d2011-01-28 07:08:28 -05001226 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001227
1228 if (!midQ[i]->resp_buf ||
1229 midQ[i]->mid_state != MID_RESPONSE_RECEIVED) {
1230 rc = -EIO;
1231 cifs_dbg(FYI, "Bad MID state?\n");
1232 goto out;
1233 }
1234
1235 buf = (char *)midQ[i]->resp_buf;
1236 resp_iov[i].iov_base = buf;
1237 resp_iov[i].iov_len = midQ[i]->resp_buf_size +
Aurelien Aptel3190b592019-06-24 13:00:12 -05001238 server->vals->header_preamble_size;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001239
1240 if (midQ[i]->large_buf)
1241 resp_buf_type[i] = CIFS_LARGE_BUFFER;
1242 else
1243 resp_buf_type[i] = CIFS_SMALL_BUFFER;
1244
Aurelien Aptel3190b592019-06-24 13:00:12 -05001245 rc = server->ops->check_receive(midQ[i], server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001246 flags & CIFS_LOG_ERROR);
1247
1248 /* mark it so buf will not be freed by cifs_delete_mid */
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +10001249 if ((flags & CIFS_NO_RSP_BUF) == 0)
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001250 midQ[i]->resp_buf = NULL;
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001251
Jeff Layton1be912d2011-01-28 07:08:28 -05001252 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001253
1254 /*
1255 * Compounding is never used during session establish.
1256 */
Shyam Prasad N0f56db82021-02-03 22:49:52 -08001257 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) {
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001258 struct kvec iov = {
1259 .iov_base = resp_iov[0].iov_base,
1260 .iov_len = resp_iov[0].iov_len
1261 };
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001262 mutex_lock(&server->srv_mutex);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001263 smb311_update_preauth_hash(ses, &iov, 1);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001264 mutex_unlock(&server->srv_mutex);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001265 }
1266
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001267out:
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001268 /*
1269 * This will dequeue all mids. After this it is important that the
1270 * demultiplex_thread will not process any of these mids any futher.
1271 * This is prevented above by using a noop callback that will not
1272 * wake this thread except for the very last PDU.
1273 */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001274 for (i = 0; i < num_rqst; i++) {
1275 if (!cancelled_mid[i])
1276 cifs_delete_mid(midQ[i]);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 return rc;
1280}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001283cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001284 struct TCP_Server_Info *server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001285 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
1286 struct kvec *resp_iov)
1287{
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001288 return compound_send_recv(xid, ses, server, flags, 1,
1289 rqst, resp_buf_type, resp_iov);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001290}
1291
1292int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001293SendReceive2(const unsigned int xid, struct cifs_ses *ses,
1294 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
1295 const int flags, struct kvec *resp_iov)
1296{
1297 struct smb_rqst rqst;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001298 struct kvec s_iov[CIFS_MAX_IOV_SIZE], *new_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001299 int rc;
1300
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001301 if (n_vec + 1 > CIFS_MAX_IOV_SIZE) {
Kees Cook6da2ec52018-06-12 13:55:00 -07001302 new_iov = kmalloc_array(n_vec + 1, sizeof(struct kvec),
1303 GFP_KERNEL);
Steve French117e3b72018-04-22 10:24:19 -05001304 if (!new_iov) {
1305 /* otherwise cifs_send_recv below sets resp_buf_type */
1306 *resp_buf_type = CIFS_NO_BUFFER;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001307 return -ENOMEM;
Steve French117e3b72018-04-22 10:24:19 -05001308 }
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001309 } else
1310 new_iov = s_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001311
1312 /* 1st iov is a RFC1001 length followed by the rest of the packet */
1313 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
1314
1315 new_iov[0].iov_base = new_iov[1].iov_base;
1316 new_iov[0].iov_len = 4;
1317 new_iov[1].iov_base += 4;
1318 new_iov[1].iov_len -= 4;
1319
1320 memset(&rqst, 0, sizeof(struct smb_rqst));
1321 rqst.rq_iov = new_iov;
1322 rqst.rq_nvec = n_vec + 1;
1323
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001324 rc = cifs_send_recv(xid, ses, ses->server,
1325 &rqst, resp_buf_type, flags, resp_iov);
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001326 if (n_vec + 1 > CIFS_MAX_IOV_SIZE)
1327 kfree(new_iov);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001328 return rc;
1329}
1330
1331int
Steve French96daf2b2011-05-27 04:34:02 +00001332SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001334 int *pbytes_returned, const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
1336 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001338 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1339 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1340 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001341 struct cifs_credits credits = { .value = 1, .instance = 0 };
Colin Ian Kingac6ad7a2019-09-02 16:10:59 +01001342 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001345 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return -EIO;
1347 }
Colin Ian Kingac6ad7a2019-09-02 16:10:59 +01001348 server = ses->server;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001349 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001350 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return -EIO;
1352 }
1353
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001354 if (server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -07001355 return -ENOENT;
1356
Steve French79a58d12007-07-06 22:44:50 +00001357 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 to the same server. We may make this configurable later or
1359 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001361 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001362 cifs_server_dbg(VFS, "Invalid length, greater than maximum frame, %d\n",
1363 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001364 return -EIO;
1365 }
1366
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001367 rc = wait_for_free_request(server, flags, &credits.instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001368 if (rc)
1369 return rc;
1370
Steve French79a58d12007-07-06 22:44:50 +00001371 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 and avoid races inside tcp sendmsg code that could cause corruption
1373 of smb data */
1374
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001375 mutex_lock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001377 rc = allocate_mid(ses, in_buf, &midQ);
1378 if (rc) {
Dan Carpenter8bd37542019-10-25 13:35:08 +03001379 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001380 /* Update # of requests on wire to server */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001381 add_credits(server, &credits, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001382 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001385 rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001386 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001387 mutex_unlock(&server->srv_mutex);
Volker Lendecke829049c2008-12-06 16:00:53 +01001388 goto out;
1389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001391 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001392
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001393 cifs_in_send_inc(server);
1394 rc = smb_send(server, in_buf, len);
1395 cifs_in_send_dec(server);
Steve French789e6662011-08-09 18:44:44 +00001396 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001397
1398 if (rc < 0)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001399 server->sequence_number -= 2;
Jeff Laytonad313cb2013-04-03 10:27:36 -04001400
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001401 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001402
Steve French79a58d12007-07-06 22:44:50 +00001403 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001404 goto out;
1405
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001406 rc = wait_for_response(server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001407 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001408 send_cancel(server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001409 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001410 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001411 /* no longer considered to be "in-flight" */
1412 midQ->callback = DeleteMidQEntry;
1413 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001414 add_credits(server, &credits, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -05001415 return rc;
1416 }
1417 spin_unlock(&GlobalMid_Lock);
1418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001420 rc = cifs_sync_mid_result(midQ, server);
Jeff Layton053d5032011-01-11 07:24:02 -05001421 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001422 add_credits(server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return rc;
1424 }
Steve French50c2f752007-07-13 00:33:32 +00001425
Jeff Layton2c8f9812011-05-19 16:22:52 -04001426 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001427 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 rc = -EIO;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001429 cifs_server_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +00001430 goto out;
1431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001433 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001434 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001435 rc = cifs_check_receive(midQ, server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001436out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001437 cifs_delete_mid(midQ);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001438 add_credits(server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001441}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001443/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
1444 blocking lock to return. */
1445
1446static int
Steve French96daf2b2011-05-27 04:34:02 +00001447send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001448 struct smb_hdr *in_buf,
1449 struct smb_hdr *out_buf)
1450{
1451 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +00001452 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001453 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
1454
1455 /* We just modify the current in_buf to change
1456 the type of lock from LOCKING_ANDX_SHARED_LOCK
1457 or LOCKING_ANDX_EXCLUSIVE_LOCK to
1458 LOCKING_ANDX_CANCEL_LOCK. */
1459
1460 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
1461 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +04001462 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001463
1464 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -05001465 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001466}
1467
1468int
Steve French96daf2b2011-05-27 04:34:02 +00001469SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001470 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
1471 int *pbytes_returned)
1472{
1473 int rc = 0;
1474 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001475 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +00001476 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001477 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1478 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1479 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001480 unsigned int instance;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001481 struct TCP_Server_Info *server;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001482
1483 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001484 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001485 return -EIO;
1486 }
1487 ses = tcon->ses;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001488 server = ses->server;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001489
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001490 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001491 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001492 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 }
1494
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001495 if (server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001496 return -ENOENT;
1497
Steve French79a58d12007-07-06 22:44:50 +00001498 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001499 to the same server. We may make this configurable later or
1500 use ses->maxReq */
1501
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001502 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001503 cifs_tcon_dbg(VFS, "Invalid length, greater than maximum frame, %d\n",
1504 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001505 return -EIO;
1506 }
1507
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001508 rc = wait_for_free_request(server, CIFS_BLOCKING_OP, &instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001509 if (rc)
1510 return rc;
1511
Steve French79a58d12007-07-06 22:44:50 +00001512 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001513 and avoid races inside tcp sendmsg code that could cause corruption
1514 of smb data */
1515
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001516 mutex_lock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001517
1518 rc = allocate_mid(ses, in_buf, &midQ);
1519 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001520 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001521 return rc;
1522 }
1523
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001524 rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001525 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001526 cifs_delete_mid(midQ);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001527 mutex_unlock(&server->srv_mutex);
Volker Lendecke829049c2008-12-06 16:00:53 +01001528 return rc;
1529 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001530
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001531 midQ->mid_state = MID_REQUEST_SUBMITTED;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001532 cifs_in_send_inc(server);
1533 rc = smb_send(server, in_buf, len);
1534 cifs_in_send_dec(server);
Steve French789e6662011-08-09 18:44:44 +00001535 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001536
1537 if (rc < 0)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001538 server->sequence_number -= 2;
Jeff Laytonad313cb2013-04-03 10:27:36 -04001539
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001540 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001541
Steve French79a58d12007-07-06 22:44:50 +00001542 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001543 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001544 return rc;
1545 }
1546
1547 /* Wait for a reply - allow signals to interrupt. */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001548 rc = wait_event_interruptible(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001549 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001550 ((server->tcpStatus != CifsGood) &&
1551 (server->tcpStatus != CifsNew)));
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001552
1553 /* Were we interrupted by a signal ? */
1554 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001555 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001556 ((server->tcpStatus == CifsGood) ||
1557 (server->tcpStatus == CifsNew))) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001558
1559 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1560 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1561 blocking lock to return. */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001562 rc = send_cancel(server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001563 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001564 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001565 return rc;
1566 }
1567 } else {
1568 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1569 to cause the blocking lock to return. */
1570
1571 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1572
1573 /* If we get -ENOLCK back the lock may have
1574 already been removed. Don't exit in this case. */
1575 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001576 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001577 return rc;
1578 }
1579 }
1580
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001581 rc = wait_for_response(server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001582 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001583 send_cancel(server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001584 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001585 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001586 /* no longer considered to be "in-flight" */
1587 midQ->callback = DeleteMidQEntry;
1588 spin_unlock(&GlobalMid_Lock);
1589 return rc;
1590 }
1591 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001592 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001593
1594 /* We got the response - restart system call. */
1595 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001596 }
1597
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001598 rc = cifs_sync_mid_result(midQ, server);
Jeff Layton053d5032011-01-11 07:24:02 -05001599 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001600 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001601
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001602 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001603 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001604 rc = -EIO;
Ronnie Sahlberg3175eb92019-09-04 12:32:41 +10001605 cifs_tcon_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001606 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001607 }
1608
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001609 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001610 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001611 rc = cifs_check_receive(midQ, server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001612out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001613 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001614 if (rstart && rc == -EACCES)
1615 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return rc;
1617}