blob: 8540f7c13eae12182d37275613c68838c74b5e9f [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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 */
9
10#include <linux/fs.h>
11#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/wait.h>
14#include <linux/net.h>
15#include <linux/delay.h>
Jeff Laytonf06ac722011-10-19 15:30:40 -040016#include <linux/freezer.h>
Jeff Laytonb8eed282012-09-18 16:20:35 -070017#include <linux/tcp.h>
Christoph Hellwig2f8b5442016-11-01 07:40:13 -060018#include <linux/bvec.h>
Jeff Layton97bc00b2012-09-18 16:20:35 -070019#include <linux/highmem.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/processor.h>
22#include <linux/mempool.h>
Ronnie Sahlberg14e25972019-05-13 11:24:17 +100023#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "cifspdu.h"
25#include "cifsglob.h"
26#include "cifsproto.h"
27#include "cifs_debug.h"
Aurelien Aptel8bd68c62018-02-16 19:19:29 +010028#include "smb2proto.h"
Long Li9762c2d2017-11-22 17:38:43 -070029#include "smbdirect.h"
Steve French50c2f752007-07-13 00:33:32 +000030
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +110031/* Max number of iovectors we can use off the stack when sending requests. */
32#define CIFS_MAX_IOV_SIZE 8
33
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040034void
35cifs_wake_up_task(struct mid_q_entry *mid)
Jeff Layton2b84a36c2011-01-11 07:24:21 -050036{
37 wake_up_process(mid->callback_data);
38}
39
Jeff Laytona6827c12011-01-11 07:24:21 -050040struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050041AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 struct mid_q_entry *temp;
44
Jeff Layton24b9b062008-12-01 07:09:34 -050045 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -050046 cifs_dbg(VFS, "Null TCP session in AllocMidQEntry\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return NULL;
48 }
Steve French50c2f752007-07-13 00:33:32 +000049
Pekka Enberg232087c2008-09-15 13:22:54 +030050 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
NeilBrowna6f74e82017-04-10 12:08:53 +100051 memset(temp, 0, sizeof(struct mid_q_entry));
Lars Persson696e4202018-06-25 14:05:25 +020052 kref_init(&temp->refcount);
NeilBrowna6f74e82017-04-10 12:08:53 +100053 temp->mid = get_mid(smb_buffer);
54 temp->pid = current->pid;
55 temp->command = cpu_to_le16(smb_buffer->Command);
56 cifs_dbg(FYI, "For smb_command %d\n", smb_buffer->Command);
Steve French1047abc2005-10-11 19:58:06 -070057 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
NeilBrowna6f74e82017-04-10 12:08:53 +100058 /* when mid allocated can be before when sent */
59 temp->when_alloc = jiffies;
60 temp->server = server;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050061
NeilBrowna6f74e82017-04-10 12:08:53 +100062 /*
63 * The default is for the mid to be synchronous, so the
64 * default callback just wakes up the current task.
65 */
Vincent Whitchurchf1f27ad2020-01-23 17:09:06 +010066 get_task_struct(current);
67 temp->creator = current;
NeilBrowna6f74e82017-04-10 12:08:53 +100068 temp->callback = cifs_wake_up_task;
69 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 atomic_inc(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040072 temp->mid_state = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return temp;
74}
75
Lars Persson696e4202018-06-25 14:05:25 +020076static void _cifs_mid_q_entry_release(struct kref *refcount)
77{
Pavel Shilovskyabe57072019-10-22 08:41:42 -070078 struct mid_q_entry *midEntry =
79 container_of(refcount, struct mid_q_entry, refcount);
Steve French1047abc2005-10-11 19:58:06 -070080#ifdef CONFIG_CIFS_STATS2
Pavel Shilovsky2dc7e1c2011-12-26 22:53:34 +040081 __le16 command = midEntry->server->vals->lock_cmd;
Steve French433b8dd2019-03-26 13:53:21 -050082 __u16 smb_cmd = le16_to_cpu(midEntry->command);
Steve French1047abc2005-10-11 19:58:06 -070083 unsigned long now;
Steve French433b8dd2019-03-26 13:53:21 -050084 unsigned long roundtrip_time;
Steve French1047abc2005-10-11 19:58:06 -070085#endif
Pavel Shilovsky7b718432019-11-21 11:35:14 -080086 struct TCP_Server_Info *server = midEntry->server;
87
88 if (midEntry->resp_buf && (midEntry->mid_flags & MID_WAIT_CANCELLED) &&
89 midEntry->mid_state == MID_RESPONSE_RECEIVED &&
90 server->ops->handle_cancelled_mid)
Paulo Alcantara04ad69c2021-03-08 12:00:50 -030091 server->ops->handle_cancelled_mid(midEntry, server);
Pavel Shilovsky7b718432019-11-21 11:35:14 -080092
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040093 midEntry->mid_state = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -050094 atomic_dec(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040095 if (midEntry->large_buf)
Steve Frenchb8643e12005-04-28 22:41:07 -070096 cifs_buf_release(midEntry->resp_buf);
97 else
98 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -070099#ifdef CONFIG_CIFS_STATS2
100 now = jiffies;
Steve French433b8dd2019-03-26 13:53:21 -0500101 if (now < midEntry->when_alloc)
Joe Perchesa0a30362020-04-14 22:42:53 -0700102 cifs_server_dbg(VFS, "Invalid mid allocation time\n");
Steve French433b8dd2019-03-26 13:53:21 -0500103 roundtrip_time = now - midEntry->when_alloc;
104
105 if (smb_cmd < NUMBER_OF_SMB2_COMMANDS) {
106 if (atomic_read(&server->num_cmds[smb_cmd]) == 0) {
107 server->slowest_cmd[smb_cmd] = roundtrip_time;
108 server->fastest_cmd[smb_cmd] = roundtrip_time;
109 } else {
110 if (server->slowest_cmd[smb_cmd] < roundtrip_time)
111 server->slowest_cmd[smb_cmd] = roundtrip_time;
112 else if (server->fastest_cmd[smb_cmd] > roundtrip_time)
113 server->fastest_cmd[smb_cmd] = roundtrip_time;
114 }
115 cifs_stats_inc(&server->num_cmds[smb_cmd]);
116 server->time_per_cmd[smb_cmd] += roundtrip_time;
117 }
Steve French00778e22018-09-18 14:05:18 -0500118 /*
119 * commands taking longer than one second (default) can be indications
120 * that something is wrong, unless it is quite a slow link or a very
121 * busy server. Note that this calc is unlikely or impossible to wrap
122 * as long as slow_rsp_threshold is not set way above recommended max
123 * value (32767 ie 9 hours) and is generally harmless even if wrong
124 * since only affects debug counters - so leaving the calc as simple
125 * comparison rather than doing multiple conversions and overflow
126 * checks
127 */
128 if ((slow_rsp_threshold != 0) &&
129 time_after(now, midEntry->when_alloc + (slow_rsp_threshold * HZ)) &&
Steve French020eec52018-08-01 16:38:07 -0500130 (midEntry->command != command)) {
Steve Frenchf5942db2018-11-14 01:37:39 -0600131 /*
132 * smb2slowcmd[NUMBER_OF_SMB2_COMMANDS] counts by command
133 * NB: le16_to_cpu returns unsigned so can not be negative below
134 */
Steve French433b8dd2019-03-26 13:53:21 -0500135 if (smb_cmd < NUMBER_OF_SMB2_COMMANDS)
136 cifs_stats_inc(&server->smb2slowcmd[smb_cmd]);
Steve French468d6772018-08-04 05:24:34 -0500137
Steve French433b8dd2019-03-26 13:53:21 -0500138 trace_smb3_slow_rsp(smb_cmd, midEntry->mid, midEntry->pid,
Steve French020eec52018-08-01 16:38:07 -0500139 midEntry->when_sent, midEntry->when_received);
140 if (cifsFYI & CIFS_TIMER) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700141 pr_debug("slow rsp: cmd %d mid %llu",
142 midEntry->command, midEntry->mid);
143 cifs_info("A: 0x%lx S: 0x%lx R: 0x%lx\n",
144 now - midEntry->when_alloc,
145 now - midEntry->when_sent,
146 now - midEntry->when_received);
Steve French1047abc2005-10-11 19:58:06 -0700147 }
148 }
149#endif
Vincent Whitchurchf1f27ad2020-01-23 17:09:06 +0100150 put_task_struct(midEntry->creator);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700151
152 mempool_free(midEntry, cifs_mid_poolp);
153}
154
155void cifs_mid_q_entry_release(struct mid_q_entry *midEntry)
156{
157 spin_lock(&GlobalMid_Lock);
158 kref_put(&midEntry->refcount, _cifs_mid_q_entry_release);
159 spin_unlock(&GlobalMid_Lock);
160}
161
162void DeleteMidQEntry(struct mid_q_entry *midEntry)
163{
Lars Persson696e4202018-06-25 14:05:25 +0200164 cifs_mid_q_entry_release(midEntry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -0700167void
168cifs_delete_mid(struct mid_q_entry *mid)
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500169{
170 spin_lock(&GlobalMid_Lock);
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700171 if (!(mid->mid_flags & MID_DELETED)) {
172 list_del_init(&mid->qhead);
173 mid->mid_flags |= MID_DELETED;
174 }
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500175 spin_unlock(&GlobalMid_Lock);
176
177 DeleteMidQEntry(mid);
178}
179
Jeff Layton6f49f462012-09-18 16:20:34 -0700180/*
181 * smb_send_kvec - send an array of kvecs to the server
182 * @server: Server to send the data to
Al Viro3ab3f2a2015-11-13 02:36:04 -0500183 * @smb_msg: Message to send
Jeff Layton6f49f462012-09-18 16:20:34 -0700184 * @sent: amount of data sent on socket is stored here
185 *
186 * Our basic "send data to server" function. Should be called with srv_mutex
187 * held. The caller is responsible for handling the results.
188 */
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500189static int
Al Viro3ab3f2a2015-11-13 02:36:04 -0500190smb_send_kvec(struct TCP_Server_Info *server, struct msghdr *smb_msg,
191 size_t *sent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 int rc = 0;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500194 int retries = 0;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000195 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000196
Jeff Layton6f49f462012-09-18 16:20:34 -0700197 *sent = 0;
198
Al Viro3ab3f2a2015-11-13 02:36:04 -0500199 smb_msg->msg_name = (struct sockaddr *) &server->dstaddr;
200 smb_msg->msg_namelen = sizeof(struct sockaddr);
201 smb_msg->msg_control = NULL;
202 smb_msg->msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500203 if (server->noblocksnd)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500204 smb_msg->msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
Steve Frenchedf1ae42008-10-29 00:47:57 +0000205 else
Al Viro3ab3f2a2015-11-13 02:36:04 -0500206 smb_msg->msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Al Viro3ab3f2a2015-11-13 02:36:04 -0500208 while (msg_data_left(smb_msg)) {
Jeff Layton6f49f462012-09-18 16:20:34 -0700209 /*
210 * If blocking send, we try 3 times, since each can block
211 * for 5 seconds. For nonblocking we have to try more
212 * but wait increasing amounts of time allowing time for
213 * socket to clear. The overall time we wait in either
214 * case to send on the socket is about 15 seconds.
215 * Similarly we wait for 15 seconds for a response from
216 * the server in SendReceive[2] for the server to send
217 * a response back for most types of requests (except
218 * SMB Write past end of file which can be slow, and
219 * blocking lock operations). NFS waits slightly longer
220 * than CIFS, but this can make it take longer for
221 * nonresponsive servers to be detected and 15 seconds
222 * is more than enough time for modern networks to
223 * send a packet. In most cases if we fail to send
224 * after the retries we will kill the socket and
225 * reconnect which may clear the network problem.
226 */
Al Viro3ab3f2a2015-11-13 02:36:04 -0500227 rc = sock_sendmsg(ssocket, smb_msg);
Jeff Laytonce6c44e2013-03-22 08:36:45 -0400228 if (rc == -EAGAIN) {
Al Viro3ab3f2a2015-11-13 02:36:04 -0500229 retries++;
230 if (retries >= 14 ||
231 (!server->noblocksnd && (retries > 2))) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000232 cifs_server_dbg(VFS, "sends on sock %p stuck for 15 seconds\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500233 ssocket);
Al Viro3ab3f2a2015-11-13 02:36:04 -0500234 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500236 msleep(1 << retries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 continue;
238 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700239
Steve French79a58d12007-07-06 22:44:50 +0000240 if (rc < 0)
Al Viro3ab3f2a2015-11-13 02:36:04 -0500241 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700242
Steve French79a58d12007-07-06 22:44:50 +0000243 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700244 /* should never happen, letting socket clear before
245 retrying is our only obvious option here */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000246 cifs_server_dbg(VFS, "tcp sent no data\n");
Steve French3e844692005-10-03 13:37:24 -0700247 msleep(500);
248 continue;
249 }
Jeff Layton6f49f462012-09-18 16:20:34 -0700250
Al Viro3ab3f2a2015-11-13 02:36:04 -0500251 /* send was at least partially successful */
252 *sent += rc;
253 retries = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500255 return 0;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700256}
257
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300258unsigned long
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000259smb_rqst_len(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Jeff Laytona26054d2014-02-14 07:21:00 -0500260{
261 unsigned int i;
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300262 struct kvec *iov;
263 int nvec;
Jeff Laytona26054d2014-02-14 07:21:00 -0500264 unsigned long buflen = 0;
265
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000266 if (server->vals->header_preamble_size == 0 &&
267 rqst->rq_nvec >= 2 && rqst->rq_iov[0].iov_len == 4) {
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300268 iov = &rqst->rq_iov[1];
269 nvec = rqst->rq_nvec - 1;
270 } else {
271 iov = rqst->rq_iov;
272 nvec = rqst->rq_nvec;
273 }
274
Jeff Laytona26054d2014-02-14 07:21:00 -0500275 /* total up iov array first */
Paulo Alcantara35e2cc12018-06-15 10:22:44 -0300276 for (i = 0; i < nvec; i++)
Jeff Laytona26054d2014-02-14 07:21:00 -0500277 buflen += iov[i].iov_len;
278
Long Lic06a0f22018-05-30 12:47:57 -0700279 /*
280 * Add in the page array if there is one. The caller needs to make
281 * sure rq_offset and rq_tailsz are set correctly. If a buffer of
282 * multiple pages ends at page boundary, rq_tailsz needs to be set to
283 * PAGE_SIZE.
284 */
Jeff Laytona26054d2014-02-14 07:21:00 -0500285 if (rqst->rq_npages) {
Long Lic06a0f22018-05-30 12:47:57 -0700286 if (rqst->rq_npages == 1)
287 buflen += rqst->rq_tailsz;
288 else {
289 /*
290 * If there is more than one page, calculate the
291 * buffer length based on rq_offset and rq_tailsz
292 */
293 buflen += rqst->rq_pagesz * (rqst->rq_npages - 1) -
294 rqst->rq_offset;
295 buflen += rqst->rq_tailsz;
296 }
Jeff Laytona26054d2014-02-14 07:21:00 -0500297 }
298
299 return buflen;
300}
301
Jeff Layton6f49f462012-09-18 16:20:34 -0700302static int
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000303__smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
304 struct smb_rqst *rqst)
Jeff Layton6f49f462012-09-18 16:20:34 -0700305{
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000306 int rc = 0;
307 struct kvec *iov;
308 int n_vec;
309 unsigned int send_length = 0;
310 unsigned int i, j;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800311 sigset_t mask, oldmask;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500312 size_t total_len = 0, sent, size;
Jeff Laytonb8eed282012-09-18 16:20:35 -0700313 struct socket *ssocket = server->ssocket;
Al Viro3ab3f2a2015-11-13 02:36:04 -0500314 struct msghdr smb_msg;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000315 __be32 rfc1002_marker;
316
Long Li4357d452019-10-16 13:51:56 -0700317 if (cifs_rdma_enabled(server)) {
318 /* return -EAGAIN when connecting or reconnecting */
319 rc = -EAGAIN;
320 if (server->smbd_conn)
321 rc = smbd_send(server, num_rqst, rqst);
Long Li9762c2d2017-11-22 17:38:43 -0700322 goto smbd_done;
323 }
Pavel Shilovskyafc18a62019-03-05 15:51:56 -0800324
Jeff Laytonea702b82012-12-27 07:28:55 -0500325 if (ssocket == NULL)
Pavel Shilovskyafc18a62019-03-05 15:51:56 -0800326 return -EAGAIN;
Jeff Laytonea702b82012-12-27 07:28:55 -0500327
Ronnie Sahlberg214a5ea2021-01-21 08:22:48 +1000328 if (fatal_signal_pending(current)) {
Paulo Alcantara6988a612020-11-28 15:57:06 -0300329 cifs_dbg(FYI, "signal pending before send request\n");
330 return -ERESTARTSYS;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800331 }
332
Jeff Laytonb8eed282012-09-18 16:20:35 -0700333 /* cork the socket */
Christoph Hellwigdb105382020-05-28 07:12:18 +0200334 tcp_sock_set_cork(ssocket->sk, true);
Jeff Laytonb8eed282012-09-18 16:20:35 -0700335
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000336 for (j = 0; j < num_rqst; j++)
Ronnie Sahlberg81f39f92018-06-28 10:47:14 +1000337 send_length += smb_rqst_len(server, &rqst[j]);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000338 rfc1002_marker = cpu_to_be32(send_length);
339
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800340 /*
341 * We should not allow signals to interrupt the network send because
342 * any partial send will cause session reconnects thus increasing
343 * latency of system calls and overload a server with unnecessary
344 * requests.
345 */
346
347 sigfillset(&mask);
348 sigprocmask(SIG_BLOCK, &mask, &oldmask);
349
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000350 /* Generate a rfc1002 marker for SMB2+ */
351 if (server->vals->header_preamble_size == 0) {
352 struct kvec hiov = {
353 .iov_base = &rfc1002_marker,
354 .iov_len = 4
355 };
David Howellsaa563d72018-10-20 00:57:56 +0100356 iov_iter_kvec(&smb_msg.msg_iter, WRITE, &hiov, 1, 4);
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000357 rc = smb_send_kvec(server, &smb_msg, &sent);
358 if (rc < 0)
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800359 goto unmask;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000360
361 total_len += sent;
362 send_length += 4;
363 }
364
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300365 cifs_dbg(FYI, "Sending smb: smb_len=%u\n", send_length);
366
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000367 for (j = 0; j < num_rqst; j++) {
368 iov = rqst[j].rq_iov;
369 n_vec = rqst[j].rq_nvec;
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000370
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000371 size = 0;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300372 for (i = 0; i < n_vec; i++) {
373 dump_smb(iov[i].iov_base, iov[i].iov_len);
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000374 size += iov[i].iov_len;
Paulo Alcantara662bf5b2018-06-14 17:34:08 -0300375 }
Al Viro3ab3f2a2015-11-13 02:36:04 -0500376
David Howellsaa563d72018-10-20 00:57:56 +0100377 iov_iter_kvec(&smb_msg.msg_iter, WRITE, iov, n_vec, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Al Viro3ab3f2a2015-11-13 02:36:04 -0500379 rc = smb_send_kvec(server, &smb_msg, &sent);
Jeff Layton97bc00b2012-09-18 16:20:35 -0700380 if (rc < 0)
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800381 goto unmask;
Jeff Layton97bc00b2012-09-18 16:20:35 -0700382
383 total_len += sent;
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000384
385 /* now walk the page array and send each page in it */
386 for (i = 0; i < rqst[j].rq_npages; i++) {
387 struct bio_vec bvec;
388
389 bvec.bv_page = rqst[j].rq_pages[i];
390 rqst_page_get_length(&rqst[j], i, &bvec.bv_len,
391 &bvec.bv_offset);
392
David Howellsaa563d72018-10-20 00:57:56 +0100393 iov_iter_bvec(&smb_msg.msg_iter, WRITE,
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000394 &bvec, 1, bvec.bv_len);
395 rc = smb_send_kvec(server, &smb_msg, &sent);
396 if (rc < 0)
397 break;
398
399 total_len += sent;
400 }
Jeff Layton97bc00b2012-09-18 16:20:35 -0700401 }
402
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800403unmask:
404 sigprocmask(SIG_SETMASK, &oldmask, NULL);
405
406 /*
407 * If signal is pending but we have already sent the whole packet to
408 * the server we need to return success status to allow a corresponding
409 * mid entry to be kept in the pending requests queue thus allowing
410 * to handle responses from the server by the client.
411 *
412 * If only part of the packet has been sent there is no need to hide
413 * interrupt because the session will be reconnected anyway, so there
414 * won't be any response from the server to handle.
415 */
416
417 if (signal_pending(current) && (total_len != send_length)) {
418 cifs_dbg(FYI, "signal is pending after attempt to send\n");
Ronnie Sahlberg214a5ea2021-01-21 08:22:48 +1000419 rc = -ERESTARTSYS;
Pavel Shilovskyb30c74c2019-03-05 15:51:57 -0800420 }
421
Jeff Laytonb8eed282012-09-18 16:20:35 -0700422 /* uncork it */
Christoph Hellwigdb105382020-05-28 07:12:18 +0200423 tcp_sock_set_cork(ssocket->sk, false);
Jeff Laytonb8eed282012-09-18 16:20:35 -0700424
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000425 if ((total_len > 0) && (total_len != send_length)) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500426 cifs_dbg(FYI, "partial send (wanted=%u sent=%zu): terminating session\n",
Ronnie Sahlbergc713c872018-06-12 08:00:58 +1000427 send_length, total_len);
Jeff Layton6f49f462012-09-18 16:20:34 -0700428 /*
429 * If we have only sent part of an SMB then the next SMB could
430 * be taken as the remainder of this one. We need to kill the
431 * socket so the server throws away the partial SMB
432 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000433 spin_lock(&cifs_tcp_ses_lock);
Shyam Prasad Na05885c2021-11-17 15:57:22 +0000434 if (server->tcpStatus != CifsExiting)
435 server->tcpStatus = CifsNeedReconnect;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000436 spin_unlock(&cifs_tcp_ses_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 {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000582 spin_unlock(&server->req_lock);
583
584 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonc5797a92011-01-11 07:24:01 -0500585 if (server->tcpStatus == CifsExiting) {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000586 spin_unlock(&cifs_tcp_ses_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000587 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000588 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000589 spin_unlock(&cifs_tcp_ses_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000590
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400591 /*
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000592 * For normal commands, reserve the last MAX_COMPOUND
593 * credits to compound requests.
594 * Otherwise these compounds could be permanently
595 * starved for credits by single-credit requests.
596 *
597 * To prevent spinning CPU, block this thread until
598 * there are >MAX_COMPOUND credits available.
599 * But only do this is we already have a lot of
600 * credits in flight to avoid triggering this check
601 * for servers that are slow to hand out credits on
602 * new sessions.
603 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000604 spin_lock(&server->req_lock);
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000605 if (!optype && num_credits == 1 &&
606 server->in_flight > 2 * MAX_COMPOUND &&
607 *credits <= MAX_COMPOUND) {
608 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800609
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000610 cifs_num_waiters_inc(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000611 rc = wait_event_killable_timeout(
612 server->request_q,
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000613 has_credits(server, credits,
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000614 MAX_COMPOUND + 1),
615 t);
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000616 cifs_num_waiters_dec(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000617 if (!rc) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800618 spin_lock(&server->req_lock);
619 scredits = *credits;
620 in_flight = server->in_flight;
621 spin_unlock(&server->req_lock);
622
Steve French7937ca92019-03-09 20:29:55 -0600623 trace_smb3_credit_timeout(
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800624 server->CurrentMid,
625 server->conn_id, server->hostname,
626 scredits, num_credits, in_flight);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000627 cifs_server_dbg(VFS, "wait timed out after %d ms\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800628 timeout);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800629 return -EBUSY;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000630 }
631 if (rc == -ERESTARTSYS)
632 return -ERESTARTSYS;
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000633 spin_lock(&server->req_lock);
634 continue;
635 }
636
637 /*
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400638 * Can not count locking commands against total
639 * as they are allowed to block on server.
640 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000641
642 /* update # of requests on the wire to server */
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000643 if ((flags & CIFS_TIMEOUT_MASK) != CIFS_BLOCKING_OP) {
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000644 *credits -= num_credits;
645 server->in_flight += num_credits;
Steve French1b63f182019-09-09 22:57:11 -0500646 if (server->in_flight > server->max_in_flight)
647 server->max_in_flight = server->in_flight;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800648 *instance = server->reconnect_instance;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400649 }
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800650 scredits = *credits;
651 in_flight = server->in_flight;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300652 spin_unlock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800653
654 trace_smb3_add_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800655 server->conn_id, server->hostname, scredits,
656 -(num_credits), in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800657 cifs_dbg(FYI, "%s: remove %u credits total=%d\n",
658 __func__, num_credits, scredits);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000659 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000660 }
661 }
662 return 0;
663}
664
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300665static int
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000666wait_for_free_request(struct TCP_Server_Info *server, const int flags,
667 unsigned int *instance)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300668{
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000669 return wait_for_free_credits(server, 1, -1, flags,
670 instance);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300671}
672
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000673static int
674wait_for_compound_request(struct TCP_Server_Info *server, int num,
675 const int flags, unsigned int *instance)
676{
677 int *credits;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800678 int scredits, in_flight;
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000679
680 credits = server->ops->get_credits_field(server, flags & CIFS_OP_MASK);
681
682 spin_lock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800683 scredits = *credits;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800684 in_flight = server->in_flight;
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800685
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000686 if (*credits < num) {
687 /*
Pavel Shilovsky91792bb2021-02-02 22:34:32 -0600688 * If the server is tight on resources or just gives us less
689 * credits for other reasons (e.g. requests are coming out of
690 * order and the server delays granting more credits until it
691 * processes a missing mid) and we exhausted most available
692 * credits there may be situations when we try to send
693 * a compound request but we don't have enough credits. At this
694 * point the client needs to decide if it should wait for
695 * additional credits or fail the request. If at least one
696 * request is in flight there is a high probability that the
697 * server will return enough credits to satisfy this compound
698 * request.
699 *
700 * Return immediately if no requests in flight since we will be
701 * stuck on waiting for credits.
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000702 */
Pavel Shilovsky91792bb2021-02-02 22:34:32 -0600703 if (server->in_flight == 0) {
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000704 spin_unlock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800705 trace_smb3_insufficient_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800706 server->conn_id, server->hostname, scredits,
707 num, in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800708 cifs_dbg(FYI, "%s: %d requests in flight, needed %d total=%d\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800709 __func__, in_flight, num, scredits);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800710 return -EDEADLK;
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000711 }
712 }
713 spin_unlock(&server->req_lock);
714
715 return wait_for_free_credits(server, num, 60000, flags,
716 instance);
717}
718
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400719int
720cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800721 unsigned int *num, struct cifs_credits *credits)
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400722{
723 *num = size;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800724 credits->value = 0;
725 credits->instance = server->reconnect_instance;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400726 return 0;
727}
728
Steve French96daf2b2011-05-27 04:34:02 +0000729static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000730 struct mid_q_entry **ppmidQ)
731{
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000732 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500733 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000734 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000735 (in_buf->Command != SMB_COM_NEGOTIATE)) {
736 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000737 return -EAGAIN;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000738 }
Steve Frenchad7a2922008-02-07 23:25:02 +0000739 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000740 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500741
742 if (ses->status == CifsExiting) {
743 /* check if SMB session is bad because we are setting it up */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000744 if (in_buf->Command != SMB_COM_LOGOFF_ANDX) {
745 spin_unlock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500746 return -EAGAIN;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000747 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500748 /* else ok - we are shutting down session */
749 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000750 spin_unlock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500751
Jeff Layton24b9b062008-12-01 07:09:34 -0500752 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000753 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000754 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500755 spin_lock(&GlobalMid_Lock);
756 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
757 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000758 return 0;
759}
760
Jeff Layton0ade6402011-01-11 07:24:02 -0500761static int
762wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000763{
Jeff Layton0ade6402011-01-11 07:24:02 -0500764 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000765
Colin Cross5853cc22013-05-07 17:52:05 +0000766 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400767 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500768 if (error < 0)
769 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000770
Jeff Layton0ade6402011-01-11 07:24:02 -0500771 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000772}
773
Jeff Laytonfec344e2012-09-18 16:20:35 -0700774struct mid_q_entry *
775cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400776{
777 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700778 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400779 struct mid_q_entry *mid;
780
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800781 if (rqst->rq_iov[0].iov_len != 4 ||
782 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
783 return ERR_PTR(-EIO);
784
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400785 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400786 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400787 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
788
789 mid = AllocMidQEntry(hdr, server);
790 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700791 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400792
Jeff Laytonfec344e2012-09-18 16:20:35 -0700793 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100794 if (rc) {
795 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700796 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100797 }
798
Jeff Laytonfec344e2012-09-18 16:20:35 -0700799 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400800}
Steve French133672e2007-11-13 22:41:37 +0000801
802/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500803 * Send a SMB request and set the callback function in the mid to handle
804 * the result. Caller is responsible for dealing with timeouts.
805 */
806int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700807cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800808 mid_receive_t *receive, mid_callback_t *callback,
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800809 mid_handle_t *handle, void *cbdata, const int flags,
810 const struct cifs_credits *exist_credits)
Jeff Laytona6827c12011-01-11 07:24:21 -0500811{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000812 int rc;
Jeff Laytona6827c12011-01-11 07:24:21 -0500813 struct mid_q_entry *mid;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800814 struct cifs_credits credits = { .value = 0, .instance = 0 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800815 unsigned int instance;
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000816 int optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500817
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400818 optype = flags & CIFS_OP_MASK;
819
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400820 if ((flags & CIFS_HAS_CREDITS) == 0) {
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000821 rc = wait_for_free_request(server, flags, &instance);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400822 if (rc)
823 return rc;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800824 credits.value = 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800825 credits.instance = instance;
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800826 } else
827 instance = exist_credits->instance;
Jeff Laytona6827c12011-01-11 07:24:21 -0500828
829 mutex_lock(&server->srv_mutex);
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800830
831 /*
832 * We can't use credits obtained from the previous session to send this
833 * request. Check if there were reconnects after we obtained credits and
834 * return -EAGAIN in such cases to let callers handle it.
835 */
836 if (instance != server->reconnect_instance) {
837 mutex_unlock(&server->srv_mutex);
838 add_credits_and_wake_if(server, &credits, optype);
839 return -EAGAIN;
840 }
841
Jeff Laytonfec344e2012-09-18 16:20:35 -0700842 mid = server->ops->setup_async_request(server, rqst);
843 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500844 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800845 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700846 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500847 }
848
Jeff Layton44d22d82011-10-19 15:29:49 -0400849 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500850 mid->callback = callback;
851 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800852 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400853 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000854
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100855 /* put it on the pending_mid_q */
856 spin_lock(&GlobalMid_Lock);
857 list_add_tail(&mid->qhead, &server->pending_mid_q);
858 spin_unlock(&GlobalMid_Lock);
859
Long Li93d2cb62017-06-28 15:55:55 -0700860 /*
861 * Need to store the time in mid before calling I/O. For call_async,
862 * I/O response may come back and free the mid entry on another thread.
863 */
864 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000865 cifs_in_send_inc(server);
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000866 rc = smb_send_rqst(server, 1, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000867 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400868
Rabin Vincent820962d2015-12-23 07:32:41 +0100869 if (rc < 0) {
Pavel Shilovskyc781af72019-03-04 14:02:50 -0800870 revert_current_mid(server, mid->credits);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400871 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100872 cifs_delete_mid(mid);
873 }
874
Jeff Laytona6827c12011-01-11 07:24:21 -0500875 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000876
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100877 if (rc == 0)
878 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500879
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800880 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500881 return rc;
882}
883
884/*
Steve French133672e2007-11-13 22:41:37 +0000885 *
886 * Send an SMB Request. No response info (other than return code)
887 * needs to be parsed.
888 *
889 * flags indicate the type of request buffer and how long to wait
890 * and whether to log NT STATUS code (error) before mapping it to POSIX error
891 *
892 */
893int
Steve French96daf2b2011-05-27 04:34:02 +0000894SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400895 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000896{
897 int rc;
898 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700899 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000900 int resp_buf_type;
901
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400902 iov[0].iov_base = in_buf;
903 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +1000904 flags |= CIFS_NO_RSP_BUF;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700905 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500906 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000907
Steve French133672e2007-11-13 22:41:37 +0000908 return rc;
909}
910
Jeff Layton053d5032011-01-11 07:24:02 -0500911static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400912cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500913{
914 int rc = 0;
915
Joe Perchesf96637b2013-05-04 22:12:25 -0500916 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
917 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500918
Jeff Layton74dd92a2011-01-11 07:24:02 -0500919 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400920 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500921 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500922 spin_unlock(&GlobalMid_Lock);
923 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500924 case MID_RETRY_NEEDED:
925 rc = -EAGAIN;
926 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500927 case MID_RESPONSE_MALFORMED:
928 rc = -EIO;
929 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400930 case MID_SHUTDOWN:
931 rc = -EHOSTDOWN;
932 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500933 default:
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700934 if (!(mid->mid_flags & MID_DELETED)) {
935 list_del_init(&mid->qhead);
936 mid->mid_flags |= MID_DELETED;
937 }
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000938 cifs_server_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500939 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500940 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500941 }
942 spin_unlock(&GlobalMid_Lock);
943
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500944 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500945 return rc;
946}
947
Jeff Layton121b0462012-05-15 12:21:10 -0400948static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800949send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
950 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500951{
Jeff Layton121b0462012-05-15 12:21:10 -0400952 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800953 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400957cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
958 bool log_error)
959{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400960 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400961
962 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400963
964 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400965 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800966 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500967 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800968 struct smb_rqst rqst = { .rq_iov = iov,
969 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400970
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800971 iov[0].iov_base = mid->resp_buf;
972 iov[0].iov_len = 4;
973 iov[1].iov_base = (char *)mid->resp_buf + 4;
974 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400975 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700976 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400977 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500978 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000979 cifs_server_dbg(VFS, "SMB signature verification returned error = %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500980 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400981 }
982
983 /* BB special case reconnect tid and uid here? */
Roberto Bergantinos Corpasa3713ec2020-07-03 11:29:32 +0200984 return map_and_check_smb_error(mid, log_error);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400985}
986
Jeff Laytonfec344e2012-09-18 16:20:35 -0700987struct mid_q_entry *
Aurelien Aptelf780bd32019-09-20 06:08:34 +0200988cifs_setup_request(struct cifs_ses *ses, struct TCP_Server_Info *ignored,
989 struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400990{
991 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700992 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400993 struct mid_q_entry *mid;
994
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800995 if (rqst->rq_iov[0].iov_len != 4 ||
996 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
997 return ERR_PTR(-EIO);
998
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400999 rc = allocate_mid(ses, hdr, &mid);
1000 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -07001001 return ERR_PTR(rc);
1002 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
1003 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001004 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001005 return ERR_PTR(rc);
1006 }
1007 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001008}
1009
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001010static void
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001011cifs_compound_callback(struct mid_q_entry *mid)
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001012{
1013 struct TCP_Server_Info *server = mid->server;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001014 struct cifs_credits credits;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001015
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001016 credits.value = server->ops->get_credits(mid);
1017 credits.instance = server->reconnect_instance;
1018
1019 add_credits(server, &credits, mid->optype);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001020}
1021
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001022static void
1023cifs_compound_last_callback(struct mid_q_entry *mid)
1024{
1025 cifs_compound_callback(mid);
1026 cifs_wake_up_task(mid);
1027}
1028
1029static void
1030cifs_cancelled_callback(struct mid_q_entry *mid)
1031{
1032 cifs_compound_callback(mid);
1033 DeleteMidQEntry(mid);
1034}
1035
Aurelien Aptel5f68ea42020-04-22 15:58:57 +02001036/*
1037 * Return a channel (master if none) of @ses that can be used to send
1038 * regular requests.
1039 *
1040 * If we are currently binding a new channel (negprot/sess.setup),
1041 * return the new incomplete channel.
1042 */
1043struct TCP_Server_Info *cifs_pick_channel(struct cifs_ses *ses)
1044{
1045 uint index = 0;
1046
1047 if (!ses)
1048 return NULL;
1049
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001050 /* round robin */
Shyam Prasad Nbda487a2021-10-25 05:44:10 +00001051 index = (uint)atomic_inc_return(&ses->chan_seq);
Shyam Prasad N88b024f2021-11-19 14:16:57 +00001052
1053 spin_lock(&ses->chan_lock);
Shyam Prasad Nbda487a2021-10-25 05:44:10 +00001054 index %= ses->chan_count;
Shyam Prasad N88b024f2021-11-19 14:16:57 +00001055 spin_unlock(&ses->chan_lock);
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001056
1057 return ses->chans[index].server;
Aurelien Aptel5f68ea42020-04-22 15:58:57 +02001058}
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
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001085 spin_lock(&cifs_tcp_ses_lock);
1086 if (server->tcpStatus == CifsExiting) {
1087 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001088 return -ENOENT;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001089 }
1090 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001091
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001092 /*
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001093 * Wait for all the requests to become available.
Pavel Shilovsky7091bca2019-01-30 16:58:09 -08001094 * This approach still leaves the possibility to be stuck waiting for
1095 * credits if the server doesn't grant credits to the outstanding
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001096 * requests and if the client is completely idle, not generating any
1097 * other requests.
1098 * This can be handled by the eventual session reconnect.
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001099 */
Aurelien Aptel3190b592019-06-24 13:00:12 -05001100 rc = wait_for_compound_request(server, num_rqst, flags,
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001101 &instance);
1102 if (rc)
1103 return rc;
1104
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001105 for (i = 0; i < num_rqst; i++) {
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001106 credits[i].value = 1;
1107 credits[i].instance = instance;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001108 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001109
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001110 /*
1111 * Make sure that we sign in the same order that we send on this socket
1112 * and avoid races inside tcp sendmsg code that could cause corruption
1113 * of smb data.
1114 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Aurelien Aptel3190b592019-06-24 13:00:12 -05001116 mutex_lock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001118 /*
1119 * All the parts of the compound chain belong obtained credits from the
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001120 * same session. We can not use credits obtained from the previous
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001121 * session to send this request. Check if there were reconnects after
1122 * we obtained credits and return -EAGAIN in such cases to let callers
1123 * handle it.
1124 */
Aurelien Aptel3190b592019-06-24 13:00:12 -05001125 if (instance != server->reconnect_instance) {
1126 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001127 for (j = 0; j < num_rqst; j++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001128 add_credits(server, &credits[j], optype);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001129 return -EAGAIN;
1130 }
1131
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001132 for (i = 0; i < num_rqst; i++) {
Aurelien Aptelf780bd32019-09-20 06:08:34 +02001133 midQ[i] = server->ops->setup_request(ses, server, &rqst[i]);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001134 if (IS_ERR(midQ[i])) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001135 revert_current_mid(server, i);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001136 for (j = 0; j < i; j++)
1137 cifs_delete_mid(midQ[j]);
Aurelien Aptel3190b592019-06-24 13:00:12 -05001138 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001139
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001140 /* Update # of requests on wire to server */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001141 for (j = 0; j < num_rqst; j++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001142 add_credits(server, &credits[j], optype);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001143 return PTR_ERR(midQ[i]);
1144 }
1145
1146 midQ[i]->mid_state = MID_REQUEST_SUBMITTED;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001147 midQ[i]->optype = optype;
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001148 /*
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001149 * Invoke callback for every part of the compound chain
1150 * to calculate credits properly. Wake up this thread only when
1151 * the last element is received.
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001152 */
1153 if (i < num_rqst - 1)
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001154 midQ[i]->callback = cifs_compound_callback;
1155 else
1156 midQ[i]->callback = cifs_compound_last_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
Aurelien Aptel3190b592019-06-24 13:00:12 -05001158 cifs_in_send_inc(server);
1159 rc = smb_send_rqst(server, num_rqst, rqst, flags);
1160 cifs_in_send_dec(server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001161
1162 for (i = 0; i < num_rqst; i++)
1163 cifs_save_when_sent(midQ[i]);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001164
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001165 if (rc < 0) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001166 revert_current_mid(server, num_rqst);
1167 server->sequence_number -= 2;
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001168 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001169
Aurelien Aptel3190b592019-06-24 13:00:12 -05001170 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001171
Ronnie Sahlbergd69cb722019-05-01 12:03:41 +10001172 /*
1173 * If sending failed for some reason or it is an oplock break that we
1174 * will not receive a response to - return credits back
1175 */
1176 if (rc < 0 || (flags & CIFS_NO_SRV_RSP)) {
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001177 for (i = 0; i < num_rqst; i++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001178 add_credits(server, &credits[i], optype);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001179 goto out;
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001180 }
1181
1182 /*
1183 * At this point the request is passed to the network stack - we assume
1184 * that any credits taken from the server structure on the client have
1185 * been spent and we can't return them back. Once we receive responses
1186 * we will collect credits granted by the server in the mid callbacks
1187 * and add those credits to the server structure.
1188 */
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001189
1190 /*
1191 * Compounding is never used during session establish.
1192 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001193 spin_lock(&cifs_tcp_ses_lock);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001194 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001195 spin_unlock(&cifs_tcp_ses_lock);
1196
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001197 mutex_lock(&server->srv_mutex);
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001198 smb311_update_preauth_hash(ses, server, rqst[0].rq_iov, rqst[0].rq_nvec);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001199 mutex_unlock(&server->srv_mutex);
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001200
1201 spin_lock(&cifs_tcp_ses_lock);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001202 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001203 spin_unlock(&cifs_tcp_ses_lock);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001204
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001205 for (i = 0; i < num_rqst; i++) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001206 rc = wait_for_response(server, midQ[i]);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001207 if (rc != 0)
1208 break;
1209 }
1210 if (rc != 0) {
1211 for (; i < num_rqst; i++) {
Paulo Alcantarae3d100e2021-03-08 12:00:48 -03001212 cifs_server_dbg(FYI, "Cancelling wait for mid %llu cmd: %d\n",
Steve French43de1db2018-10-23 21:04:57 -05001213 midQ[i]->mid, le16_to_cpu(midQ[i]->command));
Aurelien Aptel3190b592019-06-24 13:00:12 -05001214 send_cancel(server, &rqst[i], midQ[i]);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001215 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7b718432019-11-21 11:35:14 -08001216 midQ[i]->mid_flags |= MID_WAIT_CANCELLED;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001217 if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED) {
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001218 midQ[i]->callback = cifs_cancelled_callback;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001219 cancelled_mid[i] = true;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001220 credits[i].value = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001221 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001222 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001223 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001224 }
1225
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001226 for (i = 0; i < num_rqst; i++) {
1227 if (rc < 0)
1228 goto out;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001229
Aurelien Aptel3190b592019-06-24 13:00:12 -05001230 rc = cifs_sync_mid_result(midQ[i], server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001231 if (rc != 0) {
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001232 /* mark this mid as cancelled to not free it below */
1233 cancelled_mid[i] = true;
1234 goto out;
Jeff Layton1be912d2011-01-28 07:08:28 -05001235 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001236
1237 if (!midQ[i]->resp_buf ||
1238 midQ[i]->mid_state != MID_RESPONSE_RECEIVED) {
1239 rc = -EIO;
1240 cifs_dbg(FYI, "Bad MID state?\n");
1241 goto out;
1242 }
1243
1244 buf = (char *)midQ[i]->resp_buf;
1245 resp_iov[i].iov_base = buf;
1246 resp_iov[i].iov_len = midQ[i]->resp_buf_size +
Aurelien Aptel3190b592019-06-24 13:00:12 -05001247 server->vals->header_preamble_size;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001248
1249 if (midQ[i]->large_buf)
1250 resp_buf_type[i] = CIFS_LARGE_BUFFER;
1251 else
1252 resp_buf_type[i] = CIFS_SMALL_BUFFER;
1253
Aurelien Aptel3190b592019-06-24 13:00:12 -05001254 rc = server->ops->check_receive(midQ[i], server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001255 flags & CIFS_LOG_ERROR);
1256
1257 /* mark it so buf will not be freed by cifs_delete_mid */
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +10001258 if ((flags & CIFS_NO_RSP_BUF) == 0)
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001259 midQ[i]->resp_buf = NULL;
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001260
Jeff Layton1be912d2011-01-28 07:08:28 -05001261 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001262
1263 /*
1264 * Compounding is never used during session establish.
1265 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001266 spin_lock(&cifs_tcp_ses_lock);
Shyam Prasad N0f56db82021-02-03 22:49:52 -08001267 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) {
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001268 struct kvec iov = {
1269 .iov_base = resp_iov[0].iov_base,
1270 .iov_len = resp_iov[0].iov_len
1271 };
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001272 spin_unlock(&cifs_tcp_ses_lock);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001273 mutex_lock(&server->srv_mutex);
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001274 smb311_update_preauth_hash(ses, server, &iov, 1);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001275 mutex_unlock(&server->srv_mutex);
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001276 spin_lock(&cifs_tcp_ses_lock);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001277 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001278 spin_unlock(&cifs_tcp_ses_lock);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001279
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001280out:
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001281 /*
1282 * This will dequeue all mids. After this it is important that the
1283 * demultiplex_thread will not process any of these mids any futher.
1284 * This is prevented above by using a noop callback that will not
1285 * wake this thread except for the very last PDU.
1286 */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001287 for (i = 0; i < num_rqst; i++) {
1288 if (!cancelled_mid[i])
1289 cifs_delete_mid(midQ[i]);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 return rc;
1293}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001296cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001297 struct TCP_Server_Info *server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001298 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
1299 struct kvec *resp_iov)
1300{
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001301 return compound_send_recv(xid, ses, server, flags, 1,
1302 rqst, resp_buf_type, resp_iov);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001303}
1304
1305int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001306SendReceive2(const unsigned int xid, struct cifs_ses *ses,
1307 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
1308 const int flags, struct kvec *resp_iov)
1309{
1310 struct smb_rqst rqst;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001311 struct kvec s_iov[CIFS_MAX_IOV_SIZE], *new_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001312 int rc;
1313
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001314 if (n_vec + 1 > CIFS_MAX_IOV_SIZE) {
Kees Cook6da2ec52018-06-12 13:55:00 -07001315 new_iov = kmalloc_array(n_vec + 1, sizeof(struct kvec),
1316 GFP_KERNEL);
Steve French117e3b72018-04-22 10:24:19 -05001317 if (!new_iov) {
1318 /* otherwise cifs_send_recv below sets resp_buf_type */
1319 *resp_buf_type = CIFS_NO_BUFFER;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001320 return -ENOMEM;
Steve French117e3b72018-04-22 10:24:19 -05001321 }
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001322 } else
1323 new_iov = s_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001324
1325 /* 1st iov is a RFC1001 length followed by the rest of the packet */
1326 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
1327
1328 new_iov[0].iov_base = new_iov[1].iov_base;
1329 new_iov[0].iov_len = 4;
1330 new_iov[1].iov_base += 4;
1331 new_iov[1].iov_len -= 4;
1332
1333 memset(&rqst, 0, sizeof(struct smb_rqst));
1334 rqst.rq_iov = new_iov;
1335 rqst.rq_nvec = n_vec + 1;
1336
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001337 rc = cifs_send_recv(xid, ses, ses->server,
1338 &rqst, resp_buf_type, flags, resp_iov);
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001339 if (n_vec + 1 > CIFS_MAX_IOV_SIZE)
1340 kfree(new_iov);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001341 return rc;
1342}
1343
1344int
Steve French96daf2b2011-05-27 04:34:02 +00001345SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001347 int *pbytes_returned, const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001351 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1352 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1353 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001354 struct cifs_credits credits = { .value = 1, .instance = 0 };
Colin Ian Kingac6ad7a2019-09-02 16:10:59 +01001355 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001358 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return -EIO;
1360 }
Colin Ian Kingac6ad7a2019-09-02 16:10:59 +01001361 server = ses->server;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001362 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001363 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return -EIO;
1365 }
1366
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001367 spin_lock(&cifs_tcp_ses_lock);
1368 if (server->tcpStatus == CifsExiting) {
1369 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001370 return -ENOENT;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001371 }
1372 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001373
Steve French79a58d12007-07-06 22:44:50 +00001374 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 to the same server. We may make this configurable later or
1376 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001378 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001379 cifs_server_dbg(VFS, "Invalid length, greater than maximum frame, %d\n",
1380 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001381 return -EIO;
1382 }
1383
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001384 rc = wait_for_free_request(server, flags, &credits.instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001385 if (rc)
1386 return rc;
1387
Steve French79a58d12007-07-06 22:44:50 +00001388 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 and avoid races inside tcp sendmsg code that could cause corruption
1390 of smb data */
1391
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001392 mutex_lock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001394 rc = allocate_mid(ses, in_buf, &midQ);
1395 if (rc) {
Dan Carpenter8bd37542019-10-25 13:35:08 +03001396 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001397 /* Update # of requests on wire to server */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001398 add_credits(server, &credits, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001399 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
1401
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001402 rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001403 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001404 mutex_unlock(&server->srv_mutex);
Volker Lendecke829049c2008-12-06 16:00:53 +01001405 goto out;
1406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001408 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001409
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001410 cifs_in_send_inc(server);
1411 rc = smb_send(server, in_buf, len);
1412 cifs_in_send_dec(server);
Steve French789e6662011-08-09 18:44:44 +00001413 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001414
1415 if (rc < 0)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001416 server->sequence_number -= 2;
Jeff Laytonad313cb2013-04-03 10:27:36 -04001417
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001418 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001419
Steve French79a58d12007-07-06 22:44:50 +00001420 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001421 goto out;
1422
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001423 rc = wait_for_response(server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001424 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001425 send_cancel(server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001426 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001427 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001428 /* no longer considered to be "in-flight" */
1429 midQ->callback = DeleteMidQEntry;
1430 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001431 add_credits(server, &credits, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -05001432 return rc;
1433 }
1434 spin_unlock(&GlobalMid_Lock);
1435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001437 rc = cifs_sync_mid_result(midQ, server);
Jeff Layton053d5032011-01-11 07:24:02 -05001438 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001439 add_credits(server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return rc;
1441 }
Steve French50c2f752007-07-13 00:33:32 +00001442
Jeff Layton2c8f9812011-05-19 16:22:52 -04001443 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001444 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 rc = -EIO;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001446 cifs_server_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +00001447 goto out;
1448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001450 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001451 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001452 rc = cifs_check_receive(midQ, server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001453out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001454 cifs_delete_mid(midQ);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001455 add_credits(server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001460/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
1461 blocking lock to return. */
1462
1463static int
Steve French96daf2b2011-05-27 04:34:02 +00001464send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001465 struct smb_hdr *in_buf,
1466 struct smb_hdr *out_buf)
1467{
1468 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +00001469 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001470 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
1471
1472 /* We just modify the current in_buf to change
1473 the type of lock from LOCKING_ANDX_SHARED_LOCK
1474 or LOCKING_ANDX_EXCLUSIVE_LOCK to
1475 LOCKING_ANDX_CANCEL_LOCK. */
1476
1477 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
1478 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +04001479 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001480
1481 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -05001482 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001483}
1484
1485int
Steve French96daf2b2011-05-27 04:34:02 +00001486SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001487 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
1488 int *pbytes_returned)
1489{
1490 int rc = 0;
1491 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001492 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +00001493 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001494 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1495 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1496 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001497 unsigned int instance;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001498 struct TCP_Server_Info *server;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001499
1500 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001501 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001502 return -EIO;
1503 }
1504 ses = tcon->ses;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001505 server = ses->server;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001506
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001507 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001508 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001509 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
1511
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001512 spin_lock(&cifs_tcp_ses_lock);
1513 if (server->tcpStatus == CifsExiting) {
1514 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001515 return -ENOENT;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001516 }
1517 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001518
Steve French79a58d12007-07-06 22:44:50 +00001519 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001520 to the same server. We may make this configurable later or
1521 use ses->maxReq */
1522
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001523 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001524 cifs_tcon_dbg(VFS, "Invalid length, greater than maximum frame, %d\n",
1525 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001526 return -EIO;
1527 }
1528
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001529 rc = wait_for_free_request(server, CIFS_BLOCKING_OP, &instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001530 if (rc)
1531 return rc;
1532
Steve French79a58d12007-07-06 22:44:50 +00001533 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001534 and avoid races inside tcp sendmsg code that could cause corruption
1535 of smb data */
1536
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001537 mutex_lock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001538
1539 rc = allocate_mid(ses, in_buf, &midQ);
1540 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001541 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001542 return rc;
1543 }
1544
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001545 rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001546 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001547 cifs_delete_mid(midQ);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001548 mutex_unlock(&server->srv_mutex);
Volker Lendecke829049c2008-12-06 16:00:53 +01001549 return rc;
1550 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001551
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001552 midQ->mid_state = MID_REQUEST_SUBMITTED;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001553 cifs_in_send_inc(server);
1554 rc = smb_send(server, in_buf, len);
1555 cifs_in_send_dec(server);
Steve French789e6662011-08-09 18:44:44 +00001556 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001557
1558 if (rc < 0)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001559 server->sequence_number -= 2;
Jeff Laytonad313cb2013-04-03 10:27:36 -04001560
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001561 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001562
Steve French79a58d12007-07-06 22:44:50 +00001563 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001564 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001565 return rc;
1566 }
1567
1568 /* Wait for a reply - allow signals to interrupt. */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001569 rc = wait_event_interruptible(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001570 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001571 ((server->tcpStatus != CifsGood) &&
1572 (server->tcpStatus != CifsNew)));
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001573
1574 /* Were we interrupted by a signal ? */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001575 spin_lock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001576 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001577 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001578 ((server->tcpStatus == CifsGood) ||
1579 (server->tcpStatus == CifsNew))) {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001580 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001581
1582 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1583 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1584 blocking lock to return. */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001585 rc = send_cancel(server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001586 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001587 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001588 return rc;
1589 }
1590 } else {
1591 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1592 to cause the blocking lock to return. */
1593
1594 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1595
1596 /* If we get -ENOLCK back the lock may have
1597 already been removed. Don't exit in this case. */
1598 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001599 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001600 return rc;
1601 }
1602 }
1603
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001604 rc = wait_for_response(server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001605 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001606 send_cancel(server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001607 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001608 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001609 /* no longer considered to be "in-flight" */
1610 midQ->callback = DeleteMidQEntry;
1611 spin_unlock(&GlobalMid_Lock);
1612 return rc;
1613 }
1614 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001615 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001616
1617 /* We got the response - restart system call. */
1618 rstart = 1;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001619 spin_lock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001620 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001621 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001622
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001623 rc = cifs_sync_mid_result(midQ, server);
Jeff Layton053d5032011-01-11 07:24:02 -05001624 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001625 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001626
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001627 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001628 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001629 rc = -EIO;
Ronnie Sahlberg3175eb92019-09-04 12:32:41 +10001630 cifs_tcon_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001631 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001632 }
1633
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001634 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001635 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001636 rc = cifs_check_receive(midQ, server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001637out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001638 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001639 if (rstart && rc == -EACCES)
1640 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return rc;
1642}