blob: 904702db25269cded30cfb24ac8368126fcf6376 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/transport.c
3 *
Steve Frenchad7a2922008-02-07 23:25:02 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
Steve French14a441a2b2006-07-16 04:32:51 +00006 * Jeremy Allison (jra@samba.org) 2006.
Steve French79a58d12007-07-06 22:44:50 +00007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This library is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Lesser General Public License as published
10 * by the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
16 * the GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this library; if not, write to the Free Software
Steve French79a58d12007-07-06 22:44:50 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 */
22
23#include <linux/fs.h>
24#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/wait.h>
27#include <linux/net.h>
28#include <linux/delay.h>
Jeff Laytonf06ac722011-10-19 15:30:40 -040029#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31#include <asm/processor.h>
32#include <linux/mempool.h>
33#include "cifspdu.h"
34#include "cifsglob.h"
35#include "cifsproto.h"
36#include "cifs_debug.h"
Steve French50c2f752007-07-13 00:33:32 +000037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038extern mempool_t *cifs_mid_poolp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Jeff Layton2b84a36c2011-01-11 07:24:21 -050040static void
41wake_up_task(struct mid_q_entry *mid)
42{
43 wake_up_process(mid->callback_data);
44}
45
Jeff Laytona6827c12011-01-11 07:24:21 -050046struct mid_q_entry *
Jeff Layton24b9b062008-12-01 07:09:34 -050047AllocMidQEntry(const struct smb_hdr *smb_buffer, struct TCP_Server_Info *server)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 struct mid_q_entry *temp;
50
Jeff Layton24b9b062008-12-01 07:09:34 -050051 if (server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +000052 cERROR(1, "Null TCP session in AllocMidQEntry");
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 return NULL;
54 }
Steve French50c2f752007-07-13 00:33:32 +000055
Pekka Enberg232087c2008-09-15 13:22:54 +030056 temp = mempool_alloc(cifs_mid_poolp, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 if (temp == NULL)
58 return temp;
59 else {
Steve French26f57362007-08-30 22:09:15 +000060 memset(temp, 0, sizeof(struct mid_q_entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 temp->mid = smb_buffer->Mid; /* always LE */
62 temp->pid = current->pid;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040063 temp->command = cpu_to_le16(smb_buffer->Command);
64 cFYI(1, "For smb_command %d", smb_buffer->Command);
Steve French1047abc2005-10-11 19:58:06 -070065 /* do_gettimeofday(&temp->when_sent);*/ /* easier to use jiffies */
66 /* when mid allocated can be before when sent */
67 temp->when_alloc = jiffies;
Jeff Layton2b84a36c2011-01-11 07:24:21 -050068
69 /*
70 * The default is for the mid to be synchronous, so the
71 * default callback just wakes up the current task.
72 */
73 temp->callback = wake_up_task;
74 temp->callback_data = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 atomic_inc(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040078 temp->mid_state = MID_REQUEST_ALLOCATED;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return temp;
80}
81
Jeff Layton766fdbb2011-01-11 07:24:21 -050082void
Linus Torvalds1da177e2005-04-16 15:20:36 -070083DeleteMidQEntry(struct mid_q_entry *midEntry)
84{
Steve French1047abc2005-10-11 19:58:06 -070085#ifdef CONFIG_CIFS_STATS2
86 unsigned long now;
87#endif
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040088 midEntry->mid_state = MID_FREE;
Jeff Layton80975312011-01-11 07:24:02 -050089 atomic_dec(&midCount);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -040090 if (midEntry->large_buf)
Steve Frenchb8643e12005-04-28 22:41:07 -070091 cifs_buf_release(midEntry->resp_buf);
92 else
93 cifs_small_buf_release(midEntry->resp_buf);
Steve French1047abc2005-10-11 19:58:06 -070094#ifdef CONFIG_CIFS_STATS2
95 now = jiffies;
96 /* commands taking longer than one second are indications that
97 something is wrong, unless it is quite a slow link or server */
Steve French79a58d12007-07-06 22:44:50 +000098 if ((now - midEntry->when_alloc) > HZ) {
99 if ((cifsFYI & CIFS_TIMER) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400100 (midEntry->command != cpu_to_le16(SMB_COM_LOCKING_ANDX))) {
101 printk(KERN_DEBUG " CIFS slow rsp: cmd %d mid %llu",
Steve French1047abc2005-10-11 19:58:06 -0700102 midEntry->command, midEntry->mid);
103 printk(" A: 0x%lx S: 0x%lx R: 0x%lx\n",
104 now - midEntry->when_alloc,
105 now - midEntry->when_sent,
106 now - midEntry->when_received);
107 }
108 }
109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 mempool_free(midEntry, cifs_mid_poolp);
111}
112
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500113static void
114delete_mid(struct mid_q_entry *mid)
115{
116 spin_lock(&GlobalMid_Lock);
117 list_del(&mid->qhead);
118 spin_unlock(&GlobalMid_Lock);
119
120 DeleteMidQEntry(mid);
121}
122
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500123static int
Jeff Layton0496e022008-12-30 12:39:16 -0500124smb_sendv(struct TCP_Server_Info *server, struct kvec *iov, int n_vec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 int rc = 0;
127 int i = 0;
128 struct msghdr smb_msg;
Steve French3e844692005-10-03 13:37:24 -0700129 unsigned int len = iov[0].iov_len;
130 unsigned int total_len;
131 int first_vec = 0;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400132 unsigned int smb_buf_length = get_rfc1002_length(iov[0].iov_base);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000133 struct socket *ssocket = server->ssocket;
Steve French50c2f752007-07-13 00:33:32 +0000134
Steve French79a58d12007-07-06 22:44:50 +0000135 if (ssocket == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -ENOTSOCK; /* BB eventually add reconnect code here */
Steve French3e844692005-10-03 13:37:24 -0700137
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300138 smb_msg.msg_name = (struct sockaddr *) &server->dstaddr;
Steve French26f57362007-08-30 22:09:15 +0000139 smb_msg.msg_namelen = sizeof(struct sockaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 smb_msg.msg_control = NULL;
141 smb_msg.msg_controllen = 0;
Jeff Layton0496e022008-12-30 12:39:16 -0500142 if (server->noblocksnd)
Steve Frenchedf1ae42008-10-29 00:47:57 +0000143 smb_msg.msg_flags = MSG_DONTWAIT + MSG_NOSIGNAL;
144 else
145 smb_msg.msg_flags = MSG_NOSIGNAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Steve French3e844692005-10-03 13:37:24 -0700147 total_len = 0;
148 for (i = 0; i < n_vec; i++)
149 total_len += iov[i].iov_len;
150
Joe Perchesb6b38f72010-04-21 03:50:45 +0000151 cFYI(1, "Sending smb: total_len %d", total_len);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400152 dump_smb(iov[0].iov_base, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Shirish Pargaonkar17680352008-07-29 21:26:13 +0000154 i = 0;
Steve French3e844692005-10-03 13:37:24 -0700155 while (total_len) {
156 rc = kernel_sendmsg(ssocket, &smb_msg, &iov[first_vec],
157 n_vec - first_vec, total_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if ((rc == -ENOSPC) || (rc == -EAGAIN)) {
159 i++;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400160 /*
161 * If blocking send we try 3 times, since each can block
162 * for 5 seconds. For nonblocking we have to try more
163 * but wait increasing amounts of time allowing time for
164 * socket to clear. The overall time we wait in either
165 * case to send on the socket is about 15 seconds.
166 * Similarly we wait for 15 seconds for a response from
167 * the server in SendReceive[2] for the server to send
168 * a response back for most types of requests (except
169 * SMB Write past end of file which can be slow, and
170 * blocking lock operations). NFS waits slightly longer
171 * than CIFS, but this can make it take longer for
172 * nonresponsive servers to be detected and 15 seconds
173 * is more than enough time for modern networks to
174 * send a packet. In most cases if we fail to send
175 * after the retries we will kill the socket and
176 * reconnect which may clear the network problem.
177 */
Steve Frenchda505c32009-01-19 03:49:35 +0000178 if ((i >= 14) || (!server->noblocksnd && (i > 2))) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000179 cERROR(1, "sends on sock %p stuck for 15 seconds",
180 ssocket);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 rc = -EAGAIN;
182 break;
183 }
Steve French68058e72005-10-10 10:34:22 -0700184 msleep(1 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 continue;
186 }
Steve French79a58d12007-07-06 22:44:50 +0000187 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 break;
Steve French3e844692005-10-03 13:37:24 -0700189
Steve French61de8002008-10-30 20:15:22 +0000190 if (rc == total_len) {
191 total_len = 0;
192 break;
193 } else if (rc > total_len) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000194 cERROR(1, "sent %d requested %d", rc, total_len);
Steve French3e844692005-10-03 13:37:24 -0700195 break;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500196 }
Steve French79a58d12007-07-06 22:44:50 +0000197 if (rc == 0) {
Steve French3e844692005-10-03 13:37:24 -0700198 /* should never happen, letting socket clear before
199 retrying is our only obvious option here */
Joe Perchesb6b38f72010-04-21 03:50:45 +0000200 cERROR(1, "tcp sent no data");
Steve French3e844692005-10-03 13:37:24 -0700201 msleep(500);
202 continue;
203 }
204 total_len -= rc;
Steve French68058e72005-10-10 10:34:22 -0700205 /* the line below resets i */
Steve French3e844692005-10-03 13:37:24 -0700206 for (i = first_vec; i < n_vec; i++) {
207 if (iov[i].iov_len) {
208 if (rc > iov[i].iov_len) {
209 rc -= iov[i].iov_len;
210 iov[i].iov_len = 0;
211 } else {
212 iov[i].iov_base += rc;
213 iov[i].iov_len -= rc;
214 first_vec = i;
215 break;
216 }
217 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500218 }
Steve French5e1253b2005-10-10 14:06:37 -0700219 i = 0; /* in case we get ENOSPC on the next send */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
Steve Frenchedf1ae42008-10-29 00:47:57 +0000222 if ((total_len > 0) && (total_len != smb_buf_length + 4)) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000223 cFYI(1, "partial send (%d remaining), terminating session",
224 total_len);
Steve Frenchedf1ae42008-10-29 00:47:57 +0000225 /* If we have only sent part of an SMB then the next SMB
226 could be taken as the remainder of this one. We need
227 to kill the socket so the server throws away the partial
228 SMB */
229 server->tcpStatus = CifsNeedReconnect;
230 }
231
Jeff Laytond804d412011-01-28 15:05:43 -0500232 if (rc < 0 && rc != -EINTR)
Joe Perchesb6b38f72010-04-21 03:50:45 +0000233 cERROR(1, "Error %d sending data on socket to server", rc);
Jeff Laytond804d412011-01-28 15:05:43 -0500234 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 return rc;
238}
239
Jeff Layton0496e022008-12-30 12:39:16 -0500240int
241smb_send(struct TCP_Server_Info *server, struct smb_hdr *smb_buffer,
242 unsigned int smb_buf_length)
243{
244 struct kvec iov;
245
246 iov.iov_base = smb_buffer;
247 iov.iov_len = smb_buf_length + 4;
248
249 return smb_sendv(server, &iov, 1);
250}
251
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300252static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400253wait_for_free_credits(struct TCP_Server_Info *server, const int timeout,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300254 int *credits)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000255{
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300256 int rc;
257
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300258 spin_lock(&server->req_lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400259 if (timeout == CIFS_ASYNC_OP) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000260 /* oplock breaks must not be held up */
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300261 server->in_flight++;
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300262 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300263 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000264 return 0;
265 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000266
Volker Lendecke27a97a62008-12-08 20:59:39 +0000267 while (1) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300268 if (*credits <= 0) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300269 spin_unlock(&server->req_lock);
Steve French789e6662011-08-09 18:44:44 +0000270 cifs_num_waiters_inc(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300271 rc = wait_event_killable(server->request_q,
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300272 has_credits(server, credits));
Steve French789e6662011-08-09 18:44:44 +0000273 cifs_num_waiters_dec(server);
Pavel Shilovsky5bc59492012-02-21 19:56:08 +0300274 if (rc)
275 return rc;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300276 spin_lock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000277 } else {
Jeff Laytonc5797a92011-01-11 07:24:01 -0500278 if (server->tcpStatus == CifsExiting) {
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300279 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000280 return -ENOENT;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000281 }
Volker Lendecke27a97a62008-12-08 20:59:39 +0000282
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400283 /*
284 * Can not count locking commands against total
285 * as they are allowed to block on server.
286 */
Volker Lendecke27a97a62008-12-08 20:59:39 +0000287
288 /* update # of requests on the wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400289 if (timeout != CIFS_BLOCKING_OP) {
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300290 *credits -= 1;
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300291 server->in_flight++;
Pavel Shilovsky2d86dbc2012-02-06 15:59:18 +0400292 }
Pavel Shilovskyfc40f9c2012-02-17 17:09:12 +0300293 spin_unlock(&server->req_lock);
Volker Lendecke27a97a62008-12-08 20:59:39 +0000294 break;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000295 }
296 }
297 return 0;
298}
299
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300300static int
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400301wait_for_free_request(struct TCP_Server_Info *server, const int timeout,
302 const int optype)
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300303{
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400304 return wait_for_free_credits(server, timeout,
305 server->ops->get_credits_field(server, optype));
Pavel Shilovskybc205ed2012-03-15 13:22:27 +0300306}
307
Steve French96daf2b2011-05-27 04:34:02 +0000308static int allocate_mid(struct cifs_ses *ses, struct smb_hdr *in_buf,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000309 struct mid_q_entry **ppmidQ)
310{
311 if (ses->server->tcpStatus == CifsExiting) {
312 return -ENOENT;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100313 }
314
315 if (ses->server->tcpStatus == CifsNeedReconnect) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000316 cFYI(1, "tcp session dead - return to caller to retry");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000317 return -EAGAIN;
Volker Lendecke8fbbd362008-12-06 13:12:34 +0100318 }
319
320 if (ses->status != CifsGood) {
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000321 /* check if SMB session is bad because we are setting it up */
Steve French79a58d12007-07-06 22:44:50 +0000322 if ((in_buf->Command != SMB_COM_SESSION_SETUP_ANDX) &&
Steve Frenchad7a2922008-02-07 23:25:02 +0000323 (in_buf->Command != SMB_COM_NEGOTIATE))
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000324 return -EAGAIN;
Steve Frenchad7a2922008-02-07 23:25:02 +0000325 /* else ok - we are setting up session */
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000326 }
Jeff Layton24b9b062008-12-01 07:09:34 -0500327 *ppmidQ = AllocMidQEntry(in_buf, ses->server);
Steve French26f57362007-08-30 22:09:15 +0000328 if (*ppmidQ == NULL)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000329 return -ENOMEM;
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500330 spin_lock(&GlobalMid_Lock);
331 list_add_tail(&(*ppmidQ)->qhead, &ses->server->pending_mid_q);
332 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000333 return 0;
334}
335
Jeff Layton0ade6402011-01-11 07:24:02 -0500336static int
337wait_for_response(struct TCP_Server_Info *server, struct mid_q_entry *midQ)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000338{
Jeff Layton0ade6402011-01-11 07:24:02 -0500339 int error;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000340
Jeff Laytonf06ac722011-10-19 15:30:40 -0400341 error = wait_event_freezekillable(server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400342 midQ->mid_state != MID_REQUEST_SUBMITTED);
Jeff Layton0ade6402011-01-11 07:24:02 -0500343 if (error < 0)
344 return -ERESTARTSYS;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000345
Jeff Layton0ade6402011-01-11 07:24:02 -0500346 return 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000347}
348
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400349static int
350cifs_setup_async_request(struct TCP_Server_Info *server, struct kvec *iov,
351 unsigned int nvec, struct mid_q_entry **ret_mid)
352{
353 int rc;
354 struct smb_hdr *hdr = (struct smb_hdr *)iov[0].iov_base;
355 struct mid_q_entry *mid;
356
357 /* enable signing if server requires it */
358 if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED))
359 hdr->Flags2 |= SMBFLG2_SECURITY_SIGNATURE;
360
361 mid = AllocMidQEntry(hdr, server);
362 if (mid == NULL)
363 return -ENOMEM;
364
Jeff Layton762a4202012-07-23 13:28:38 -0400365 rc = cifs_sign_smbv(iov, nvec, server, &mid->sequence_number);
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100366 if (rc) {
367 DeleteMidQEntry(mid);
368 return rc;
369 }
370
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400371 *ret_mid = mid;
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100372 return 0;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400373}
Steve French133672e2007-11-13 22:41:37 +0000374
375/*
Jeff Laytona6827c12011-01-11 07:24:21 -0500376 * Send a SMB request and set the callback function in the mid to handle
377 * the result. Caller is responsible for dealing with timeouts.
378 */
379int
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400380cifs_call_async(struct TCP_Server_Info *server, struct kvec *iov,
Jeff Layton44d22d82011-10-19 15:29:49 -0400381 unsigned int nvec, mid_receive_t *receive,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400382 mid_callback_t *callback, void *cbdata, const int flags)
Jeff Laytona6827c12011-01-11 07:24:21 -0500383{
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400384 int rc, timeout, optype;
Jeff Laytona6827c12011-01-11 07:24:21 -0500385 struct mid_q_entry *mid;
386
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400387 timeout = flags & CIFS_TIMEOUT_MASK;
388 optype = flags & CIFS_OP_MASK;
389
390 rc = wait_for_free_request(server, timeout, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500391 if (rc)
392 return rc;
393
394 mutex_lock(&server->srv_mutex);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400395 rc = cifs_setup_async_request(server, iov, nvec, &mid);
396 if (rc) {
Jeff Laytona6827c12011-01-11 07:24:21 -0500397 mutex_unlock(&server->srv_mutex);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400398 add_credits(server, 1, optype);
Pavel Shilovsky0193e072011-08-03 23:12:18 +0400399 wake_up(&server->request_q);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400400 return rc;
Jeff Laytona6827c12011-01-11 07:24:21 -0500401 }
402
Jeff Layton44d22d82011-10-19 15:29:49 -0400403 mid->receive = receive;
Jeff Laytona6827c12011-01-11 07:24:21 -0500404 mid->callback = callback;
405 mid->callback_data = cbdata;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400406 mid->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000407
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100408 /* put it on the pending_mid_q */
409 spin_lock(&GlobalMid_Lock);
410 list_add_tail(&mid->qhead, &server->pending_mid_q);
411 spin_unlock(&GlobalMid_Lock);
412
413
Steve French789e6662011-08-09 18:44:44 +0000414 cifs_in_send_inc(server);
Jeff Laytonfcc31cb2011-05-19 16:22:53 -0400415 rc = smb_sendv(server, iov, nvec);
Steve French789e6662011-08-09 18:44:44 +0000416 cifs_in_send_dec(server);
417 cifs_save_when_sent(mid);
Jeff Laytona6827c12011-01-11 07:24:21 -0500418 mutex_unlock(&server->srv_mutex);
Steve French789e6662011-08-09 18:44:44 +0000419
Sachin Prabhuffc61cc2012-07-11 12:28:05 +0100420 if (rc == 0)
421 return 0;
Jeff Laytona6827c12011-01-11 07:24:21 -0500422
Jeff Laytona6827c12011-01-11 07:24:21 -0500423 delete_mid(mid);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400424 add_credits(server, 1, optype);
Jeff Laytona6827c12011-01-11 07:24:21 -0500425 wake_up(&server->request_q);
426 return rc;
427}
428
429/*
Steve French133672e2007-11-13 22:41:37 +0000430 *
431 * Send an SMB Request. No response info (other than return code)
432 * needs to be parsed.
433 *
434 * flags indicate the type of request buffer and how long to wait
435 * and whether to log NT STATUS code (error) before mapping it to POSIX error
436 *
437 */
438int
Steve French96daf2b2011-05-27 04:34:02 +0000439SendReceiveNoRsp(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400440 char *in_buf, int flags)
Steve French133672e2007-11-13 22:41:37 +0000441{
442 int rc;
443 struct kvec iov[1];
444 int resp_buf_type;
445
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400446 iov[0].iov_base = in_buf;
447 iov[0].iov_len = get_rfc1002_length(in_buf) + 4;
Steve French133672e2007-11-13 22:41:37 +0000448 flags |= CIFS_NO_RESP;
449 rc = SendReceive2(xid, ses, iov, 1, &resp_buf_type, flags);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000450 cFYI(DBG2, "SendRcvNoRsp flags %d rc %d", flags, rc);
Steve French90c81e02008-02-12 20:32:36 +0000451
Steve French133672e2007-11-13 22:41:37 +0000452 return rc;
453}
454
Jeff Layton053d5032011-01-11 07:24:02 -0500455static int
Jeff Layton3c1105d2011-05-22 07:09:13 -0400456cifs_sync_mid_result(struct mid_q_entry *mid, struct TCP_Server_Info *server)
Jeff Layton053d5032011-01-11 07:24:02 -0500457{
458 int rc = 0;
459
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400460 cFYI(1, "%s: cmd=%d mid=%llu state=%d", __func__,
461 le16_to_cpu(mid->command), mid->mid, mid->mid_state);
Jeff Layton053d5032011-01-11 07:24:02 -0500462
Jeff Layton74dd92a2011-01-11 07:24:02 -0500463 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400464 switch (mid->mid_state) {
Jeff Layton74dd92a2011-01-11 07:24:02 -0500465 case MID_RESPONSE_RECEIVED:
Jeff Layton053d5032011-01-11 07:24:02 -0500466 spin_unlock(&GlobalMid_Lock);
467 return rc;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500468 case MID_RETRY_NEEDED:
469 rc = -EAGAIN;
470 break;
Jeff Layton71823ba2011-02-10 08:03:50 -0500471 case MID_RESPONSE_MALFORMED:
472 rc = -EIO;
473 break;
Jeff Layton3c1105d2011-05-22 07:09:13 -0400474 case MID_SHUTDOWN:
475 rc = -EHOSTDOWN;
476 break;
Jeff Layton74dd92a2011-01-11 07:24:02 -0500477 default:
Jeff Layton3c1105d2011-05-22 07:09:13 -0400478 list_del_init(&mid->qhead);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400479 cERROR(1, "%s: invalid mid state mid=%llu state=%d", __func__,
480 mid->mid, mid->mid_state);
Jeff Layton74dd92a2011-01-11 07:24:02 -0500481 rc = -EIO;
Jeff Layton053d5032011-01-11 07:24:02 -0500482 }
483 spin_unlock(&GlobalMid_Lock);
484
Jeff Layton2b84a36c2011-01-11 07:24:21 -0500485 DeleteMidQEntry(mid);
Jeff Layton053d5032011-01-11 07:24:02 -0500486 return rc;
487}
488
Jeff Layton121b0462012-05-15 12:21:10 -0400489static inline int
490send_cancel(struct TCP_Server_Info *server, void *buf, struct mid_q_entry *mid)
Jeff Layton76dcc262011-01-11 07:24:24 -0500491{
Jeff Layton121b0462012-05-15 12:21:10 -0400492 return server->ops->send_cancel ?
493 server->ops->send_cancel(server, buf, mid) : 0;
Jeff Layton76dcc262011-01-11 07:24:24 -0500494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496int
Jeff Layton2c8f9812011-05-19 16:22:52 -0400497cifs_check_receive(struct mid_q_entry *mid, struct TCP_Server_Info *server,
498 bool log_error)
499{
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400500 unsigned int len = get_rfc1002_length(mid->resp_buf) + 4;
Jeff Layton826a95e2011-10-11 06:41:32 -0400501
502 dump_smb(mid->resp_buf, min_t(u32, 92, len));
Jeff Layton2c8f9812011-05-19 16:22:52 -0400503
504 /* convert the length into a more usable form */
Steve French96daf2b2011-05-27 04:34:02 +0000505 if (server->sec_mode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) {
Jeff Layton826a95e2011-10-11 06:41:32 -0400506 struct kvec iov;
507
508 iov.iov_base = mid->resp_buf;
509 iov.iov_len = len;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400510 /* FIXME: add code to kill session */
Jeff Layton826a95e2011-10-11 06:41:32 -0400511 if (cifs_verify_signature(&iov, 1, server,
Jeff Layton2c8f9812011-05-19 16:22:52 -0400512 mid->sequence_number + 1) != 0)
513 cERROR(1, "Unexpected SMB signature");
514 }
515
516 /* BB special case reconnect tid and uid here? */
517 return map_smb_to_linux_error(mid->resp_buf, log_error);
518}
519
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400520int
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400521cifs_setup_request(struct cifs_ses *ses, struct kvec *iov,
522 unsigned int nvec, struct mid_q_entry **ret_mid)
523{
524 int rc;
525 struct smb_hdr *hdr = (struct smb_hdr *)iov[0].iov_base;
526 struct mid_q_entry *mid;
527
528 rc = allocate_mid(ses, hdr, &mid);
529 if (rc)
530 return rc;
Jeff Layton762a4202012-07-23 13:28:38 -0400531 rc = cifs_sign_smbv(iov, nvec, ses->server, &mid->sequence_number);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400532 if (rc)
533 delete_mid(mid);
534 *ret_mid = mid;
535 return rc;
536}
537
Jeff Layton2c8f9812011-05-19 16:22:52 -0400538int
Steve French96daf2b2011-05-27 04:34:02 +0000539SendReceive2(const unsigned int xid, struct cifs_ses *ses,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400540 struct kvec *iov, int n_vec, int *resp_buf_type /* ret */,
Steve French133672e2007-11-13 22:41:37 +0000541 const int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 int rc = 0;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400544 int timeout, optype;
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500545 struct mid_q_entry *midQ;
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400546 char *buf = iov[0].iov_base;
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400547 unsigned int credits = 1;
Steve French50c2f752007-07-13 00:33:32 +0000548
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400549 timeout = flags & CIFS_TIMEOUT_MASK;
550 optype = flags & CIFS_OP_MASK;
Steve French133672e2007-11-13 22:41:37 +0000551
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400552 *resp_buf_type = CIFS_NO_BUFFER; /* no response buf yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Steve French4b8f9302006-02-26 16:41:18 +0000554 if ((ses == NULL) || (ses->server == NULL)) {
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400555 cifs_small_buf_release(buf);
Joe Perchesb6b38f72010-04-21 03:50:45 +0000556 cERROR(1, "Null session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -EIO;
558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Steve French79a58d12007-07-06 22:44:50 +0000560 if (ses->server->tcpStatus == CifsExiting) {
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400561 cifs_small_buf_release(buf);
Steve French31ca3bc2005-04-28 22:41:11 -0700562 return -ENOENT;
Steve French4b8f9302006-02-26 16:41:18 +0000563 }
Steve French31ca3bc2005-04-28 22:41:11 -0700564
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400565 /*
566 * Ensure that we do not send more than 50 overlapping requests
567 * to the same server. We may make this configurable later or
568 * use ses->maxReq.
569 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400571 rc = wait_for_free_request(ses->server, timeout, optype);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000572 if (rc) {
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400573 cifs_small_buf_release(buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000574 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000576
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400577 /*
578 * Make sure that we sign in the same order that we send on this socket
579 * and avoid races inside tcp sendmsg code that could cause corruption
580 * of smb data.
581 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Jeff Layton72ca5452008-12-01 07:09:36 -0500583 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400585 rc = ses->server->ops->setup_request(ses, iov, n_vec, &midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000586 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500587 mutex_unlock(&ses->server->srv_mutex);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400588 cifs_small_buf_release(buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000589 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400590 add_credits(ses->server, 1, optype);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000591 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400594 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000595 cifs_in_send_inc(ses->server);
Jeff Layton0496e022008-12-30 12:39:16 -0500596 rc = smb_sendv(ses->server, iov, n_vec);
Steve French789e6662011-08-09 18:44:44 +0000597 cifs_in_send_dec(ses->server);
598 cifs_save_when_sent(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000599
Jeff Layton72ca5452008-12-01 07:09:36 -0500600 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000601
Jeff Layton2db7c582011-01-28 07:08:28 -0500602 if (rc < 0) {
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400603 cifs_small_buf_release(buf);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000604 goto out;
Jeff Layton2db7c582011-01-28 07:08:28 -0500605 }
Steve French4b8f9302006-02-26 16:41:18 +0000606
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400607 if (timeout == CIFS_ASYNC_OP) {
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400608 cifs_small_buf_release(buf);
Steve French133672e2007-11-13 22:41:37 +0000609 goto out;
Jeff Layton2db7c582011-01-28 07:08:28 -0500610 }
Jeff Layton0ade6402011-01-11 07:24:02 -0500611
612 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500613 if (rc != 0) {
Jeff Layton121b0462012-05-15 12:21:10 -0400614 send_cancel(ses->server, buf, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500615 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400616 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500617 midQ->callback = DeleteMidQEntry;
618 spin_unlock(&GlobalMid_Lock);
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400619 cifs_small_buf_release(buf);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400620 add_credits(ses->server, 1, optype);
Jeff Layton1be912d2011-01-28 07:08:28 -0500621 return rc;
622 }
623 spin_unlock(&GlobalMid_Lock);
624 }
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500625
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400626 cifs_small_buf_release(buf);
Jeff Layton2db7c582011-01-28 07:08:28 -0500627
Jeff Layton3c1105d2011-05-22 07:09:13 -0400628 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500629 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400630 add_credits(ses->server, 1, optype);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500631 return rc;
632 }
Steve French50c2f752007-07-13 00:33:32 +0000633
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400634 if (!midQ->resp_buf || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500635 rc = -EIO;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400636 cFYI(1, "Bad MID state?");
Steve French2b2bdfb2008-12-11 17:26:54 +0000637 goto out;
638 }
Steve French84afc292005-12-02 13:32:45 -0800639
Pavel Shilovsky792af7b2012-03-23 14:28:02 -0400640 buf = (char *)midQ->resp_buf;
641 iov[0].iov_base = buf;
642 iov[0].iov_len = get_rfc1002_length(buf) + 4;
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400643 if (midQ->large_buf)
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400644 *resp_buf_type = CIFS_LARGE_BUFFER;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400645 else
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400646 *resp_buf_type = CIFS_SMALL_BUFFER;
647
648 credits = ses->server->ops->get_credits(midQ);
Steve Frenchd6e04ae2005-06-13 13:24:43 -0500649
Pavel Shilovsky082d0642012-05-17 12:18:21 +0400650 rc = ses->server->ops->check_receive(midQ, ses->server,
651 flags & CIFS_LOG_ERROR);
Steve French2b2bdfb2008-12-11 17:26:54 +0000652
Jeff Layton2c8f9812011-05-19 16:22:52 -0400653 /* mark it so buf will not be freed by delete_mid */
654 if ((flags & CIFS_NO_RESP) == 0)
655 midQ->resp_buf = NULL;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000656out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500657 delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400658 add_credits(ses->server, credits, optype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 return rc;
661}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663int
Steve French96daf2b2011-05-27 04:34:02 +0000664SendReceive(const unsigned int xid, struct cifs_ses *ses,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400666 int *pbytes_returned, const int timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 struct mid_q_entry *midQ;
670
671 if (ses == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000672 cERROR(1, "Null smb session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return -EIO;
674 }
Steve French79a58d12007-07-06 22:44:50 +0000675 if (ses->server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000676 cERROR(1, "Null tcp session");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return -EIO;
678 }
679
Steve French79a58d12007-07-06 22:44:50 +0000680 if (ses->server->tcpStatus == CifsExiting)
Steve French31ca3bc2005-04-28 22:41:11 -0700681 return -ENOENT;
682
Steve French79a58d12007-07-06 22:44:50 +0000683 /* Ensure that we do not send more than 50 overlapping requests
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 to the same server. We may make this configurable later or
685 use ses->maxReq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000687 if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize +
688 MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000689 cERROR(1, "Illegal length, greater than maximum frame, %d",
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000690 be32_to_cpu(in_buf->smb_buf_length));
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000691 return -EIO;
692 }
693
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400694 rc = wait_for_free_request(ses->server, timeout, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000695 if (rc)
696 return rc;
697
Steve French79a58d12007-07-06 22:44:50 +0000698 /* make sure that we sign in the same order that we send on this socket
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 and avoid races inside tcp sendmsg code that could cause corruption
700 of smb data */
701
Jeff Layton72ca5452008-12-01 07:09:36 -0500702 mutex_lock(&ses->server->srv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000704 rc = allocate_mid(ses, in_buf, &midQ);
705 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500706 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000707 /* Update # of requests on wire to server */
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400708 add_credits(ses->server, 1, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000709 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
711
Steve Frenchad009ac2005-04-28 22:41:05 -0700712 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100713 if (rc) {
714 mutex_unlock(&ses->server->srv_mutex);
715 goto out;
716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400718 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000719
720 cifs_in_send_inc(ses->server);
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000721 rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
Steve French789e6662011-08-09 18:44:44 +0000722 cifs_in_send_dec(ses->server);
723 cifs_save_when_sent(midQ);
Jeff Layton72ca5452008-12-01 07:09:36 -0500724 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000725
Steve French79a58d12007-07-06 22:44:50 +0000726 if (rc < 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000727 goto out;
728
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400729 if (timeout == CIFS_ASYNC_OP)
Steve French133672e2007-11-13 22:41:37 +0000730 goto out;
Jeff Layton0ade6402011-01-11 07:24:02 -0500731
732 rc = wait_for_response(ses->server, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500733 if (rc != 0) {
Jeff Layton121b0462012-05-15 12:21:10 -0400734 send_cancel(ses->server, in_buf, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500735 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400736 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500737 /* no longer considered to be "in-flight" */
738 midQ->callback = DeleteMidQEntry;
739 spin_unlock(&GlobalMid_Lock);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400740 add_credits(ses->server, 1, 0);
Jeff Layton1be912d2011-01-28 07:08:28 -0500741 return rc;
742 }
743 spin_unlock(&GlobalMid_Lock);
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Jeff Layton3c1105d2011-05-22 07:09:13 -0400746 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500747 if (rc != 0) {
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400748 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return rc;
750 }
Steve French50c2f752007-07-13 00:33:32 +0000751
Jeff Layton2c8f9812011-05-19 16:22:52 -0400752 if (!midQ->resp_buf || !out_buf ||
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400753 midQ->mid_state != MID_RESPONSE_RECEIVED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 rc = -EIO;
Jeff Layton2c8f9812011-05-19 16:22:52 -0400755 cERROR(1, "Bad MID state?");
Steve French2b2bdfb2008-12-11 17:26:54 +0000756 goto out;
757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400759 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400760 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
761 rc = cifs_check_receive(midQ, ses->server, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000762out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500763 delete_mid(midQ);
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400764 add_credits(ses->server, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 return rc;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000767}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000769/* We send a LOCKINGX_CANCEL_LOCK to cause the Windows
770 blocking lock to return. */
771
772static int
Steve French96daf2b2011-05-27 04:34:02 +0000773send_lock_cancel(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000774 struct smb_hdr *in_buf,
775 struct smb_hdr *out_buf)
776{
777 int bytes_returned;
Steve French96daf2b2011-05-27 04:34:02 +0000778 struct cifs_ses *ses = tcon->ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000779 LOCK_REQ *pSMB = (LOCK_REQ *)in_buf;
780
781 /* We just modify the current in_buf to change
782 the type of lock from LOCKING_ANDX_SHARED_LOCK
783 or LOCKING_ANDX_EXCLUSIVE_LOCK to
784 LOCKING_ANDX_CANCEL_LOCK. */
785
786 pSMB->LockType = LOCKING_ANDX_CANCEL_LOCK|LOCKING_ANDX_LARGE_FILES;
787 pSMB->Timeout = 0;
Pavel Shilovsky88257362012-05-23 14:01:59 +0400788 pSMB->hdr.Mid = get_next_mid(ses->server);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000789
790 return SendReceive(xid, ses, in_buf, out_buf,
Jeff Layton77499812011-01-11 07:24:23 -0500791 &bytes_returned, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000792}
793
794int
Steve French96daf2b2011-05-27 04:34:02 +0000795SendReceiveBlockingLock(const unsigned int xid, struct cifs_tcon *tcon,
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000796 struct smb_hdr *in_buf, struct smb_hdr *out_buf,
797 int *pbytes_returned)
798{
799 int rc = 0;
800 int rstart = 0;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000801 struct mid_q_entry *midQ;
Steve French96daf2b2011-05-27 04:34:02 +0000802 struct cifs_ses *ses;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000803
804 if (tcon == NULL || tcon->ses == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000805 cERROR(1, "Null smb session");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000806 return -EIO;
807 }
808 ses = tcon->ses;
809
Steve French79a58d12007-07-06 22:44:50 +0000810 if (ses->server == NULL) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000811 cERROR(1, "Null tcp session");
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000812 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
Steve French79a58d12007-07-06 22:44:50 +0000815 if (ses->server->tcpStatus == CifsExiting)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000816 return -ENOENT;
817
Steve French79a58d12007-07-06 22:44:50 +0000818 /* Ensure that we do not send more than 50 overlapping requests
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000819 to the same server. We may make this configurable later or
820 use ses->maxReq */
821
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000822 if (be32_to_cpu(in_buf->smb_buf_length) > CIFSMaxBufSize +
823 MAX_CIFS_HDR_SIZE - 4) {
Joe Perchesb6b38f72010-04-21 03:50:45 +0000824 cERROR(1, "Illegal length, greater than maximum frame, %d",
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000825 be32_to_cpu(in_buf->smb_buf_length));
Volker Lendecke6d9c6d52008-12-08 20:50:24 +0000826 return -EIO;
827 }
828
Pavel Shilovskya891f0f2012-05-23 16:14:34 +0400829 rc = wait_for_free_request(ses->server, CIFS_BLOCKING_OP, 0);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000830 if (rc)
831 return rc;
832
Steve French79a58d12007-07-06 22:44:50 +0000833 /* make sure that we sign in the same order that we send on this socket
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000834 and avoid races inside tcp sendmsg code that could cause corruption
835 of smb data */
836
Jeff Layton72ca5452008-12-01 07:09:36 -0500837 mutex_lock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000838
839 rc = allocate_mid(ses, in_buf, &midQ);
840 if (rc) {
Jeff Layton72ca5452008-12-01 07:09:36 -0500841 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000842 return rc;
843 }
844
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000845 rc = cifs_sign_smb(in_buf, ses->server, &midQ->sequence_number);
Volker Lendecke829049c2008-12-06 16:00:53 +0100846 if (rc) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500847 delete_mid(midQ);
Volker Lendecke829049c2008-12-06 16:00:53 +0100848 mutex_unlock(&ses->server->srv_mutex);
849 return rc;
850 }
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000851
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400852 midQ->mid_state = MID_REQUEST_SUBMITTED;
Steve French789e6662011-08-09 18:44:44 +0000853 cifs_in_send_inc(ses->server);
Steve Frenchbe8e3b02011-04-29 05:40:20 +0000854 rc = smb_send(ses->server, in_buf, be32_to_cpu(in_buf->smb_buf_length));
Steve French789e6662011-08-09 18:44:44 +0000855 cifs_in_send_dec(ses->server);
856 cifs_save_when_sent(midQ);
Jeff Layton72ca5452008-12-01 07:09:36 -0500857 mutex_unlock(&ses->server->srv_mutex);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000858
Steve French79a58d12007-07-06 22:44:50 +0000859 if (rc < 0) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500860 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000861 return rc;
862 }
863
864 /* Wait for a reply - allow signals to interrupt. */
865 rc = wait_event_interruptible(ses->server->response_q,
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400866 (!(midQ->mid_state == MID_REQUEST_SUBMITTED)) ||
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000867 ((ses->server->tcpStatus != CifsGood) &&
868 (ses->server->tcpStatus != CifsNew)));
869
870 /* Were we interrupted by a signal ? */
871 if ((rc == -ERESTARTSYS) &&
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400872 (midQ->mid_state == MID_REQUEST_SUBMITTED) &&
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000873 ((ses->server->tcpStatus == CifsGood) ||
874 (ses->server->tcpStatus == CifsNew))) {
875
876 if (in_buf->Command == SMB_COM_TRANSACTION2) {
877 /* POSIX lock. We send a NT_CANCEL SMB to cause the
878 blocking lock to return. */
Jeff Layton121b0462012-05-15 12:21:10 -0400879 rc = send_cancel(ses->server, in_buf, midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000880 if (rc) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500881 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000882 return rc;
883 }
884 } else {
885 /* Windows lock. We send a LOCKINGX_CANCEL_LOCK
886 to cause the blocking lock to return. */
887
888 rc = send_lock_cancel(xid, tcon, in_buf, out_buf);
889
890 /* If we get -ENOLCK back the lock may have
891 already been removed. Don't exit in this case. */
892 if (rc && rc != -ENOLCK) {
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500893 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000894 return rc;
895 }
896 }
897
Jeff Layton1be912d2011-01-28 07:08:28 -0500898 rc = wait_for_response(ses->server, midQ);
899 if (rc) {
Jeff Layton121b0462012-05-15 12:21:10 -0400900 send_cancel(ses->server, in_buf, midQ);
Jeff Layton1be912d2011-01-28 07:08:28 -0500901 spin_lock(&GlobalMid_Lock);
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400902 if (midQ->mid_state == MID_REQUEST_SUBMITTED) {
Jeff Layton1be912d2011-01-28 07:08:28 -0500903 /* no longer considered to be "in-flight" */
904 midQ->callback = DeleteMidQEntry;
905 spin_unlock(&GlobalMid_Lock);
906 return rc;
907 }
908 spin_unlock(&GlobalMid_Lock);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000909 }
Jeff Layton1be912d2011-01-28 07:08:28 -0500910
911 /* We got the response - restart system call. */
912 rstart = 1;
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000913 }
914
Jeff Layton3c1105d2011-05-22 07:09:13 -0400915 rc = cifs_sync_mid_result(midQ, ses->server);
Jeff Layton053d5032011-01-11 07:24:02 -0500916 if (rc != 0)
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000917 return rc;
Steve French50c2f752007-07-13 00:33:32 +0000918
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100919 /* rcvd frame is ok */
Pavel Shilovsky7c9421e2012-03-23 14:28:03 -0400920 if (out_buf == NULL || midQ->mid_state != MID_RESPONSE_RECEIVED) {
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100921 rc = -EIO;
Joe Perchesb6b38f72010-04-21 03:50:45 +0000922 cERROR(1, "Bad MID state?");
Volker Lendecke698e96a2008-12-06 16:39:31 +0100923 goto out;
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100924 }
925
Pavel Shilovskyd4e48542012-03-23 14:28:02 -0400926 *pbytes_returned = get_rfc1002_length(midQ->resp_buf);
Jeff Layton2c8f9812011-05-19 16:22:52 -0400927 memcpy(out_buf, midQ->resp_buf, *pbytes_returned + 4);
928 rc = cifs_check_receive(midQ, ses->server, 0);
Volker Lendecke17c8bfe2008-12-06 16:38:19 +0100929out:
Jeff Laytonddc8cf82011-01-11 07:24:02 -0500930 delete_mid(midQ);
Jeremy Allison7ee1af72006-08-02 21:56:33 +0000931 if (rstart && rc == -EACCES)
932 return -ERESTARTSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return rc;
934}