blob: a4c3e027cca2505c1ba2b0de913608673492180b [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 N52492ff2022-02-08 19:15:17 +0000433 cifs_mark_tcp_ses_conns_for_reconnect(server, false);
Steve Frenchbf1fdeb2018-07-30 19:23:09 -0500434 trace_smb3_partial_send_reconnect(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800435 server->conn_id, server->hostname);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000436 }
Long Li9762c2d2017-11-22 17:38:43 -0700437smbd_done:
Jeff Laytond804d412011-01-28 15:05:43 -0500438 if (rc < 0 && rc != -EINTR)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000439 cifs_server_dbg(VFS, "Error %d sending data on socket to server\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500440 rc);
Pavel Shilovskyee139192019-01-10 11:27:28 -0800441 else if (rc > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 return rc;
445}
446
Jeff Layton6f49f462012-09-18 16:20:34 -0700447static int
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000448smb_send_rqst(struct TCP_Server_Info *server, int num_rqst,
449 struct smb_rqst *rqst, int flags)
Jeff Layton6f49f462012-09-18 16:20:34 -0700450{
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000451 struct kvec iov;
Long Li3946d0d2020-03-26 22:09:20 -0700452 struct smb2_transform_hdr *tr_hdr;
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000453 struct smb_rqst cur_rqst[MAX_COMPOUND];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700454 int rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700455
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700456 if (!(flags & CIFS_TRANSFORM_REQ))
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000457 return __smb_send_rqst(server, num_rqst, rqst);
458
459 if (num_rqst > MAX_COMPOUND - 1)
460 return -ENOMEM;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700461
Ronnie Sahlbergb2c96de2018-08-01 09:26:11 +1000462 if (!server->ops->init_transform_rq) {
Joe Perchesa0a30362020-04-14 22:42:53 -0700463 cifs_server_dbg(VFS, "Encryption requested but transform callback is missing\n");
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700464 return -EIO;
465 }
466
Long Li3946d0d2020-03-26 22:09:20 -0700467 tr_hdr = kmalloc(sizeof(*tr_hdr), GFP_NOFS);
468 if (!tr_hdr)
469 return -ENOMEM;
470
471 memset(&cur_rqst[0], 0, sizeof(cur_rqst));
472 memset(&iov, 0, sizeof(iov));
473 memset(tr_hdr, 0, sizeof(*tr_hdr));
474
475 iov.iov_base = tr_hdr;
476 iov.iov_len = sizeof(*tr_hdr);
477 cur_rqst[0].rq_iov = &iov;
478 cur_rqst[0].rq_nvec = 1;
479
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000480 rc = server->ops->init_transform_rq(server, num_rqst + 1,
481 &cur_rqst[0], rqst);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700482 if (rc)
Long Li3946d0d2020-03-26 22:09:20 -0700483 goto out;
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700484
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000485 rc = __smb_send_rqst(server, num_rqst + 1, &cur_rqst[0]);
486 smb3_free_compound_rqst(num_rqst, &cur_rqst[1]);
Long Li3946d0d2020-03-26 22:09:20 -0700487out:
488 kfree(tr_hdr);
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700489 return rc;
Jeff Layton6f49f462012-09-18 16:20:34 -0700490}
491
Jeff Layton0496e022008-12-30 12:39:16 -0500492int
493smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
494 unsigned int smb_buf_length)
495{
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800496 struct kvec iov[2];
Pavel Shilovsky7fb89862016-10-31 13:49:30 -0700497 struct smb_rqst rqst = { .rq_iov = iov,
498 .rq_nvec = 2 };
Jeff Layton0496e022008-12-30 12:39:16 -0500499
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800500 iov[0].iov_base = smb_buffer;
501 iov[0].iov_len = 4;
502 iov[1].iov_base = (char *)smb_buffer + 4;
503 iov[1].iov_len = smb_buf_length;
Jeff Layton0496e022008-12-30 12:39:16 -0500504
Ronnie Sahlberg07cd9522018-06-12 08:01:00 +1000505 return __smb_send_rqst(server, 1, &rqst);
Jeff Layton0496e022008-12-30 12:39:16 -0500506}
507
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300508static int
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000509wait_for_free_credits(struct TCP_Server_Info *server, const int num_credits,
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000510 const int timeout, const int flags,
511 unsigned int *instance)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000512{
Ronnie Sahlberg19e88862020-07-02 10:55:41 +1000513 long rc;
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000514 int *credits;
515 int optype;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000516 long int t;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800517 int scredits, in_flight;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000518
519 if (timeout < 0)
520 t = MAX_JIFFY_OFFSET;
521 else
522 t = msecs_to_jiffies(timeout);
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000523
524 optype = flags & CIFS_OP_MASK;
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300525
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800526 *instance = 0;
527
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000528 credits = server->ops->get_credits_field(server, optype);
529 /* Since an echo is already inflight, no need to wait to send another */
530 if (*credits <= 0 && optype == CIFS_ECHO_OP)
531 return -EAGAIN;
532
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300533 spin_lock(&server->req_lock);
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +1000534 if ((flags & CIFS_TIMEOUT_MASK) == CIFS_NON_BLOCKING) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000535 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300536 server->in_flight++;
Steve French1b63f182019-09-09 22:57:11 -0500537 if (server->in_flight > server->max_in_flight)
538 server->max_in_flight = server->in_flight;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300539 *credits -= 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800540 *instance = server->reconnect_instance;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800541 scredits = *credits;
542 in_flight = server->in_flight;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300543 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800544
545 trace_smb3_add_credits(server->CurrentMid,
546 server->conn_id, server->hostname, scredits, -1, in_flight);
547 cifs_dbg(FYI, "%s: remove %u credits total=%d\n",
548 __func__, 1, scredits);
549
Volker Lendecke27a97a62008-12-08 20:59:39 +0000550 return 0;
551 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000552
Volker Lendecke27a97a62008-12-08 20:59:39 +0000553 while (1) {
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000554 if (*credits < num_credits) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800555 scredits = *credits;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300556 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800557
Steve French789e6662011-08-09 18:44:44 +0000558 cifs_num_waiters_inc(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000559 rc = wait_event_killable_timeout(server->request_q,
560 has_credits(server, credits, num_credits), t);
Steve French789e6662011-08-09 18:44:44 +0000561 cifs_num_waiters_dec(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000562 if (!rc) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800563 spin_lock(&server->req_lock);
564 scredits = *credits;
565 in_flight = server->in_flight;
566 spin_unlock(&server->req_lock);
567
Steve French7937ca92019-03-09 20:29:55 -0600568 trace_smb3_credit_timeout(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800569 server->conn_id, server->hostname, scredits,
570 num_credits, in_flight);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000571 cifs_server_dbg(VFS, "wait timed out after %d ms\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800572 timeout);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800573 return -EBUSY;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000574 }
575 if (rc == -ERESTARTSYS)
576 return -ERESTARTSYS;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300577 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000578 } else {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000579 spin_unlock(&server->req_lock);
580
581 spin_lock(&cifs_tcp_ses_lock);
Jeff Laytonc5797a92011-01-11 07:24:01 -0500582 if (server->tcpStatus == CifsExiting) {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000583 spin_unlock(&cifs_tcp_ses_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000584 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000585 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000586 spin_unlock(&cifs_tcp_ses_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000587
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400588 /*
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000589 * For normal commands, reserve the last MAX_COMPOUND
590 * credits to compound requests.
591 * Otherwise these compounds could be permanently
592 * starved for credits by single-credit requests.
593 *
594 * To prevent spinning CPU, block this thread until
595 * there are >MAX_COMPOUND credits available.
596 * But only do this is we already have a lot of
597 * credits in flight to avoid triggering this check
598 * for servers that are slow to hand out credits on
599 * new sessions.
600 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000601 spin_lock(&server->req_lock);
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000602 if (!optype && num_credits == 1 &&
603 server->in_flight > 2 * MAX_COMPOUND &&
604 *credits <= MAX_COMPOUND) {
605 spin_unlock(&server->req_lock);
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800606
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000607 cifs_num_waiters_inc(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000608 rc = wait_event_killable_timeout(
609 server->request_q,
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000610 has_credits(server, credits,
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000611 MAX_COMPOUND + 1),
612 t);
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000613 cifs_num_waiters_dec(server);
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000614 if (!rc) {
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800615 spin_lock(&server->req_lock);
616 scredits = *credits;
617 in_flight = server->in_flight;
618 spin_unlock(&server->req_lock);
619
Steve French7937ca92019-03-09 20:29:55 -0600620 trace_smb3_credit_timeout(
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800621 server->CurrentMid,
622 server->conn_id, server->hostname,
623 scredits, num_credits, in_flight);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000624 cifs_server_dbg(VFS, "wait timed out after %d ms\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800625 timeout);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800626 return -EBUSY;
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000627 }
628 if (rc == -ERESTARTSYS)
629 return -ERESTARTSYS;
Ronnie Sahlberg16b34aa2019-03-08 12:58:21 +1000630 spin_lock(&server->req_lock);
631 continue;
632 }
633
634 /*
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400635 * Can not count locking commands against total
636 * as they are allowed to block on server.
637 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000638
639 /* update # of requests on the wire to server */
Ronnie Sahlberg4230cff2019-03-08 12:58:19 +1000640 if ((flags & CIFS_TIMEOUT_MASK) != CIFS_BLOCKING_OP) {
Ronnie Sahlbergb227d212019-03-08 12:58:20 +1000641 *credits -= num_credits;
642 server->in_flight += num_credits;
Steve French1b63f182019-09-09 22:57:11 -0500643 if (server->in_flight > server->max_in_flight)
644 server->max_in_flight = server->in_flight;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800645 *instance = server->reconnect_instance;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400646 }
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800647 scredits = *credits;
648 in_flight = server->in_flight;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300649 spin_unlock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800650
651 trace_smb3_add_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800652 server->conn_id, server->hostname, scredits,
653 -(num_credits), in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800654 cifs_dbg(FYI, "%s: remove %u credits total=%d\n",
655 __func__, num_credits, scredits);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000656 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000657 }
658 }
659 return 0;
660}
661
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300662static int
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000663wait_for_free_request(struct TCP_Server_Info *server, const int flags,
664 unsigned int *instance)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300665{
Ronnie Sahlberg2b53b922019-03-08 12:58:22 +1000666 return wait_for_free_credits(server, 1, -1, flags,
667 instance);
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300668}
669
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000670static int
671wait_for_compound_request(struct TCP_Server_Info *server, int num,
672 const int flags, unsigned int *instance)
673{
674 int *credits;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800675 int scredits, in_flight;
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000676
677 credits = server->ops->get_credits_field(server, flags & CIFS_OP_MASK);
678
679 spin_lock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800680 scredits = *credits;
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800681 in_flight = server->in_flight;
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800682
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000683 if (*credits < num) {
684 /*
Pavel Shilovsky91792bb2021-02-02 22:34:32 -0600685 * If the server is tight on resources or just gives us less
686 * credits for other reasons (e.g. requests are coming out of
687 * order and the server delays granting more credits until it
688 * processes a missing mid) and we exhausted most available
689 * credits there may be situations when we try to send
690 * a compound request but we don't have enough credits. At this
691 * point the client needs to decide if it should wait for
692 * additional credits or fail the request. If at least one
693 * request is in flight there is a high probability that the
694 * server will return enough credits to satisfy this compound
695 * request.
696 *
697 * Return immediately if no requests in flight since we will be
698 * stuck on waiting for credits.
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000699 */
Pavel Shilovsky91792bb2021-02-02 22:34:32 -0600700 if (server->in_flight == 0) {
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000701 spin_unlock(&server->req_lock);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800702 trace_smb3_insufficient_credits(server->CurrentMid,
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800703 server->conn_id, server->hostname, scredits,
704 num, in_flight);
Shyam Prasad Ncd7b6992020-11-12 08:56:49 -0800705 cifs_dbg(FYI, "%s: %d requests in flight, needed %d total=%d\n",
Shyam Prasad N6d82c272021-02-03 23:20:46 -0800706 __func__, in_flight, num, scredits);
Shyam Prasad N7de03942021-02-03 22:58:38 -0800707 return -EDEADLK;
Ronnie Sahlberg257b7802019-03-11 12:18:58 +1000708 }
709 }
710 spin_unlock(&server->req_lock);
711
712 return wait_for_free_credits(server, num, 60000, flags,
713 instance);
714}
715
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400716int
717cifs_wait_mtu_credits(struct TCP_Server_Info *server, unsigned int size,
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800718 unsigned int *num, struct cifs_credits *credits)
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400719{
720 *num = size;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800721 credits->value = 0;
722 credits->instance = server->reconnect_instance;
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400723 return 0;
724}
725
Steve French96daf2b2011-05-27 04:34:02 +0000726static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000727 struct mid_q_entry **ppmidQ)
728{
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000729 spin_lock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500730 if (ses->status == CifsNew) {
Steve French79a58d12007-07-06 22:44:50 +0000731 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000732 (in_buf->Command != SMB_COM_NEGOTIATE)) {
733 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000734 return -EAGAIN;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000735 }
Steve Frenchad7a2922008-02-07 23:25:02 +0000736 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000737 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500738
739 if (ses->status == CifsExiting) {
740 /* check if SMB session is bad because we are setting it up */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000741 if (in_buf->Command != SMB_COM_LOGOFF_ANDX) {
742 spin_unlock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500743 return -EAGAIN;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000744 }
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500745 /* else ok - we are shutting down session */
746 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +0000747 spin_unlock(&cifs_tcp_ses_lock);
Shirish Pargaonkar7f485582013-10-12 10:06:03 -0500748
Jeff Layton24b9b062008-12-01 07:09:34 -0500749 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000750 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000751 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500752 spin_lock(&GlobalMid_Lock);
753 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
754 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000755 return 0;
756}
757
Jeff Layton0ade6402011-01-11 07:24:02 -0500758static int
759wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000760{
Jeff Layton0ade6402011-01-11 07:24:02 -0500761 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000762
Colin Cross5853cc22013-05-07 17:52:05 +0000763 error = wait_event_freezekillable_unsafe(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400764 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500765 if (error < 0)
766 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000767
Jeff Layton0ade6402011-01-11 07:24:02 -0500768 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000769}
770
Jeff Laytonfec344e2012-09-18 16:20:35 -0700771struct mid_q_entry *
772cifs_setup_async_request(struct TCP_Server_Info *server, struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400773{
774 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700775 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400776 struct mid_q_entry *mid;
777
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800778 if (rqst->rq_iov[0].iov_len != 4 ||
779 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
780 return ERR_PTR(-EIO);
781
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400782 /* enable signing if server requires it */
Jeff Layton38d77c52013-05-26 07:01:00 -0400783 if (server->sign)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400784 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
785
786 mid = AllocMidQEntry(hdr, server);
787 if (mid == NULL)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700788 return ERR_PTR(-ENOMEM);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400789
Jeff Laytonfec344e2012-09-18 16:20:35 -0700790 rc = cifs_sign_rqst(rqst, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100791 if (rc) {
792 DeleteMidQEntry(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700793 return ERR_PTR(rc);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100794 }
795
Jeff Laytonfec344e2012-09-18 16:20:35 -0700796 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400797}
Steve French133672e2007-11-13 22:41:37 +0000798
799/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500800 * Send a SMB request and set the callback function in the mid to handle
801 * the result. Caller is responsible for dealing with timeouts.
802 */
803int
Jeff Laytonfec344e2012-09-18 16:20:35 -0700804cifs_call_async(struct TCP_Server_Info *server, struct smb_rqst *rqst,
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800805 mid_receive_t *receive, mid_callback_t *callback,
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800806 mid_handle_t *handle, void *cbdata, const int flags,
807 const struct cifs_credits *exist_credits)
Jeff Laytona6827c12011-01-11 07:24:21 -0500808{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000809 int rc;
Jeff Laytona6827c12011-01-11 07:24:21 -0500810 struct mid_q_entry *mid;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800811 struct cifs_credits credits = { .value = 0, .instance = 0 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800812 unsigned int instance;
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000813 int optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500814
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400815 optype = flags & CIFS_OP_MASK;
816
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400817 if ((flags & CIFS_HAS_CREDITS) == 0) {
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +1000818 rc = wait_for_free_request(server, flags, &instance);
Pavel Shilovskycb7e9ea2014-06-05 19:03:27 +0400819 if (rc)
820 return rc;
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800821 credits.value = 1;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -0800822 credits.instance = instance;
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800823 } else
824 instance = exist_credits->instance;
Jeff Laytona6827c12011-01-11 07:24:21 -0500825
826 mutex_lock(&server->srv_mutex);
Pavel Shilovsky3349c3a2019-01-15 15:52:29 -0800827
828 /*
829 * We can't use credits obtained from the previous session to send this
830 * request. Check if there were reconnects after we obtained credits and
831 * return -EAGAIN in such cases to let callers handle it.
832 */
833 if (instance != server->reconnect_instance) {
834 mutex_unlock(&server->srv_mutex);
835 add_credits_and_wake_if(server, &credits, optype);
836 return -EAGAIN;
837 }
838
Jeff Laytonfec344e2012-09-18 16:20:35 -0700839 mid = server->ops->setup_async_request(server, rqst);
840 if (IS_ERR(mid)) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500841 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800842 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytonfec344e2012-09-18 16:20:35 -0700843 return PTR_ERR(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500844 }
845
Jeff Layton44d22d82011-10-19 15:29:49 -0400846 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500847 mid->callback = callback;
848 mid->callback_data = cbdata;
Pavel Shilovsky9b7c18a2016-11-16 14:06:17 -0800849 mid->handle = handle;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400850 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000851
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100852 /* put it on the pending_mid_q */
853 spin_lock(&GlobalMid_Lock);
854 list_add_tail(&mid->qhead, &server->pending_mid_q);
855 spin_unlock(&GlobalMid_Lock);
856
Long Li93d2cb62017-06-28 15:55:55 -0700857 /*
858 * Need to store the time in mid before calling I/O. For call_async,
859 * I/O response may come back and free the mid entry on another thread.
860 */
861 cifs_save_when_sent(mid);
Steve French789e6662011-08-09 18:44:44 +0000862 cifs_in_send_inc(server);
Ronnie Sahlberg1f3a8f52018-08-01 09:26:12 +1000863 rc = smb_send_rqst(server, 1, rqst, flags);
Steve French789e6662011-08-09 18:44:44 +0000864 cifs_in_send_dec(server);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400865
Rabin Vincent820962d2015-12-23 07:32:41 +0100866 if (rc < 0) {
Pavel Shilovskyc781af72019-03-04 14:02:50 -0800867 revert_current_mid(server, mid->credits);
Jeff Laytonad313cb2013-04-03 10:27:36 -0400868 server->sequence_number -= 2;
Rabin Vincent820962d2015-12-23 07:32:41 +0100869 cifs_delete_mid(mid);
870 }
871
Jeff Laytona6827c12011-01-11 07:24:21 -0500872 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000873
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100874 if (rc == 0)
875 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500876
Pavel Shilovsky335b7b62019-01-16 11:12:41 -0800877 add_credits_and_wake_if(server, &credits, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500878 return rc;
879}
880
881/*
Steve French133672e2007-11-13 22:41:37 +0000882 *
883 * Send an SMB Request. No response info (other than return code)
884 * needs to be parsed.
885 *
886 * flags indicate the type of request buffer and how long to wait
887 * and whether to log NT STATUS code (error) before mapping it to POSIX error
888 *
889 */
890int
Steve French96daf2b2011-05-27 04:34:02 +0000891SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400892 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000893{
894 int rc;
895 struct kvec iov[1];
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700896 struct kvec rsp_iov;
Steve French133672e2007-11-13 22:41:37 +0000897 int resp_buf_type;
898
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400899 iov[0].iov_base = in_buf;
900 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +1000901 flags |= CIFS_NO_RSP_BUF;
Pavel Shilovskyda502f72016-10-25 11:38:47 -0700902 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags, &rsp_iov);
Joe Perchesf96637b2013-05-04 22:12:25 -0500903 cifs_dbg(NOISY, "SendRcvNoRsp flags %d rc %d\n", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000904
Steve French133672e2007-11-13 22:41:37 +0000905 return rc;
906}
907
Jeff Layton053d5032011-01-11 07:24:02 -0500908static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400909cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500910{
911 int rc = 0;
912
Joe Perchesf96637b2013-05-04 22:12:25 -0500913 cifs_dbg(FYI, "%s: cmd=%d mid=%llu state=%d\n",
914 __func__, le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500915
Jeff Layton74dd92a2011-01-11 07:24:02 -0500916 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400917 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500918 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500919 spin_unlock(&GlobalMid_Lock);
920 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500921 case MID_RETRY_NEEDED:
922 rc = -EAGAIN;
923 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500924 case MID_RESPONSE_MALFORMED:
925 rc = -EIO;
926 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400927 case MID_SHUTDOWN:
928 rc = -EHOSTDOWN;
929 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500930 default:
Pavel Shilovskyabe57072019-10-22 08:41:42 -0700931 if (!(mid->mid_flags & MID_DELETED)) {
932 list_del_init(&mid->qhead);
933 mid->mid_flags |= MID_DELETED;
934 }
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000935 cifs_server_dbg(VFS, "%s: invalid mid state mid=%llu state=%d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500936 __func__, mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500937 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500938 }
939 spin_unlock(&GlobalMid_Lock);
940
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500941 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500942 return rc;
943}
944
Jeff Layton121b0462012-05-15 12:21:10 -0400945static inline int
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800946send_cancel(struct TCP_Server_Info *server, struct smb_rqst *rqst,
947 struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500948{
Jeff Layton121b0462012-05-15 12:21:10 -0400949 return server->ops->send_cancel ?
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -0800950 server->ops->send_cancel(server, rqst, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400954cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
955 bool log_error)
956{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400957 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400958
959 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400960
961 /* convert the length into a more usable form */
Jeff Layton38d77c52013-05-26 07:01:00 -0400962 if (server->sign) {
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800963 struct kvec iov[2];
Steve French985e4ff02012-08-03 09:42:45 -0500964 int rc = 0;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800965 struct smb_rqst rqst = { .rq_iov = iov,
966 .rq_nvec = 2 };
Jeff Layton826a95e2011-10-11 06:41:32 -0400967
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800968 iov[0].iov_base = mid->resp_buf;
969 iov[0].iov_len = 4;
970 iov[1].iov_base = (char *)mid->resp_buf + 4;
971 iov[1].iov_len = len - 4;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400972 /* FIXME: add code to kill session */
Jeff Laytonbf5ea0e2012-09-18 16:20:34 -0700973 rc = cifs_verify_signature(&rqst, server,
Jeff Layton0124cc42013-04-03 11:55:03 -0400974 mid->sequence_number);
Steve French985e4ff02012-08-03 09:42:45 -0500975 if (rc)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +1000976 cifs_server_dbg(VFS, "SMB signature verification returned error = %d\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500977 rc);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400978 }
979
980 /* BB special case reconnect tid and uid here? */
Roberto Bergantinos Corpasa3713ec2020-07-03 11:29:32 +0200981 return map_and_check_smb_error(mid, log_error);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400982}
983
Jeff Laytonfec344e2012-09-18 16:20:35 -0700984struct mid_q_entry *
Aurelien Aptelf780bd32019-09-20 06:08:34 +0200985cifs_setup_request(struct cifs_ses *ses, struct TCP_Server_Info *ignored,
986 struct smb_rqst *rqst)
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400987{
988 int rc;
Jeff Laytonfec344e2012-09-18 16:20:35 -0700989 struct smb_hdr *hdr = (struct smb_hdr *)rqst->rq_iov[0].iov_base;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400990 struct mid_q_entry *mid;
991
Pavel Shilovsky738f9de2016-11-23 15:14:57 -0800992 if (rqst->rq_iov[0].iov_len != 4 ||
993 rqst->rq_iov[0].iov_base + 4 != rqst->rq_iov[1].iov_base)
994 return ERR_PTR(-EIO);
995
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400996 rc = allocate_mid(ses, hdr, &mid);
997 if (rc)
Jeff Laytonfec344e2012-09-18 16:20:35 -0700998 return ERR_PTR(rc);
999 rc = cifs_sign_rqst(rqst, ses->server, &mid->sequence_number);
1000 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001001 cifs_delete_mid(mid);
Jeff Laytonfec344e2012-09-18 16:20:35 -07001002 return ERR_PTR(rc);
1003 }
1004 return mid;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001005}
1006
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001007static void
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001008cifs_compound_callback(struct mid_q_entry *mid)
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001009{
1010 struct TCP_Server_Info *server = mid->server;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001011 struct cifs_credits credits;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001012
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001013 credits.value = server->ops->get_credits(mid);
1014 credits.instance = server->reconnect_instance;
1015
1016 add_credits(server, &credits, mid->optype);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001017}
1018
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001019static void
1020cifs_compound_last_callback(struct mid_q_entry *mid)
1021{
1022 cifs_compound_callback(mid);
1023 cifs_wake_up_task(mid);
1024}
1025
1026static void
1027cifs_cancelled_callback(struct mid_q_entry *mid)
1028{
1029 cifs_compound_callback(mid);
1030 DeleteMidQEntry(mid);
1031}
1032
Aurelien Aptel5f68ea42020-04-22 15:58:57 +02001033/*
1034 * Return a channel (master if none) of @ses that can be used to send
1035 * regular requests.
1036 *
1037 * If we are currently binding a new channel (negprot/sess.setup),
1038 * return the new incomplete channel.
1039 */
1040struct TCP_Server_Info *cifs_pick_channel(struct cifs_ses *ses)
1041{
1042 uint index = 0;
1043
1044 if (!ses)
1045 return NULL;
1046
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001047 /* round robin */
Shyam Prasad Nbda487a2021-10-25 05:44:10 +00001048 index = (uint)atomic_inc_return(&ses->chan_seq);
Shyam Prasad N88b024f2021-11-19 14:16:57 +00001049
1050 spin_lock(&ses->chan_lock);
Shyam Prasad Nbda487a2021-10-25 05:44:10 +00001051 index %= ses->chan_count;
Shyam Prasad N88b024f2021-11-19 14:16:57 +00001052 spin_unlock(&ses->chan_lock);
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001053
1054 return ses->chans[index].server;
Aurelien Aptel5f68ea42020-04-22 15:58:57 +02001055}
1056
Pavel Shilovskyb8f57ee2016-11-23 15:31:54 -08001057int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001058compound_send_recv(const unsigned int xid, struct cifs_ses *ses,
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001059 struct TCP_Server_Info *server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001060 const int flags, const int num_rqst, struct smb_rqst *rqst,
1061 int *resp_buf_type, struct kvec *resp_iov)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001063 int i, j, optype, rc = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001064 struct mid_q_entry *midQ[MAX_COMPOUND];
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001065 bool cancelled_mid[MAX_COMPOUND] = {false};
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001066 struct cifs_credits credits[MAX_COMPOUND] = {
1067 { .value = 0, .instance = 0 }
1068 };
1069 unsigned int instance;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001070 char *buf;
Steve French50c2f752007-07-13 00:33:32 +00001071
Pavel Shilovskya891f0f2012-05-23 16:14:34 +04001072 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +00001073
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001074 for (i = 0; i < num_rqst; i++)
1075 resp_buf_type[i] = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001077 if (!ses || !ses->server || !server) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001078 cifs_dbg(VFS, "Null session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return -EIO;
1080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001082 spin_lock(&cifs_tcp_ses_lock);
1083 if (server->tcpStatus == CifsExiting) {
1084 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001085 return -ENOENT;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001086 }
1087 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001088
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001089 /*
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001090 * Wait for all the requests to become available.
Pavel Shilovsky7091bca2019-01-30 16:58:09 -08001091 * This approach still leaves the possibility to be stuck waiting for
1092 * credits if the server doesn't grant credits to the outstanding
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001093 * requests and if the client is completely idle, not generating any
1094 * other requests.
1095 * This can be handled by the eventual session reconnect.
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001096 */
Aurelien Aptel3190b592019-06-24 13:00:12 -05001097 rc = wait_for_compound_request(server, num_rqst, flags,
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001098 &instance);
1099 if (rc)
1100 return rc;
1101
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001102 for (i = 0; i < num_rqst; i++) {
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001103 credits[i].value = 1;
1104 credits[i].instance = instance;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001105 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001106
Pavel Shilovsky792af7b2012-03-23 14:28:02 -04001107 /*
1108 * Make sure that we sign in the same order that we send on this socket
1109 * and avoid races inside tcp sendmsg code that could cause corruption
1110 * of smb data.
1111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Aurelien Aptel3190b592019-06-24 13:00:12 -05001113 mutex_lock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001115 /*
1116 * All the parts of the compound chain belong obtained credits from the
Ronnie Sahlberg257b7802019-03-11 12:18:58 +10001117 * same session. We can not use credits obtained from the previous
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001118 * session to send this request. Check if there were reconnects after
1119 * we obtained credits and return -EAGAIN in such cases to let callers
1120 * handle it.
1121 */
Aurelien Aptel3190b592019-06-24 13:00:12 -05001122 if (instance != server->reconnect_instance) {
1123 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001124 for (j = 0; j < num_rqst; j++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001125 add_credits(server, &credits[j], optype);
Pavel Shilovsky97ea4992019-01-15 16:07:52 -08001126 return -EAGAIN;
1127 }
1128
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001129 for (i = 0; i < num_rqst; i++) {
Aurelien Aptelf780bd32019-09-20 06:08:34 +02001130 midQ[i] = server->ops->setup_request(ses, server, &rqst[i]);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001131 if (IS_ERR(midQ[i])) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001132 revert_current_mid(server, i);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001133 for (j = 0; j < i; j++)
1134 cifs_delete_mid(midQ[j]);
Aurelien Aptel3190b592019-06-24 13:00:12 -05001135 mutex_unlock(&server->srv_mutex);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001136
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001137 /* Update # of requests on wire to server */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001138 for (j = 0; j < num_rqst; j++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001139 add_credits(server, &credits[j], optype);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001140 return PTR_ERR(midQ[i]);
1141 }
1142
1143 midQ[i]->mid_state = MID_REQUEST_SUBMITTED;
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001144 midQ[i]->optype = optype;
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001145 /*
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001146 * Invoke callback for every part of the compound chain
1147 * to calculate credits properly. Wake up this thread only when
1148 * the last element is received.
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001149 */
1150 if (i < num_rqst - 1)
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001151 midQ[i]->callback = cifs_compound_callback;
1152 else
1153 midQ[i]->callback = cifs_compound_last_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
Aurelien Aptel3190b592019-06-24 13:00:12 -05001155 cifs_in_send_inc(server);
1156 rc = smb_send_rqst(server, num_rqst, rqst, flags);
1157 cifs_in_send_dec(server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001158
1159 for (i = 0; i < num_rqst; i++)
1160 cifs_save_when_sent(midQ[i]);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001161
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001162 if (rc < 0) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001163 revert_current_mid(server, num_rqst);
1164 server->sequence_number -= 2;
Pavel Shilovskyc781af72019-03-04 14:02:50 -08001165 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001166
Aurelien Aptel3190b592019-06-24 13:00:12 -05001167 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001168
Ronnie Sahlbergd69cb722019-05-01 12:03:41 +10001169 /*
1170 * If sending failed for some reason or it is an oplock break that we
1171 * will not receive a response to - return credits back
1172 */
1173 if (rc < 0 || (flags & CIFS_NO_SRV_RSP)) {
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001174 for (i = 0; i < num_rqst; i++)
Aurelien Aptel3190b592019-06-24 13:00:12 -05001175 add_credits(server, &credits[i], optype);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001176 goto out;
Pavel Shilovskyee258d72019-01-03 15:53:10 -08001177 }
1178
1179 /*
1180 * At this point the request is passed to the network stack - we assume
1181 * that any credits taken from the server structure on the client have
1182 * been spent and we can't return them back. Once we receive responses
1183 * we will collect credits granted by the server in the mid callbacks
1184 * and add those credits to the server structure.
1185 */
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001186
1187 /*
1188 * Compounding is never used during session establish.
1189 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001190 spin_lock(&cifs_tcp_ses_lock);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001191 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001192 spin_unlock(&cifs_tcp_ses_lock);
1193
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001194 mutex_lock(&server->srv_mutex);
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001195 smb311_update_preauth_hash(ses, server, rqst[0].rq_iov, rqst[0].rq_nvec);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001196 mutex_unlock(&server->srv_mutex);
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001197
1198 spin_lock(&cifs_tcp_ses_lock);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001199 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001200 spin_unlock(&cifs_tcp_ses_lock);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001201
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001202 for (i = 0; i < num_rqst; i++) {
Aurelien Aptel3190b592019-06-24 13:00:12 -05001203 rc = wait_for_response(server, midQ[i]);
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001204 if (rc != 0)
1205 break;
1206 }
1207 if (rc != 0) {
1208 for (; i < num_rqst; i++) {
Paulo Alcantarae3d100e2021-03-08 12:00:48 -03001209 cifs_server_dbg(FYI, "Cancelling wait for mid %llu cmd: %d\n",
Steve French43de1db2018-10-23 21:04:57 -05001210 midQ[i]->mid, le16_to_cpu(midQ[i]->command));
Aurelien Aptel3190b592019-06-24 13:00:12 -05001211 send_cancel(server, &rqst[i], midQ[i]);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001212 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7b718432019-11-21 11:35:14 -08001213 midQ[i]->mid_flags |= MID_WAIT_CANCELLED;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001214 if (midQ[i]->mid_state == MID_REQUEST_SUBMITTED) {
Pavel Shilovsky8a26f0f2019-01-03 16:45:27 -08001215 midQ[i]->callback = cifs_cancelled_callback;
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001216 cancelled_mid[i] = true;
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001217 credits[i].value = 0;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001218 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001219 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001220 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001221 }
1222
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001223 for (i = 0; i < num_rqst; i++) {
1224 if (rc < 0)
1225 goto out;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001226
Aurelien Aptel3190b592019-06-24 13:00:12 -05001227 rc = cifs_sync_mid_result(midQ[i], server);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001228 if (rc != 0) {
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001229 /* mark this mid as cancelled to not free it below */
1230 cancelled_mid[i] = true;
1231 goto out;
Jeff Layton1be912d2011-01-28 07:08:28 -05001232 }
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001233
1234 if (!midQ[i]->resp_buf ||
1235 midQ[i]->mid_state != MID_RESPONSE_RECEIVED) {
1236 rc = -EIO;
1237 cifs_dbg(FYI, "Bad MID state?\n");
1238 goto out;
1239 }
1240
1241 buf = (char *)midQ[i]->resp_buf;
1242 resp_iov[i].iov_base = buf;
1243 resp_iov[i].iov_len = midQ[i]->resp_buf_size +
Aurelien Aptel3190b592019-06-24 13:00:12 -05001244 server->vals->header_preamble_size;
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001245
1246 if (midQ[i]->large_buf)
1247 resp_buf_type[i] = CIFS_LARGE_BUFFER;
1248 else
1249 resp_buf_type[i] = CIFS_SMALL_BUFFER;
1250
Aurelien Aptel3190b592019-06-24 13:00:12 -05001251 rc = server->ops->check_receive(midQ[i], server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001252 flags & CIFS_LOG_ERROR);
1253
1254 /* mark it so buf will not be freed by cifs_delete_mid */
Ronnie Sahlberg392e1c52019-05-06 10:00:02 +10001255 if ((flags & CIFS_NO_RSP_BUF) == 0)
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001256 midQ[i]->resp_buf = NULL;
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001257
Jeff Layton1be912d2011-01-28 07:08:28 -05001258 }
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001259
1260 /*
1261 * Compounding is never used during session establish.
1262 */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001263 spin_lock(&cifs_tcp_ses_lock);
Shyam Prasad N0f56db82021-02-03 22:49:52 -08001264 if ((ses->status == CifsNew) || (optype & CIFS_NEG_OP) || (optype & CIFS_SESS_OP)) {
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001265 struct kvec iov = {
1266 .iov_base = resp_iov[0].iov_base,
1267 .iov_len = resp_iov[0].iov_len
1268 };
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001269 spin_unlock(&cifs_tcp_ses_lock);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001270 mutex_lock(&server->srv_mutex);
Shyam Prasad Nf486ef82021-07-19 13:54:16 +00001271 smb311_update_preauth_hash(ses, server, &iov, 1);
Vincent Whitchurch05946d42021-03-10 13:20:40 +01001272 mutex_unlock(&server->srv_mutex);
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001273 spin_lock(&cifs_tcp_ses_lock);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001274 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001275 spin_unlock(&cifs_tcp_ses_lock);
Ronnie Sahlbergcb5c2e62018-10-10 15:29:06 +10001276
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001277out:
Ronnie Sahlberg4e34feb2018-08-30 10:13:00 +10001278 /*
1279 * This will dequeue all mids. After this it is important that the
1280 * demultiplex_thread will not process any of these mids any futher.
1281 * This is prevented above by using a noop callback that will not
1282 * wake this thread except for the very last PDU.
1283 */
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001284 for (i = 0; i < num_rqst; i++) {
1285 if (!cancelled_mid[i])
1286 cifs_delete_mid(midQ[i]);
Pavel Shilovsky8544f4a2018-12-22 12:40:05 -08001287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 return rc;
1290}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292int
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001293cifs_send_recv(const unsigned int xid, struct cifs_ses *ses,
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001294 struct TCP_Server_Info *server,
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001295 struct smb_rqst *rqst, int *resp_buf_type, const int flags,
1296 struct kvec *resp_iov)
1297{
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001298 return compound_send_recv(xid, ses, server, flags, 1,
1299 rqst, resp_buf_type, resp_iov);
Ronnie Sahlberge0bba0b82018-08-01 09:26:13 +10001300}
1301
1302int
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001303SendReceive2(const unsigned int xid, struct cifs_ses *ses,
1304 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
1305 const int flags, struct kvec *resp_iov)
1306{
1307 struct smb_rqst rqst;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001308 struct kvec s_iov[CIFS_MAX_IOV_SIZE], *new_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001309 int rc;
1310
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001311 if (n_vec + 1 > CIFS_MAX_IOV_SIZE) {
Kees Cook6da2ec52018-06-12 13:55:00 -07001312 new_iov = kmalloc_array(n_vec + 1, sizeof(struct kvec),
1313 GFP_KERNEL);
Steve French117e3b72018-04-22 10:24:19 -05001314 if (!new_iov) {
1315 /* otherwise cifs_send_recv below sets resp_buf_type */
1316 *resp_buf_type = CIFS_NO_BUFFER;
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001317 return -ENOMEM;
Steve French117e3b72018-04-22 10:24:19 -05001318 }
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001319 } else
1320 new_iov = s_iov;
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001321
1322 /* 1st iov is a RFC1001 length followed by the rest of the packet */
1323 memcpy(new_iov + 1, iov, (sizeof(struct kvec) * n_vec));
1324
1325 new_iov[0].iov_base = new_iov[1].iov_base;
1326 new_iov[0].iov_len = 4;
1327 new_iov[1].iov_base += 4;
1328 new_iov[1].iov_len -= 4;
1329
1330 memset(&rqst, 0, sizeof(struct smb_rqst));
1331 rqst.rq_iov = new_iov;
1332 rqst.rq_nvec = n_vec + 1;
1333
Aurelien Aptel352d96f2020-05-31 12:38:22 -05001334 rc = cifs_send_recv(xid, ses, ses->server,
1335 &rqst, resp_buf_type, flags, resp_iov);
Ronnie Sahlberg3cecf482017-11-21 15:08:07 +11001336 if (n_vec + 1 > CIFS_MAX_IOV_SIZE)
1337 kfree(new_iov);
Pavel Shilovsky738f9de2016-11-23 15:14:57 -08001338 return rc;
1339}
1340
1341int
Steve French96daf2b2011-05-27 04:34:02 +00001342SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Ronnie Sahlberg480b1cb2019-03-08 12:58:18 +10001344 int *pbytes_returned, const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
1346 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct mid_q_entry *midQ;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001348 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1349 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1350 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001351 struct cifs_credits credits = { .value = 1, .instance = 0 };
Colin Ian Kingac6ad7a2019-09-02 16:10:59 +01001352 struct TCP_Server_Info *server;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 if (ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001355 cifs_dbg(VFS, "Null smb session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 return -EIO;
1357 }
Colin Ian Kingac6ad7a2019-09-02 16:10:59 +01001358 server = ses->server;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001359 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001360 cifs_dbg(VFS, "Null tcp session\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 return -EIO;
1362 }
1363
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001364 spin_lock(&cifs_tcp_ses_lock);
1365 if (server->tcpStatus == CifsExiting) {
1366 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001367 return -ENOENT;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001368 }
1369 spin_unlock(&cifs_tcp_ses_lock);
Steve French31ca3bc2005-04-28 22:41:11 -07001370
Steve French79a58d12007-07-06 22:44:50 +00001371 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 to the same server. We may make this configurable later or
1373 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001375 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001376 cifs_server_dbg(VFS, "Invalid length, greater than maximum frame, %d\n",
1377 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001378 return -EIO;
1379 }
1380
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001381 rc = wait_for_free_request(server, flags, &credits.instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001382 if (rc)
1383 return rc;
1384
Steve French79a58d12007-07-06 22:44:50 +00001385 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 and avoid races inside tcp sendmsg code that could cause corruption
1387 of smb data */
1388
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001389 mutex_lock(&server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001391 rc = allocate_mid(ses, in_buf, &midQ);
1392 if (rc) {
Dan Carpenter8bd37542019-10-25 13:35:08 +03001393 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001394 /* Update # of requests on wire to server */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001395 add_credits(server, &credits, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001396 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
1398
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001399 rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001400 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001401 mutex_unlock(&server->srv_mutex);
Volker Lendecke829049c2008-12-06 16:00:53 +01001402 goto out;
1403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001405 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +00001406
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001407 cifs_in_send_inc(server);
1408 rc = smb_send(server, in_buf, len);
1409 cifs_in_send_dec(server);
Steve French789e6662011-08-09 18:44:44 +00001410 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001411
1412 if (rc < 0)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001413 server->sequence_number -= 2;
Jeff Laytonad313cb2013-04-03 10:27:36 -04001414
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001415 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001416
Steve French79a58d12007-07-06 22:44:50 +00001417 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001418 goto out;
1419
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001420 rc = wait_for_response(server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001421 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001422 send_cancel(server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001423 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001424 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001425 /* no longer considered to be "in-flight" */
1426 midQ->callback = DeleteMidQEntry;
1427 spin_unlock(&GlobalMid_Lock);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001428 add_credits(server, &credits, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -05001429 return rc;
1430 }
1431 spin_unlock(&GlobalMid_Lock);
1432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001434 rc = cifs_sync_mid_result(midQ, server);
Jeff Layton053d5032011-01-11 07:24:02 -05001435 if (rc != 0) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001436 add_credits(server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return rc;
1438 }
Steve French50c2f752007-07-13 00:33:32 +00001439
Jeff Layton2c8f9812011-05-19 16:22:52 -04001440 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001441 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 rc = -EIO;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001443 cifs_server_dbg(VFS, "Bad MID state?\n");
Steve French2b2bdfb2008-12-11 17:26:54 +00001444 goto out;
1445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001447 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001448 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001449 rc = cifs_check_receive(midQ, server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001450out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001451 cifs_delete_mid(midQ);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001452 add_credits(server, &credits, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001455}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001457/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
1458 blocking lock to return. */
1459
1460static int
Steve French96daf2b2011-05-27 04:34:02 +00001461send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001462 struct smb_hdr *in_buf,
1463 struct smb_hdr *out_buf)
1464{
1465 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +00001466 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001467 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
1468
1469 /* We just modify the current in_buf to change
1470 the type of lock from LOCKING_ANDX_SHARED_LOCK
1471 or LOCKING_ANDX_EXCLUSIVE_LOCK to
1472 LOCKING_ANDX_CANCEL_LOCK. */
1473
1474 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
1475 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +04001476 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001477
1478 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -05001479 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001480}
1481
1482int
Steve French96daf2b2011-05-27 04:34:02 +00001483SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001484 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
1485 int *pbytes_returned)
1486{
1487 int rc = 0;
1488 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001489 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +00001490 struct cifs_ses *ses;
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001491 unsigned int len = be32_to_cpu(in_buf->smb_buf_length);
1492 struct kvec iov = { .iov_base = in_buf, .iov_len = len };
1493 struct smb_rqst rqst = { .rq_iov = &iov, .rq_nvec = 1 };
Pavel Shilovsky34f4deb2019-01-16 11:22:29 -08001494 unsigned int instance;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001495 struct TCP_Server_Info *server;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001496
1497 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001498 cifs_dbg(VFS, "Null smb session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001499 return -EIO;
1500 }
1501 ses = tcon->ses;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001502 server = ses->server;
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001503
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001504 if (server == NULL) {
Joe Perchesf96637b2013-05-04 22:12:25 -05001505 cifs_dbg(VFS, "Null tcp session\n");
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001506 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 }
1508
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001509 spin_lock(&cifs_tcp_ses_lock);
1510 if (server->tcpStatus == CifsExiting) {
1511 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001512 return -ENOENT;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001513 }
1514 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001515
Steve French79a58d12007-07-06 22:44:50 +00001516 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001517 to the same server. We may make this configurable later or
1518 use ses->maxReq */
1519
Pavel Shilovskyfb2036d2016-11-23 15:08:14 -08001520 if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesa0a30362020-04-14 22:42:53 -07001521 cifs_tcon_dbg(VFS, "Invalid length, greater than maximum frame, %d\n",
1522 len);
Volker Lendecke6d9c6d52008-12-08 20:50:24 +00001523 return -EIO;
1524 }
1525
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001526 rc = wait_for_free_request(server, CIFS_BLOCKING_OP, &instance);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001527 if (rc)
1528 return rc;
1529
Steve French79a58d12007-07-06 22:44:50 +00001530 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001531 and avoid races inside tcp sendmsg code that could cause corruption
1532 of smb data */
1533
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001534 mutex_lock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001535
1536 rc = allocate_mid(ses, in_buf, &midQ);
1537 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001538 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001539 return rc;
1540 }
1541
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001542 rc = cifs_sign_smb(in_buf, server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +01001543 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001544 cifs_delete_mid(midQ);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001545 mutex_unlock(&server->srv_mutex);
Volker Lendecke829049c2008-12-06 16:00:53 +01001546 return rc;
1547 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001548
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001549 midQ->mid_state = MID_REQUEST_SUBMITTED;
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001550 cifs_in_send_inc(server);
1551 rc = smb_send(server, in_buf, len);
1552 cifs_in_send_dec(server);
Steve French789e6662011-08-09 18:44:44 +00001553 cifs_save_when_sent(midQ);
Jeff Laytonad313cb2013-04-03 10:27:36 -04001554
1555 if (rc < 0)
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001556 server->sequence_number -= 2;
Jeff Laytonad313cb2013-04-03 10:27:36 -04001557
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001558 mutex_unlock(&server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001559
Steve French79a58d12007-07-06 22:44:50 +00001560 if (rc < 0) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001561 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001562 return rc;
1563 }
1564
1565 /* Wait for a reply - allow signals to interrupt. */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001566 rc = wait_event_interruptible(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001567 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001568 ((server->tcpStatus != CifsGood) &&
1569 (server->tcpStatus != CifsNew)));
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001570
1571 /* Were we interrupted by a signal ? */
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001572 spin_lock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001573 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001574 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001575 ((server->tcpStatus == CifsGood) ||
1576 (server->tcpStatus == CifsNew))) {
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001577 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001578
1579 if (in_buf->Command == SMB_COM_TRANSACTION2) {
1580 /* POSIX lock. We send a NT_CANCEL SMB to cause the
1581 blocking lock to return. */
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001582 rc = send_cancel(server, &rqst, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001583 if (rc) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001584 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001585 return rc;
1586 }
1587 } else {
1588 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
1589 to cause the blocking lock to return. */
1590
1591 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
1592
1593 /* If we get -ENOLCK back the lock may have
1594 already been removed. Don't exit in this case. */
1595 if (rc && rc != -ENOLCK) {
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001596 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001597 return rc;
1598 }
1599 }
1600
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001601 rc = wait_for_response(server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001602 if (rc) {
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001603 send_cancel(server, &rqst, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -05001604 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001605 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -05001606 /* no longer considered to be "in-flight" */
1607 midQ->callback = DeleteMidQEntry;
1608 spin_unlock(&GlobalMid_Lock);
1609 return rc;
1610 }
1611 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001612 }
Jeff Layton1be912d2011-01-28 07:08:28 -05001613
1614 /* We got the response - restart system call. */
1615 rstart = 1;
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001616 spin_lock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001617 }
Shyam Prasad N080dc5e2021-07-19 17:05:53 +00001618 spin_unlock(&cifs_tcp_ses_lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001619
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001620 rc = cifs_sync_mid_result(midQ, server);
Jeff Layton053d5032011-01-11 07:24:02 -05001621 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001622 return rc;
Steve French50c2f752007-07-13 00:33:32 +00001623
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001624 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -04001625 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001626 rc = -EIO;
Ronnie Sahlberg3175eb92019-09-04 12:32:41 +10001627 cifs_tcon_dbg(VFS, "Bad MID state?\n");
Volker Lendecke698e96a2008-12-06 16:39:31 +01001628 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001629 }
1630
Pavel Shilovskyd4e48542012-03-23 14:28:02 -04001631 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -04001632 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
Ronnie Sahlbergafe6f652019-08-28 17:15:35 +10001633 rc = cifs_check_receive(midQ, server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +01001634out:
Pavel Shilovsky3c1bf7e2012-09-18 16:20:30 -07001635 cifs_delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +00001636 if (rstart && rc == -EACCES)
1637 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return rc;
1639}